blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
c67c96f7cfe931a604320a484d84d374eead5b3d
aa4899ac6c2b1eb0eb22d15953e18f7d1cdd4ee4
/code/application/physicsfeature/properties/environmentcollideproperty.h
ce73ba13440c283b7f2d42fa3065e6a85c6ffec0
[]
no_license
dzw/stellar2008
bc2647f2a9eea03dea233335af66e9a916d2b1e3
5ff28d25b8cafdfccc79fa7e916b5cdc4f36b4ac
refs/heads/master
2021-01-10T12:26:08.853827
2012-01-04T17:15:42
2012-01-04T17:15:42
36,920,393
0
0
null
null
null
null
UTF-8
C++
false
false
2,578
h
#ifndef PROPERTIES_ENVIRONMENTCOLLIDEPROPERTY_H #define PROPERTIES_ENVIRONMENTCOLLIDEPROPERTY_H //------------------------------------------------------------------------------ /** This property adds pieces of static collide geometry to the game world. It is very similar to the class EnvironmentGraphicsProperty, but instead of graphics it handles collision. All static collide geometry in a level will usually be added to one EnvironmentCollideProperty, which in turn lives in a single game entity which represent the environment graphics and collission. That way the game entity pool isn't flooded with hundreds of game entities which would end up doing nothing because they just represent static geometry. Instead, everything static about the level is put into a single entity. NOTE: usually you don't need to care about this class, it's used by the level loader which automatically collects all environment objects into a single game entity. (C) 2005 Radon Labs GmbH */ #include "game/property.h" #include "physics/shape.h" #include "util/dictionary.h" //------------------------------------------------------------------------------ namespace PhysicsFeature { class EnvironmentCollideProperty : public Game::Property { DeclareClass(EnvironmentCollideProperty); public: /// constructor EnvironmentCollideProperty(); /// destructor virtual ~EnvironmentCollideProperty(); /// called from Entity::DeactivateProperties() virtual void OnDeactivate(); /// add a collide shape group void AddShapes(const Util::String& id, const Math::matrix44& worldMatrix, const Util::Array<Ptr<Physics::Shape> >& shapes); /// delete shapes associated with given id void DeleteShapes(const Util::String& id); /// return true if a shape group of the given id exists bool HasShapes(const Util::String& id) const; /// get shape group by id const Util::Array<Ptr<Physics::Shape> >& GetShapes(const Util::String& id) const; /// get world matrix associated with id const Util::Array<Math::matrix44>& GetLocalMatrices(const Util::String& id) const; private: struct Entry { Util::Array<Ptr<Physics::Shape> > collideShapes; Util::Array<Math::matrix44> localMatrices; }; Util::Dictionary<Util::String, Entry> entries; }; RegisterClass(EnvironmentCollideProperty); }; // namespace Properties //------------------------------------------------------------------------------ #endif
[ "ctuoMail@gmail.com" ]
ctuoMail@gmail.com
2a8c193e63cdfb41fd92fd1b4452e7eb2e3e7705
e26e854111c799719ec3b711d4220872946aede4
/halo.ino
4ae5f782ded9ccb7b425655188b5405221bfc887
[]
no_license
ahmaddidiks/sipinter
348a8d7f119c0459575567cf66f9c0f1e94430a3
09e813620c2f3e0b25d2e7bfbce3d13269c78c33
refs/heads/master
2021-06-16T00:40:42.720091
2021-05-27T07:00:37
2021-05-27T07:00:37
196,847,004
0
0
null
null
null
null
UTF-8
C++
false
false
25,947
ino
/* Program for power factor correction us ing FIS logic, * using successive approximation algorithm to switching capacitor, * using IoT function for monitoring Apparent Power and Power factor * Sensor used is voltage sensor and current sensor to find RMS voltage and RMS current * * this skecth does fuzzy algorithm using fix point method * * coded by : alifnl * date started : 01 may 2018 * date finished : still progress * by using Fix point method, fuzzy algorithm was executed in about 53-52 us * function working properly : fuzzy function, succesive approximation algorithm, read_sensor, interrupt 0.1 ms, ethernet function, FIR, exponential filter */ // ENC28J60 - STM32F103 // VCC - 3.3V // GND - GND // SCK - Pin PA5 // SO - Pin PA6 // SI - Pin PA7 // CS - Pin PA4 #include <EtherCard_STM.h> #include <SPI.h> //////////////////////////////// IoT Initialization///////////////// // ethernet interface mac address static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x32 }; // remote website name const char website[] PROGMEM = "api.thingspeak.com"; #define APIKEY "WXKETM3KMBU6OYCH" Stash stash; static byte session; byte Ethernet::buffer[700]; ///////////////////////////////end//////////////////////////////// ///////////******* Fuzzy variable initialization********//////////// float input_Q =0; // input float input_V = 0; float MD_Q_mf1, MD_Q_mf2, MD_Q_mf3; // membership degree input Q (VAR) float MD_V_mf1, MD_V_mf2, MD_V_mf3; // membership degree input V (voltage) float f1 ,f2, f3, f4, f5, f6,f7,f8,f9; // linear function value float w1, w2, w3, w4, w5, w6, w7, w8, w9; int C; // fuzzy output /////// measurement inizialiation/////// // using DT sense current sensor // using zmpt101B voltage sensor int32_t voltage_magnitude[3] = {0}; //int32_t = long dik int32_t current_magnitude[3] = {0}; int32_t real_power[3] = {0}; int32_t reactive_power[3] = {0}; int16_t voltage_delay[51] = {0}; int16_t current_delay[109] = {0}; int32_t v_alpha= 0; // real int32_t v_beta = 0; // delayed T/4 int32_t i_alpha = 0; //real int32_t i_beta = 0; // delayed T/4 int16_t adc_voltage_value = 0; // sensor adc value int16_t adc_current_value = 0; //sensor adc value float kwh; float cospi; ///*******************CAPACITOR VARIABLE DECLARATION....../////////////////////// int capacitor[8] = {50,30,20,10,5,2,1,1}; int c_state[8] = { 0, 0, 0, 0,0,0,0,0}; //int max_cap = capacitor[0] + capacitor[1] + capacitor[2] + capacitor[3] + capacitor[4] + capacitor [5] + capacitor[6] + capacitor[7]; ///////////////////////////////////////END////////////////////////////////////// ///////////////////////////////Input - Output Initialization///////////////////////// const int voltage_sensor = PB1; const int current_sensor = PB0; const int C_output1 = PA11; const int C_output2 = PA10; const int C_output3 = PA9; const int C_output4 = PA8; const int C_output5 = PB15; const int C_output6 = PB14; const int C_output7 = PB13; const int C_output8 = PB12; const int control = PB11; ///////////////////////////////////////////////////////////////////////////////////// uint32_t tick ; //uint32_t = unsigned 32 bit uint32_t tick1; uint32_t tick2; uint32_t tick3; // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. //timer 2 setup //TIMER2_BASE->CR1 = 0x0000; //Tdts=Tint, upcounter, timer disabled //TIMER2_BASE->CR2 = 0x0000; //already set to 0 by default TIMER1_BASE->PSC = 7200; //72MHz/7200= 10,000 Hz TIMER1_BASE->ARR = 20000; //20,000/10,000 = 2s TIMER1_BASE->CNT = 0; //clear counter timer_attach_interrupt(TIMER1, 0, handler_tim1); //interrupt on timer update TIMER1_BASE->CR1 |= 0x0001; //enable timer. // finish timer 2 setup // timer 2 for read sensor TIMER2_BASE->PSC = 3600; //72MHz/72000= 1,000 Hz TIMER2_BASE->ARR = 1; //1000/1,000 = 0.1 ms TIMER2_BASE->CNT = 0; //clear counter timer_attach_interrupt(TIMER2, 0, handler_tim2); //interrupt on timer update Serial2.begin(1000000); // ADC setup// pinMode(voltage_sensor, INPUT_ANALOG); pinMode(current_sensor, INPUT_ANALOG); //output setup// pinMode(C_output1, OUTPUT); pinMode(C_output2, OUTPUT); pinMode(C_output3, OUTPUT); pinMode(C_output4, OUTPUT); pinMode(C_output5, OUTPUT); pinMode(C_output6, OUTPUT); pinMode(C_output7, OUTPUT); pinMode(C_output8, OUTPUT); pinMode(control,INPUT); digitalWrite(C_output1,1); digitalWrite(C_output2,1); digitalWrite(C_output3,1); digitalWrite(C_output4,1); digitalWrite(C_output5,1); digitalWrite(C_output6,1); digitalWrite(C_output7,1); digitalWrite(C_output8,1); initialize_ethernet(); Serial2.println("setup done"); } // the loop function runs over and over again forever void loop() { if(millis() - tick >= 1){ ether.packetLoop(ether.packetReceive()); tick = millis(); } if (millis() - tick1 >= 16000){ send_data(); Serial2.println("data sent"); tick1 = millis(); } if (millis() - tick2 >= 1000){ kwh += (real_power[2] *(float)2.11 / 1438)/(float)3600; tick2 = millis(); } if (millis() - tick3 >= 100){ //Serial2.println((sqrt(current_magnitude[2])* (float)2.11 / 1438)*1000 ); //fix tick3 = millis(); } } void handler_tim2(){ // 0.1 ms read_sensor(); expSmoothing(); } void handler_tim1(){ // 2s Serial2.print("V :"); Serial2.println(sqrt(voltage_magnitude[2])); Serial2.print("I :"); Serial2.println(sqrt(current_magnitude[2])* (float)2.11 / 1438 ); //fix Serial2.print("P :"); Serial2.println(real_power[2] *(float)2.11 / 1438); Serial2.print("Q :"); Serial2.println(reactive_power[2] *(float)2.11 / 1438); Serial2.print("S :"); Serial2.println(sqrt(voltage_magnitude[2]) * sqrt(current_magnitude[2]) * (float)0.1/71); Serial2.print("\n"); if (digitalRead(control) == 1){ SAL(); }else{ reset_cap(); } digitalWrite(C_output1, !c_state[0]); digitalWrite(C_output2, !c_state[1]); digitalWrite(C_output3, !c_state[2]); digitalWrite(C_output4, !c_state[3]); digitalWrite(C_output5, !c_state[4]); digitalWrite(C_output6, !c_state[5]); digitalWrite(C_output7, !c_state[6]); digitalWrite(C_output8, !c_state[7]); } void send_data(){ // send Data to server // generate two fake values as payload - by using a separate stash, // we can determine the size of the generated message ahead of time cospi = cos(atan((float)reactive_power[2]/(float)real_power[2])) * 100; byte sd = stash.create(); stash.print("field1="); stash.print(String(kwh)); stash.print("&field2="); stash.print(String(cospi)); stash.print("&field3="); stash.print(String(jumlah_cap())); stash.save(); // generate the header with payload - note that the stash size is used, // and that a "stash descriptor" is passed in as argument using "$H" Stash::prepare(PSTR("POST /update HTTP/1.0" "\r\n" "Host: $F" "\r\n" "Connection: close" "\r\n" "X-THINGSPEAKAPIKEY: $F" "\r\n" "Content-Type: application/x-www-form-urlencoded" "\r\n" "Content-Length: $D" "\r\n" "\r\n" "$H"), website, PSTR(APIKEY), stash.size(), sd); // send the packet - this also releases all stash buffers once done session = ether.tcpSend(); } void initialize_ethernet(void){ // ethernet setup Serial2.println("\n[getDHCPandDNS]"); if (ether.begin(sizeof Ethernet::buffer, mymac,PA4) == 0) Serial2.println( "Failed to access Ethernet controller"); if (!ether.dhcpSetup()) Serial2.println("DHCP failed"); ether.printIp("My IP: ", ether.myip); // ether.printIp("Netmask: ", ether.mymask); ether.printIp("GW IP: ", ether.gwip); ether.printIp("DNS IP: ", ether.dnsip); if (!ether.dnsLookup(website)) Serial2.println("DNS failed"); ether.printIp("Server: ", ether.hisip); } void expSmoothing(){ // a = 0.001998001332667 --> Q0.31 = 4290675 // x(t) = a* u(t) + (1-a)* x(t-1) //Q24 voltage_magnitude[2] = ((int64_t)4292820 * (int64_t)voltage_magnitude[0] + (int64_t) 4290674475 * (int64_t)voltage_magnitude[1]) >> 32; voltage_magnitude[1] = voltage_magnitude[2]; current_magnitude[2] = (((int64_t)4292820 * (int64_t) current_magnitude[0]) + ((int64_t) 4290674475 * (int64_t)current_magnitude[1])) >> 32; current_magnitude[1] = current_magnitude[2]; real_power[2] = ((((int64_t)4292820 * (int64_t)real_power[0]) + ((int64_t) 4290674475 * (int64_t)real_power[1])) >> 32); real_power[1] = real_power[2]; reactive_power[2] = (((int64_t)4292820 * reactive_power[0]) + ((int64_t) 4290674475 * reactive_power[1])) >> 32; reactive_power[1] = reactive_power[2]; } void read_sensor(){ //read sensor , find magnitude square, and zero crossing detection for phase measurement // Vrms output = 0.234 = 0.3309... //Q3.12 adc_voltage_value = ((int16_t)(analogRead(voltage_sensor)) - (int16_t)2044); // adc_current_value = ((int16_t)(analogRead(current_sensor)) - (int16_t)1974); //fix static int16_t adc_V_filtered[15] = {0}; static int16_t adc_I_filtered[15] = {0}; int16_t v_original = 0; ///////////////////////////FIR function for filtering sensor output///////////////////////////////////// ///////////////////////////15th orde FIR ///////////////////////////////////// v_original = (((int32_t)adc_V_filtered[14] + (int32_t)adc_V_filtered[13] + (int32_t)adc_V_filtered[12] + (int32_t)adc_V_filtered[11] + (int32_t)adc_V_filtered[10] + (int32_t)adc_V_filtered[9] + (int32_t)adc_V_filtered[8] + (int32_t)adc_V_filtered[7] + (int32_t)adc_V_filtered[6] + (int32_t)adc_V_filtered[5] + (int32_t)adc_V_filtered[4] + (int32_t)adc_V_filtered[3] + (int32_t)adc_V_filtered[2] + (int32_t)adc_V_filtered[1] + (int32_t)adc_V_filtered[0] + (int32_t)adc_voltage_value ) >> 4); i_alpha= (((int32_t)adc_I_filtered[14] + (int32_t)adc_I_filtered[13] + (int32_t)adc_I_filtered[12] + (int32_t)adc_I_filtered[11] + (int32_t)adc_I_filtered[10] + (int32_t)adc_I_filtered[9] + (int32_t)adc_I_filtered[8] + (int32_t)adc_I_filtered[7] + (int32_t)adc_I_filtered[6] + (int32_t)adc_I_filtered[5] + (int32_t)adc_I_filtered[4] + (int32_t)adc_I_filtered[3] + (int32_t)adc_I_filtered[2] + (int32_t)adc_I_filtered[1] + (int32_t)adc_I_filtered[0] + (int32_t)adc_current_value ) >> 4); //delaying 15 samples for voltage value adc_V_filtered[14] = adc_V_filtered[13]; adc_V_filtered[13] = adc_V_filtered[12]; adc_V_filtered[12] = adc_V_filtered[11]; adc_V_filtered[11] = adc_V_filtered[10]; adc_V_filtered[10] = adc_V_filtered[9]; adc_V_filtered[9] = adc_V_filtered[8]; adc_V_filtered[8] = adc_V_filtered[7]; adc_V_filtered[7] = adc_V_filtered[6]; adc_V_filtered[6] = adc_V_filtered[5]; adc_V_filtered[5] = adc_V_filtered[4]; adc_V_filtered[4] = adc_V_filtered[3]; adc_V_filtered[3] = adc_V_filtered[2]; adc_V_filtered[2] = adc_V_filtered[1]; adc_V_filtered[1] = adc_V_filtered[0]; adc_V_filtered[0] = adc_voltage_value; //delaying 15 samples for current value adc_I_filtered[14] = adc_I_filtered[13]; adc_I_filtered[13] = adc_I_filtered[12]; adc_I_filtered[12] = adc_I_filtered[11]; adc_I_filtered[11] = adc_I_filtered[10]; adc_I_filtered[10] = adc_I_filtered[9]; adc_I_filtered[9] = adc_I_filtered[8]; adc_I_filtered[8] = adc_I_filtered[7]; adc_I_filtered[7] = adc_I_filtered[6]; adc_I_filtered[6] = adc_I_filtered[5]; adc_I_filtered[5] = adc_I_filtered[4]; adc_I_filtered[4] = adc_I_filtered[3]; adc_I_filtered[3] = adc_I_filtered[2]; adc_I_filtered[2] = adc_I_filtered[1]; adc_I_filtered[1] = adc_I_filtered[0]; adc_I_filtered[0] = adc_current_value; /////////////////////////////////////////////////////////////////////////////////////////////////////// v_alpha = current_delay[43]; v_beta = current_delay[93]; i_beta = voltage_delay[49]; // if(v_alpha >=0 && current_delay[44] <= 0){ // Serial2.println(2); // }else if(i_alpha >=0 && voltage_delay[0] <= 0){ // Serial2.println(1); // }else{ // Serial2.println(0); // } voltage_magnitude[0] = ((int32_t) v_alpha*(int32_t)v_alpha) + ((int32_t) v_beta * (int32_t)v_beta); current_magnitude[0] = ((int32_t) i_alpha*(int32_t)i_alpha) + ((int32_t) i_beta * (int32_t)i_beta); real_power[0] = ((int32_t) v_alpha*(int32_t)i_alpha) + ((int32_t) v_beta * (int32_t)i_beta); reactive_power[0] = ((int32_t) v_beta *(int32_t)i_alpha) - ((int32_t) v_alpha* (int32_t)i_beta); //delayig 50 voltage samples voltage_delay[50] = voltage_delay[49]; voltage_delay[49] = voltage_delay[48]; voltage_delay[48] = voltage_delay[47]; voltage_delay[47] = voltage_delay[46]; voltage_delay[46] = voltage_delay[45]; voltage_delay[45] = voltage_delay[44]; voltage_delay[44] = voltage_delay[43]; voltage_delay[43] = voltage_delay[42]; voltage_delay[42] = voltage_delay[41]; voltage_delay[41] = voltage_delay[40]; voltage_delay[40] = voltage_delay[39]; voltage_delay[39] = voltage_delay[38]; voltage_delay[38] = voltage_delay[37]; voltage_delay[37] = voltage_delay[36]; voltage_delay[36] = voltage_delay[35]; voltage_delay[35] = voltage_delay[34]; voltage_delay[34] = voltage_delay[33]; voltage_delay[33] = voltage_delay[32]; voltage_delay[32] = voltage_delay[31]; voltage_delay[31] = voltage_delay[30]; voltage_delay[30] = voltage_delay[29]; voltage_delay[29] = voltage_delay[28]; voltage_delay[28] = voltage_delay[27]; voltage_delay[27] = voltage_delay[26]; voltage_delay[26] = voltage_delay[25]; voltage_delay[25] = voltage_delay[24]; voltage_delay[24] = voltage_delay[23]; voltage_delay[23] = voltage_delay[22]; voltage_delay[22] = voltage_delay[21]; voltage_delay[21] = voltage_delay[20]; voltage_delay[20] = voltage_delay[19]; voltage_delay[19] = voltage_delay[18]; voltage_delay[18] = voltage_delay[17]; voltage_delay[17] = voltage_delay[16]; voltage_delay[16] = voltage_delay[15]; voltage_delay[15] = voltage_delay[14]; voltage_delay[14] = voltage_delay[13]; voltage_delay[13] = voltage_delay[12]; voltage_delay[12] = voltage_delay[11]; voltage_delay[11] = voltage_delay[10]; voltage_delay[10] = voltage_delay[9]; voltage_delay[9] = voltage_delay[8]; voltage_delay[8] = voltage_delay[7]; voltage_delay[7] = voltage_delay[6]; voltage_delay[6] = voltage_delay[5]; voltage_delay[5] = voltage_delay[4]; voltage_delay[4] = voltage_delay[3]; voltage_delay[3] = voltage_delay[2]; voltage_delay[2] = voltage_delay[1]; voltage_delay[1] = voltage_delay[0]; voltage_delay[0] = i_alpha; //delaying 50 urrent samples current_delay[108]= current_delay[107]; current_delay[107]= current_delay[106]; current_delay[106]= current_delay[105]; current_delay[105]= current_delay[104]; current_delay[104]= current_delay[103]; current_delay[103]= current_delay[102]; current_delay[102]= current_delay[101]; current_delay[101]= current_delay[100]; current_delay[100]= current_delay[99]; current_delay[99] = current_delay[98]; current_delay[98] = current_delay[97]; current_delay[97] = current_delay[96]; current_delay[96] = current_delay[95]; current_delay[95] = current_delay[94]; current_delay[94] = current_delay[93]; current_delay[93] = current_delay[92]; current_delay[92] = current_delay[91]; current_delay[91] = current_delay[90]; current_delay[90] = current_delay[89]; current_delay[89] = current_delay[88]; current_delay[88] = current_delay[87]; current_delay[87] = current_delay[86]; current_delay[86] = current_delay[85]; current_delay[85] = current_delay[84]; current_delay[84] = current_delay[83]; current_delay[83] = current_delay[82]; current_delay[82] = current_delay[81]; current_delay[81] = current_delay[80]; current_delay[80] = current_delay[79]; current_delay[79] = current_delay[78]; current_delay[78] = current_delay[77]; current_delay[77] = current_delay[76]; current_delay[76] = current_delay[75]; current_delay[75] = current_delay[74]; current_delay[74] = current_delay[73]; current_delay[73] = current_delay[72]; current_delay[72] = current_delay[71]; current_delay[71] = current_delay[70]; current_delay[70] = current_delay[69]; current_delay[69] = current_delay[68]; current_delay[68] = current_delay[67]; current_delay[67] = current_delay[66]; current_delay[66] = current_delay[65]; current_delay[65] = current_delay[64]; current_delay[64] = current_delay[63]; current_delay[63] = current_delay[62]; current_delay[62] = current_delay[61]; current_delay[61] = current_delay[60]; current_delay[60] = current_delay[59]; current_delay[59] = current_delay[58]; current_delay[58] = current_delay[57];//59 current_delay[57] = current_delay[56];//58 current_delay[56] = current_delay[55];//57 current_delay[55] = current_delay[54];//56 current_delay[54] = current_delay[53];//55 current_delay[53] = current_delay[52];//54 current_delay[52] = current_delay[51];//53 current_delay[51] = current_delay[50];//52 current_delay[50] = current_delay[49]; //51 current_delay[49] = current_delay[48]; //delay 50 samples current_delay[48] = current_delay[47]; current_delay[47] = current_delay[46]; current_delay[46] = current_delay[45]; current_delay[45] = current_delay[44]; current_delay[44] = current_delay[43]; current_delay[43] = current_delay[42]; current_delay[42] = current_delay[41]; current_delay[41] = current_delay[40]; current_delay[40] = current_delay[39]; current_delay[39] = current_delay[38]; current_delay[38] = current_delay[37]; current_delay[37] = current_delay[36]; current_delay[36] = current_delay[35]; current_delay[35] = current_delay[34]; current_delay[34] = current_delay[33]; current_delay[33] = current_delay[32]; current_delay[32] = current_delay[31]; current_delay[31] = current_delay[30]; current_delay[30] = current_delay[29]; current_delay[29] = current_delay[28]; current_delay[28] = current_delay[27]; current_delay[27] = current_delay[26]; current_delay[26] = current_delay[25]; current_delay[25] = current_delay[24]; current_delay[24] = current_delay[23]; current_delay[23] = current_delay[22]; current_delay[22] = current_delay[21]; current_delay[21] = current_delay[20]; current_delay[20] = current_delay[19]; current_delay[19] = current_delay[18]; current_delay[18] = current_delay[17]; current_delay[17] = current_delay[16]; current_delay[16] = current_delay[15]; current_delay[15] = current_delay[14]; current_delay[14] = current_delay[13]; current_delay[13] = current_delay[12]; current_delay[12] = current_delay[11]; current_delay[11] = current_delay[10]; current_delay[10] = current_delay[9]; current_delay[9] = current_delay[8]; current_delay[8] = current_delay[7]; current_delay[7] = current_delay[6]; current_delay[6] = current_delay[5]; current_delay[5] = current_delay[4]; current_delay[4] = current_delay[3]; current_delay[3] = current_delay[2]; current_delay[2] = current_delay[1]; current_delay[1] = current_delay[0]; current_delay[0] = v_original; } void SAL(){ //// succesive approximation algorithm with fuzzy int total = 0; int index = 0; input_V =sqrt(voltage_magnitude[2]); input_Q = (reactive_power[2] * (float)2.11 / 1438); if(input_Q > 0){ fuzzyfication(); rule_base(); defuzzyfication(); total = jumlah_cap() + (int)C; }else if(input_Q < 0){ input_Q *= -1; fuzzyfication(); rule_base(); defuzzyfication(); total = jumlah_cap() - (int)C; } // fuzzy logic run after input_Q were defined reset_cap(); if (total > 119){ // saturation total = 119; }else if(total < 0){ total = 0; } while (total != jumlah_cap()){ // this loop run succesive approximation algorithm function if (jumlah_cap() > total){ c_state[index] = 1; c_state[index-1] = 0; }else if (jumlah_cap() < total){ c_state[index] = 1; } index++; } /* PS : run tested on 01 may 2015, 22:14 +07.00 GMT * Worst Execution time : 83 us * running and working properly */ } int jumlah_cap(){ // looping for determine sum of which capacitors were activated int total = 0; if (c_state[0] == 1){ total+= capacitor[0]; } if (c_state[1] == 1){ total+= capacitor[1]; } if (c_state[2] == 1){ total+= capacitor[2]; } if (c_state[3] == 1){ total+= capacitor[3]; } if (c_state[4] == 1){ total+= capacitor[4]; } if (c_state[5] == 1){ total+= capacitor[5]; } if (c_state[6] == 1){ total+= capacitor[6]; } if (c_state[7] == 1){ total+= capacitor[7]; } return total; } void reset_cap(){ // looping for reset all capacitor deactivate c_state[0] = 0; c_state[1] = 0; c_state[2] = 0; c_state[3] = 0; c_state[4] = 0; c_state[5] = 0; c_state[6] = 0; c_state[7] = 0; } void fuzzyfication(){ // 2 input 3 MF ////////////////////////////////////////////////////////////////////// FUZZIFIKASI UNTUK INPUT DAYA Reaktif ////////////////////////////////////////////////// /* * Membership function for input Q is formatted by Q16.0(0-900) * 1 / 450 ==> representated by Q0.32 --> 9544372 * Membership degree represented by Q0.32 format * 4294967295 --> Q0.32, real value 1 */ if (input_Q == 0){ // Q = 0 (*Reactive Power) MD_Q_mf1 = 1; MD_Q_mf2 = 0; MD_Q_mf3 = 0; } if(input_Q > 0 && input_Q < 450 ){ // 0 < Q < 450 MD_Q_mf1 = (450 -input_Q)*(0.002222222222222); MD_Q_mf2 = (input_Q- 0)*(0.002222222222222); MD_Q_mf3 = 0; } if (input_Q == 450){ // Q = 450 MD_Q_mf1 = 0; MD_Q_mf2 = 1; MD_Q_mf3 = 0; } if (input_Q > 450 && input_Q < 900){ // 450 < Q < 900 MD_Q_mf1 = 0; MD_Q_mf2 = (900 - input_Q)*(0.002222222222222); MD_Q_mf3 = (input_Q- 450)*(0.002222222222222); } if (input_Q == 900){ // Q = 900 MD_Q_mf1 = 0; MD_Q_mf2 = 0; MD_Q_mf3 = 1; } // output MD_Q_xxx is Q0.32 format (32 bit) /* * Membership function for input V is formatted by Q16.0 (200-240) * 1 / 20 ==> representated by Q0.32 --> 214748365 * Membership degree represented by Q0.32 format * 4294967295 --> Q0.32, real value 1 */ if(input_V == 200){ MD_V_mf1 = 1; MD_V_mf2 = 0; MD_V_mf3 = 0; } if(input_V > 200 && input_V < 220){ MD_V_mf1 = (220 - input_V)*(0.05); MD_V_mf2 = (input_V - 200)*(0.05);; MD_V_mf3 = 0; } if(input_V == 220){ MD_V_mf1 = 0; MD_V_mf2 = 4294967295; MD_V_mf3 = 0; } if(input_V > 220 && input_V < 240){ MD_V_mf1 = 0; MD_V_mf2 = (240 - input_V)*(0.05); MD_V_mf3 = (input_V - 220)*(0.05); } if(input_V == 240){ MD_V_mf1 = 0; MD_V_mf2 = 0; MD_V_mf3 = 1; } // output MD_V_xxx is Q0.32 format (32 bit) /* PS : Tested, properly working and running * test date : 01 may 2018, 11:43 +7.00 GMT */ } void rule_base(){ // linear fuzzy sugeno w1 = fmin(MD_V_mf1,MD_Q_mf1); w2 = fmin(MD_V_mf1,MD_Q_mf2); w3 = fmin(MD_V_mf1,MD_Q_mf3); w4 = fmin(MD_V_mf2,MD_Q_mf1); w5 = fmin(MD_V_mf2,MD_Q_mf2); w6 = fmin(MD_V_mf2,MD_Q_mf3); w7 = fmin(MD_V_mf3,MD_Q_mf1); w8 = fmin(MD_V_mf3,MD_Q_mf2); w9 = fmin(MD_V_mf3,MD_Q_mf3); /*Multiplier with input_Q represented by Q0.32 format *Multiplier with input_V represented by Q0.32 format *f output is represented by format Q7.25 because capacitor till 71 uF */ // Q31.32 Q31.32 f1 = (-0.0984107773506878*input_V +0.073647116436796*input_Q + 19.2971550754897 ) ; f2 = (-0.314006058882155*input_V +0.0723104795871478*input_Q + 66.0972575819782 ) ; f3 = (-0.530389444779454*input_V + 0.0732144646871962*input_Q + 112.242244136792 ) ; f4 = (-0.115858496023567*input_V + 0.0661618926810254*input_Q + 25.4938570942755) ; f5 = (-0.266862262069458*input_V + 0.066139860856694*input_Q + 58.5333744040901) ; f6 = (-0.41905251652591*input_V + 0.0661498477671102*input_Q + 91.8375563596481 ) ; f7 = (-0.0961152446921975*input_V + 0.0588192921109165*input_Q + 23.4740542003612 ); f8 = (-0.233130636789534*input_V + 0.0600555452759156*input_Q + 53.8237245667409) ; f9 = (-0.371143994042139*input_V + 0.0585448877198033*input_Q + 85.771519256901 ) ; } void defuzzyfication(){ // weight average method defuzzyfication /* Q7.56 * C = ----- = C Q(7.25) * Q31.32 */ C = round( (f1 * w1 + f2 * w2 + f3* w3 + f4 *w4 + f5*w5 +f6*w6 + f7*w7 + f8*w8 + f9*w9)/ ( w1 + w2 + w3 + w4 + w5 + w6 + w7 + w8 + w9) ) ; }
[ "noreply@github.com" ]
ahmaddidiks.noreply@github.com
800968f66f3d54a99fe5068bc244ec3c695b10ea
fdde0c634bb6f38bdb0a632a25fd769e2c68c211
/src/rpc/masternode.cpp
78db34d8e13275258f172b49ce75845f6a102ac8
[ "MIT" ]
permissive
BulldogCrew/bulldog
a29bc4edfff4ab4e274a52dc4274395a548a11dc
833ac01aa7b8a7d12dc410ce6bb21a1ac01b2bb3
refs/heads/master
2020-06-24T06:02:15.605980
2019-08-14T23:29:54
2019-08-14T23:29:54
198,871,261
2
0
null
null
null
null
UTF-8
C++
false
false
38,316
cpp
// Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2015-2018 The bulldog developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "activemasternode.h" #include "db.h" #include "init.h" #include "main.h" #include "masternode-budget.h" #include "masternode-payments.h" #include "masternodeconfig.h" #include "masternodeman.h" #include "rpc/server.h" #include "utilmoneystr.h" #include <univalue.h> #include <boost/tokenizer.hpp> #include <fstream> UniValue getpoolinfo(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getpoolinfo\n" "\nReturns anonymous pool-related information\n" "\nResult:\n" "{\n" " \"current\": \"addr\", (string) bulldog address of current masternode\n" " \"state\": xxxx, (string) unknown\n" " \"entries\": xxxx, (numeric) Number of entries\n" " \"accepted\": xxxx, (numeric) Number of entries accepted\n" "}\n" "\nExamples:\n" + HelpExampleCli("getpoolinfo", "") + HelpExampleRpc("getpoolinfo", "")); UniValue obj(UniValue::VOBJ); obj.push_back(Pair("current_masternode", mnodeman.GetCurrentMasterNode()->addr.ToString())); obj.push_back(Pair("state", obfuScationPool.GetState())); obj.push_back(Pair("entries", obfuScationPool.GetEntriesCount())); obj.push_back(Pair("entries_accepted", obfuScationPool.GetCountEntriesAccepted())); return obj; } UniValue listmasternodes(const UniValue& params, bool fHelp) { std::string strFilter = ""; if (params.size() == 1) strFilter = params[0].get_str(); if (fHelp || (params.size() > 1)) throw runtime_error( "listmasternodes ( \"filter\" )\n" "\nGet a ranked list of masternodes\n" "\nArguments:\n" "1. \"filter\" (string, optional) Filter search text. Partial match by txhash, status, or addr.\n" "\nResult:\n" "[\n" " {\n" " \"rank\": n, (numeric) Masternode Rank (or 0 if not enabled)\n" " \"txhash\": \"hash\", (string) Collateral transaction hash\n" " \"outidx\": n, (numeric) Collateral transaction output index\n" " \"pubkey\": \"key\", (string) Masternode public key used for message broadcasting\n" " \"status\": s, (string) Status (ENABLED/EXPIRED/REMOVE/etc)\n" " \"addr\": \"addr\", (string) Masternode bulldog address\n" " \"version\": v, (numeric) Masternode protocol version\n" " \"lastseen\": ttt, (numeric) The time in seconds since epoch (Jan 1 1970 GMT) of the last seen\n" " \"activetime\": ttt, (numeric) The time in seconds since epoch (Jan 1 1970 GMT) masternode has been active\n" " \"lastpaid\": ttt, (numeric) The time in seconds since epoch (Jan 1 1970 GMT) masternode was last paid\n" " }\n" " ,...\n" "]\n" "\nExamples:\n" + HelpExampleCli("listmasternodes", "") + HelpExampleRpc("listmasternodes", "")); UniValue ret(UniValue::VARR); int nHeight; { LOCK(cs_main); CBlockIndex* pindex = chainActive.Tip(); if(!pindex) return 0; nHeight = pindex->nHeight; } std::vector<pair<int, CMasternode> > vMasternodeRanks = mnodeman.GetMasternodeRanks(nHeight); BOOST_FOREACH (PAIRTYPE(int, CMasternode) & s, vMasternodeRanks) { UniValue obj(UniValue::VOBJ); std::string strVin = s.second.vin.prevout.ToStringShort(); std::string strTxHash = s.second.vin.prevout.hash.ToString(); uint32_t oIdx = s.second.vin.prevout.n; CMasternode* mn = mnodeman.Find(s.second.vin); if (mn != NULL) { if (strFilter != "" && strTxHash.find(strFilter) == string::npos && mn->Status().find(strFilter) == string::npos && CBitcoinAddress(mn->pubKeyCollateralAddress.GetID()).ToString().find(strFilter) == string::npos) continue; std::string strStatus = mn->Status(); std::string strHost; int port; SplitHostPort(mn->addr.ToString(), port, strHost); CNetAddr node = CNetAddr(strHost, false); std::string strNetwork = GetNetworkName(node.GetNetwork()); obj.push_back(Pair("rank", (strStatus == "ENABLED" ? s.first : 0))); obj.push_back(Pair("network", strNetwork)); obj.push_back(Pair("txhash", strTxHash)); obj.push_back(Pair("outidx", (uint64_t)oIdx)); obj.push_back(Pair("pubkey", HexStr(mn->pubKeyMasternode))); obj.push_back(Pair("status", strStatus)); obj.push_back(Pair("addr", CBitcoinAddress(mn->pubKeyCollateralAddress.GetID()).ToString())); obj.push_back(Pair("version", mn->protocolVersion)); obj.push_back(Pair("lastseen", (int64_t)mn->lastPing.sigTime)); obj.push_back(Pair("activetime", (int64_t)(mn->lastPing.sigTime - mn->sigTime))); obj.push_back(Pair("lastpaid", (int64_t)mn->GetLastPaid())); ret.push_back(obj); } } return ret; } UniValue masternodeconnect(const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 1)) throw runtime_error( "masternodeconnect \"address\"\n" "\nAttempts to connect to specified masternode address\n" "\nArguments:\n" "1. \"address\" (string, required) IP or net address to connect to\n" "\nExamples:\n" + HelpExampleCli("masternodeconnect", "\"192.168.0.6:16740\"") + HelpExampleRpc("masternodeconnect", "\"192.168.0.6:16740\"")); std::string strAddress = params[0].get_str(); CService addr = CService(strAddress); CNode* pnode = ConnectNode((CAddress)addr, NULL, false); if (pnode) { pnode->Release(); return NullUniValue; } else { throw runtime_error("error connecting\n"); } } UniValue getmasternodecount (const UniValue& params, bool fHelp) { if (fHelp || (params.size() > 0)) throw runtime_error( "getmasternodecount\n" "\nGet masternode count values\n" "\nResult:\n" "{\n" " \"total\": n, (numeric) Total masternodes\n" " \"stable\": n, (numeric) Stable count\n" " \"obfcompat\": n, (numeric) Obfuscation Compatible\n" " \"enabled\": n, (numeric) Enabled masternodes\n" " \"inqueue\": n (numeric) Masternodes in queue\n" "}\n" "\nExamples:\n" + HelpExampleCli("getmasternodecount", "") + HelpExampleRpc("getmasternodecount", "")); UniValue obj(UniValue::VOBJ); int nCount = 0; int ipv4 = 0, ipv6 = 0, onion = 0; if (chainActive.Tip()) mnodeman.GetNextMasternodeInQueueForPayment(chainActive.Tip()->nHeight, true, nCount); mnodeman.CountNetworks(ActiveProtocol(), ipv4, ipv6, onion); obj.push_back(Pair("total", mnodeman.size())); obj.push_back(Pair("stable", mnodeman.stable_size())); obj.push_back(Pair("obfcompat", mnodeman.CountEnabled(ActiveProtocol()))); obj.push_back(Pair("enabled", mnodeman.CountEnabled())); obj.push_back(Pair("inqueue", nCount)); obj.push_back(Pair("ipv4", ipv4)); obj.push_back(Pair("ipv6", ipv6)); obj.push_back(Pair("onion", onion)); return obj; } UniValue masternodecurrent (const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 0)) throw runtime_error( "masternodecurrent\n" "\nGet current masternode winner\n" "\nResult:\n" "{\n" " \"protocol\": xxxx, (numeric) Protocol version\n" " \"txhash\": \"xxxx\", (string) Collateral transaction hash\n" " \"pubkey\": \"xxxx\", (string) MN Public key\n" " \"lastseen\": xxx, (numeric) Time since epoch of last seen\n" " \"activeseconds\": xxx, (numeric) Seconds MN has been active\n" "}\n" "\nExamples:\n" + HelpExampleCli("masternodecurrent", "") + HelpExampleRpc("masternodecurrent", "")); CMasternode* winner = mnodeman.GetCurrentMasterNode(1); if (winner) { UniValue obj(UniValue::VOBJ); obj.push_back(Pair("protocol", (int64_t)winner->protocolVersion)); obj.push_back(Pair("txhash", winner->vin.prevout.hash.ToString())); obj.push_back(Pair("pubkey", CBitcoinAddress(winner->pubKeyCollateralAddress.GetID()).ToString())); obj.push_back(Pair("lastseen", (winner->lastPing == CMasternodePing()) ? winner->sigTime : (int64_t)winner->lastPing.sigTime)); obj.push_back(Pair("activeseconds", (winner->lastPing == CMasternodePing()) ? 0 : (int64_t)(winner->lastPing.sigTime - winner->sigTime))); return obj; } throw runtime_error("unknown"); } UniValue masternodedebug (const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 0)) throw runtime_error( "masternodedebug\n" "\nPrint masternode status\n" "\nResult:\n" "\"status\" (string) Masternode status message\n" "\nExamples:\n" + HelpExampleCli("masternodedebug", "") + HelpExampleRpc("masternodedebug", "")); if (activeMasternode.status != ACTIVE_MASTERNODE_INITIAL || !masternodeSync.IsSynced()) return activeMasternode.GetStatus(); CTxIn vin = CTxIn(); CPubKey pubkey; CKey key; if (!activeMasternode.GetMasterNodeVin(vin, pubkey, key)) throw runtime_error("Missing masternode input, please look at the documentation for instructions on masternode creation\n"); else return activeMasternode.GetStatus(); } UniValue startmasternode (const UniValue& params, bool fHelp) { std::string strCommand; if (params.size() >= 1) { strCommand = params[0].get_str(); // Backwards compatibility with legacy 'masternode' super-command forwarder if (strCommand == "start") strCommand = "local"; if (strCommand == "start-alias") strCommand = "alias"; if (strCommand == "start-all") strCommand = "all"; if (strCommand == "start-many") strCommand = "many"; if (strCommand == "start-missing") strCommand = "missing"; if (strCommand == "start-disabled") strCommand = "disabled"; } if (fHelp || params.size() < 2 || params.size() > 3 || (params.size() == 2 && (strCommand != "local" && strCommand != "all" && strCommand != "many" && strCommand != "missing" && strCommand != "disabled")) || (params.size() == 3 && strCommand != "alias")) throw runtime_error( "startmasternode \"local|all|many|missing|disabled|alias\" lockwallet ( \"alias\" )\n" "\nAttempts to start one or more masternode(s)\n" "\nArguments:\n" "1. set (string, required) Specify which set of masternode(s) to start.\n" "2. lockwallet (boolean, required) Lock wallet after completion.\n" "3. alias (string) Masternode alias. Required if using 'alias' as the set.\n" "\nResult: (for 'local' set):\n" "\"status\" (string) Masternode status message\n" "\nResult: (for other sets):\n" "{\n" " \"overall\": \"xxxx\", (string) Overall status message\n" " \"detail\": [\n" " {\n" " \"node\": \"xxxx\", (string) Node name or alias\n" " \"result\": \"xxxx\", (string) 'success' or 'failed'\n" " \"error\": \"xxxx\" (string) Error message, if failed\n" " }\n" " ,...\n" " ]\n" "}\n" "\nExamples:\n" + HelpExampleCli("startmasternode", "\"alias\" \"0\" \"my_mn\"") + HelpExampleRpc("startmasternode", "\"alias\" \"0\" \"my_mn\"")); bool fLock = (params[1].get_str() == "true" ? true : false); EnsureWalletIsUnlocked(); if (strCommand == "local") { if (!fMasterNode) throw runtime_error("you must set masternode=1 in the configuration\n"); if (activeMasternode.status != ACTIVE_MASTERNODE_STARTED) { activeMasternode.status = ACTIVE_MASTERNODE_INITIAL; // TODO: consider better way activeMasternode.ManageStatus(); if (fLock) pwalletMain->Lock(); } return activeMasternode.GetStatus(); } if (strCommand == "all" || strCommand == "many" || strCommand == "missing" || strCommand == "disabled") { if ((strCommand == "missing" || strCommand == "disabled") && (masternodeSync.RequestedMasternodeAssets <= MASTERNODE_SYNC_LIST || masternodeSync.RequestedMasternodeAssets == MASTERNODE_SYNC_FAILED)) { throw runtime_error("You can't use this command until masternode list is synced\n"); } std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries; mnEntries = masternodeConfig.getEntries(); int successful = 0; int failed = 0; UniValue resultsObj(UniValue::VARR); BOOST_FOREACH (CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) { std::string errorMessage; int nIndex; if(!mne.castOutputIndex(nIndex)) continue; CTxIn vin = CTxIn(uint256(mne.getTxHash()), uint32_t(nIndex)); CMasternode* pmn = mnodeman.Find(vin); CMasternodeBroadcast mnb; if (pmn != NULL) { if (strCommand == "missing") continue; if (strCommand == "disabled" && pmn->IsEnabled()) continue; } bool result = activeMasternode.CreateBroadcast(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), errorMessage, mnb); UniValue statusObj(UniValue::VOBJ); statusObj.push_back(Pair("alias", mne.getAlias())); statusObj.push_back(Pair("result", result ? "success" : "failed")); if (result) { successful++; statusObj.push_back(Pair("error", "")); } else { failed++; statusObj.push_back(Pair("error", errorMessage)); } resultsObj.push_back(statusObj); } if (fLock) pwalletMain->Lock(); UniValue returnObj(UniValue::VOBJ); returnObj.push_back(Pair("overall", strprintf("Successfully started %d masternodes, failed to start %d, total %d", successful, failed, successful + failed))); returnObj.push_back(Pair("detail", resultsObj)); return returnObj; } if (strCommand == "alias") { std::string alias = params[2].get_str(); bool found = false; int successful = 0; int failed = 0; UniValue resultsObj(UniValue::VARR); UniValue statusObj(UniValue::VOBJ); statusObj.push_back(Pair("alias", alias)); BOOST_FOREACH (CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) { if (mne.getAlias() == alias) { found = true; std::string errorMessage; CMasternodeBroadcast mnb; bool result = activeMasternode.CreateBroadcast(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), errorMessage, mnb); statusObj.push_back(Pair("result", result ? "successful" : "failed")); if (result) { successful++; mnodeman.UpdateMasternodeList(mnb); mnb.Relay(); } else { failed++; statusObj.push_back(Pair("errorMessage", errorMessage)); } break; } } if (!found) { failed++; statusObj.push_back(Pair("result", "failed")); statusObj.push_back(Pair("error", "could not find alias in config. Verify with list-conf.")); } resultsObj.push_back(statusObj); if (fLock) pwalletMain->Lock(); UniValue returnObj(UniValue::VOBJ); returnObj.push_back(Pair("overall", strprintf("Successfully started %d masternodes, failed to start %d, total %d", successful, failed, successful + failed))); returnObj.push_back(Pair("detail", resultsObj)); return returnObj; } return NullUniValue; } UniValue createmasternodekey (const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 0)) throw runtime_error( "createmasternodekey\n" "\nCreate a new masternode private key\n" "\nResult:\n" "\"key\" (string) Masternode private key\n" "\nExamples:\n" + HelpExampleCli("createmasternodekey", "") + HelpExampleRpc("createmasternodekey", "")); CKey secret; secret.MakeNewKey(false); return CBitcoinSecret(secret).ToString(); } UniValue getmasternodeoutputs (const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 0)) throw runtime_error( "getmasternodeoutputs\n" "\nPrint all masternode transaction outputs\n" "\nResult:\n" "[\n" " {\n" " \"txhash\": \"xxxx\", (string) output transaction hash\n" " \"outputidx\": n (numeric) output index number\n" " }\n" " ,...\n" "]\n" "\nExamples:\n" + HelpExampleCli("getmasternodeoutputs", "") + HelpExampleRpc("getmasternodeoutputs", "")); // Find possible candidates vector<COutput> possibleCoins = activeMasternode.SelectCoinsMasternode(); UniValue ret(UniValue::VARR); BOOST_FOREACH (COutput& out, possibleCoins) { UniValue obj(UniValue::VOBJ); obj.push_back(Pair("txhash", out.tx->GetHash().ToString())); obj.push_back(Pair("outputidx", out.i)); ret.push_back(obj); } return ret; } UniValue listmasternodeconf (const UniValue& params, bool fHelp) { std::string strFilter = ""; if (params.size() == 1) strFilter = params[0].get_str(); if (fHelp || (params.size() > 1)) throw runtime_error( "listmasternodeconf ( \"filter\" )\n" "\nPrint masternode.conf in JSON format\n" "\nArguments:\n" "1. \"filter\" (string, optional) Filter search text. Partial match on alias, address, txHash, or status.\n" "\nResult:\n" "[\n" " {\n" " \"alias\": \"xxxx\", (string) masternode alias\n" " \"address\": \"xxxx\", (string) masternode IP address\n" " \"privateKey\": \"xxxx\", (string) masternode private key\n" " \"txHash\": \"xxxx\", (string) transaction hash\n" " \"outputIndex\": n, (numeric) transaction output index\n" " \"status\": \"xxxx\" (string) masternode status\n" " }\n" " ,...\n" "]\n" "\nExamples:\n" + HelpExampleCli("listmasternodeconf", "") + HelpExampleRpc("listmasternodeconf", "")); std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries; mnEntries = masternodeConfig.getEntries(); UniValue ret(UniValue::VARR); BOOST_FOREACH (CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) { int nIndex; if(!mne.castOutputIndex(nIndex)) continue; CTxIn vin = CTxIn(uint256(mne.getTxHash()), uint32_t(nIndex)); CMasternode* pmn = mnodeman.Find(vin); std::string strStatus = pmn ? pmn->Status() : "MISSING"; if (strFilter != "" && mne.getAlias().find(strFilter) == string::npos && mne.getIp().find(strFilter) == string::npos && mne.getTxHash().find(strFilter) == string::npos && strStatus.find(strFilter) == string::npos) continue; UniValue mnObj(UniValue::VOBJ); mnObj.push_back(Pair("alias", mne.getAlias())); mnObj.push_back(Pair("address", mne.getIp())); mnObj.push_back(Pair("privateKey", mne.getPrivKey())); mnObj.push_back(Pair("txHash", mne.getTxHash())); mnObj.push_back(Pair("outputIndex", mne.getOutputIndex())); mnObj.push_back(Pair("status", strStatus)); ret.push_back(mnObj); } return ret; } UniValue getmasternodestatus (const UniValue& params, bool fHelp) { if (fHelp || (params.size() != 0)) throw runtime_error( "getmasternodestatus\n" "\nPrint masternode status\n" "\nResult:\n" "{\n" " \"txhash\": \"xxxx\", (string) Collateral transaction hash\n" " \"outputidx\": n, (numeric) Collateral transaction output index number\n" " \"netaddr\": \"xxxx\", (string) Masternode network address\n" " \"addr\": \"xxxx\", (string) bulldog address for masternode payments\n" " \"status\": \"xxxx\", (string) Masternode status\n" " \"message\": \"xxxx\" (string) Masternode status message\n" "}\n" "\nExamples:\n" + HelpExampleCli("getmasternodestatus", "") + HelpExampleRpc("getmasternodestatus", "")); if (!fMasterNode) throw runtime_error("This is not a masternode"); CMasternode* pmn = mnodeman.Find(activeMasternode.vin); if (pmn) { UniValue mnObj(UniValue::VOBJ); mnObj.push_back(Pair("txhash", activeMasternode.vin.prevout.hash.ToString())); mnObj.push_back(Pair("outputidx", (uint64_t)activeMasternode.vin.prevout.n)); mnObj.push_back(Pair("netaddr", activeMasternode.service.ToString())); mnObj.push_back(Pair("addr", CBitcoinAddress(pmn->pubKeyCollateralAddress.GetID()).ToString())); mnObj.push_back(Pair("status", activeMasternode.status)); mnObj.push_back(Pair("message", activeMasternode.GetStatus())); return mnObj; } throw runtime_error("Masternode not found in the list of available masternodes. Current status: " + activeMasternode.GetStatus()); } UniValue getmasternodewinners (const UniValue& params, bool fHelp) { if (fHelp || params.size() > 3) throw runtime_error( "getmasternodewinners ( blocks \"filter\" )\n" "\nPrint the masternode winners for the last n blocks\n" "\nArguments:\n" "1. blocks (numeric, optional) Number of previous blocks to show (default: 10)\n" "2. filter (string, optional) Search filter matching MN address\n" "\nResult (single winner):\n" "[\n" " {\n" " \"nHeight\": n, (numeric) block height\n" " \"winner\": {\n" " \"address\": \"xxxx\", (string) bulldog MN Address\n" " \"nVotes\": n, (numeric) Number of votes for winner\n" " }\n" " }\n" " ,...\n" "]\n" "\nResult (multiple winners):\n" "[\n" " {\n" " \"nHeight\": n, (numeric) block height\n" " \"winner\": [\n" " {\n" " \"address\": \"xxxx\", (string) bulldog MN Address\n" " \"nVotes\": n, (numeric) Number of votes for winner\n" " }\n" " ,...\n" " ]\n" " }\n" " ,...\n" "]\n" "\nExamples:\n" + HelpExampleCli("getmasternodewinners", "") + HelpExampleRpc("getmasternodewinners", "")); int nHeight; { LOCK(cs_main); CBlockIndex* pindex = chainActive.Tip(); if(!pindex) return 0; nHeight = pindex->nHeight; } int nLast = 10; std::string strFilter = ""; if (params.size() >= 1) nLast = atoi(params[0].get_str()); if (params.size() == 2) strFilter = params[1].get_str(); UniValue ret(UniValue::VARR); for (int i = nHeight - nLast; i < nHeight + 20; i++) { UniValue obj(UniValue::VOBJ); obj.push_back(Pair("nHeight", i)); std::string strPayment = GetRequiredPaymentsString(i); if (strFilter != "" && strPayment.find(strFilter) == std::string::npos) continue; if (strPayment.find(',') != std::string::npos) { UniValue winner(UniValue::VARR); boost::char_separator<char> sep(","); boost::tokenizer< boost::char_separator<char> > tokens(strPayment, sep); BOOST_FOREACH (const string& t, tokens) { UniValue addr(UniValue::VOBJ); std::size_t pos = t.find(":"); std::string strAddress = t.substr(0,pos); uint64_t nVotes = atoi(t.substr(pos+1)); addr.push_back(Pair("address", strAddress)); addr.push_back(Pair("nVotes", nVotes)); winner.push_back(addr); } obj.push_back(Pair("winner", winner)); } else if (strPayment.find("Unknown") == std::string::npos) { UniValue winner(UniValue::VOBJ); std::size_t pos = strPayment.find(":"); std::string strAddress = strPayment.substr(0,pos); uint64_t nVotes = atoi(strPayment.substr(pos+1)); winner.push_back(Pair("address", strAddress)); winner.push_back(Pair("nVotes", nVotes)); obj.push_back(Pair("winner", winner)); } else { UniValue winner(UniValue::VOBJ); winner.push_back(Pair("address", strPayment)); winner.push_back(Pair("nVotes", 0)); obj.push_back(Pair("winner", winner)); } ret.push_back(obj); } return ret; } UniValue getmasternodescores (const UniValue& params, bool fHelp) { if (fHelp || params.size() > 1) throw runtime_error( "getmasternodescores ( blocks )\n" "\nPrint list of winning masternode by score\n" "\nArguments:\n" "1. blocks (numeric, optional) Show the last n blocks (default 10)\n" "\nResult:\n" "{\n" " xxxx: \"xxxx\" (numeric : string) Block height : Masternode hash\n" " ,...\n" "}\n" "\nExamples:\n" + HelpExampleCli("getmasternodescores", "") + HelpExampleRpc("getmasternodescores", "")); int nLast = 10; if (params.size() == 1) { try { nLast = std::stoi(params[0].get_str()); } catch (const std::invalid_argument&) { throw runtime_error("Exception on param 2"); } } UniValue obj(UniValue::VOBJ); std::vector<CMasternode> vMasternodes = mnodeman.GetFullMasternodeVector(); for (int nHeight = chainActive.Tip()->nHeight - nLast; nHeight < chainActive.Tip()->nHeight + 20; nHeight++) { uint256 nHigh = 0; CMasternode* pBestMasternode = NULL; BOOST_FOREACH (CMasternode& mn, vMasternodes) { uint256 n = mn.CalculateScore(1, nHeight - 100); if (n > nHigh) { nHigh = n; pBestMasternode = &mn; } } if (pBestMasternode) obj.push_back(Pair(strprintf("%d", nHeight), pBestMasternode->vin.prevout.hash.ToString().c_str())); } return obj; } bool DecodeHexMnb(CMasternodeBroadcast& mnb, std::string strHexMnb) { if (!IsHex(strHexMnb)) return false; vector<unsigned char> mnbData(ParseHex(strHexMnb)); CDataStream ssData(mnbData, SER_NETWORK, PROTOCOL_VERSION); try { ssData >> mnb; } catch (const std::exception&) { return false; } return true; } UniValue createmasternodebroadcast(const UniValue& params, bool fHelp) { string strCommand; if (params.size() >= 1) strCommand = params[0].get_str(); if (fHelp || (strCommand != "alias" && strCommand != "all") || (strCommand == "alias" && params.size() < 2)) throw runtime_error( "createmasternodebroadcast \"command\" ( \"alias\")\n" "\nCreates a masternode broadcast message for one or all masternodes configured in masternode.conf\n" + HelpRequiringPassphrase() + "\n" "\nArguments:\n" "1. \"command\" (string, required) \"alias\" for single masternode, \"all\" for all masternodes\n" "2. \"alias\" (string, required if command is \"alias\") Alias of the masternode\n" "\nResult (all):\n" "{\n" " \"overall\": \"xxx\", (string) Overall status message indicating number of successes.\n" " \"detail\": [ (array) JSON array of broadcast objects.\n" " {\n" " \"alias\": \"xxx\", (string) Alias of the masternode.\n" " \"success\": true|false, (boolean) Success status.\n" " \"hex\": \"xxx\" (string, if success=true) Hex encoded broadcast message.\n" " \"error_message\": \"xxx\" (string, if success=false) Error message, if any.\n" " }\n" " ,...\n" " ]\n" "}\n" "\nResult (alias):\n" "{\n" " \"alias\": \"xxx\", (string) Alias of the masternode.\n" " \"success\": true|false, (boolean) Success status.\n" " \"hex\": \"xxx\" (string, if success=true) Hex encoded broadcast message.\n" " \"error_message\": \"xxx\" (string, if success=false) Error message, if any.\n" "}\n" "\nExamples:\n" + HelpExampleCli("createmasternodebroadcast", "alias mymn1") + HelpExampleRpc("createmasternodebroadcast", "alias mymn1")); EnsureWalletIsUnlocked(); if (strCommand == "alias") { // wait for reindex and/or import to finish if (fImporting || fReindex) throw JSONRPCError(RPC_INTERNAL_ERROR, "Wait for reindex and/or import to finish"); std::string alias = params[1].get_str(); bool found = false; UniValue statusObj(UniValue::VOBJ); statusObj.push_back(Pair("alias", alias)); BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) { if(mne.getAlias() == alias) { found = true; std::string errorMessage; CMasternodeBroadcast mnb; bool success = activeMasternode.CreateBroadcast(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), errorMessage, mnb, true); statusObj.push_back(Pair("success", success)); if(success) { CDataStream ssMnb(SER_NETWORK, PROTOCOL_VERSION); ssMnb << mnb; statusObj.push_back(Pair("hex", HexStr(ssMnb.begin(), ssMnb.end()))); } else { statusObj.push_back(Pair("error_message", errorMessage)); } break; } } if(!found) { statusObj.push_back(Pair("success", false)); statusObj.push_back(Pair("error_message", "Could not find alias in config. Verify with list-conf.")); } return statusObj; } if (strCommand == "all") { // wait for reindex and/or import to finish if (fImporting || fReindex) throw JSONRPCError(RPC_INTERNAL_ERROR, "Wait for reindex and/or import to finish"); std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries; mnEntries = masternodeConfig.getEntries(); int successful = 0; int failed = 0; UniValue resultsObj(UniValue::VARR); BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) { std::string errorMessage; CTxIn vin = CTxIn(uint256S(mne.getTxHash()), uint32_t(atoi(mne.getOutputIndex().c_str()))); CMasternodeBroadcast mnb; bool success = activeMasternode.CreateBroadcast(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), errorMessage, mnb, true); UniValue statusObj(UniValue::VOBJ); statusObj.push_back(Pair("alias", mne.getAlias())); statusObj.push_back(Pair("success", success)); if(success) { successful++; CDataStream ssMnb(SER_NETWORK, PROTOCOL_VERSION); ssMnb << mnb; statusObj.push_back(Pair("hex", HexStr(ssMnb.begin(), ssMnb.end()))); } else { failed++; statusObj.push_back(Pair("error_message", errorMessage)); } resultsObj.push_back(statusObj); } UniValue returnObj(UniValue::VOBJ); returnObj.push_back(Pair("overall", strprintf("Successfully created broadcast messages for %d masternodes, failed to create %d, total %d", successful, failed, successful + failed))); returnObj.push_back(Pair("detail", resultsObj)); return returnObj; } return NullUniValue; } UniValue decodemasternodebroadcast(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "decodemasternodebroadcast \"hexstring\"\n" "\nCommand to decode masternode broadcast messages\n" "\nArgument:\n" "1. \"hexstring\" (string) The hex encoded masternode broadcast message\n" "\nResult:\n" "{\n" " \"vin\": \"xxxx\" (string) The unspent output which is holding the masternode collateral\n" " \"addr\": \"xxxx\" (string) IP address of the masternode\n" " \"pubkeycollateral\": \"xxxx\" (string) Collateral address's public key\n" " \"pubkeymasternode\": \"xxxx\" (string) Masternode's public key\n" " \"vchsig\": \"xxxx\" (string) Base64-encoded signature of this message (verifiable via pubkeycollateral)\n" " \"sigtime\": \"nnn\" (numeric) Signature timestamp\n" " \"protocolversion\": \"nnn\" (numeric) Masternode's protocol version\n" " \"nlastdsq\": \"nnn\" (numeric) The last time the masternode sent a DSQ message (for mixing) (DEPRECATED)\n" " \"lastping\" : { (object) JSON object with information about the masternode's last ping\n" " \"vin\": \"xxxx\" (string) The unspent output of the masternode which is signing the message\n" " \"blockhash\": \"xxxx\" (string) Current chaintip blockhash minus 12\n" " \"sigtime\": \"nnn\" (numeric) Signature time for this ping\n" " \"vchsig\": \"xxxx\" (string) Base64-encoded signature of this ping (verifiable via pubkeymasternode)\n" "}\n" "\nExamples:\n" + HelpExampleCli("decodemasternodebroadcast", "hexstring") + HelpExampleRpc("decodemasternodebroadcast", "hexstring")); CMasternodeBroadcast mnb; if (!DecodeHexMnb(mnb, params[0].get_str())) throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "Masternode broadcast message decode failed"); if(!mnb.VerifySignature()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Masternode broadcast signature verification failed"); UniValue resultObj(UniValue::VOBJ); resultObj.push_back(Pair("vin", mnb.vin.prevout.ToString())); resultObj.push_back(Pair("addr", mnb.addr.ToString())); resultObj.push_back(Pair("pubkeycollateral", CBitcoinAddress(mnb.pubKeyCollateralAddress.GetID()).ToString())); resultObj.push_back(Pair("pubkeymasternode", CBitcoinAddress(mnb.pubKeyMasternode.GetID()).ToString())); resultObj.push_back(Pair("vchsig", EncodeBase64(&mnb.sig[0], mnb.sig.size()))); resultObj.push_back(Pair("sigtime", mnb.sigTime)); resultObj.push_back(Pair("protocolversion", mnb.protocolVersion)); resultObj.push_back(Pair("nlastdsq", mnb.nLastDsq)); UniValue lastPingObj(UniValue::VOBJ); lastPingObj.push_back(Pair("vin", mnb.lastPing.vin.prevout.ToString())); lastPingObj.push_back(Pair("blockhash", mnb.lastPing.blockHash.ToString())); lastPingObj.push_back(Pair("sigtime", mnb.lastPing.sigTime)); lastPingObj.push_back(Pair("vchsig", EncodeBase64(&mnb.lastPing.vchSig[0], mnb.lastPing.vchSig.size()))); resultObj.push_back(Pair("lastping", lastPingObj)); return resultObj; } UniValue relaymasternodebroadcast(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "relaymasternodebroadcast \"hexstring\"\n" "\nCommand to relay masternode broadcast messages\n" "\nArguments:\n" "1. \"hexstring\" (string) The hex encoded masternode broadcast message\n" "\nExamples:\n" + HelpExampleCli("relaymasternodebroadcast", "hexstring") + HelpExampleRpc("relaymasternodebroadcast", "hexstring")); CMasternodeBroadcast mnb; if (!DecodeHexMnb(mnb, params[0].get_str())) throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "Masternode broadcast message decode failed"); if(!mnb.VerifySignature()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Masternode broadcast signature verification failed"); mnodeman.UpdateMasternodeList(mnb); mnb.Relay(); return strprintf("Masternode broadcast sent (service %s, vin %s)", mnb.addr.ToString(), mnb.vin.ToString()); }
[ "kyzer@traebit.ca" ]
kyzer@traebit.ca
1067c4921d7eb70a5411d8d8ac05936d3fdd1e2b
ab0ff54f1d4ff92f8702144d481e236898735268
/Hospital Managment System Project/HMS.h
94f69d66fe58c1efff32625b6c392c2d6ffa1ebd
[]
no_license
Saharsh979/C-Projects-OOPS
dc3033d92ab22f3669bb3a99985d9d93d8cdeff8
eef26cf0161e27fe921575358547180284920b24
refs/heads/main
2023-06-15T16:55:35.449208
2021-07-13T06:05:46
2021-07-13T06:05:46
385,360,364
0
0
null
null
null
null
UTF-8
C++
false
false
3,941
h
#include <iostream> #include <conio.h> #include <fstream> #include <iomanip> #include <cstring> #include <windows.h> #include <bits/stdc++.h> void menu(); void pascode(); void cpascode(); using namespace std; class one { public: virtual void get() = 0; virtual void show() = 0; } class info : public one { public: char num[50], time[50]; int num, age; void get() { system("cls"); cin.sync(); cout << "\n Enter the paitent name ="; cin.getline(name, 50); cout << "\n Enter the appointment time ="; cin.getline(time, 50); cout << "\n Enter Age ="; cin >> age; cout << "\n Enter Appointment Number ="; cin >> num; } void showw() { cout << "\n Name =" << name; cout << "\n Age =" << age; cout << "\n Appointment No =" << num; cout << "\n Appointment Time =" << time; } }; class rana : public info { public: info a1; void get() { system("cls"); ofstream out("rana.txt", ios::app | ios::binary); a1.get(); out.write((char *)&a1, sizeof(info)); out.close(); cout << "Your Entry has been saved"; getch(); menu(); } void show() { ifstream in("rana.txt"); if (in == NULL) { cout << "\n\n No Data In the File"; cout << "\n\n\t\tPress Any Key to Continue:"; getch(); menu(); } else { while (!in.eof()) { in.read((char *)&a1, sizeof(a1)); a1.show(); } in.close(); cout << "Press Enter to continue:"; getch(); menu(); } } }; class waqar : public info { public: info a1; void get() { system("cls"); ofstream out("waqar.txt", ios::app | ios::binary); a1.get(); out.write((char *)&a1, sizeof(info)); out.close(); cout << "Your Entry has been saved"; getch(); menu(); } void show() { ifstream in("waqar.txt"); if (in == NULL) { cout << "\n\n No Data In the File"; cout << "\n\n\t\tPress Any Key to Continue:"; getch(); menu(); } else { while (!in.eof()) { in.read((char *)&a1, sizeof(a1)); a1.show(); } in.close(); cout << "Press Enter to continue:"; getch(); menu(); } } }; class Ahmad : public info { public: info a1; void get() { system("cls"); ofstream out("ahmad.txt", ios::app | ios::binary); a1.get(); out.write((char *)&a1, sizeof(info)); out.close(); cout << "Your Entry has been saved"; getch(); menu(); } void show() { ifstream in("ahmad.txt"); if (in == NULL) { cout << "\n\n No Data In the File"; cout << "\n\n\t\tPress Any Key to Continue:"; getch(); menu(); } else { while (!in.eof()) { in.read((char *)&a1, sizeof(a1)); a1.show(); } in.close(); cout << "Press Enter to continue:"; getch(); menu(); } } }; class staff : public one { public: char all[999]; char name[50], age[20], sal[30], pos[20]; void get() { ofstream out("staff,txt", ios::app); system("cls"); cin.sync(); cout << "\nEnter Name = "; cin.getline(name, 50); cout << "\nEnter Age = "; cin.getline(age, 20); cout << "\nEnter Salarry = "; cin.getline(salary, 30); cout << "\nEnter Working Position = "; cin.getline(pos, 20); out << "\n Name -" << name << "\n Age -" << age << "\n Salary -" << sal << "\n Working Position -" << pos; out.close(); cout << "\n\n Your Information has been saved :\n\t\t\tPress any key to continue :"; getch(); menu(); } void show() { ifstream in("staff.txt"); if (!in) { cout << "File open error"; } while (!(in.eof())) { in.getline(all, 999); cout << all << endl; } in.close(); cout << "\n\n\t\t\t Press any key to continue: "; getch(); menu(); } };
[ "saharshcr7@gmail.com" ]
saharshcr7@gmail.com
e0b31c5371e9e8b7c3e235e8bd9039131b2ba5d9
badbd9e3cec2f82245dd1601d300e8e8ecb11275
/Sephy_Engine/mapEventObject.h
1982b77ae590682d30b816fb36f2941b0447cc89
[]
no_license
tjddbs4060/Sephy
d824393d93c84d632ad5bcf084957e63d749e074
1d5cd232b19a50bee3f96254710862467f431c09
refs/heads/master
2021-01-23T08:48:55.581043
2017-09-06T02:23:42
2017-09-06T02:23:42
102,549,840
0
0
null
null
null
null
UHC
C++
false
false
4,313
h
#ifndef _MAPEVENTOBJECT_H #define _MAPEVENTOBJECT_H class MapEventObject; enum class EVENT_OBJECT_TYPE { EVENT_OBJECT_NONE, EVENT_OBJECT_COLLISION_BOX, // 충돌 처리 (박스) EVENT_OBJECT_COLLISION_CIRCLE, // 충돌 처리 (원) EVENT_OBJECT_COLLISION_ROTATE_BOX, // 충돌 처리 (회전형 박스) EVENT_OBJECT_BUILDING_REPAIR, // 수리소 거점 EVENT_OBJECT_BUILDING_OBSERVER, // 관측소 거점 EVENT_OBJECT_BUILDING_REFUEL, // 주유소 거점 EVENT_OBJECT_WEATHER_FOG, // 날씨 이벤트 (안개) EVENT_OBJECT_WEATHER_RAIN, // 날씨 이벤트 (비) EVENT_OBJECT_GAME_RESPAWN, // 게임 리스폰 지역 EVENT_OBJECT_GAME_STARTING // 게임 스타팅 지역 }; namespace EVENT_TYPE_KEY { const std::string NONE = "NONE"; const std::string COLLISION_BOX = "COLLISION_BOX"; const std::string COLLISION_CIRCLE = "COLLISION_CIRCLE"; const std::string COLLISION_ROTATED_BOX = "COLLISION_ROTATED_BOX"; const std::string BUILDING_REPAIR = "BUILDING_REPAIR"; const std::string BUILDING_OBSERVER = "BUILDING_OBSERVER"; const std::string BUILDING_REFUEL = "BUILDING_REFUEL"; const std::string WEATHER_FOG = "WEATHER_FOG"; const std::string WEATHER_RAIN = "WEATHER_RAIN"; const std::string GAME_RESPAWN = "GAME_RESPAWN"; const std::string GAME_STARTING = "GAME_STARTING"; } namespace mapEventObjectNS { const char FONT[] = "Courier New"; // console font const int FONT_HEIGHT = 12; // height of the font in pixels const COLOR_ARGB FONT_COLOR = graphicsNS::WHITE; // color of console text const int IMAGE_WIDTH = 32; const int IMAGE_HEIGHT = 32; const int DEBUG_FONT_HEIGHT = 14; const float DEBUG_RECT_WIDTH = 200; const float DEBUG_RECT_HEIGHT = 15; } class MapEventObject : public Image { private: float m_x, m_y; float m_width, m_height; float m_radius; float m_angle; RECT m_rcEventObject; EVENT_OBJECT_TYPE m_eObjectType; std::string m_strEventType; TextDX m_dxFont; private: bool m_bHasImage; bool m_bPlayers; bool m_bDebug; public: MapEventObject(); ~MapEventObject(); bool initialize(Graphics* g, float x, float y, float width, float height, EVENT_OBJECT_TYPE eventType); bool initialize(Graphics* g, std::string textureName, float x, float y, float width, float height, EVENT_OBJECT_TYPE eventType); bool initialize(Graphics* g, float x, float y, float width, float height, std::string strEventType); void update(float frameTime); void render(); // ========================================== // Memeber Functions // ========================================== void setUpEventKey(); EVENT_OBJECT_TYPE recogEventKey(std::string strKey); // render Sketch Function // draw Border Line with each Collision Types void renderSketch(COLOR_ARGB color = graphicsNS::WHITE); // Move Object & Object RECT with Camera Move Horizontal inline void moveRectWidth(int distance) { m_x += distance; m_rcEventObject.left += distance; m_rcEventObject.right += distance; } // Move Object & Object RECT with Camera Move Vertical inline void moveRectHeight(int distance) { m_y += distance; m_rcEventObject.top += distance; m_rcEventObject.bottom += distance; } // ========================================== // Setter Functions // ========================================== void setEventObjectType(EVENT_OBJECT_TYPE type) { m_eObjectType = type; } void setPlayersObject(bool b) { m_bPlayers = b; } void setDebugMode(bool bDebug) { m_bDebug = bDebug; } // ========================================== // Getter Functions // ========================================== RECT getEventObjectRECT() const { return m_rcEventObject; } POINT getEventObjectPos() const { return PointMake(m_x, m_y); } float getPosX() const { return m_x; } float getPosY() const { return m_y; } float getCenterPosX() const { return m_x + (m_width / 2); } float getCenterPosY() const { return m_y + (m_height / 2); } float getWidth() const { return m_width; } float getHeight() const { return m_height; } std::string getEventTypeKey() const { return m_strEventType; } EVENT_OBJECT_TYPE getEventObjectType() const { return m_eObjectType; } bool getPlayersObject() const { return m_bPlayers; } }; #endif // !_MAPEVENTOBJECT_H
[ "tjddbs4060@naver.com" ]
tjddbs4060@naver.com
dd39919f679e264d566adb7e9532efb930b2f8c7
10a7e481a3118e23174e829a091ca424b56dceb1
/Socket.h
5bc29d0deac0df247cfd36ff9695a42252d4977b
[]
no_license
widVE/SkeletalViewer
8da81e1d68ceea2e1ad00d36f27a0a1e5120d2fb
408955244dd3f4fe0f3f41bb1c5195addc8430ad
refs/heads/master
2020-06-28T00:19:00.649455
2020-06-20T03:34:27
2020-06-20T03:34:27
200,090,946
0
0
null
null
null
null
UTF-8
C++
false
false
4,454
h
// When using this class, you *must* link with wsock32.lib #ifndef __SOCKET_H #define __SOCKET_H #define CAVE_SYNC 1 //#include <WS2tcpip.h> #include <iostream> #ifdef WIN32 #include <WinSock.h> #else #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #include <netdb.h> #ifndef SOCKET typedef int SOCKET; #endif #define INVALID_SOCKET -1 #define SOCKET_ERROR -1 #endif class CaveSocket { public: //------- Constructors CaveSocket(); CaveSocket(SOCKET created); ~CaveSocket(); //initialize this socket from another already made socket void InitFromSocket(SOCKET socket); // CaveSocket::Create( // address family (AF_INET default), // socket type (SOCK_STREAM default, use SOCK_STREAM for tcp, SOCK_DGRAM for udp) // protocol (0 default) // ) // // Creates a socket for use in either // client or server relationship // returns true on success, false on failure bool Create(int af = AF_INET, int type = SOCK_STREAM, int protocol = 0); // CaveSocket::Connect( // host name as string (e.g. "localhost","127.0.0.1") // host port as short // ) // // Connects to the specified server and port // returns true on success, false on failure bool Connect(char* message, short hostport); // CaveSocket::Send( // message to send as a string // size of message (0 default means string length) // flags (0 default) // ) // // Sends a message to the previously connected // to machine // returns number of bytes sent or error int Send(char* message, int size = 0, int flags = 0); // CaveSocket::Recieve( // number of bytes to recieve. // > 0 : Recieve at most, this many bytes. // <= 0 : Continue recieving bytes until // the termination char is encountered // (0 default or inherited from recieving socket. See CaveSocket::Accept), // flags (0 default) // ) // // Recieve bytes from the previously connected to socket // You can recieve a specific number of bytes, or wait // until the termination char is encountered to // stop recieving // return recieved buffer on success, "" on error char* Receive(int length = 0, int flags = 0); // recieve using a personal buffer. Assumes that message fits in buffer int Receive(char* recieved, int length = 0, int flags = 0); // CaveSocket::Bind( // port for server socket to bind to // ) // // Binds a socket to a port void Bind(short port); // CaveSocket::Listen( // port for server socket to listen on // ) // // Sets up a socket to recieve connecting sockets // Binds and Listens void Listen(short port); // CaveSocket::Accept() // // When an incoming socket connects, accept // will return a socket to interface with it // The termination char of the listening socket // is inherited by by the new socket. // Accept blocks until a socket is connected // returns a connected socket CaveSocket* Accept(); // CaveSocket::setTerminationChar( // char to terminate recieving on ('\0' default) // ) // // When recieving, we may want to terminate when we recieve a // specific char, this sets that char void setTerminationChar(char terminationChar); // CaveSocket::sendTerminationChar() // // send the preset termination character // returns number of bytes sent or error int sendTerminationChar(int flags = 0); // UDP Setup, not quite right yet void fillSockaddr_in(sockaddr_in* addr, char* hostname, short port); int SendTo(char* msg, sockaddr_in* to, int length = 0, int flags = 0); char* RecieveFrom(sockaddr_in* from, int length, int flags = 0); void ShutDown(void); SOCKET _socket; sockaddr_in _address; char _terminationChar; private: hostent* _hostentry; int _af; bool error; //-------------- bookeeping // Keeps track of number of sockets opened static unsigned int socketsOpen; // tells us if winsocks are started static bool WSAStarted; // called to start winsocks, based on WSAStarted static bool Startup() { #ifdef WIN32 WSAData info; if (WSAStartup(MAKEWORD(2,0), &info)) { std::cerr << "Could not start WSA" << std::endl; return false; } else #endif { return true; } } // called to shutdown winsocks, when socketsOpen reaches 0 static int Cleanup() { #ifdef WIN32 return WSACleanup(); #else return 0; #endif } }; #endif
[ "kalimi@wisc.edu" ]
kalimi@wisc.edu
9798a361a7592873cb9fef652fb12f821edde05d
bbe9cf6fc7dac71ec4e5a8c5f955173d123e2bdb
/ini2json.cpp
bbd2e6c2ecfa7b825c32ab9907f7676db3129fc0
[]
no_license
jayands/ini_to_json
3a2924f4499d1a74c910e3475e982e492e9b83a5
d0f5c7b532821a4433d0d15214f0fde015a12ca4
refs/heads/master
2016-09-06T16:09:31.130340
2013-10-20T19:15:39
2013-10-20T19:15:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,039
cpp
// Copyright (c) 2013 Jonathan Sifuentes <jayands@gmail.com> // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #include <cstdlib> #include <cerrno> #include <fstream> #include <sstream> #include <iostream> #include <vector> #include <string> #include <cstring> void parse_ini(std::istream &infile); int main(int argc, char* argv[]) { std::ifstream infile; std::string str; if(argc > 1) { infile.open(argv[1], std::ios::in); if(!infile) { std::cerr << "Could not open file \"" << argv[1] << "\": " << std::strerror(errno) << std::endl; exit(EXIT_FAILURE); } else { parse_ini(infile); infile.close(); } } else { //TODO read the person's ini code until the eof do { std::string buf; std::cin >> buf; str+= buf+((buf.find(',') != std::string::npos) ? " " : "\n"); } while(std::cin.good()); std::istringstream ifs(str); parse_ini(ifs); } exit(EXIT_SUCCESS); } void parse_ini(std::istream &infile) { std::string line; bool braces_open = false, more_than_first = false; std::cout << "{" << std::endl; while(getline(infile, line)) { switch(line[0]) { case '[': if (braces_open) std::cout << "}, " << std::endl; std::cout << "\"" << line.substr(1,line.find("]")-1) << "\": {" << std::endl; braces_open=true; break; case '\0': case '\n': if (braces_open) std::cout << "}," << std::endl; braces_open = false; more_than_first = false; break; default: if (line.find("=") != std::string::npos) { int pos = line.find("="); if(more_than_first) std::cout << ", "; std::cout << "\"" << line.substr(0,pos) << "\":" << "\""; if (line.find(',') == std::string::npos) std::cout << << line.substr(pos+1) << "\"" << std::endl; more_than_first = true; } else { std::cout << line << std::endl; } break; } } if (braces_open) std::cout << "}" << std::endl; std::cout << "}" << std::endl; }
[ "jayands2k11@ymail.com" ]
jayands2k11@ymail.com
f9d8dfa32ba0b517a22a51289b3bf36f4d01644e
47eacdbf45cc71965705d9432ef4367de6583a71
/Tellustris/Include/Utility/Expression/ExpressionValue.h
7c209c3503b6ca48ceb6027347d9001cfa021715
[]
no_license
larnin/Tellustris
64287f586c0cde5add3fe37510f9fcd4a95e6ab8
d1152add86dd02a6fdd46d20154173bfa18caadf
refs/heads/master
2020-04-15T13:58:57.120397
2019-04-06T23:17:21
2019-04-06T23:17:21
164,739,944
0
0
null
null
null
null
UTF-8
C++
false
false
15,000
h
#pragma once #include <string> #include <vector> #include <memory> #include <functional> namespace NExpression { template <typename T> class IValue; template <typename T> using ValueRef = std::unique_ptr<IValue<T>>; template <typename T> class Expression; template <typename T> class IValue { public: IValue() = default; IValue(const IValue &) = delete; IValue & operator=(const IValue &) = delete; virtual ~IValue() = default; virtual T get() const = 0; virtual std::string toString() const = 0; virtual ValueRef<T> clone() const = 0; virtual void registerParameter(Expression<T> & expression) = 0; }; template <typename T> class Number : public IValue<T> { public: Number(T value) : m_value(value) {} T get() const override { return m_value; } void set(T value) { m_value = value; } std::string toString() const override { return std::to_string(m_value); } ValueRef<T> clone() const override { return std::make_unique<Number<T>>(m_value); } void registerParameter(Expression<T> &) override {} protected: T m_value; }; template <typename T> class Parameter : public Number<T> { public: Parameter(const std::string & name) : Number<T>(0) , m_name(name) { } std::string name() const { return m_name; } std::string toString() const override { return m_name; } ValueRef<T> clone() const override { auto v = std::make_unique<Parameter<T>>(m_name); v->set(Number<T>::m_value); return v; } void registerParameter(Expression<T> & expression) override { expression.addParameter(this); } private: std::string m_name; }; template <typename T> class OperationSum : public IValue<T> { public: template <typename iterator> OperationSum(iterator begin, iterator end) { auto size = std::distance(begin, end); m_values.reserve(size); for (auto it = begin; it != end; ++it) m_values.emplace_back(std::move(*it)); } T get() const override { T value = {}; for (const auto & v : m_values) value += v->get(); return value; } std::string toString() const override { std::string value = "( "; for (int i = 0; i < m_values.size(); i++) { value += m_values[i]->toString(); if (i < m_values.size() - 1) value += " + "; } return value + " )"; } ValueRef<T> clone() const override { std::vector<ValueRef<T>> values; for (const auto & v : m_values) values.emplace_back(v->clone()); return std::make_unique<OperationSum<T>>(values.begin(), values.end()); } void registerParameter(Expression<T> & expression) override { for (auto & v : m_values) v->registerParameter(expression); } private: std::vector<ValueRef<T>> m_values; }; template <typename T> class OperationNegate : public IValue<T> { public: OperationNegate(ValueRef<T> value) : m_value(std::move(value)) { } T get() const override { return -m_value->get(); } std::string toString() const override { return "( -" + m_value->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<OperationNegate<T>>(m_value->clone()); } void registerParameter(Expression<T> & expression) override { m_value->registerParameter(expression); } private: ValueRef<T> m_value; }; template <typename T> class OperationProduct : public IValue<T> { public: template <typename iterator> OperationProduct(iterator begin, iterator end) { auto size = std::distance(begin, end); m_values.reserve(size); for (auto it = begin; it != end; ++it) m_values.emplace_back(std::move(*it)); } T get() const override { T value = 1; for (const auto & v : m_values) value *= v->get(); return value; } std::string toString() const override { std::string value = "( "; for (int i = 0; i < m_values.size(); i++) { value += m_values[i]->toString(); if (i < m_values.size() - 1) value += " * "; } return value + " )"; } ValueRef<T> clone() const override { std::vector<ValueRef<T>> values; for (const auto & v : m_values) values.emplace_back(v->clone()); return std::make_unique<OperationProduct<T>>(values.begin(), values.end()); } void registerParameter(Expression<T> & expression) override { for (auto & v : m_values) v->registerParameter(expression); } private: std::vector<ValueRef<T>> m_values; }; template <typename T> class OperationReciprocal : public IValue<T> { public: template <typename iterator> OperationReciprocal(iterator begin, iterator end) { auto size = std::distance(begin, end); m_values.reserve(size); for (auto it = begin; it != end; ++it) m_values.emplace_back(std::move(*it)); } T get() const override { T value = m_values[0]->get(); for (size_t i = 1; i < m_values.size(); i++) value /= m_values[i]->get(); return value; } std::string toString() const override { std::string value = "( "; for (int i = 0; i < m_values.size(); i++) { value += m_values[i]->toString(); if (i < m_values.size() - 1) value += " / "; } return value + " )"; } ValueRef<T> clone() const override { std::vector<ValueRef<T>> values; for (const auto & v : m_values) values.emplace_back(v->clone()); return std::make_unique<OperationReciprocal<T>>(values.begin(), values.end()); } void registerParameter(Expression<T> & expression) override { for (auto & v : m_values) v->registerParameter(expression); } private: std::vector<ValueRef<T>> m_values; }; template <typename T> class OperationPower : public IValue<T> { public: OperationPower(ValueRef<T> value, ValueRef<T> power) : m_value(std::move(value)) , m_power(std::move(power)) { } T get() const override { return static_cast<T>(std::pow(m_value->get(), m_power->get())); } std::string toString() const override { return "( " + m_value->toString() + " ^ " + m_power->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<OperationPower<T>>(m_value->clone(), m_power->clone()); } void registerParameter(Expression<T> & expression) override { m_value->registerParameter(expression); m_power->registerParameter(expression); } private: ValueRef<T> m_value; ValueRef<T> m_power; }; template <typename T> class Constant : public IValue<T> { public: Constant(const std::string & name, T value) : m_name(name) , m_value(value) { } T get() const override { return m_value; } std::string toString() const override { return std::to_string(m_value); } ValueRef<T> clone() const override { return std::make_unique<Constant<T>>(m_name, m_value); } void registerParameter(Expression<T> & expression) override {}; private: std::string m_name; T m_value; }; template <typename T> using ExpressionFunction = std::function<T(std::vector<T>)>; template <typename T> class Function : public IValue<T> { public: template <typename iterator> Function(const std::string & functionName, ExpressionFunction<T> f, iterator begin, iterator end) : m_functionName(functionName) , m_function(f) { auto size = std::distance(begin, end); m_values.reserve(size); for (auto it = begin; it != end; ++it) m_values.emplace_back(std::move(*it)); } T get() const override { std::vector<T> values; values.reserve(m_values.size()); for (const auto & v : m_values) values.push_back(v->get()); return m_function(values); } std::string toString() const override { std::string value = m_functionName + "( "; for (int i = 0; i < m_values.size(); i++) { value += m_values[i]->toString(); if (i < m_values.size() - 1) value += ", "; } return value + " )"; } ValueRef<T> clone() const override { std::vector<ValueRef<T>> values; for (const auto & v : m_values) values.emplace_back(v->clone()); return std::make_unique<Function<T>>(m_functionName, m_function, values.begin(), values.end()); } void registerParameter(Expression<T> & expression) override { for (auto & v : m_values) v->registerParameter(expression); } private: std::string m_functionName; ExpressionFunction<T> m_function; std::vector<ValueRef<T>> m_values; }; template <typename T> class ComparisonSup : public IValue<T> { public: ComparisonSup(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() > m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " > " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonSup<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ComparisonSupOrEqual : public IValue<T> { public: ComparisonSupOrEqual(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() >= m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " >= " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonSupOrEqual<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ComparisonSub : public IValue<T> { public: ComparisonSub(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() < m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " < " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonSub<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ComparisonSubOrEqual : public IValue<T> { public: ComparisonSubOrEqual(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() <= m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " <= " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonSubOrEqual<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ComparisonEqual : public IValue<T> { public: ComparisonEqual(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() == m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " = " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonEqual<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ComparisonUnequal : public IValue<T> { public: ComparisonUnequal(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() != m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " != " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ComparisonUnequal<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ConditionOr : public IValue<T> { public: ConditionOr(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() || m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " || " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ConditionOr<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ConditionAnd : public IValue<T> { public: ConditionAnd(ValueRef<T> left, ValueRef<T> right) : m_left(std::move(left)) , m_right(std::move(right)) { } T get() const override { return m_left->get() && m_right->get(); } std::string toString() const override { return "( " + m_left->toString() + " && " + m_right->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ConditionAnd<T>>(m_left->clone(), m_right->clone()); } void registerParameter(Expression<T> & expression) override { m_left->registerParameter(expression); m_right->registerParameter(expression); } private: ValueRef<T> m_left; ValueRef<T> m_right; }; template <typename T> class ConditionNot : public IValue<T> { public: ConditionNot(ValueRef<T> value) : m_value(std::move(value)) { } T get() const override { T zero = {}; return m_value->get() == zero ? T{ 1 } : T{ 0 }; } std::string toString() const override { return "( ! " + m_value->toString() + " )"; } ValueRef<T> clone() const override { return std::make_unique<ConditionNot<T>>(m_value->clone()); } void registerParameter(Expression<T> & expression) override { m_value->registerParameter(expression); } private: ValueRef<T> m_value; }; }
[ "nicolas-donald.laurent@laposte.net" ]
nicolas-donald.laurent@laposte.net
9a895f363bdee9d54fd79443e83d6a8bdb955e5d
bd9893a2f807b59105a8960544057acffe3c21bc
/al/ALSourceBase.hpp
d7fdc665b04ad94b9b1177017f1e68f0a9769cfd
[ "Apache-2.0" ]
permissive
isoundy000/AudioEngine
ce4f53d7394b9574f89b5bf5b477572ece64fec2
e3c5f475dae277fc5a9a4583618c973159eb3298
refs/heads/master
2021-05-11T22:23:56.920640
2018-01-14T15:54:42
2018-01-14T15:54:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
842
hpp
#ifndef ALSOURCEBASE_HPP #define ALSOURCEBASE_HPP #include "glm/glm.hpp" namespace audio { namespace al { class SourceBase { public: /// Play sound according to sound id. virtual void play() = 0; /// Stop sound according to sound id. virtual void stop() = 0; /// Pause sound according to sound id. virtual void pause() = 0; virtual void setPosition(const glm::vec3 &position) = 0; virtual void setPosition(const float &x, const float &y, const float &z) = 0; virtual void setVelocity(const glm::vec3 &velocity) = 0; virtual void setVelocity(const float &x, const float &y, const float &z) = 0; virtual void setDirection(const glm::vec3 &direction) = 0; virtual void setDirection(const float &x, const float &y, const float &z) = 0; }; } // namespace audio::al } // namespace al #endif
[ "noreply@github.com" ]
isoundy000.noreply@github.com
1ac80476eca012adf7f98d9727641ab8a455c122
62f5d04cccb72fea61164a4fc8253b71ba5b7bc5
/SSP/PdSend.cpp
63333d8e7e06e52a58e2b16891c025590c86e21d
[]
no_license
franeum/pd-ssp
d5f896f1dd96903dd01c93be9861864c55c1fb19
749acba0487f5352d8a2594eec09102407dbfb16
refs/heads/master
2021-04-06T20:19:55.801488
2019-06-03T12:27:38
2019-06-03T12:27:38
125,442,368
0
0
null
null
null
null
UTF-8
C++
false
false
1,212
cpp
#include "PdSend.h" PdSend::PdSend() { char *addrmsg = "test"; strcpy(_addrmsg, addrmsg); startbyte = "{"; stopbyte = "}"; prec = 2; } PdSend::PdSend(char *addrmsg, int p) { strcpy(_addrmsg, addrmsg); startbyte = "{"; stopbyte = "}"; prec = p; } void PdSend::sendmsg(char *types, ...) { va_list args; va_start(args, types); char buf[100]; strcpy(totmsg, startbyte); strcat(totmsg, _addrmsg); strcat(totmsg, " "); strcat(totmsg,types); while (*types != '\0') { if (*types == 'i') { int i = va_arg(args, int); sprintf(buf, " %d", i); strcat(totmsg, " "); strcat(totmsg, buf); *buf = '\0'; } else if (*types == 's') { strcat(totmsg, " "); strcat(totmsg, va_arg(args, char *)); } else if (*types == 'f') { float d = (float)va_arg(args, double); dtostrf(d,4,prec,buf); strcat(totmsg, " "); strcat(totmsg, buf); *buf = '\0'; } ++types; } strcat(totmsg, stopbyte); Serial.write(totmsg); va_end(args); *totmsg = '\0'; } void PdSend::setAddr(char *address) { strcpy(_addrmsg, address); } void PdSend::setFloatPrecision(int p) { prec = p; }
[ "noreply@github.com" ]
franeum.noreply@github.com
93b957f65941b500b8273a113a972e7fc09b1a56
1b8889b21d858bd8611231a6341993d63da06bad
/coloredPencilColorPicker/ColoredPencilColorPickerApp.cpp
af2c229f131c99f2bd94fbabfdd871093776d3ae
[]
no_license
jscipione/colorPickerPanel
e00098b46d6b5147b8d9c67fdb4b77435e3e49d4
d61db63bdeb2544daaf017902670c89e7be9f8ff
refs/heads/master
2023-05-12T12:48:22.816372
2023-05-08T16:04:28
2023-05-08T16:06:14
6,847,725
1
0
null
null
null
null
UTF-8
C++
false
false
1,711
cpp
/* * Copyright 2012-2013 Haiku, Inc. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * John Scipione, jscipione@gmail.com */ #include "ColoredPencilColorPickerApp.h" #include <new> #include <LayoutBuilder.h> #include <Window.h> #include "../ColorPickerPanel.h" #include "../Protocol.h" #include "ColoredPencilColorPicker.h" const char* kSignature = "application/x-vnd.Haiku-ColoredPencilColorPicker"; ColoredPencilColorPickerApp::ColoredPencilColorPickerApp() : BApplication(kSignature), fPanel(), fDefaultColor(make_color(200, 10, 10)) { } ColoredPencilColorPickerApp::~ColoredPencilColorPickerApp() { } void ColoredPencilColorPickerApp::MessageReceived(BMessage* message) { if (message->what == kInitiateConnection) { // This is the initial open message that ModuleProxy::Invoke is sending // us. Pass it on to the new color picker dialog which will find all // the details in it fPanel = new(std::nothrow) ColorPickerPanel(new(std::nothrow) ColoredPencilColorPicker(fDefaultColor), message, B_CELLS_4x10); } BApplication::MessageReceived(message); } void ColoredPencilColorPickerApp::ReadyToRun() { if (fPanel != NULL) fPanel->Show(); else { // create a window if run directly BWindow* window = new BWindow(BRect(100, 100, 100, 100), "Colored pencil picker", B_TITLED_WINDOW, B_NOT_ZOOMABLE | B_NOT_RESIZABLE | B_QUIT_ON_WINDOW_CLOSE | B_AUTO_UPDATE_SIZE_LIMITS); BLayoutBuilder::Group<>(window, B_VERTICAL, 0) .Add(new(std::nothrow) ColoredPencilColorPicker(fDefaultColor)) .End(); window->Show(); } } int main() { new ColoredPencilColorPickerApp(); be_app->Run(); delete be_app; return 0; }
[ "jscipione@gmail.com" ]
jscipione@gmail.com
9c2a4a0a0a8164e29b4199c3b33dc616c3fdeb82
46bdb10183d6849af916c65b4f13ad4072d5c0c2
/src/util.cpp
810890ac603336a864128bfcaabaa1776888bde2
[ "MIT" ]
permissive
PosCoinDev/PosCoin-master
e3b3ce83fcb54e321de31b116415f692fea37662
305d4fba927049b3cbe30b949e7257041cc78c19
refs/heads/master
2020-12-25T19:26:12.454859
2014-07-10T01:13:36
2014-07-10T01:13:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
37,837
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" #include "sync.h" #include "strlcpy.h" #include "version.h" #include "ui_interface.h" #include <boost/algorithm/string/join.hpp> // Work around clang compilation problem in Boost 1.46: // /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup // See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options // http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION namespace boost { namespace program_options { std::string to_internal(const std::string&); } } #include <boost/program_options/detail/config_file.hpp> #include <boost/program_options/parsers.hpp> #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #include <boost/foreach.hpp> #include <boost/thread.hpp> #include <openssl/crypto.h> #include <openssl/rand.h> #include <stdarg.h> #ifdef WIN32 #ifdef _MSC_VER #pragma warning(disable:4786) #pragma warning(disable:4804) #pragma warning(disable:4805) #pragma warning(disable:4717) #endif #ifdef _WIN32_WINNT #undef _WIN32_WINNT #endif #define _WIN32_WINNT 0x0501 #ifdef _WIN32_IE #undef _WIN32_IE #endif #define _WIN32_IE 0x0501 #define WIN32_LEAN_AND_MEAN 1 #ifndef NOMINMAX #define NOMINMAX #endif #include <io.h> /* for _commit */ #include "shlobj.h" #elif defined(__linux__) # include <sys/prctl.h> #endif #ifndef WIN32 #include <execinfo.h> #endif using namespace std; map<string, string> mapArgs; map<string, vector<string> > mapMultiArgs; bool fDebug = false; bool fDebugNet = false; bool fPrintToConsole = false; bool fPrintToDebugger = false; bool fRequestShutdown = false; bool fShutdown = false; bool fDaemon = false; bool fServer = false; bool fCommandLine = false; string strMiscWarning; bool fTestNet = false; bool fNoListen = false; bool fLogTimestamps = false; CMedianFilter<int64_t> vTimeOffsets(200,0); bool fReopenDebugLog = false; // Init OpenSSL library multithreading support static CCriticalSection** ppmutexOpenSSL; void locking_callback(int mode, int i, const char* file, int line) { if (mode & CRYPTO_LOCK) { ENTER_CRITICAL_SECTION(*ppmutexOpenSSL[i]); } else { LEAVE_CRITICAL_SECTION(*ppmutexOpenSSL[i]); } } LockedPageManager LockedPageManager::instance; // Init class CInit { public: CInit() { // Init OpenSSL library multithreading support ppmutexOpenSSL = (CCriticalSection**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(CCriticalSection*)); for (int i = 0; i < CRYPTO_num_locks(); i++) ppmutexOpenSSL[i] = new CCriticalSection(); CRYPTO_set_locking_callback(locking_callback); #ifdef WIN32 // Seed random number generator with screen scrape and other hardware sources RAND_screen(); #endif // Seed random number generator with performance counter RandAddSeed(); } ~CInit() { // Shutdown OpenSSL library multithreading support CRYPTO_set_locking_callback(NULL); for (int i = 0; i < CRYPTO_num_locks(); i++) delete ppmutexOpenSSL[i]; OPENSSL_free(ppmutexOpenSSL); } } instance_of_cinit; void RandAddSeed() { // Seed with CPU performance counter int64_t nCounter = GetPerformanceCounter(); RAND_add(&nCounter, sizeof(nCounter), 1.5); memset(&nCounter, 0, sizeof(nCounter)); } void RandAddSeedPerfmon() { RandAddSeed(); // This can take up to 2 seconds, so only do it every 10 minutes static int64_t nLastPerfmon; if (GetTime() < nLastPerfmon + 10 * 60) return; nLastPerfmon = GetTime(); #ifdef WIN32 // Don't need this on Linux, OpenSSL automatically uses /dev/urandom // Seed with the entire set of perfmon data unsigned char pdata[250000]; memset(pdata, 0, sizeof(pdata)); unsigned long nSize = sizeof(pdata); long ret = RegQueryValueExA(HKEY_PERFORMANCE_DATA, "Global", NULL, NULL, pdata, &nSize); RegCloseKey(HKEY_PERFORMANCE_DATA); if (ret == ERROR_SUCCESS) { RAND_add(pdata, nSize, nSize/100.0); memset(pdata, 0, nSize); printf("RandAddSeed() %lu bytes\n", nSize); } #endif } uint64_t GetRand(uint64_t nMax) { if (nMax == 0) return 0; // The range of the random source must be a multiple of the modulus // to give every possible output value an equal possibility uint64_t nRange = (std::numeric_limits<uint64_t>::max() / nMax) * nMax; uint64_t nRand = 0; do RAND_bytes((unsigned char*)&nRand, sizeof(nRand)); while (nRand >= nRange); return (nRand % nMax); } int GetRandInt(int nMax) { return GetRand(nMax); } uint256 GetRandHash() { uint256 hash; RAND_bytes((unsigned char*)&hash, sizeof(hash)); return hash; } static FILE* fileout = NULL; inline int OutputDebugStringF(const char* pszFormat, ...) { int ret = 0; if (fPrintToConsole) { // print to console va_list arg_ptr; va_start(arg_ptr, pszFormat); ret = vprintf(pszFormat, arg_ptr); va_end(arg_ptr); } else if (!fPrintToDebugger) { // print to debug.log if (!fileout) { boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; fileout = fopen(pathDebug.string().c_str(), "a"); if (fileout) setbuf(fileout, NULL); // unbuffered } if (fileout) { static bool fStartedNewLine = true; // This routine may be called by global destructors during shutdown. // Since the order of destruction of static/global objects is undefined, // allocate mutexDebugLog on the heap the first time this routine // is called to avoid crashes during shutdown. static boost::mutex* mutexDebugLog = NULL; if (mutexDebugLog == NULL) mutexDebugLog = new boost::mutex(); boost::mutex::scoped_lock scoped_lock(*mutexDebugLog); // reopen the log file, if requested if (fReopenDebugLog) { fReopenDebugLog = false; boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; if (freopen(pathDebug.string().c_str(),"a",fileout) != NULL) setbuf(fileout, NULL); // unbuffered } // Debug print useful for profiling if (fLogTimestamps && fStartedNewLine) fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str()); if (pszFormat[strlen(pszFormat) - 1] == '\n') fStartedNewLine = true; else fStartedNewLine = false; va_list arg_ptr; va_start(arg_ptr, pszFormat); ret = vfprintf(fileout, pszFormat, arg_ptr); va_end(arg_ptr); } } #ifdef WIN32 if (fPrintToDebugger) { static CCriticalSection cs_OutputDebugStringF; // accumulate and output a line at a time { LOCK(cs_OutputDebugStringF); static std::string buffer; va_list arg_ptr; va_start(arg_ptr, pszFormat); buffer += vstrprintf(pszFormat, arg_ptr); va_end(arg_ptr); int line_start = 0, line_end; while((line_end = buffer.find('\n', line_start)) != -1) { OutputDebugStringA(buffer.substr(line_start, line_end - line_start).c_str()); line_start = line_end + 1; } buffer.erase(0, line_start); } } #endif return ret; } string vstrprintf(const char *format, va_list ap) { char buffer[50000]; char* p = buffer; int limit = sizeof(buffer); int ret; while (true) { va_list arg_ptr; va_copy(arg_ptr, ap); #ifdef WIN32 ret = _vsnprintf(p, limit, format, arg_ptr); #else ret = vsnprintf(p, limit, format, arg_ptr); #endif va_end(arg_ptr); if (ret >= 0 && ret < limit) break; if (p != buffer) delete[] p; limit *= 2; p = new char[limit]; if (p == NULL) throw std::bad_alloc(); } string str(p, p+ret); if (p != buffer) delete[] p; return str; } string real_strprintf(const char *format, int dummy, ...) { va_list arg_ptr; va_start(arg_ptr, dummy); string str = vstrprintf(format, arg_ptr); va_end(arg_ptr); return str; } string real_strprintf(const std::string &format, int dummy, ...) { va_list arg_ptr; va_start(arg_ptr, dummy); string str = vstrprintf(format.c_str(), arg_ptr); va_end(arg_ptr); return str; } bool error(const char *format, ...) { va_list arg_ptr; va_start(arg_ptr, format); std::string str = vstrprintf(format, arg_ptr); va_end(arg_ptr); printf("ERROR: %s\n", str.c_str()); return false; } void ParseString(const string& str, char c, vector<string>& v) { if (str.empty()) return; string::size_type i1 = 0; string::size_type i2; while (true) { i2 = str.find(c, i1); if (i2 == str.npos) { v.push_back(str.substr(i1)); return; } v.push_back(str.substr(i1, i2-i1)); i1 = i2+1; } } string FormatMoney(int64_t n, bool fPlus) { // Note: not using straight sprintf here because we do NOT want // localized number formatting. int64_t n_abs = (n > 0 ? n : -n); int64_t quotient = n_abs/COIN; int64_t remainder = n_abs%COIN; string str = strprintf("%"PRId64".%08"PRId64, quotient, remainder); // Right-trim excess zeros before the decimal point: int nTrim = 0; for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i) ++nTrim; if (nTrim) str.erase(str.size()-nTrim, nTrim); if (n < 0) str.insert((unsigned int)0, 1, '-'); else if (fPlus && n > 0) str.insert((unsigned int)0, 1, '+'); return str; } bool ParseMoney(const string& str, int64_t& nRet) { return ParseMoney(str.c_str(), nRet); } bool ParseMoney(const char* pszIn, int64_t& nRet) { string strWhole; int64_t nUnits = 0; const char* p = pszIn; while (isspace(*p)) p++; for (; *p; p++) { if (*p == '.') { p++; int64_t nMult = CENT*10; while (isdigit(*p) && (nMult > 0)) { nUnits += nMult * (*p++ - '0'); nMult /= 10; } break; } if (isspace(*p)) break; if (!isdigit(*p)) return false; strWhole.insert(strWhole.end(), *p); } for (; *p; p++) if (!isspace(*p)) return false; if (strWhole.size() > 10) // guard against 63 bit overflow return false; if (nUnits < 0 || nUnits > COIN) return false; int64_t nWhole = atoi64(strWhole); int64_t nValue = nWhole*COIN + nUnits; nRet = nValue; return true; } static const signed char phexdigit[256] = { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, }; bool IsHex(const string& str) { BOOST_FOREACH(unsigned char c, str) { if (phexdigit[c] < 0) return false; } return (str.size() > 0) && (str.size()%2 == 0); } vector<unsigned char> ParseHex(const char* psz) { // convert hex dump to vector vector<unsigned char> vch; while (true) { while (isspace(*psz)) psz++; signed char c = phexdigit[(unsigned char)*psz++]; if (c == (signed char)-1) break; unsigned char n = (c << 4); c = phexdigit[(unsigned char)*psz++]; if (c == (signed char)-1) break; n |= c; vch.push_back(n); } return vch; } vector<unsigned char> ParseHex(const string& str) { return ParseHex(str.c_str()); } static void InterpretNegativeSetting(string name, map<string, string>& mapSettingsRet) { // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set if (name.find("-no") == 0) { std::string positive("-"); positive.append(name.begin()+3, name.end()); if (mapSettingsRet.count(positive) == 0) { bool value = !GetBoolArg(name); mapSettingsRet[positive] = (value ? "1" : "0"); } } } void ParseParameters(int argc, const char* const argv[]) { mapArgs.clear(); mapMultiArgs.clear(); for (int i = 1; i < argc; i++) { char psz[10000]; strlcpy(psz, argv[i], sizeof(psz)); char* pszValue = (char*)""; if (strchr(psz, '=')) { pszValue = strchr(psz, '='); *pszValue++ = '\0'; } #ifdef WIN32 _strlwr(psz); if (psz[0] == '/') psz[0] = '-'; #endif if (psz[0] != '-') break; mapArgs[psz] = pszValue; mapMultiArgs[psz].push_back(pszValue); } // New 0.6 features: BOOST_FOREACH(const PAIRTYPE(string,string)& entry, mapArgs) { string name = entry.first; // interpret --foo as -foo (as long as both are not set) if (name.find("--") == 0) { std::string singleDash(name.begin()+1, name.end()); if (mapArgs.count(singleDash) == 0) mapArgs[singleDash] = entry.second; name = singleDash; } // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set InterpretNegativeSetting(name, mapArgs); } } std::string GetArg(const std::string& strArg, const std::string& strDefault) { if (mapArgs.count(strArg)) return mapArgs[strArg]; return strDefault; } int64_t GetArg(const std::string& strArg, int64_t nDefault) { if (mapArgs.count(strArg)) return atoi64(mapArgs[strArg]); return nDefault; } bool GetBoolArg(const std::string& strArg, bool fDefault) { if (mapArgs.count(strArg)) { if (mapArgs[strArg].empty()) return true; return (atoi(mapArgs[strArg]) != 0); } return fDefault; } bool SoftSetArg(const std::string& strArg, const std::string& strValue) { if (mapArgs.count(strArg)) return false; mapArgs[strArg] = strValue; return true; } bool SoftSetBoolArg(const std::string& strArg, bool fValue) { if (fValue) return SoftSetArg(strArg, std::string("1")); else return SoftSetArg(strArg, std::string("0")); } string EncodeBase64(const unsigned char* pch, size_t len) { static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; string strRet=""; strRet.reserve((len+2)/3*4); int mode=0, left=0; const unsigned char *pchEnd = pch+len; while (pch<pchEnd) { int enc = *(pch++); switch (mode) { case 0: // we have no bits strRet += pbase64[enc >> 2]; left = (enc & 3) << 4; mode = 1; break; case 1: // we have two bits strRet += pbase64[left | (enc >> 4)]; left = (enc & 15) << 2; mode = 2; break; case 2: // we have four bits strRet += pbase64[left | (enc >> 6)]; strRet += pbase64[enc & 63]; mode = 0; break; } } if (mode) { strRet += pbase64[left]; strRet += '='; if (mode == 1) strRet += '='; } return strRet; } string EncodeBase64(const string& str) { return EncodeBase64((const unsigned char*)str.c_str(), str.size()); } vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid) { static const int decode64_table[256] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; if (pfInvalid) *pfInvalid = false; vector<unsigned char> vchRet; vchRet.reserve(strlen(p)*3/4); int mode = 0; int left = 0; while (1) { int dec = decode64_table[(unsigned char)*p]; if (dec == -1) break; p++; switch (mode) { case 0: // we have no bits and get 6 left = dec; mode = 1; break; case 1: // we have 6 bits and keep 4 vchRet.push_back((left<<2) | (dec>>4)); left = dec & 15; mode = 2; break; case 2: // we have 4 bits and get 6, we keep 2 vchRet.push_back((left<<4) | (dec>>2)); left = dec & 3; mode = 3; break; case 3: // we have 2 bits and get 6 vchRet.push_back((left<<6) | dec); mode = 0; break; } } if (pfInvalid) switch (mode) { case 0: // 4n base64 characters processed: ok break; case 1: // 4n+1 base64 character processed: impossible *pfInvalid = true; break; case 2: // 4n+2 base64 characters processed: require '==' if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1) *pfInvalid = true; break; case 3: // 4n+3 base64 characters processed: require '=' if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1) *pfInvalid = true; break; } return vchRet; } string DecodeBase64(const string& str) { vector<unsigned char> vchRet = DecodeBase64(str.c_str()); return string((const char*)&vchRet[0], vchRet.size()); } string EncodeBase32(const unsigned char* pch, size_t len) { static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567"; string strRet=""; strRet.reserve((len+4)/5*8); int mode=0, left=0; const unsigned char *pchEnd = pch+len; while (pch<pchEnd) { int enc = *(pch++); switch (mode) { case 0: // we have no bits strRet += pbase32[enc >> 3]; left = (enc & 7) << 2; mode = 1; break; case 1: // we have three bits strRet += pbase32[left | (enc >> 6)]; strRet += pbase32[(enc >> 1) & 31]; left = (enc & 1) << 4; mode = 2; break; case 2: // we have one bit strRet += pbase32[left | (enc >> 4)]; left = (enc & 15) << 1; mode = 3; break; case 3: // we have four bits strRet += pbase32[left | (enc >> 7)]; strRet += pbase32[(enc >> 2) & 31]; left = (enc & 3) << 3; mode = 4; break; case 4: // we have two bits strRet += pbase32[left | (enc >> 5)]; strRet += pbase32[enc & 31]; mode = 0; } } static const int nPadding[5] = {0, 6, 4, 3, 1}; if (mode) { strRet += pbase32[left]; for (int n=0; n<nPadding[mode]; n++) strRet += '='; } return strRet; } string EncodeBase32(const string& str) { return EncodeBase32((const unsigned char*)str.c_str(), str.size()); } vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid) { static const int decode32_table[256] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; if (pfInvalid) *pfInvalid = false; vector<unsigned char> vchRet; vchRet.reserve((strlen(p))*5/8); int mode = 0; int left = 0; while (1) { int dec = decode32_table[(unsigned char)*p]; if (dec == -1) break; p++; switch (mode) { case 0: // we have no bits and get 5 left = dec; mode = 1; break; case 1: // we have 5 bits and keep 2 vchRet.push_back((left<<3) | (dec>>2)); left = dec & 3; mode = 2; break; case 2: // we have 2 bits and keep 7 left = left << 5 | dec; mode = 3; break; case 3: // we have 7 bits and keep 4 vchRet.push_back((left<<1) | (dec>>4)); left = dec & 15; mode = 4; break; case 4: // we have 4 bits, and keep 1 vchRet.push_back((left<<4) | (dec>>1)); left = dec & 1; mode = 5; break; case 5: // we have 1 bit, and keep 6 left = left << 5 | dec; mode = 6; break; case 6: // we have 6 bits, and keep 3 vchRet.push_back((left<<2) | (dec>>3)); left = dec & 7; mode = 7; break; case 7: // we have 3 bits, and keep 0 vchRet.push_back((left<<5) | dec); mode = 0; break; } } if (pfInvalid) switch (mode) { case 0: // 8n base32 characters processed: ok break; case 1: // 8n+1 base32 characters processed: impossible case 3: // +3 case 6: // +6 *pfInvalid = true; break; case 2: // 8n+2 base32 characters processed: require '======' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || p[4] != '=' || p[5] != '=' || decode32_table[(unsigned char)p[6]] != -1) *pfInvalid = true; break; case 4: // 8n+4 base32 characters processed: require '====' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || decode32_table[(unsigned char)p[4]] != -1) *pfInvalid = true; break; case 5: // 8n+5 base32 characters processed: require '===' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || decode32_table[(unsigned char)p[3]] != -1) *pfInvalid = true; break; case 7: // 8n+7 base32 characters processed: require '=' if (left || p[0] != '=' || decode32_table[(unsigned char)p[1]] != -1) *pfInvalid = true; break; } return vchRet; } string DecodeBase32(const string& str) { vector<unsigned char> vchRet = DecodeBase32(str.c_str()); return string((const char*)&vchRet[0], vchRet.size()); } bool WildcardMatch(const char* psz, const char* mask) { while (true) { switch (*mask) { case '\0': return (*psz == '\0'); case '*': return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask)); case '?': if (*psz == '\0') return false; break; default: if (*psz != *mask) return false; break; } psz++; mask++; } } bool WildcardMatch(const string& str, const string& mask) { return WildcardMatch(str.c_str(), mask.c_str()); } static std::string FormatException(std::exception* pex, const char* pszThread) { #ifdef WIN32 char pszModule[MAX_PATH] = ""; GetModuleFileNameA(NULL, pszModule, sizeof(pszModule)); #else const char* pszModule = "PosCoin"; #endif if (pex) return strprintf( "EXCEPTION: %s \n%s \n%s in %s \n", typeid(*pex).name(), pex->what(), pszModule, pszThread); else return strprintf( "UNKNOWN EXCEPTION \n%s in %s \n", pszModule, pszThread); } void LogException(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n%s", message.c_str()); } void PrintException(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n\n************************\n%s\n", message.c_str()); fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); strMiscWarning = message; throw; } void LogStackTrace() { printf("\n\n******* exception encountered *******\n"); if (fileout) { #ifndef WIN32 void* pszBuffer[32]; size_t size; size = backtrace(pszBuffer, 32); backtrace_symbols_fd(pszBuffer, size, fileno(fileout)); #endif } } void PrintExceptionContinue(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n\n************************\n%s\n", message.c_str()); fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); strMiscWarning = message; } boost::filesystem::path GetDefaultDataDir() { namespace fs = boost::filesystem; // Windows < Vista: C:\Documents and Settings\Username\Application Data\PosCoin // Windows >= Vista: C:\Users\Username\AppData\Roaming\PosCoin // Mac: ~/Library/Application Support/PosCoin // Unix: ~/.PosCoin #ifdef WIN32 // Windows return GetSpecialFolderPath(CSIDL_APPDATA) / "PosCoin"; #else fs::path pathRet; char* pszHome = getenv("HOME"); if (pszHome == NULL || strlen(pszHome) == 0) pathRet = fs::path("/"); else pathRet = fs::path(pszHome); #ifdef MAC_OSX // Mac pathRet /= "Library/Application Support"; fs::create_directory(pathRet); return pathRet / "PosCoin"; #else // Unix return pathRet / ".PosCoin"; #endif #endif } const boost::filesystem::path &GetDataDir(bool fNetSpecific) { namespace fs = boost::filesystem; static fs::path pathCached[2]; static CCriticalSection csPathCached; static bool cachedPath[2] = {false, false}; fs::path &path = pathCached[fNetSpecific]; // This can be called during exceptions by printf, so we cache the // value so we don't have to do memory allocations after that. if (cachedPath[fNetSpecific]) return path; LOCK(csPathCached); if (mapArgs.count("-datadir")) { path = fs::system_complete(mapArgs["-datadir"]); if (!fs::is_directory(path)) { path = ""; return path; } } else { path = GetDefaultDataDir(); } if (fNetSpecific && fTestNet) path /= "testnet"; fs::create_directory(path); cachedPath[fNetSpecific]=true; return path; } boost::filesystem::path GetConfigFile() { boost::filesystem::path pathConfigFile(GetArg("-conf", "PosCoin.conf")); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; return pathConfigFile; } void ReadConfigFile(map<string, string>& mapSettingsRet, map<string, vector<string> >& mapMultiSettingsRet) { boost::filesystem::ifstream streamConfig(GetConfigFile()); if (!streamConfig.good()) return; // No bitcoin.conf file is OK set<string> setOptions; setOptions.insert("*"); for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it) { // Don't overwrite existing settings so command line settings override bitcoin.conf string strKey = string("-") + it->string_key; if (mapSettingsRet.count(strKey) == 0) { mapSettingsRet[strKey] = it->value[0]; // interpret nofoo=1 as foo=0 (and nofoo=0 as foo=1) as long as foo not set) InterpretNegativeSetting(strKey, mapSettingsRet); } mapMultiSettingsRet[strKey].push_back(it->value[0]); } } boost::filesystem::path GetPidFile() { boost::filesystem::path pathPidFile(GetArg("-pid", "PosCoind.pid")); if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile; return pathPidFile; } #ifndef WIN32 void CreatePidFile(const boost::filesystem::path &path, pid_t pid) { FILE* file = fopen(path.string().c_str(), "w"); if (file) { fprintf(file, "%d\n", pid); fclose(file); } } #endif bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest) { #ifdef WIN32 return MoveFileExA(src.string().c_str(), dest.string().c_str(), MOVEFILE_REPLACE_EXISTING); #else int rc = std::rename(src.string().c_str(), dest.string().c_str()); return (rc == 0); #endif /* WIN32 */ } void FileCommit(FILE *fileout) { fflush(fileout); // harmless if redundantly called #ifdef WIN32 _commit(_fileno(fileout)); #else fsync(fileno(fileout)); #endif } void ShrinkDebugFile() { // Scroll debug.log if it's getting too big boost::filesystem::path pathLog = GetDataDir() / "debug.log"; FILE* file = fopen(pathLog.string().c_str(), "r"); if (file && boost::filesystem::file_size(pathLog) > 10 * 1000000) { // Restart the file with some of the end char pch[200000]; fseek(file, -sizeof(pch), SEEK_END); int nBytes = fread(pch, 1, sizeof(pch), file); fclose(file); file = fopen(pathLog.string().c_str(), "w"); if (file) { fwrite(pch, 1, nBytes, file); fclose(file); } } } // // "Never go to sea with two chronometers; take one or three." // Our three time sources are: // - System clock // - Median of other nodes clocks // - The user (asking the user to fix the system clock if the first two disagree) // static int64_t nMockTime = 0; // For unit testing int64_t GetTime() { if (nMockTime) return nMockTime; return time(NULL); } void SetMockTime(int64_t nMockTimeIn) { nMockTime = nMockTimeIn; } static int64_t nTimeOffset = 0; int64_t GetTimeOffset() { return nTimeOffset; } int64_t GetAdjustedTime() { return GetTime() + GetTimeOffset(); } void AddTimeData(const CNetAddr& ip, int64_t nTime) { int64_t nOffsetSample = nTime - GetTime(); // Ignore duplicates static set<CNetAddr> setKnown; if (!setKnown.insert(ip).second) return; // Add data vTimeOffsets.input(nOffsetSample); printf("Added time data, samples %d, offset %+"PRId64" (%+"PRId64" minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60); if (vTimeOffsets.size() >= 5 && vTimeOffsets.size() % 2 == 1) { int64_t nMedian = vTimeOffsets.median(); std::vector<int64_t> vSorted = vTimeOffsets.sorted(); // Only let other nodes change our time by so much if (abs64(nMedian) < 70 * 60) { nTimeOffset = nMedian; } else { nTimeOffset = 0; static bool fDone; if (!fDone) { // If nobody has a time different than ours but within 5 minutes of ours, give a warning bool fMatch = false; BOOST_FOREACH(int64_t nOffset, vSorted) if (nOffset != 0 && abs64(nOffset) < 5 * 60) fMatch = true; if (!fMatch) { fDone = true; string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong PosCoin will not work properly."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); uiInterface.ThreadSafeMessageBox(strMessage+" ", string("PosCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION); } } } if (fDebug) { BOOST_FOREACH(int64_t n, vSorted) printf("%+"PRId64" ", n); printf("| "); } printf("nTimeOffset = %+"PRId64" (%+"PRId64" minutes)\n", nTimeOffset, nTimeOffset/60); } } string FormatVersion(int nVersion) { if (nVersion%100 == 0) return strprintf("%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100); else return strprintf("%d.%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100, nVersion%100); } string FormatFullVersion() { return CLIENT_BUILD; } // Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014) std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments) { std::ostringstream ss; ss << "/"; ss << name << ":" << FormatVersion(nClientVersion); if (!comments.empty()) ss << "(" << boost::algorithm::join(comments, "; ") << ")"; ss << "/"; return ss.str(); } #ifdef WIN32 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate) { namespace fs = boost::filesystem; char pszPath[MAX_PATH] = ""; if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate)) { return fs::path(pszPath); } printf("SHGetSpecialFolderPathA() failed, could not obtain requested path.\n"); return fs::path(""); } #endif void runCommand(std::string strCommand) { int nErr = ::system(strCommand.c_str()); if (nErr) printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr); } void RenameThread(const char* name) { #if defined(PR_SET_NAME) // Only the first 15 characters are used (16 - NUL terminator) ::prctl(PR_SET_NAME, name, 0, 0, 0); #elif 0 && (defined(__FreeBSD__) || defined(__OpenBSD__)) // TODO: This is currently disabled because it needs to be verified to work // on FreeBSD or OpenBSD first. When verified the '0 &&' part can be // removed. pthread_set_name_np(pthread_self(), name); // This is XCode 10.6-and-later; bring back if we drop 10.5 support: // #elif defined(MAC_OSX) // pthread_setname_np(name); #else // Prevent warnings for unused parameters... (void)name; #endif } bool NewThread(void(*pfn)(void*), void* parg) { try { boost::thread(pfn, parg); // thread detaches when out of scope } catch(boost::thread_resource_error &e) { printf("Error creating thread: %s\n", e.what()); return false; } return true; }
[ "PosCoinDev@gmail.com" ]
PosCoinDev@gmail.com
2184798c5ac6357c31ea33921697d5857bfd4903
8d658aa9937f6c99b8b053cfa5fcbfa573298f69
/Classes/Energy.h
bca2eec927d92739411482e2d43df61a935a179c
[]
no_license
Yarou2018/FlyPlane-2018-
657220a950974cc24dde995b94c4b83f08624765
d5ee7ab53e1173f6f32fdd2a185fbcc83dc94738
refs/heads/master
2020-03-25T00:02:48.194259
2018-08-01T14:17:31
2018-08-01T14:17:31
143,166,465
0
0
null
null
null
null
UTF-8
C++
false
false
156
h
#pragma once #include"cocos2d.h" USING_NS_CC; #include"Constants.h" class Enemy :public Sprite { public: static Enemy* createEnergy(); bool init(); };
[ "626340280@Qq.com" ]
626340280@Qq.com
c47d6bb6bcf49feaa01d9c76be2f89e8b065c7a8
192c43d538ab8d47f5998cc93b8d32e50e09421a
/RectangleDriver.cpp
926a6fa7cd77c2a46b7077bc353b501f844f6279
[]
no_license
Darnell-Estrada/Intro-to-Computer-Science-III
53ffc922126d54d29e6aae6ff51bd4dbcae9b1a0
0cdb9fed10cecd52758d2dfe556688ccb4080b0b
refs/heads/master
2020-07-05T00:01:46.820494
2019-08-15T02:58:27
2019-08-15T02:58:27
202,463,319
0
0
null
null
null
null
UTF-8
C++
false
false
1,509
cpp
// DARNELL JAMES V. ESTRADA // CS 2370 SEC 01 // RectangleDriver.cpp // This program combines smart pointers with classes. #include "Rectangle.h" int main() { double num = 0.0, totalArea = 0.0; Rectangle *bedroom = NULL, *bathroom = NULL, *kitchen = NULL; bedroom = new Rectangle; bathroom = new Rectangle; kitchen = new Rectangle; cout << "This program calculates the area of three rooms." "\nEnter bedroom width: "; cin >> num; bedroom->setWidth(num); cout << "Enter bedroom length: "; cin >> num; bedroom->setLength(num); cout << "Enter bathroom width: "; cin >> num; bathroom->setWidth(num); cout << "Enter bathroom length: "; cin >> num; bathroom->setLength(num); cout << "Enter kitchen width: "; cin >> num; kitchen->setWidth(num); cout << "Enter kitchen length: "; cin >> num; kitchen->setLength(num); cout << "\nData for three rooms" << "\nBedroom width: " << bedroom->getWidth() << "\nBedroom length: " << bedroom->getLength() << "\nBathroom width: " << bathroom->getWidth() << "\nBathroom length: " << bathroom->getLength() << "\nKitchen width: " << kitchen->getWidth() << "\nKitchen length: " << kitchen->getLength(); totalArea = bedroom->getArea() + bathroom->getArea() + kitchen->getArea(); cout << "\nArea for all three rooms: " << totalArea << endl; delete bedroom; delete bathroom; delete kitchen; bedroom = NULL; bathroom = NULL; kitchen = NULL; cin.ignore(); cin.get(); return 0; }
[ "noreply@github.com" ]
Darnell-Estrada.noreply@github.com
fad7253f90a63a7805f1b45dd669ed4a0e3ebb78
26a43a03d4ae6fffa8e2b3e2c461231cce63141c
/include/Car.h
4bc20aa6e2f98f26b89e4d433b6dd314a07752bd
[]
no_license
nbcin/cmake-primer
ed44dad3300af7d4e7ccfebc362baaa6e40b38dd
bae458adee371bd417945cf061b80a9bbe9c0f2b
refs/heads/master
2021-01-14T11:23:06.085493
2011-01-02T05:22:34
2011-01-02T05:22:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
209
h
#include <string> using namespace std; class Car { public: Car(string name); string getName(); int getMiles(); void drive(int miles); void crash(); private: string _name; int _miles; };
[ "testforqunfa@gmail.com" ]
testforqunfa@gmail.com
242d66e922c425a1483c5c5e7523d3735c84cbc5
6c7ce8651a08d66f0a3a224f2c6bcfe629065320
/src/walletdb.cpp
d871def387e877c96e3a75df4a91e415fbc30234
[ "MIT" ]
permissive
Bigscoin2018/bigscoin
da9d98e8588a1d045bf7beaa2cee4246fef341a9
ff8422b40dc0914c12e412d7885b12a527d3fe1b
refs/heads/master
2021-05-12T09:14:36.113562
2018-01-13T02:49:59
2018-01-13T02:49:59
117,307,638
0
0
null
null
null
null
UTF-8
C++
false
false
23,828
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "walletdb.h" #include "wallet.h" #include <boost/version.hpp> #include <boost/filesystem.hpp> using namespace std; using namespace boost; static uint64_t nAccountingEntryNumber = 0; extern bool fWalletUnlockStakingOnly; // // CWalletDB // bool CWalletDB::WriteName(const string& strAddress, const string& strName) { nWalletDBUpdated++; return Write(make_pair(string("name"), strAddress), strName); } bool CWalletDB::EraseName(const string& strAddress) { // This should only be used for sending addresses, never for receiving addresses, // receiving addresses must always have an address book entry if they're not change return. nWalletDBUpdated++; return Erase(make_pair(string("name"), strAddress)); } bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account) { account.SetNull(); return Read(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) { return Write(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry) { return Write(boost::make_tuple(string("acentry"), acentry.strAccount, nAccEntryNum), acentry); } bool CWalletDB::WriteAccountingEntry(const CAccountingEntry& acentry) { return WriteAccountingEntry(++nAccountingEntryNumber, acentry); } int64_t CWalletDB::GetAccountCreditDebit(const string& strAccount) { list<CAccountingEntry> entries; ListAccountCreditDebit(strAccount, entries); int64_t nCreditDebit = 0; BOOST_FOREACH (const CAccountingEntry& entry, entries) nCreditDebit += entry.nCreditDebit; return nCreditDebit; } void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries) { bool fAllAccounts = (strAccount == "*"); Dbc* pcursor = GetCursor(); if (!pcursor) throw runtime_error("CWalletDB::ListAccountCreditDebit() : cannot create DB cursor"); unsigned int fFlags = DB_SET_RANGE; while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); if (fFlags == DB_SET_RANGE) ssKey << boost::make_tuple(string("acentry"), (fAllAccounts? string("") : strAccount), uint64_t(0)); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags); fFlags = DB_NEXT; if (ret == DB_NOTFOUND) break; else if (ret != 0) { pcursor->close(); throw runtime_error("CWalletDB::ListAccountCreditDebit() : error scanning DB"); } // Unserialize string strType; ssKey >> strType; if (strType != "acentry") break; CAccountingEntry acentry; ssKey >> acentry.strAccount; if (!fAllAccounts && acentry.strAccount != strAccount) break; ssValue >> acentry; ssKey >> acentry.nEntryNo; entries.push_back(acentry); } pcursor->close(); } DBErrors CWalletDB::ReorderTransactions(CWallet* pwallet) { LOCK(pwallet->cs_wallet); // Old wallets didn't have any defined order for transactions // Probably a bad idea to change the output of this // First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap. typedef pair<CWalletTx*, CAccountingEntry*> TxPair; typedef multimap<int64_t, TxPair > TxItems; TxItems txByTime; for (map<uint256, CWalletTx>::iterator it = pwallet->mapWallet.begin(); it != pwallet->mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); txByTime.insert(make_pair(wtx->nTimeReceived, TxPair(wtx, (CAccountingEntry*)0))); } list<CAccountingEntry> acentries; ListAccountCreditDebit("", acentries); BOOST_FOREACH(CAccountingEntry& entry, acentries) { txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } int64_t& nOrderPosNext = pwallet->nOrderPosNext; nOrderPosNext = 0; std::vector<int64_t> nOrderPosOffsets; for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it) { CWalletTx *const pwtx = (*it).second.first; CAccountingEntry *const pacentry = (*it).second.second; int64_t& nOrderPos = (pwtx != 0) ? pwtx->nOrderPos : pacentry->nOrderPos; if (nOrderPos == -1) { nOrderPos = nOrderPosNext++; nOrderPosOffsets.push_back(nOrderPos); if (pacentry) // Have to write accounting regardless, since we don't keep it in memory if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } else { int64_t nOrderPosOff = 0; BOOST_FOREACH(const int64_t& nOffsetStart, nOrderPosOffsets) { if (nOrderPos >= nOffsetStart) ++nOrderPosOff; } nOrderPos += nOrderPosOff; nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1); if (!nOrderPosOff) continue; // Since we're changing the order, write it back if (pwtx) { if (!WriteTx(pwtx->GetHash(), *pwtx)) return DB_LOAD_FAIL; } else if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } } return DB_LOAD_OK; } class CWalletScanState { public: unsigned int nKeys; unsigned int nCKeys; unsigned int nKeyMeta; bool fIsEncrypted; bool fAnyUnordered; int nFileVersion; vector<uint256> vWalletUpgrade; CWalletScanState() { nKeys = nCKeys = nKeyMeta = 0; fIsEncrypted = false; fAnyUnordered = false; nFileVersion = 0; } }; bool ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, CWalletScanState &wss, string& strType, string& strErr) { try { // Unserialize // Taking advantage of the fact that pair serialization // is just the two items serialized one after the other ssKey >> strType; if (strType == "name") { string strAddress; ssKey >> strAddress; ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()]; } else if (strType == "tx") { uint256 hash; ssKey >> hash; CWalletTx& wtx = pwallet->mapWallet[hash]; ssValue >> wtx; if (wtx.CheckTransaction() && (wtx.GetHash() == hash)) wtx.BindWallet(pwallet); else { pwallet->mapWallet.erase(hash); return false; } // Undo serialize changes in 31600 if (31404 <= wtx.fTimeReceivedIsTxTime && wtx.fTimeReceivedIsTxTime <= 31703) { if (!ssValue.empty()) { char fTmp; char fUnused; ssValue >> fTmp >> fUnused >> wtx.strFromAccount; strErr = strprintf("LoadWallet() upgrading tx ver=%d %d '%s' %s", wtx.fTimeReceivedIsTxTime, fTmp, wtx.strFromAccount.c_str(), hash.ToString().c_str()); wtx.fTimeReceivedIsTxTime = fTmp; } else { strErr = strprintf("LoadWallet() repairing tx ver=%d %s", wtx.fTimeReceivedIsTxTime, hash.ToString().c_str()); wtx.fTimeReceivedIsTxTime = 0; } wss.vWalletUpgrade.push_back(hash); } if (wtx.nOrderPos == -1) wss.fAnyUnordered = true; //// debug print //printf("LoadWallet %s\n", wtx.GetHash().ToString().c_str()); //printf(" %12"PRId64" %s %s %s\n", // wtx.vout[0].nValue, // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()).c_str(), // wtx.hashBlock.ToString().substr(0,20).c_str(), // wtx.mapValue["message"].c_str()); } else if (strType == "acentry") { string strAccount; ssKey >> strAccount; uint64_t nNumber; ssKey >> nNumber; if (nNumber > nAccountingEntryNumber) nAccountingEntryNumber = nNumber; if (!wss.fAnyUnordered) { CAccountingEntry acentry; ssValue >> acentry; if (acentry.nOrderPos == -1) wss.fAnyUnordered = true; } } else if (strType == "key" || strType == "wkey") { vector<unsigned char> vchPubKey; ssKey >> vchPubKey; CKey key; if (strType == "key") { wss.nKeys++; CPrivKey pkey; ssValue >> pkey; key.SetPubKey(vchPubKey); if (!key.SetPrivKey(pkey)) { strErr = "Error reading wallet database: CPrivKey corrupt"; return false; } if (key.GetPubKey() != vchPubKey) { strErr = "Error reading wallet database: CPrivKey pubkey inconsistency"; return false; } if (!key.IsValid()) { strErr = "Error reading wallet database: invalid CPrivKey"; return false; } } else { CWalletKey wkey; ssValue >> wkey; key.SetPubKey(vchPubKey); if (!key.SetPrivKey(wkey.vchPrivKey)) { strErr = "Error reading wallet database: CPrivKey corrupt"; return false; } if (key.GetPubKey() != vchPubKey) { strErr = "Error reading wallet database: CWalletKey pubkey inconsistency"; return false; } if (!key.IsValid()) { strErr = "Error reading wallet database: invalid CWalletKey"; return false; } } if (!pwallet->LoadKey(key)) { strErr = "Error reading wallet database: LoadKey failed"; return false; } } else if (strType == "mkey") { unsigned int nID; ssKey >> nID; CMasterKey kMasterKey; ssValue >> kMasterKey; if(pwallet->mapMasterKeys.count(nID) != 0) { strErr = strprintf("Error reading wallet database: duplicate CMasterKey id %u", nID); return false; } pwallet->mapMasterKeys[nID] = kMasterKey; if (pwallet->nMasterKeyMaxID < nID) pwallet->nMasterKeyMaxID = nID; } else if (strType == "ckey") { wss.nCKeys++; vector<unsigned char> vchPubKey; ssKey >> vchPubKey; vector<unsigned char> vchPrivKey; ssValue >> vchPrivKey; if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey)) { strErr = "Error reading wallet database: LoadCryptedKey failed"; return false; } wss.fIsEncrypted = true; } else if (strType == "keymeta") { CPubKey vchPubKey; ssKey >> vchPubKey; CKeyMetadata keyMeta; ssValue >> keyMeta; wss.nKeyMeta++; pwallet->LoadKeyMetadata(vchPubKey, keyMeta); // find earliest key creation time, as wallet birthday if (!pwallet->nTimeFirstKey || (keyMeta.nCreateTime < pwallet->nTimeFirstKey)) pwallet->nTimeFirstKey = keyMeta.nCreateTime; } else if (strType == "defaultkey") { ssValue >> pwallet->vchDefaultKey; } else if (strType == "pool") { int64_t nIndex; ssKey >> nIndex; CKeyPool keypool; ssValue >> keypool; pwallet->setKeyPool.insert(nIndex); // If no metadata exists yet, create a default with the pool key's // creation time. Note that this may be overwritten by actually // stored metadata for that key later, which is fine. CKeyID keyid = keypool.vchPubKey.GetID(); if (pwallet->mapKeyMetadata.count(keyid) == 0) pwallet->mapKeyMetadata[keyid] = CKeyMetadata(keypool.nTime); } else if (strType == "version") { ssValue >> wss.nFileVersion; if (wss.nFileVersion == 10300) wss.nFileVersion = 300; } else if (strType == "cscript") { uint160 hash; ssKey >> hash; CScript script; ssValue >> script; if (!pwallet->LoadCScript(script)) { strErr = "Error reading wallet database: LoadCScript failed"; return false; } } else if (strType == "orderposnext") { ssValue >> pwallet->nOrderPosNext; } } catch (...) { return false; } return true; } static bool IsKeyType(string strType) { return (strType== "key" || strType == "wkey" || strType == "mkey" || strType == "ckey"); } DBErrors CWalletDB::LoadWallet(CWallet* pwallet) { pwallet->vchDefaultKey = CPubKey(); CWalletScanState wss; bool fNoncriticalErrors = false; DBErrors result = DB_LOAD_OK; try { LOCK(pwallet->cs_wallet); int nMinVersion = 0; if (Read((string)"minversion", nMinVersion)) { if (nMinVersion > CLIENT_VERSION) return DB_TOO_NEW; pwallet->LoadMinVersion(nMinVersion); } // Get cursor Dbc* pcursor = GetCursor(); if (!pcursor) { printf("Error getting wallet database cursor\n"); return DB_CORRUPT; } while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue); if (ret == DB_NOTFOUND) break; else if (ret != 0) { printf("Error reading next record from wallet database\n"); return DB_CORRUPT; } // Try to be tolerant of single corrupt records: string strType, strErr; if (!ReadKeyValue(pwallet, ssKey, ssValue, wss, strType, strErr)) { // losing keys is considered a catastrophic error, anything else // we assume the user can live with: if (IsKeyType(strType)) result = DB_CORRUPT; else { // Leave other errors alone, if we try to fix them we might make things worse. fNoncriticalErrors = true; // ... but do warn the user there is something wrong. if (strType == "tx") // Rescan if there is a bad transaction record: SoftSetBoolArg("-rescan", true); } } if (!strErr.empty()) printf("%s\n", strErr.c_str()); } pcursor->close(); } catch (...) { result = DB_CORRUPT; } if (fNoncriticalErrors && result == DB_LOAD_OK) result = DB_NONCRITICAL_ERROR; // Any wallet corruption at all: skip any rewriting or // upgrading, we don't want to make it worse. if (result != DB_LOAD_OK) return result; printf("nFileVersion = %d\n", wss.nFileVersion); printf("Keys: %u plaintext, %u encrypted, %u w/ metadata, %u total\n", wss.nKeys, wss.nCKeys, wss.nKeyMeta, wss.nKeys + wss.nCKeys); // nTimeFirstKey is only reliable if all keys have metadata if ((wss.nKeys + wss.nCKeys) != wss.nKeyMeta) pwallet->nTimeFirstKey = 1; // 0 would be considered 'no value' BOOST_FOREACH(uint256 hash, wss.vWalletUpgrade) WriteTx(hash, pwallet->mapWallet[hash]); // Rewrite encrypted wallets of versions 0.4.0 and 0.5.0rc: if (wss.fIsEncrypted && (wss.nFileVersion == 40000 || wss.nFileVersion == 50000)) return DB_NEED_REWRITE; if (wss.nFileVersion < CLIENT_VERSION) // Update WriteVersion(CLIENT_VERSION); if (wss.fAnyUnordered) result = ReorderTransactions(pwallet); return result; } void ThreadFlushWalletDB(void* parg) { // Make this thread recognisable as the wallet flushing thread RenameThread("BigsCoin-wallet"); const string& strFile = ((const string*)parg)[0]; static bool fOneThread; if (fOneThread) return; fOneThread = true; if (!GetBoolArg("-flushwallet", true)) return; unsigned int nLastSeen = nWalletDBUpdated; unsigned int nLastFlushed = nWalletDBUpdated; int64_t nLastWalletUpdate = GetTime(); while (!fShutdown) { MilliSleep(500); if (nLastSeen != nWalletDBUpdated) { nLastSeen = nWalletDBUpdated; nLastWalletUpdate = GetTime(); } if (nLastFlushed != nWalletDBUpdated && GetTime() - nLastWalletUpdate >= 2) { TRY_LOCK(bitdb.cs_db,lockDb); if (lockDb) { // Don't do this if any databases are in use int nRefCount = 0; map<string, int>::iterator mi = bitdb.mapFileUseCount.begin(); while (mi != bitdb.mapFileUseCount.end()) { nRefCount += (*mi).second; mi++; } if (nRefCount == 0 && !fShutdown) { map<string, int>::iterator mi = bitdb.mapFileUseCount.find(strFile); if (mi != bitdb.mapFileUseCount.end()) { printf("Flushing wallet.dat\n"); nLastFlushed = nWalletDBUpdated; int64_t nStart = GetTimeMillis(); // Flush wallet.dat so it's self contained bitdb.CloseDb(strFile); bitdb.CheckpointLSN(strFile); bitdb.mapFileUseCount.erase(mi++); printf("Flushed wallet.dat %"PRId64"ms\n", GetTimeMillis() - nStart); } } } } } } bool BackupWallet(const CWallet& wallet, const string& strDest) { if (!wallet.fFileBacked) return false; while (!fShutdown) { { LOCK(bitdb.cs_db); if (!bitdb.mapFileUseCount.count(wallet.strWalletFile) || bitdb.mapFileUseCount[wallet.strWalletFile] == 0) { // Flush log data to the dat file bitdb.CloseDb(wallet.strWalletFile); bitdb.CheckpointLSN(wallet.strWalletFile); bitdb.mapFileUseCount.erase(wallet.strWalletFile); // Copy wallet.dat filesystem::path pathSrc = GetDataDir() / wallet.strWalletFile; filesystem::path pathDest(strDest); if (filesystem::is_directory(pathDest)) pathDest /= wallet.strWalletFile; try { #if BOOST_VERSION >= 104000 filesystem::copy_file(pathSrc, pathDest, filesystem::copy_option::overwrite_if_exists); #else filesystem::copy_file(pathSrc, pathDest); #endif printf("copied wallet.dat to %s\n", pathDest.string().c_str()); return true; } catch(const filesystem::filesystem_error &e) { printf("error copying wallet.dat to %s - %s\n", pathDest.string().c_str(), e.what()); return false; } } } MilliSleep(100); } return false; } // // Try to (very carefully!) recover wallet.dat if there is a problem. // bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) { // Recovery procedure: // move wallet.dat to wallet.timestamp.bak // Call Salvage with fAggressive=true to // get as much data as possible. // Rewrite salvaged data to wallet.dat // Set -rescan so any missing transactions will be // found. int64_t now = GetTime(); std::string newFilename = strprintf("wallet.%"PRId64".bak", now); int result = dbenv.dbenv.dbrename(NULL, filename.c_str(), NULL, newFilename.c_str(), DB_AUTO_COMMIT); if (result == 0) printf("Renamed %s to %s\n", filename.c_str(), newFilename.c_str()); else { printf("Failed to rename %s to %s\n", filename.c_str(), newFilename.c_str()); return false; } std::vector<CDBEnv::KeyValPair> salvagedData; bool allOK = dbenv.Salvage(newFilename, true, salvagedData); if (salvagedData.empty()) { printf("Salvage(aggressive) found no records in %s.\n", newFilename.c_str()); return false; } printf("Salvage(aggressive) found %"PRIszu" records\n", salvagedData.size()); bool fSuccess = allOK; Db* pdbCopy = new Db(&dbenv.dbenv, 0); int ret = pdbCopy->open(NULL, // Txn pointer filename.c_str(), // Filename "main", // Logical db name DB_BTREE, // Database type DB_CREATE, // Flags 0); if (ret > 0) { printf("Cannot create database file %s\n", filename.c_str()); return false; } CWallet dummyWallet; CWalletScanState wss; DbTxn* ptxn = dbenv.TxnBegin(); BOOST_FOREACH(CDBEnv::KeyValPair& row, salvagedData) { if (fOnlyKeys) { CDataStream ssKey(row.first, SER_DISK, CLIENT_VERSION); CDataStream ssValue(row.second, SER_DISK, CLIENT_VERSION); string strType, strErr; bool fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue, wss, strType, strErr); if (!IsKeyType(strType)) continue; if (!fReadOK) { printf("WARNING: CWalletDB::Recover skipping %s: %s\n", strType.c_str(), strErr.c_str()); continue; } } Dbt datKey(&row.first[0], row.first.size()); Dbt datValue(&row.second[0], row.second.size()); int ret2 = pdbCopy->put(ptxn, &datKey, &datValue, DB_NOOVERWRITE); if (ret2 > 0) fSuccess = false; } ptxn->commit(0); pdbCopy->close(0); delete pdbCopy; return fSuccess; } bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename) { return CWalletDB::Recover(dbenv, filename, false); }
[ "2018.bigscoin@gmail.com" ]
2018.bigscoin@gmail.com
f03ef0b0b02f5556b7731a7b7e86018b0ff14797
b3fee0f77ab02a5f9bfa1e8ba4d4b4940e3de7c0
/FTP_Server/stdafx.cpp
24c580b29f59bb80b5a130d4556c9c79dec83c59
[]
no_license
v12313/FTP_Server
8387ec5ac46165898204650c6f62036b8d0b707f
a01df91916cebe8bcc3598723289314c4b7ec01f
refs/heads/master
2021-04-07T03:19:57.055790
2020-03-18T13:09:16
2020-03-18T13:09:16
248,640,093
0
0
null
null
null
null
GB18030
C++
false
false
165
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // FTP_Server.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h"
[ "漫漫变黑@漫漫变黑-PC" ]
漫漫变黑@漫漫变黑-PC
a100b8abad04a89bd51b85546797573b75dad170
04596a7653e2592bdf5f87eb6aa9fdab9be7ef23
/muduo-master/muduo/base/BlockingQueue.h
b5394fd5fa83278ff0e9c1f7e9a35c1a3d54dd7b
[ "BSD-3-Clause" ]
permissive
skyingwjs/muduo
54ba85b1a199240b0ba4206f569c6f9412665a26
0839d54af8f1c833cbe43e23b3659d3a01c9d090
refs/heads/master
2021-05-10T08:21:34.183015
2018-01-25T08:20:23
2018-01-25T08:20:23
118,876,708
0
0
null
null
null
null
UTF-8
C++
false
false
1,688
h
// Use of this source code is governed by a BSD-style license // that can be found in the License file. // // Author: Shuo Chen (chenshuo at chenshuo dot com) #ifndef MUDUO_BASE_BLOCKINGQUEUE_H #define MUDUO_BASE_BLOCKINGQUEUE_H #include <muduo/base/Condition.h> #include <muduo/base/Mutex.h> #include <boost/noncopyable.hpp> #include <deque> #include <assert.h> namespace muduo { template<typename T> class BlockingQueue : boost::noncopyable { public: BlockingQueue() : mutex_(), notEmpty_(mutex_), queue_() { } void put(const T& x)//生产产品 { MutexLockGuard lock(mutex_); queue_.push_back(x); //队列不为空 通知消费者可以消费产品 notEmpty_.notify(); // wait morphing saves us // http://www.domaigne.com/blog/computing/condvars-signal-with-mutex-locked-or-not/ } #ifdef __GXX_EXPERIMENTAL_CXX0X__ void put(T&& x) { MutexLockGuard lock(mutex_); queue_.push_back(std::move(x)); notEmpty_.notify(); } // FIXME: emplace() #endif T take()//消费产品 { MutexLockGuard lock(mutex_); // always use a while-loop, due to spurious wakeup while (queue_.empty())//队列为空 则需等待 直到被队列不为空被唤醒 { notEmpty_.wait(); } assert(!queue_.empty()); #ifdef __GXX_EXPERIMENTAL_CXX0X__ T front(std::move(queue_.front())); #else T front(queue_.front()); #endif queue_.pop_front(); return front; } size_t size() const { MutexLockGuard lock(mutex_); return queue_.size(); } private: mutable MutexLock mutex_; Condition notEmpty_; std::deque<T> queue_; }; } #endif // MUDUO_BASE_BLOCKINGQUEUE_H
[ "cy_wangjinshan@163.com" ]
cy_wangjinshan@163.com
ba483e95ee556db21d1b0b9a4c09b1c06f1496ed
408577db1d5047f00f35a769e0abe6ab6b37c8d5
/Step6/ljson.cc
0ade7a1c5582a1a7602d514d7f3fa5c0b8a54770
[]
no_license
irvingow/easy_json
074824b47a15f9b701f8feb6387ae478ccab3b92
fbe51db36249b7277ed7e41c279a787265248527
refs/heads/main
2023-06-28T09:45:22.928735
2021-07-09T14:00:15
2021-07-09T14:00:15
384,167,759
0
0
null
null
null
null
UTF-8
C++
false
false
13,244
cc
// // Created by 刘文景 on 2021/7/3. // #include "ljson.h" #include <cassert> // assert() #include <cmath> // HUGE_VAL #include <algorithm> #ifndef LJSON_PARSE_STACK_INIT_SIZE #define LJSON_PARSE_STACK_INIT_SIZE 256 #endif namespace ljson { namespace { bool isdigit(const char& ch) { return ch >= '0' && ch <= '9'; } bool isdigit1to9(const char& ch) { return ch >= '1' && ch <= '9'; } } struct ljson_context { public: explicit ljson_context(const char* json) : json_(json), stack_(nullptr), size_(0), top_(0) {} ~ljson_context(); void parse_whitespace(); LJSON_STATE parse_literal(const std::shared_ptr<ljson_value> &value, const char* literal, LJSON_TYPE type); LJSON_STATE parse_number(const std::shared_ptr<ljson_value> &value); LJSON_STATE parse_value(const std::shared_ptr<ljson_value> &value); void encode_uft8(unsigned u); LJSON_STATE parse_string_raw(char **str, size_t *len); LJSON_STATE parse_string(const std::shared_ptr<ljson_value> &value); LJSON_STATE parse_array(const std::shared_ptr<ljson_value> &value); LJSON_STATE parse_object(const std::shared_ptr<ljson_value> &value); public: static const char* parse_hex4(const char* p, unsigned *u); void put_char(char ch); void *push(size_t size); void *pop(size_t size); void push_buffer(std::shared_ptr<void> value); template<typename T> std::vector<std::shared_ptr<T>> pop_buffer(size_t size); public: const char *json_; char *stack_; size_t size_, top_; std::vector<std::shared_ptr<void>> array_buffer_; /* * @ch: next expected character * @noted: exit if next character is not ch */ void expect_next(const char &ch); }; ljson_context::~ljson_context() { assert(top_ == 0); if (stack_ != nullptr) free(stack_); } void ljson_context::put_char(char ch) { auto address = static_cast<char *>(push(sizeof(char))); *address = ch; } void * ljson_context::push(size_t size) { assert(size > 0); void *ret = nullptr; if (top_ + size >= size_) { if (size_ == 0) size_ = LJSON_PARSE_STACK_INIT_SIZE; while (top_ + size >= size_) size_ += size_ >> 1; /* size_ * 1.5 */ stack_ = static_cast<char *>(realloc(stack_, size_)); } ret = stack_ + top_; top_ += size; return ret; } void * ljson_context::pop(size_t size) { assert(top_ >= size); return stack_ + (top_ -= size); } void ljson_context::push_buffer(std::shared_ptr<void> value) { array_buffer_.push_back(std::move(value)); } template <typename T> std::vector<std::shared_ptr<T> > ljson_context::pop_buffer(size_t size) { assert(size <= array_buffer_.size()); std::vector<std::shared_ptr<T>> pops; while (size > 0) { size--; auto back = std::static_pointer_cast<T>(array_buffer_.back()); pops.push_back(back); array_buffer_.pop_back(); } // notice that reverse is must, we need to keep the order as elements were pushed. std::reverse(pops.begin(), pops.end()); return pops; } void ljson_context::expect_next(const char &ch) { assert(*json_ == ch); json_++; } void ljson_context::parse_whitespace() { const char* p = json_; while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r') p++; json_ = p; } LJSON_STATE ljson_context::parse_literal(const std::shared_ptr<ljson_value> &value, const char *literal, LJSON_TYPE type) { size_t i = 0; expect_next(literal[0]); for (; literal[i+1]; i++) if (json_[i] != literal[i+1]) return LJSON_PARSE_INVALID_VALUE; json_ += i; value->set_type(type); return LJSON_PARSE_OK; } LJSON_STATE ljson_context::parse_number(const std::shared_ptr<ljson_value> &value) { const char* p = json_; // process sign character if (*p == '-') p++; // process only one '0' if (*p == '0') p++; else { if (!isdigit1to9(*p)) return LJSON_PARSE_INVALID_VALUE; // process all digits for (p++; isdigit(*p); ++p); } if (*p == '.') { p++; if (!isdigit(*p)) return LJSON_PARSE_INVALID_VALUE; // process all digits for (p++; isdigit(*p); ++p); } if (*p == 'e' || *p == 'E') { p++; if (*p == '+' || *p == '-') p++; if (!isdigit(*p)) return LJSON_PARSE_INVALID_VALUE; // process all digits for (p++; isdigit(*p); ++p); } errno = 0; auto number = strtod(json_, nullptr); // in set_number we set the type to LJSON_NUMBER value->set_number(number); if (errno == ERANGE && (number == HUGE_VAL || number == -HUGE_VAL)) { // we have to set back value type to LSJON_NULL value->set_type(LJSON_NULL); return LJSON_PARSE_NUMBER_TOO_BIG; } json_ = p; return LJSON_PARSE_OK; } // reference: https://zhuanlan.zhihu.com/p/22731540 const char* ljson_context::parse_hex4(const char *p, unsigned int *u) { *u = 0; for (int i = 0; i < 4; ++i) { char ch = *p++; *u <<= 4; if (ch >= '0' && ch <= '9') *u |= ch - '0'; else if (ch >= 'A' && ch <= 'F') *u |= ch - ('A' - 10); else if (ch >= 'a' && ch <= 'f') *u |= ch - ('a' - 10); else return nullptr; } return p; } void ljson_context::encode_uft8(unsigned int u) { if (u <= 0x7F) put_char(u & 0xFF); else if (u <= 0x7FF) { put_char(0xC0 | ((u >> 6) & 0xFF)); put_char(0x80 | ( u & 0x3F)); } else if (u <= 0xFFFF) { put_char(0xE0 | ((u >> 12) & 0xFF)); put_char(0x80 | ((u >> 6) & 0x3F)); put_char(0x80 | ( u & 0x3F)); } else { assert(u <= 0x10FFFF); put_char(0xF0 | ((u >> 18) & 0xFF)); put_char(0x80 | ((u >> 12) & 0x3F)); put_char(0x80 | ((u >> 6) & 0x3F)); put_char(0x80 | ( u & 0x3F)); } } #define STRING_ERROR(ret) do { top_ = head; return ret; } while(0) LJSON_STATE ljson_context::parse_string_raw(char **str, size_t *len) { size_t head = top_; expect_next('\"'); const char* p = json_; for (;;) { char ch = *p++; switch (ch) { case '\"': // whole string has been processed. *len = top_ - head; *str = static_cast<char*>(pop(*len)); json_ = p; return LJSON_PARSE_OK; case '\\': switch (*p++) { case '\"': put_char( '\"'); break; case '\\': put_char('\\'); break; case '/': put_char('/' ); break; case 'b': put_char( '\b'); break; case 'f': put_char('\f'); break; case 'n': put_char('\n'); break; case 'r': put_char('\r'); break; case 't': put_char('\t'); break; case 'u': unsigned u, u2; if (!(p = parse_hex4(p, &u))) STRING_ERROR(LJSON_PARSE_INVALID_UNICODE_HEX); if (u >= 0xD800 && u <= 0xDBFF) { if (*p++ != '\\') STRING_ERROR(LJSON_PARSE_INVALID_UNICODE_SURROGATE); if (*p++ != 'u') STRING_ERROR(LJSON_PARSE_INVALID_UNICODE_SURROGATE); if (!(p = parse_hex4(p, &u2))) STRING_ERROR(LJSON_PARSE_INVALID_UNICODE_HEX); if (u2 < 0xDC00 || u2 > 0xDFFF) STRING_ERROR(LJSON_PARSE_INVALID_UNICODE_SURROGATE); u = (((u - 0xD800) << 10) | (u2 - 0xDC00)) + 0x10000; } encode_uft8(u); break; default: STRING_ERROR(LJSON_PARSE_INVALID_STRING_ESCAPE); } break; case '\0': STRING_ERROR(LJSON_PARSE_MISS_QUOTATION_MARK); default: if (static_cast<unsigned char>(ch) < 0x20) STRING_ERROR(LJSON_PARSE_INVALID_STRING_CHAR); put_char(ch); } } } LJSON_STATE ljson_context::parse_string(const std::shared_ptr<ljson_value> &value) { LJSON_STATE ret = LJSON_PARSE_OK; char *str = nullptr; size_t len = 0; if ((ret = parse_string_raw(&str, &len)) == LJSON_PARSE_OK) { value->set_string(str, len); } return ret; } LJSON_STATE ljson_context::parse_array(const std::shared_ptr<ljson_value> &value) { size_t size = 0; expect_next('['); parse_whitespace(); if (*json_ == ']') { json_++; value->set_type(LJSON_ARRAY); return LJSON_PARSE_OK; } LJSON_STATE ret; for (;;) { auto tmp_value = ljson_value::create(); if ((ret = parse_value(tmp_value)) != LJSON_PARSE_OK) break; push_buffer(tmp_value); size++; parse_whitespace(); if (*json_ == ',') { json_++; parse_whitespace(); } else if (*json_ == ']') { json_++; value->set_type(LJSON_ARRAY); auto buffer = pop_buffer<ljson_value>(size); value->set_array(buffer); return LJSON_PARSE_OK; } else { ret = LJSON_PARSE_MISS_COMMA_OR_SQUARE_BRACKET; break; } } // Pop the value in the buffer pop_buffer<ljson_value>(size); return ret; } LJSON_STATE ljson_context::parse_object(const std::shared_ptr<ljson_value> &value) { size_t size = 0; LJSON_STATE ret = LJSON_PARSE_OK; expect_next('{'); parse_whitespace(); if (*json_ == '}') { json_++; value->set_type(LJSON_OBJECT); return LJSON_PARSE_OK; } for (;;) { /// we have to declare obj here, because @func push_buffer is shallow copy auto obj = std::make_shared<ljson_member>(); char *key = nullptr; if (*json_ != '"') { ret = LJSON_PARSE_MISS_KEY; break; } if ((ret = parse_string_raw(&key, &obj->len)) != LJSON_PARSE_OK) { break; } memcpy(obj->k = static_cast<char *>(malloc(obj->len + 1)), key, obj->len); obj->k[obj->len] = '\0'; parse_whitespace(); if (*json_ != ':') { ret = LJSON_PARSE_MISS_COLON; break; } json_++; parse_whitespace(); /// parse value if ((ret = parse_value(obj->value)) != LJSON_PARSE_OK) { break; } /// notice here are shallow copy push_buffer(obj); size++; parse_whitespace(); if (*json_ == ',') { json_++; parse_whitespace(); } else if (*json_ == '}') { json_++; auto buffer = pop_buffer<ljson_member>(size); value->set_objects(buffer); return LJSON_PARSE_OK; } else { ret = LJSON_PARSE_MISS_COMMA_OR_SQUARE_BRACKET; break; } } /// pop and free members in the buffer pop_buffer<ljson_member>(size); return ret; } LJSON_STATE ljson_context::parse_value(const std::shared_ptr<ljson_value> &value) { switch (*json_) { case 't': return parse_literal(value, "true", LJSON_TRUE); case 'f': return parse_literal(value, "false", LJSON_FALSE); case 'n': return parse_literal(value, "null", LJSON_NULL); default: return parse_number(value); case '"': return parse_string(value); case '[': return parse_array(value); case '{': return parse_object(value); case '\0': return LJSON_PARSE_EXPECT_VALUE; } } std::shared_ptr<ljson_value> ljson_value::create() { return std::shared_ptr<ljson_value>(new ljson_value); // we can't call make_shared here. // see:https://stackoverflow.com/a/45127266/6546412 // return std::make_shared<ljson_value>(); } ljson_value::~ljson_value() { destroy(); } void ljson_value::destroy() { if (type_ == LJSON_STRING) { free(str_.str); } type_ = LJSON_NULL; } const char * ljson_value::get_string() const { assert_type(LJSON_STRING); return str_.str; } size_t ljson_value::get_string_length() const { assert_type(LJSON_STRING); return str_.len; } size_t ljson_value::get_array_size() const { assert_type(LJSON_ARRAY); return elements_.size(); } std::shared_ptr<ljson_value> ljson_value::get_array_element(size_t index) const { assert_type(LJSON_ARRAY); assert(index < elements_.size()); return elements_[index]; } size_t ljson_value::get_objects_size() const { assert_type(LJSON_OBJECT); return members_.size(); } const char* ljson_value::get_object_key(size_t index) const { assert_type(LJSON_OBJECT); assert(index < members_.size()); return members_[index]->k; } size_t ljson_value::get_object_key_length(size_t index) const { assert_type(LJSON_OBJECT); assert(index < members_.size()); return members_[index]->len; } std::shared_ptr<ljson_value> ljson_value::get_object_value(size_t index) { assert_type(LJSON_OBJECT); assert(index < members_.size()); return members_[index]->value; } void ljson_value::set_string(const char *s, size_t len) { assert(s != nullptr || len == 0); destroy(); str_.str = (char *)malloc(len + 1); memcpy(str_.str, s, len); str_.str[len] = '\0'; str_.len = len; type_ = LJSON_STRING; } void ljson_value::set_array(std::vector<std::shared_ptr<ljson_value>> array) { set_type(LJSON_ARRAY); elements_ = std::move(array); } //void ljson_value::array_push(std::shared_ptr<ljson_value> value) { // elements_.push_back(std::move(value)); //} void ljson_value::set_objects(std::vector<std::shared_ptr<ljson_member> > members) { set_type(LJSON_OBJECT); members_ = std::move(members); } int ljson_value::parse(const char *json) { ljson_context context(json); context.parse_whitespace(); type_ = LJSON_NULL; int ret = LJSON_PARSE_OK; if ((ret = context.parse_value(getptr())) == LJSON_PARSE_OK) { context.parse_whitespace(); if (*context.json_ != '\0') { type_ = LJSON_NULL; ret = LJSON_PARSE_ROOT_NOT_SINGULAR; } } return ret; } } // namespace ljson
[ "lwj102153@gmail.com" ]
lwj102153@gmail.com
de187bb442edfe6ea7505b3fbf790ce12e64bcab
7194e02699613662d1531864a909e1e965fe8e16
/B1ActionInitialization.cc
93faded4188c4ee2decd398fdbe6e6de0b107bc2
[]
no_license
archdo0909/Geant4_T1
6493fe73301bc244ff3de25a791a756665df898c
8ffe6420c17077c99065ef64f5a1ee014acf5721
refs/heads/master
2021-01-19T01:06:16.452758
2016-08-19T10:33:59
2016-08-19T10:33:59
61,478,563
0
0
null
null
null
null
UTF-8
C++
false
false
2,907
cc
// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: B1ActionInitialization.cc 68058 2013-03-13 14:47:43Z gcosmo $ // /// \file B1ActionInitialization.cc /// \brief Implementation of the B1ActionInitialization class #include "B1ActionInitialization.hh" #include "B1PrimaryGeneratorAction.hh" #include "B1RunAction.hh" #include "B1EventAction.hh" #include "B1SteppingAction.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... B1ActionInitialization::B1ActionInitialization() : G4VUserActionInitialization() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... B1ActionInitialization::~B1ActionInitialization() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void B1ActionInitialization::BuildForMaster() const { SetUserAction(new B1RunAction); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void B1ActionInitialization::Build() const { SetUserAction(new B1PrimaryGeneratorAction); SetUserAction(new B1RunAction); B1EventAction* eventAction = new B1EventAction; SetUserAction(eventAction); SetUserAction(new B1SteppingAction(eventAction)); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
[ "archdo0909@gmail.com" ]
archdo0909@gmail.com
fc5dfdac7c836ecce606bd4bc84222b7c16463c5
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5636311922769920_1/C++/yuxuelu9/main.cpp
6496cb8bba277b19da16f7c41eccfdf1342a030f
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
837
cpp
#include<fstream> #include<string.h> using namespace std; int main(){ ifstream fin("D-large.in"); ofstream fout("D-large.out"); int t=0; fin>>t; bool ans; int k,c,s; for(int kk=1;kk<=t;kk++){ fin>>k>>c>>s; fout<<"Case #"<<kk<<": "; if(s*c<k){ fout<<"IMPOSSIBLE"<<endl; } else{ long long n=0; int tmp=0; if(c>=k){ for(int i=0;i<k;i++){ n=n*k+i; } fout<<n+1<<' '<<endl; } else{ for(int i=tmp;i<tmp+c;i++){ n=n*k+i; } fout<<n+1<<' '; tmp+=c; n=0; while(tmp+c<k){ for(int i=tmp;i<tmp+c;i++){ n=n*k+i; } fout<<n+1<<' '; tmp+=c; n=0; }; for(int i=tmp;i<k;i++){ n=n*k+i; } fout<<n+1<<' '<<endl; } } //fout<<"Case #"<<kk<<": "<<ans<<endl; } return 0; }
[ "alexandra1.back@gmail.com" ]
alexandra1.back@gmail.com
b802f8f504132346024cf2fcb1394bfa9a619a67
a4df592fa2b5e00fd1bde713006ef5add2d0b933
/LINKEDLIST/POLYNOMIAL.cpp
4412d5c733913b0be7bb0fee846568844e1c38c0
[]
no_license
HarshAnand2000/DSA-Basic-Implementations
765d6ad9705c2e2d365066f0fa09fe9224ed6f7c
0c5a0c3dc8276f8477c26ae51bd5e022d551b0c6
refs/heads/master
2023-06-01T08:40:04.977080
2021-06-27T06:25:13
2021-06-27T06:25:13
380,667,791
1
0
null
null
null
null
UTF-8
C++
false
false
1,489
cpp
#include<iostream> #include<math.h> using namespace std; struct Node { int coeff; int exp; int num; struct Node *next; }*poly1=NULL,*poly2=NULL; void create(struct Node *t) { struct Node *last; int num1,num2; cout<<"enter the number of terms"<<endl; cin>>t->num; cout<<"enter each term with coeff and exp:"<<endl; for(int i=0;i<t->num;i++) { t =new Node; cin>>t->coeff>>t->exp; t->next = NULL; if(poly1 == NULL) { poly1 = last = t; } else { last->next = t; last = t; } } } long Eval(struct Node *p,int x) { long val; while(p) { val += p->coeff * pow(x,p->exp); p=p->next; } return val; } void display(struct Node *p) { while(p) { cout<<p->coeff<<"x"<<p->exp<<" + "; p=p->next; } cout<<endl; } struct Node *add(struct Node *p1, struct Node *p2) { struct Node *sum; sum = new Node; if(p1->exp < p2->exp) { sum->coeff = p1->coeff; sum->exp ; p1->exp; } else if(p2->exp < p1->exp) { sum->coeff = p2->coeff; sum->exp = p2->exp; } else { sum->coeff = (p1->coeff + p2->coeff); sum->exp = p1->exp; } return sum; } int main() { create(poly1); create(poly2); display(poly1); display(poly2); struct Node *p3=add(poly1,poly2); display(p3); }
[ "anandharsh428@gmail.com" ]
anandharsh428@gmail.com
2e5dcc9f8af1dea7e709ffa13728f3e234617733
8e9f2e717b5c396a8388369b4daaa1d4a4b266f0
/GHGrafos/utils.h
c37abaa54966868a5d2873eae39523ef8e9ea900
[]
no_license
guilhermelou/GHGrafos
ee77c40653f59822ffe9a5fb522e5b0091a182d6
e909246ffaffaa5391df80dfb0777ec0cabcbe49
refs/heads/master
2020-06-04T21:31:26.112424
2020-05-05T18:06:58
2020-05-05T18:06:58
24,478,978
0
0
null
null
null
null
UTF-8
C++
false
false
296
h
#ifndef UTILS_H #define UTILS_H #include <QObject> #include <ghedge.h> class Utils : public QObject { Q_OBJECT public: explicit Utils(QObject *parent = 0); static QList<GHEdge*> bubbleSort(QList<GHEdge*> edges); signals: public slots: }; #endif // UTILS_H
[ "g.lourenco.santos@gmail.com" ]
g.lourenco.santos@gmail.com
c2159e508d0ca3a47b571e0fe51a48a979f5efe2
95e296d857f8a515f27138d8825e8295a381c4e7
/modules/json/PJson.cpp
df926059aebf15827b738c779f84fdd9d44c2a59
[ "Zlib" ]
permissive
tempbottle/pika
b5178c4e8c7e4575cb4d8f9f68aba1591d4ce4c7
58342ab8e8abb9c0d0d6af78579e25fb80a0b294
refs/heads/master
2020-12-25T04:10:38.860551
2015-01-01T03:28:56
2015-01-01T03:28:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,831
cpp
/* * PJson.cpp * See Copyright Notice in Pika.h */ #include "PJson.h" #include "PJsonDecode.h" #include "PJsonEncode.h" #if defined(PIKA_WIN) #include <windows.h> BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } #endif namespace pika { PIKA_IMPL(JsonError) PIKA_IMPL(JsonEncodeError) PIKA_IMPL(JsonDecodeError) PIKA_IMPL(JsonSyntaxError) }// pika using namespace pika; int json_decode(Context* ctx, Value&) { Engine* engine = ctx->GetEngine(); String* json = ctx->GetStringArg(0); GCPAUSE(engine); JsonTokenizer tokenizer(json); JsonParser parser(engine, &tokenizer); Value res = parser.Parse(); ctx->Push(res); return 1; } int json_encode(Context* ctx, Value&) { Engine* engine = ctx->GetEngine(); Value& arg = ctx->GetArg(0); GCPAUSE(engine); JsonEncoder encoder(engine); String* res = encoder.Encode(arg); if (res) { ctx->Push(res); return 1; } return 0; } PIKA_MODULE(json, eng, json) { GCPAUSE(eng); static RegisterFunction json_Functions[] = { { "decode", json_decode, 1, DEF_STRICT, 0 }, { "encode", json_encode, 1, DEF_STRICT, 0 }, }; String* JsonError_String = eng->GetString("JsonError"); Type* JsonError_Type = Type::Create(eng, JsonError_String, eng->RuntimeError_Type, 0, json); String* JsonEncodeError_String = eng->GetString("JsonEncodeError"); Type* JsonEncodeError_Type = Type::Create(eng, JsonEncodeError_String, JsonError_Type, 0, json); String* JsonDecodeError_String = eng->GetString("JsonDecodeError"); Type* JsonDecodeError_Type = Type::Create(eng, JsonDecodeError_String, JsonError_Type, 0, json); String* JsonSyntaxError_String = eng->GetString("JsonSyntaxError"); Type* JsonSyntaxError_Type = Type::Create(eng, JsonSyntaxError_String, JsonDecodeError_Type, 0, json); json->SetSlot(JsonError_String, JsonError_Type); json->SetSlot(JsonEncodeError_String, JsonEncodeError_Type); json->SetSlot(JsonDecodeError_String, JsonDecodeError_Type); json->SetSlot(JsonSyntaxError_String, JsonSyntaxError_Type); eng->SetTypeFor(JsonError::StaticGetClass(), JsonError_Type); eng->SetTypeFor(JsonEncodeError::StaticGetClass(), JsonEncodeError_Type); eng->SetTypeFor(JsonDecodeError::StaticGetClass(), JsonDecodeError_Type); eng->SetTypeFor(JsonSyntaxError::StaticGetClass(), JsonSyntaxError_Type); json->EnterFunctions(json_Functions, countof(json_Functions)); return json; }
[ "russell.j.kyle@gmail.com" ]
russell.j.kyle@gmail.com
0166c7762dec754ec0145df54ef6e4775f09633c
facbb8bf2fe00b52418f3eba565e77c09f39fc29
/src/Camera.cc
2b75f905bec21c3c936fa8d276ae065cc27dc923
[]
no_license
JKTao/RayTracing
d541732117b0b622f84ab0dfb9d450838ddaf457
d033dbc94dbf22c738ab3fac104ec52b8e936453
refs/heads/master
2023-05-28T20:45:27.822197
2023-05-11T02:24:52
2023-05-11T02:58:16
242,429,517
6
0
null
null
null
null
UTF-8
C++
false
false
1,757
cc
#include "Camera.hpp" #include "cmath" #include <iostream> #include <cstdlib> using namespace std; Camera::Camera(){ } Camera::Camera(double fov, const Eigen::Vector3d & eye, const Eigen::Vector3d & front, const Eigen::Vector3d & up, int height, int width):fov(fov), eye(eye), front(front.normalized()), up(up.normalized()), height(height), width(width){ // double tan_half_fov = tan(fov/2 * M_PI / 180); // std::cout << "tan_half_fov = " << tan_half_fov << std::endl; // scale_y = tan_half_fov / height * 2; // scale_x = scale_y; scale_y = 2 * tan(fov/2 * M_PI / 180); scale_x = 2 * tan(fov/2 * width * M_PI / 180 / height); this->right = front.cross(up).normalized(); this->up = right.cross(front).normalized(); // cerr << this->right[0] << " " << this->right[1] << " " << this->right[2] << endl; // cerr << this->up[0] << " " << this->up[1] << " " << this->up[2] << endl; this->right = this->right * scale_x; this->up = this->up * scale_y; // initial_direction = front - this->right * (width/2 - 0.5) + this->up * (height/2 - 0.5); //direction to the left-up pixel. // std::cerr << "front" << this->front << std::endl; // std::cerr << "up" << this->up << std::endl; // std::cerr << "right" << this->right << std::endl; //if found inverse image, change + up to - up } Ray Camera::generate_ray(int x, int y){ Eigen::Vector3d origin = eye; double diff_x = (rand_generator.double_rand() - 0.5) * 0.5; double diff_y = (rand_generator.double_rand() - 0.5) * 0.5; // diff_x = 0; // diff_y = 0; Eigen::Vector3d direction = front + ((x + diff_x) / width - 0.5) * right - ((y + diff_y)/height - 0.5) * up; direction.normalize(); return Ray(origin, direction); }
[ "jktao@zju.edu.cn" ]
jktao@zju.edu.cn
18ae4c17c4bb79c6bfa919211fd2a0b93eb39dc8
6ae31879ef835f5d53eca89b24bfa0b602d17211
/Re2e6/kepsilon/12g/10/nut
a7ba14f13448eea28d46a0e9d41634d46442a58f
[]
no_license
RPerobeli/TurbulenceOpenFoam
9cedc91032a10a7900b8a6ed8923bfbd0f2a96b8
de26b1b8964fbb62a87bbd397cd1cf79467f4985
refs/heads/master
2023-02-28T06:21:41.409504
2021-02-02T12:27:10
2021-02-02T12:27:10
330,755,455
0
0
null
null
null
null
UTF-8
C++
false
false
1,135,993
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "10"; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 127143 ( 9.062e-09 7.422e-10 1.753e-09 7.014e-09 3.947e-06 7.082e-09 2.959e-06 7.06e-06 4.179e-06 3.141e-06 2.372e-06 5.973e-06 4.124e-09 9.687e-09 0.0009128 6.977e-06 6.027e-08 0.03836 0.02016 5.864e-06 0.004931 1.552e-05 0.0615 0.0009205 1.478e-05 9.099e-05 6.115e-05 5.152e-05 8.481e-05 0.05269 0.000519 8.822e-05 4.431e-05 0.0001028 0.1568 4.467e-05 0.002163 0.01452 0.001338 0.0001024 0.02019 0.01484 0.01753 5.602e-08 0.03694 0.0001077 8.831e-05 0.005239 0.001111 0.001157 7.342e-06 0.4063 0.004781 0.04033 0.5089 0.0005474 0.5052 0.02808 0.479 0.04092 0.01805 0.01347 0.003522 0.6153 0.0004569 0.01801 0.1491 0.003087 0.003196 0.4 0.0007296 6.542e-05 0.01142 0.4849 0.5791 5.837e-05 0.5387 0.002891 0.0005679 0.6344 9.728e-05 7.282e-06 0.0003286 0.0001481 0.006829 0.00343 0.001824 5.095e-05 0.01909 0.001284 0.4407 0.04311 0.001854 0.005005 0.001878 0.0395 0.01562 0.0003108 0.00463 0.1531 0.6353 0.001225 0.0005242 0.0123 0.003625 0.004432 0.003081 0.4009 0.009064 0.5105 0.001008 5.139e-05 0.00324 0.005254 0.5746 0.01368 0.5338 0.5792 0.5415 7.466e-06 0.5133 0.0003786 0.003287 0.04105 0.0001018 5.169e-05 0.00947 0.4936 0.002617 0.0005238 0.00207 0.001709 0.00544 0.002981 1.43e-06 0.002165 0.1942 0.006591 0.0001914 0.2052 0.04287 0.556 0.006528 0.009425 0.004897 0.004 0.0001772 0.6205 0.001622 0.0003806 0.009868 0.001329 0.01595 0.07177 0.002207 0.007035 0.02811 0.0004978 0.005375 0.0002258 0.0007851 8.189e-06 0.4299 0.002072 0.000178 0.000561 0.001706 0.01459 0.0005248 0.4223 0.0002977 0.009402 0.0117 0.004946 0.3651 0.002003 0.00429 0.002632 0.001177 0.2922 0.004966 0.2031 0.001857 0.002029 0.0005617 0.01393 0.05743 0.005479 0.001069 0.3191 0.003541 0.002001 0.2014 0.002532 9.281e-07 0.009498 0.5573 0.5572 1.107e-06 0.5711 0.5686 0.4091 0.1082 0.002362 5.085e-08 0.002261 0.1228 0.006603 0.05784 0.5747 0.08291 0.005094 0.5631 0.0005416 0.001328 2.447e-06 0.0001276 0.006227 0.002508 0.124 0.004753 0.5835 0.001253 0.005285 0.0001995 0.0002679 0.0002819 0.01495 0.0005478 0.006733 0.004585 0.2115 0.0123 4.038e-06 0.00465 0.06804 0.00208 8.043e-07 0.5685 0.004275 0.002108 0.0007239 0.003386 0.000522 0.009308 7.932e-06 0.001981 5.568e-05 3.287e-06 0.4152 0.008672 0.0001003 0.005163 0.006609 0.0009118 0.008781 0.4955 0.0007177 0.007607 0.1049 0.009496 0.3136 0.04468 0.5568 0.005967 0.000658 0.0007329 0.001642 0.01282 0.01413 0.0002264 0.3659 0.006619 0.004175 0.004986 0.003683 0.003311 0.001541 0.3141 0.007591 0.4261 0.03535 0.01282 0.5761 0.5742 8.168e-07 0.001881 0.5742 0.001428 0.2803 0.0166 0.02894 0.06912 0.01015 0.5329 0.006818 0.0005394 0.0004013 0.00339 0.01475 0.0003011 0.02011 0.02116 0.01438 0.0001714 0.003007 0.006811 0.5627 0.02206 0.006964 0.002735 0.0002248 0.0004385 0.4313 0.5729 0.001865 0.01194 0.0002882 0.05738 0.1583 0.06465 0.0006415 0.3766 0.005113 0.001803 0.009436 0.2746 0.0002425 0.0007072 0.004647 0.009468 0.5742 0.1607 0.5386 0.5385 0.07546 0.009075 0.01196 0.009428 0.001704 0.2119 0.006197 0.005566 0.003865 0.00546 0.001366 0.000718 0.002677 0.000345 0.0022 0.0003957 0.02479 0.001993 0.00375 0.3638 0.0008303 0.006497 0.004585 0.4016 0.0006672 0.008172 0.003895 0.05137 0.001189 0.001207 0.5907 0.5714 0.2073 0.000376 0.3118 0.01002 0.3733 0.0001744 0.001111 0.3336 0.107 0.000639 1.488e-05 0.005214 0.3098 0.03677 5.878e-05 0.0004826 0.01937 0.5376 2.056e-05 0.2162 0.0001153 0.009009 0.02068 0.5175 0.02737 0.0004151 0.0009247 0.00104 0.000499 0.02716 0.0006097 0.3645 0.3245 0.000116 0.5842 0.005201 0.001963 0.2136 0.00783 0.004018 0.005266 0.6365 0.001343 0.004251 0.0003651 0.04396 0.006058 0.003582 0.001967 0.003632 0.0001876 0.01367 0.001399 0.001815 3.559e-05 0.001039 0.4154 0.006502 0.08596 0.01906 0.06069 0.0008407 0.09964 0.4991 0.001066 0.001792 0.06605 0.006497 0.5906 0.006592 0.0008396 0.414 0.5376 0.5732 0.001316 0.1881 0.0082 0.5001 0.0003434 0.5712 0.001479 0.2049 0.0051 0.00482 0.0006274 0.008599 0.0003349 0.2062 0.002624 0.0002529 0.001043 0.003061 0.01624 0.005857 0.004121 0.01601 0.007175 0.003929 0.3779 0.5642 0.005156 0.0005844 0.4411 0.005775 0.0419 0.04169 0.01237 0.1498 0.3829 0.002416 0.04367 0.0004265 0.007106 0.0001156 0.001599 0.001056 0.0004507 0.005201 0.006715 0.008302 0.566 0.0003054 0.5496 0.002395 0.002043 0.004222 0.004001 4.223e-07 0.00173 0.007698 0.06192 0.006487 0.5683 0.000114 0.5637 0.002658 0.009973 1.497e-07 2.829e-06 2.303e-06 0.5882 0.0008604 0.003128 0.5732 0.009512 0.002796 0.001992 0.01094 0.004636 0.0006036 0.005827 5.822e-05 0.3854 0.004019 9.86e-06 0.001159 0.0003266 0.0003394 0.494 0.01034 0.116 0.01668 0.3734 0.0002541 0.0002843 0.0004087 0.4457 0.005102 0.06139 0.0002159 0.004512 0.0003396 0.01963 0.5407 0.0007926 0.005373 0.4487 0.01944 0.01489 0.0006343 0.001256 0.0005232 0.0002914 0.009338 0.009949 0.001681 0.002149 0.00115 0.537 0.0001399 0.002368 0.0003189 0.004701 0.003942 0.6171 0.6087 0.1128 0.000677 0.005857 0.5723 0.3412 0.006863 0.0007436 0.003948 0.005095 0.0002105 4.166e-05 0.01093 0.5508 0.4921 0.0003952 0.004844 0.003681 0.4338 5.959e-05 0.005775 0.001326 0.3139 0.0001691 0.5722 0.004293 0.002195 0.02178 0.3017 0.0006879 0.009536 1.98e-05 0.3826 0.003298 0.0001289 0.5728 0.008002 0.5732 0.001849 0.008444 0.5761 0.0004416 0.0007597 0.0002119 0.002341 0.007372 0.0004303 0.0005138 0.003471 0.001507 0.002029 0.001275 0.001796 0.00491 0.0002118 0.4445 0.0005 0.5743 0.005976 0.4974 0.006765 0.4887 0.5742 0.02584 0.001448 0.003582 0.4645 0.5347 0.0006055 0.0001634 0.0004676 0.0003482 0.01027 0.008351 0.004849 0.004084 0.003956 0.0007936 0.000409 0.4635 0.001452 0.004263 0.02049 0.02198 0.4095 0.3394 0.009801 0.0002467 0.008318 4.238e-05 0.5013 0.3015 0.001663 0.001221 0.4201 0.0004569 0.04712 0.1011 0.000451 0.007858 0.004413 0.05275 1.88e-07 0.0002987 0.003159 0.002605 0.001926 0.001687 0.0002132 0.0009645 0.4432 0.002855 0.0007338 0.005385 0.5247 0.001701 0.02188 0.02713 0.4513 0.5246 1.986e-05 0.06117 0.0007281 0.001992 0.002028 0.02189 0.02119 0.0002558 0.05741 0.0009534 0.5661 0.4792 0.00759 0.08661 0.0004544 0.02775 0.0003203 0.01066 0.001022 0.08666 0.05287 0.3032 0.0003819 0.1476 0.0008178 1.123e-06 0.005254 0.006266 0.005494 0.3043 0.00394 0.001214 4.115e-05 0.03039 0.01212 0.003971 0.0004503 0.003563 0.001265 0.01697 0.001121 0.003309 0.007295 0.009763 0.0267 8.208e-08 0.02145 0.4284 0.002601 0.00254 0.002102 0.5626 0.001281 0.02535 0.004049 0.3115 4.107e-05 0.001158 0.0001633 0.358 0.0008707 0.001848 0.0009615 0.001866 0.3483 0.005335 0.0003733 0.0004386 0.006269 0.5702 0.005611 0.002105 0.5532 0.006307 0.01512 0.001806 0.001765 0.02111 0.005061 9.245e-05 0.000873 0.3798 0.005275 0.0125 0.0001077 0.0004152 0.03907 0.009774 0.0003228 0.4006 0.002123 0.0004624 0.007126 4.701e-06 0.007238 0.0004327 0.003782 0.003686 0.009954 0.5903 6.963e-08 0.002098 0.002483 0.0002193 0.003744 0.0009093 0.001352 0.0008668 0.4972 0.02686 0.01183 0.3123 0.001088 0.002439 0.002965 0.003357 0.4263 0.005103 0.001872 0.5663 0.4103 0.02194 0.01296 0.01027 0.0009148 0.004349 7.122e-06 0.009841 0.03001 0.5279 0.00332 0.001948 0.0005613 0.0002247 0.01543 0.4246 0.5017 0.078 5.626e-05 0.5269 0.09491 0.0003624 0.003898 9.351e-05 0.4513 0.003528 0.003817 0.581 0.0003597 0.5156 0.002117 0.0002878 0.001316 0.008523 6.765e-05 0.4632 0.0004618 0.04566 0.0002739 0.0005169 0.0001943 0.0003847 0.03948 0.01833 0.01077 1.258e-05 0.5785 0.02026 0.0007098 0.0009979 0.0007192 2.254e-05 0.4276 0.1087 0.000387 0.0001102 1.404e-05 0.002704 5.206e-06 0.001302 1.061e-05 0.001715 0.0002651 0.02757 2.387e-05 0.5405 0.002521 0.2915 0.2935 0.005794 0.4545 0.002509 0.01449 0.005425 0.01971 0.2692 0.001485 0.002342 0.5188 0.03482 0.002285 0.2804 0.0004053 7.147e-06 0.001792 0.006265 0.0009821 0.01188 0.000666 0.571 0.004331 0.0008503 0.412 0.0005344 0.002376 0.0148 0.4259 0.1474 0.03881 4.198e-06 0.007373 7.374e-06 0.005931 0.003561 0.002941 0.0001122 0.001084 0.2927 0.0002053 0.0208 0.2917 0.007607 1.183e-05 0.02905 0.0008907 0.01013 0.01245 6.967e-05 6.392e-06 0.0009098 0.5523 0.5823 0.006586 0.005674 0.001544 0.000471 0.003838 0.000211 0.0009845 0.09025 0.0002086 0.1885 0.0001206 0.5659 0.005086 0.0001471 0.006974 0.001104 0.004799 0.5776 0.5635 0.0002849 0.03572 0.001077 0.001015 0.0005611 0.007231 0.009384 0.002379 0.001407 1.517e-05 0.005143 0.000424 0.0003941 0.008347 0.008149 0.002674 0.0009645 0.000111 2.311e-05 0.004617 0.5625 0.5521 0.00617 0.003437 0.01837 0.6139 0.003839 0.004807 0.0242 0.0006723 0.01026 0.0006788 0.008025 0.6368 0.02669 0.02378 7.34e-05 0.0001799 0.00176 0.0218 0.02213 0.0004211 0.0009749 0.006127 0.01225 0.003008 0.001957 0.001724 0.0001879 0.4174 2.209e-05 0.0001042 0.01286 0.002489 0.0009066 0.5725 1.59e-05 1.521e-05 0.423 0.6045 0.003766 0.004001 1.055e-05 0.0005728 0.002681 0.0009494 0.000515 0.02518 0.024 0.406 0.0004201 0.005202 0.0007939 0.01049 0.0001862 0.002883 0.4504 1.689e-05 0.001394 0.5685 0.001123 0.4299 0.5679 0.00635 0.05675 1.701e-05 0.5623 0.0003659 0.5805 0.002181 0.0681 0.0361 0.01083 0.0005561 0.0007699 0.0004151 0.004882 0.384 0.1855 0.007111 0.00163 0.0008736 0.0006309 4.596e-05 0.0004505 1.11e-05 0.002185 0.0008946 0.0008418 0.0007144 9.345e-05 0.03663 0.02931 0.3392 0.0007 0.00111 0.0002259 0.3793 0.001024 0.007535 0.002923 0.002451 0.00338 0.01841 0.0002526 0.01329 0.002974 0.0009621 0.0004791 0.0004997 0.4574 0.006856 0.0007265 0.495 0.00114 0.0005531 0.6385 0.01117 0.0008031 0.2157 0.03659 0.01297 0.000332 0.03888 0.5476 0.001132 0.0009918 0.5563 0.04789 0.3401 0.004862 0.0008752 0.008013 0.2964 0.0003304 3.021e-05 0.0005387 0.001118 0.007533 2.398e-05 0.3975 0.001711 0.577 0.003044 0.004629 0.001443 0.002404 0.0002976 7.118e-05 0.5959 3.474e-06 0.0002042 0.0002605 0.004058 0.0008165 0.01226 0.03199 0.0001473 0.003423 0.2672 2.606e-06 0.002692 0.0009455 0.0003325 0.001545 0.001884 0.0004704 0.0001015 0.002794 0.001696 0.008292 0.0006102 0.0008185 0.02815 7.854e-06 0.06053 0.00222 0.06356 0.0004667 0.5488 0.567 0.01073 2.267e-05 0.004784 0.1707 1.596e-05 0.0003586 0.5796 0.0001999 0.002611 0.009455 2.264e-05 0.009615 0.001785 6.583e-07 0.03496 4.647e-05 0.00796 0.003157 0.0001114 0.0009557 0.0002222 0.005095 0.001023 0.08322 0.05773 0.01385 0.001405 0.00688 0.002595 0.009858 8.119e-05 0.005824 0.02974 0.006937 0.01481 0.02283 0.007577 8.126e-06 0.2171 0.000103 0.0001235 0.001475 0.002248 0.5802 0.009812 0.003076 0.02174 0.0001286 0.0003555 0.0001532 0.5166 0.0007408 0.0003088 0.00346 1.841e-05 0.004475 0.02425 0.0004767 0.555 0.0004143 0.001764 0.0001233 0.001525 0.1097 0.006877 0.4824 1.172e-05 1.856e-05 0.002789 0.01898 0.007144 0.4247 0.4564 0.000657 0.003723 0.01753 0.1085 0.3333 0.3316 0.0067 0.003257 0.01919 0.001494 0.001122 1.513e-05 0.01398 0.0001933 0.001455 0.0008975 0.4785 0.0005377 0.008009 0.003206 1.424e-05 0.01516 0.01466 0.001662 0.004029 0.004395 1.211e-05 0.0388 0.002694 0.0091 0.01414 0.01311 0.001291 1.175e-05 0.06638 0.0003694 0.5367 0.0008892 0.0009968 0.4915 0.0007459 0.004884 0.002074 0.0006361 0.5532 0.01373 7.002e-06 0.5724 0.001236 0.0004353 0.002908 0.0002211 0.01728 0.01289 0.0004801 0.000162 0.002063 0.001318 0.1143 0.002603 3.559e-05 0.0002898 0.002356 0.00208 0.5714 0.002521 0.02397 0.0002713 0.002288 0.01239 0.002047 0.4745 0.0131 0.0009259 0.3568 0.01077 0.4335 0.0004192 0.01031 2.567e-05 0.00123 0.005926 0.0008436 0.003578 0.00155 0.0008744 9.142e-06 0.002037 0.001173 0.007 0.004582 0.006784 0.6148 0.00178 0.5611 0.008292 0.5992 0.007758 0.5558 0.001959 0.001565 0.6118 0.5643 0.0004757 0.07186 0.0002693 0.05963 0.6317 0.005321 0.003267 0.2886 1.413e-06 8.939e-05 1.298e-05 0.001714 0.005057 0.0009112 0.001753 0.001358 0.06772 8.023e-05 0.003511 0.0002514 0.0006269 0.002908 0.005005 0.02049 0.56 9.066e-06 0.002597 0.0001711 0.5793 1.493e-05 0.001564 0.0008499 0.00133 0.3841 0.3788 0.07269 0.03872 0.06246 0.0111 0.003631 0.01538 0.01166 0.142 0.01254 0.0002288 0.006209 0.03466 0.004125 0.01297 0.0004064 0.0003787 0.002986 0.0008244 0.005822 0.5549 0.001138 0.001059 2.776e-05 0.005509 0.2086 0.003155 0.1956 0.001982 0.001882 0.0003289 0.05526 0.5658 0.004112 0.003606 1.19e-05 0.0001882 0.01797 0.002132 0.000216 0.09174 0.3427 0.001037 0.0006283 4.786e-06 0.1211 8.076e-06 0.001627 0.5616 0.001636 9.288e-05 0.011 0.04832 0.007261 0.0004975 0.003857 0.003284 0.003117 0.0004751 0.1654 0.001275 0.0002348 0.0003603 0.3984 0.3981 0.0006591 0.007386 1.067e-05 0.00328 0.0002721 0.0002723 8.919e-06 0.2089 0.0008083 0.4773 0.5688 0.5596 0.005851 0.4632 1.575e-05 0.5742 0.0002062 0.02493 0.003343 0.004609 0.0004324 0.4119 0.0001893 0.05733 0.001809 0.005207 2.682e-05 0.4247 0.001582 0.0003914 0.005957 0.0001299 0.0003344 0.003831 0.001063 0.0007998 0.1423 0.4126 5.083e-05 0.3807 0.6319 0.0249 0.0001218 0.4341 0.0001126 0.5838 0.004588 0.007012 0.007694 0.002418 0.4955 0.004855 0.0004578 0.0004065 0.09671 0.008543 0.0344 0.5745 0.542 0.003795 1.124e-05 0.004743 0.002955 0.4828 1.195e-05 0.02467 0.07207 0.373 0.01033 0.00123 0.0004664 0.4625 0.001526 0.5517 0.003539 0.626 0.02091 0.001996 0.001847 0.005975 0.0003677 0.001169 0.5365 0.007085 0.0001239 0.0006133 1.581e-05 0.000196 0.01852 0.2264 0.007236 0.0001604 0.005845 0.001364 2.976e-05 0.4072 0.05915 0.5648 0.00254 0.001584 0.003967 0.5806 0.0001139 0.5731 0.03723 0.001194 0.5107 0.02085 0.02687 0.00346 0.007031 0.2115 0.0008149 0.5892 0.0009641 0.0002191 0.01076 0.01944 0.001723 0.2495 0.00944 0.002069 0.0004258 0.002595 0.002216 0.0003513 0.002554 0.001807 0.0002736 0.1462 0.04749 0.002438 0.2238 0.001196 0.004371 0.05783 0.003118 0.4948 0.3159 0.000196 0.03864 0.009191 0.001523 1.616e-05 0.002123 1.775e-05 0.018 0.4172 1.838e-05 0.002063 0.06234 0.0007506 0.3261 0.007411 0.6394 0.01135 5.055e-05 0.007435 0.004641 0.003455 0.002033 0.5855 0.003577 0.0218 0.005492 0.0004762 0.4252 0.002721 0.0001262 0.5656 0.458 0.001694 0.3945 0.005021 0.009621 0.01125 0.003673 0.01905 0.004663 0.4171 0.03103 0.002496 0.4602 0.0336 0.0006954 1.304e-05 0.6051 0.0007365 3.736e-05 0.02061 0.001057 0.01086 0.001786 1.333e-05 0.366 0.4135 0.0014 0.4344 0.0003535 0.004349 0.004279 8.304e-05 0.001259 0.4432 0.001535 2.156e-06 4.097e-06 0.0008431 0.001297 0.001225 0.02103 0.006001 0.009201 0.003682 0.0002164 0.0007467 0.0006987 0.001586 1.274e-05 0.004186 0.0158 0.571 0.001169 0.01687 0.002988 0.03137 0.1968 0.002153 0.0008655 0.02499 0.6088 0.0007601 0.0001959 0.01186 0.0008904 0.006197 1.547e-05 0.001115 0.4208 0.001008 8.203e-05 0.004686 0.002552 1.004e-05 0.3694 0.000189 0.0008804 0.001763 0.2999 0.004694 0.008677 0.0003004 0.0009381 0.006259 0.0001804 0.4434 0.007339 0.001577 0.1198 0.007958 0.5547 0.0005705 0.0003598 0.001876 0.0002417 0.000183 0.004151 1.655e-05 0.4158 0.001164 0.005934 0.01168 0.2472 0.02361 0.006059 0.005088 0.002351 0.4165 0.002725 6.389e-06 7.168e-05 0.002038 0.01926 0.01643 0.01342 0.5684 0.4456 0.003108 0.02481 0.4924 0.003309 0.002125 0.001023 0.001034 0.006869 0.001588 0.01055 0.0008161 1.102e-05 3.68e-05 0.06751 0.002793 7.095e-06 0.01087 0.0001629 0.0316 0.008082 0.004588 1.355e-06 0.009453 0.008391 0.3331 0.1844 0.0001004 0.001687 0.5736 0.5933 0.007683 0.0002214 0.006044 0.002543 1.425e-05 0.004602 0.3753 0.0002376 0.01096 0.001413 7.938e-05 0.04455 0.07581 0.004932 0.001833 0.01833 0.002016 0.5882 0.0001065 0.01524 0.0002525 0.05199 0.001306 7.839e-05 0.01063 0.0002194 0.01116 0.0002122 0.001934 0.0001954 0.06105 0.009012 0.002461 0.003829 0.0004441 0.001312 0.0004446 0.0004349 0.5619 0.001125 0.03203 0.0003806 0.003496 0.3679 0.01305 0.0867 9.377e-05 0.3663 0.001407 0.002745 0.001978 0.008995 0.007036 0.08063 1.213e-05 0.03427 0.4823 0.0002516 0.4629 0.005356 0.2937 0.01748 0.0102 0.5434 0.02864 0.001262 0.0002268 0.577 0.5119 0.01005 0.007214 0.001682 0.1197 0.007519 0.002244 0.0003749 0.0005082 0.03829 0.005396 0.0117 0.07188 0.002572 1.454e-05 0.01399 0.0004747 0.0006651 0.01221 1.655e-05 0.5732 0.4255 0.01093 0.01487 8.486e-06 0.5796 0.01354 0.0002705 9.79e-06 0.0004593 0.0005048 0.3058 0.3058 0.0007103 0.00183 0.002102 0.002437 0.2719 0.02507 0.01576 0.6351 0.0002339 0.001806 0.003156 0.00268 7.463e-05 0.08241 0.008795 0.561 0.008821 0.001713 0.0003647 0.0008537 0.001963 0.0001491 0.0004728 0.003195 0.002299 0.0007445 0.001762 0.08446 0.004198 5.509e-05 0.292 0.2931 0.0005834 0.001143 3.532e-05 0.009766 0.0007789 0.001645 0.382 0.5742 0.005498 0.6143 0.003913 1.833e-05 0.0047 0.04792 0.00321 0.1414 0.0001295 0.001738 0.4014 0.008007 0.008315 0.00288 0.0037 0.002713 0.001611 0.002697 0.003544 0.002755 0.007617 0.008734 0.0003887 0.002312 0.002458 0.00107 0.0002773 0.001393 0.000489 0.0003843 0.006916 0.009179 0.006047 2.052e-05 0.02395 0.001524 0.5417 0.006378 0.6194 0.002013 0.01542 1.73e-05 0.0008762 0.06253 0.0001238 1.06e-05 0.0001995 0.003975 0.003618 0.0002894 0.0002019 0.3691 0.003524 0.005789 1.121e-05 0.001507 0.002699 0.03633 0.02656 0.5751 0.00759 0.0003686 0.0106 0.0002899 0.008801 0.09629 0.0001795 0.5626 0.008884 0.02225 0.005392 0.0004885 0.0386 0.01009 0.01506 0.2116 0.001564 0.006328 1.379e-05 0.0002701 0.001364 0.5267 0.002711 0.001765 9.105e-05 0.0009133 0.005462 0.01962 0.002595 0.5712 0.001119 0.0007694 0.006285 0.003705 0.006066 0.0001116 0.0003328 0.00107 0.003924 0.03369 0.009076 7.816e-05 0.02981 0.1132 9.157e-06 0.3756 0.04151 0.5728 0.599 0.004064 0.5558 0.000313 0.003242 0.03154 0.007164 0.0003341 0.0001157 0.001469 0.0008499 0.001508 0.006166 3.674e-06 0.003679 0.001758 0.1641 5.627e-06 0.009289 4.586e-05 4.276e-05 0.33 0.0002148 0.0003642 0.01144 0.007382 0.000119 0.001795 0.0001747 0.004631 0.003398 0.4278 0.02353 0.6067 0.0161 0.007586 0.0005538 0.008041 0.005298 1.795e-05 0.007159 0.5265 0.0008014 0.002946 0.02391 0.004404 0.00309 0.002408 0.0004765 0.000373 2.122e-05 0.0007489 0.001242 0.0004086 0.001862 0.0008612 0.07747 5.061e-06 0.0009808 0.003215 0.009762 0.4146 0.002751 0.0007159 0.005972 0.01151 1.856e-05 0.0002469 0.002802 0.02096 0.002959 0.0004952 0.4357 7.5e-05 0.01309 0.2391 0.004156 0.0007954 0.5625 0.001023 0.007368 0.005623 0.0001348 0.005681 0.00231 1.024e-05 0.003245 0.001412 0.6276 0.6276 0.001437 0.009896 0.008052 0.0008981 0.002341 0.549 0.0001082 0.000364 0.004475 0.5135 0.5226 0.004273 0.01682 0.001373 6.331e-06 0.0006238 0.422 0.0004602 7.813e-06 0.06523 0.0005814 0.0009508 0.4161 0.01695 0.0001576 0.04188 0.002789 0.3893 0.3364 0.3552 0.2942 0.08581 0.003138 0.00592 0.0008466 0.01016 0.0008686 0.004035 0.0003538 0.2937 0.001939 0.002664 0.0001993 0.0003339 0.0001617 0.0008937 0.004004 0.001014 0.005017 0.001941 0.136 0.002952 8.197e-06 0.001637 6.076e-05 0.01978 0.001935 0.5742 5.465e-06 0.001899 0.001054 0.01129 0.2804 1.678e-05 0.579 0.002128 0.0003974 0.421 0.001805 0.001726 0.007107 0.00141 3.644e-05 0.1999 0.0003483 0.458 0.007434 0.001925 0.0007841 0.006347 0.002703 0.5449 0.5649 0.04905 0.0004816 0.0002131 0.04557 0.006085 0.001736 0.0117 0.0004115 0.0009166 0.01803 0.01136 0.002984 0.002296 0.04273 5.984e-06 0.02122 0.5742 8.797e-05 0.5719 0.4225 0.0523 0.4155 0.0002506 0.006608 0.0002143 0.004028 0.001086 0.586 0.07381 0.0007131 0.00175 0.007752 0.4282 0.03024 8.833e-05 9.629e-05 0.6183 7.041e-05 7.911e-05 2.866e-06 0.4022 0.01909 0.01108 0.0729 0.5152 0.0213 0.003112 0.0001049 0.07069 0.000403 3.735e-06 0.5752 0.0009204 0.0001664 0.002436 0.5788 0.000323 4.648e-05 4.922e-06 1.524e-05 0.02522 0.009241 1.1e-05 0.2088 0.001713 0.561 0.006344 0.0005516 0.02089 0.0005457 1.522e-05 0.06802 0.001097 0.002626 0.6424 0.2419 0.0006382 0.0002365 0.02739 0.0001088 0.001963 0.01704 0.00925 0.004979 0.0007655 0.002335 0.5756 0.005044 0.004095 0.00177 0.0005409 0.001875 0.0006175 0.0017 8.951e-06 1.26e-05 2.395e-06 0.0005489 0.1419 0.00064 0.4609 0.0002682 0.0004344 0.5759 6.384e-06 0.6349 0.0009399 2.272e-05 0.0001625 0.0003165 0.002805 0.0005354 0.001348 0.3711 7.589e-06 0.00576 0.3548 0.009931 0.001447 1.615e-05 1.646e-05 5.469e-06 0.009844 0.0008243 0.0006724 0.00689 0.07654 0.003303 6.914e-05 0.4717 0.002484 0.004046 0.001003 0.004331 0.002971 0.01565 6.529e-05 0.002567 0.002227 2.207e-05 0.2752 8.132e-05 0.06457 0.004313 0.0008853 0.3443 0.09612 0.004868 0.0004407 0.0009418 8.85e-06 0.3452 0.555 0.01204 0.001522 0.0002296 0.003678 0.01954 0.3049 0.3688 0.0002884 0.3043 0.0005839 0.001052 0.08761 0.001326 0.002491 1.614e-05 8.539e-06 1.413e-05 0.2519 0.0004752 0.001763 0.001532 0.02287 0.01478 1.438e-05 0.007318 0.0004212 0.001405 8.508e-05 0.001686 0.01123 1.559e-05 0.003434 0.003352 0.004772 0.3523 0.004315 0.09495 0.5694 0.006056 0.001973 0.002174 0.003724 0.005048 6.342e-06 8.925e-06 0.01107 5.018e-06 0.3647 0.05069 0.2863 0.1837 0.004002 0.6338 0.001292 9.856e-06 0.0005571 5.221e-05 0.03 0.008808 0.001845 0.001905 0.008614 0.0005747 0.006205 0.0001359 0.001366 0.3267 0.001363 0.003191 0.6046 0.2808 0.0001475 0.5848 0.001463 0.00106 0.001445 0.008411 9.025e-05 0.4122 0.04491 0.2185 0.0005179 6.416e-05 0.0007944 0.004029 0.551 0.001094 0.5558 0.03145 0.001101 0.02155 1.538e-05 0.001158 0.0004393 0.01848 0.0003775 0.01665 0.375 0.004899 0.0005978 0.4735 0.01016 0.5845 0.0003841 0.000156 0.002873 0.002076 0.4545 0.0003949 0.0008351 0.00243 6.399e-05 0.001307 0.0002297 0.5367 0.03177 0.01149 0.01047 0.0009216 0.006372 0.07935 0.01228 0.05052 0.003186 0.002754 0.46 0.6026 0.5482 0.287 0.03589 0.0002335 0.0004267 0.5706 0.001497 0.004125 0.002133 0.5928 0.001217 0.0973 0.0001437 0.418 9.11e-06 0.009501 0.0001325 0.3387 0.07318 1.227e-05 0.3515 0.002241 0.001968 0.001485 0.0007656 0.002065 0.5813 0.001071 0.0005897 0.005128 0.001935 0.003866 0.01047 0.003916 0.003427 0.0009902 0.5591 0.00622 0.004748 0.0001409 0.04737 0.614 0.001087 0.0002274 0.004983 0.005359 0.008127 0.0009038 0.2223 0.006236 0.0005723 0.01001 0.001057 0.01426 0.3262 0.005466 1.578e-05 0.002475 0.001123 9.212e-05 0.009709 0.007417 0.5701 0.3687 0.05572 0.3657 7.581e-05 0.001365 0.5933 0.5435 0.003168 5.461e-06 0.5936 0.004809 4.501e-05 0.002313 0.008094 0.001396 0.0008166 0.002058 0.004949 0.0004017 1.029e-05 0.0001334 0.569 0.002456 0.008742 0.001596 0.5095 0.03102 0.001086 0.004103 0.0006956 2.894e-05 0.0001703 0.04122 0.0003659 1.066e-05 0.01639 0.0009278 0.005048 0.01212 0.01678 0.0002463 2.314e-05 0.5612 0.0012 0.002651 0.5923 6.252e-05 0.006373 0.008761 0.0923 0.006157 0.0005117 0.0007597 0.003413 0.5562 0.5716 0.03728 0.001108 0.608 0.01941 0.4603 0.0004202 0.01269 0.006446 0.0006906 0.0001721 0.03046 0.005007 0.5204 1.114e-05 0.007842 0.0006256 0.0006329 0.1134 0.001286 0.0132 0.001093 1.724e-05 0.02018 1.371e-05 0.5469 0.5513 0.003754 0.1429 0.5291 1.323e-05 0.001636 0.001348 0.0001299 0.009198 0.003208 0.3157 1.295e-05 0.1724 0.003176 0.6043 0.05289 0.0002905 0.003064 0.002665 0.006109 0.0142 0.0004078 0.4031 0.002746 0.0001332 0.000491 9.003e-05 0.05403 0.002666 0.007683 0.6201 0.0004497 0.0006963 0.1046 0.2274 0.001552 1.342e-05 0.304 0.5475 0.007216 0.0002118 0.01001 0.0006194 0.619 0.0001333 0.001454 0.002498 0.6107 0.0852 0.0002997 0.001718 0.0001646 0.004636 0.00339 0.5403 0.0007974 0.3377 0.000282 1.424e-05 0.1269 0.0013 0.009841 0.0001459 4.214e-05 0.0003862 0.111 0.3974 0.00294 0.03969 0.5677 0.0008168 0.003301 0.01534 0.5976 0.08803 0.1152 0.4174 0.001234 0.002227 0.5739 0.001607 0.003134 0.0003754 0.375 0.589 0.5663 0.1303 0.01059 0.02605 0.0004893 1.578e-05 2.966e-05 0.003313 1.098e-05 0.0001232 0.4048 1.825e-05 0.002435 0.0001432 0.01432 0.04671 0.02027 0.0001183 0.0004091 0.0002337 0.0006045 0.1974 0.003943 0.001338 0.003019 0.01069 0.03761 0.001003 0.05607 0.001361 0.3536 0.003488 0.006135 0.01506 0.02916 0.0003986 1.12e-05 6.749e-05 0.4128 0.0001876 0.00331 0.6082 0.003 0.5803 0.0001931 0.00212 0.3483 0.0008672 0.001496 0.6543 0.01191 0.0209 3.887e-05 0.5444 0.03775 2.124e-05 0.01268 0.5639 0.0001273 0.003693 0.2546 0.04036 0.02357 0.001854 8.121e-06 0.0005622 0.002244 0.01248 0.0004713 0.01384 0.5714 0.2358 0.001241 0.003223 0.001799 0.6098 7.048e-06 0.001518 0.005577 0.001103 0.00321 0.002319 0.4374 0.1091 0.0005264 0.001149 0.1927 0.002617 0.0005514 0.01934 0.009031 0.006714 0.01195 0.2006 0.01496 0.005928 0.01023 0.006689 0.6069 0.0002174 0.3903 0.003351 0.008823 0.01484 0.0001323 0.002158 4.833e-06 0.01294 0.02579 0.2775 0.5305 0.01078 0.006669 0.0001041 0.0003989 0.001231 0.0008991 0.0003779 0.005658 0.01889 0.002348 0.000597 5.772e-05 0.003864 0.2273 0.000229 0.01556 0.0002176 0.008481 0.01135 0.003661 0.001429 0.5728 0.001067 0.03943 0.567 0.07501 0.0002265 0.1942 1.818e-06 0.000635 0.0004699 0.5688 0.006409 0.001145 0.3693 0.004776 0.003777 0.0002332 0.00073 0.0001379 0.5879 0.001941 0.5652 0.01499 0.0009351 0.001496 0.008827 0.0005822 8.835e-06 0.4474 0.5749 0.004286 0.002635 0.0003009 0.01745 0.00313 0.0004473 0.01649 0.007397 0.5685 0.002299 0.0001558 0.08402 0.004201 0.561 0.002764 0.12 0.005021 0.0008544 0.001642 0.2415 0.0006983 0.008712 0.4527 0.0004912 0.001615 0.08039 0.5503 0.4234 0.0009115 0.0007139 0.006554 0.02341 0.00206 0.03417 0.001898 0.006196 0.3516 0.03045 0.02329 9.582e-06 0.0002546 0.000137 0.5412 0.000534 0.00235 0.0002532 0.0002799 1.589e-05 0.008412 0.005239 0.002925 0.003827 0.0004217 8.961e-05 0.04402 0.4064 0.02258 0.2962 6.892e-06 0.5529 0.007562 0.0006034 0.005592 0.007363 0.00182 0.002808 0.0002053 0.008477 0.001581 0.01002 0.01321 0.0008339 9.437e-06 0.004248 1.32e-05 2.283e-05 0.5754 1.247e-05 0.002875 0.000297 0.0001127 0.005409 0.03012 0.0009711 0.003578 0.007068 0.2204 0.007736 0.006709 0.001877 0.003768 0.002263 0.01731 0.01744 0.04579 1.123e-05 0.003027 0.0004844 0.003089 0.0005141 0.3873 0.0004046 0.002044 7.518e-05 0.008644 1.493e-05 0.000809 0.001067 0.07414 0.0001212 0.08383 0.005559 0.003525 0.09747 0.02027 0.004668 0.006205 0.001428 0.0008701 0.008178 0.001921 0.003473 1.535e-05 0.006571 1.235e-05 0.2157 0.01639 0.001171 0.0151 0.2019 0.001813 0.5734 0.5367 0.5749 0.002868 0.002242 0.0005204 0.06887 0.06113 0.003207 0.182 4.548e-06 0.0001646 1.148e-05 0.001354 0.1268 0.0003793 0.0005921 0.08834 0.0001969 0.5864 0.007179 0.0164 0.0005184 0.02622 0.541 0.4528 0.001594 0.01321 0.1933 1.47e-05 0.00211 0.4889 0.58 0.004261 0.2704 0.000802 3.666e-05 0.4365 0.00805 0.0005166 0.001988 0.0008828 1.49e-05 0.004928 0.04724 0.005231 0.001139 0.0444 0.0008194 0.004416 0.01105 0.0005242 0.001632 8.09e-06 0.2604 0.00323 0.0001265 0.0006656 0.5784 0.003742 0.5766 0.01204 0.02113 0.003818 0.00545 0.001097 0.002836 0.03972 0.0002115 0.0006622 0.0003421 0.0005453 0.000363 0.002511 0.02671 0.003669 0.0009437 0.004536 0.001135 0.456 1.215e-05 1.734e-05 0.0001743 0.00533 0.007742 0.000273 0.0006418 0.02574 0.1206 0.0001365 0.001447 0.3587 0.2854 0.426 0.000844 0.0017 0.02248 0.0007314 0.01318 0.3124 0.002624 0.00404 0.003616 0.0007555 8.78e-06 0.000369 0.001764 0.001913 0.003409 0.001767 0.0004363 0.002612 0.009323 0.0133 0.0001645 0.003913 0.02725 0.002822 0.0004642 0.05766 0.008063 0.01842 0.02008 1.043e-05 0.0004446 0.6032 0.0007164 0.01398 1.747e-05 0.0003754 0.5018 0.05917 0.0004289 0.3613 0.003569 0.0004258 0.000529 0.01386 0.392 0.03707 0.008285 0.006095 0.08932 0.0008867 0.4389 0.0005375 0.004391 0.0006286 0.00079 0.00239 0.002333 0.001036 0.0007563 0.0294 0.003157 0.5816 1.287e-05 0.2363 0.2864 0.0008025 0.5703 0.005291 0.009965 1.139e-05 0.5956 0.004088 0.001414 0.0007036 0.0009662 0.04109 0.002146 0.003687 0.001175 0.0001282 0.003495 0.1112 0.5581 0.0008416 0.0005343 0.02653 0.00232 0.0002839 0.0002581 0.01113 0.5336 0.002711 0.001754 7.115e-06 0.004354 0.002 0.01259 0.001553 0.5446 0.008446 0.0005735 0.000252 0.5974 0.03479 0.0003785 0.539 0.003426 0.00018 0.006369 0.5939 0.6003 0.01808 0.425 0.3757 0.5736 0.01555 0.001371 0.0001832 0.05272 0.002162 0.01113 0.05281 0.6432 0.005779 0.00365 0.1597 0.1086 0.0002178 0.03717 0.4368 0.0002309 0.002812 0.02024 1.185e-05 1.414e-05 0.4523 0.001668 0.01208 0.0005809 0.002392 0.0001341 0.6258 0.00751 1.072e-05 0.009839 0.001505 0.02521 0.0001105 0.00242 0.001926 0.008736 1.921e-05 0.1364 7.784e-05 0.003347 0.3783 0.3376 0.3306 0.0009412 0.004077 0.0001124 0.00131 7.495e-06 0.102 0.336 0.002419 0.004904 0.06825 0.5679 0.0003202 0.01145 0.0001859 0.002861 0.0006958 0.001793 0.003121 0.005243 0.001348 0.5413 6.081e-05 0.001187 0.00245 0.008168 0.1291 0.5582 0.004319 0.007577 0.00109 0.0001057 0.005275 0.2482 0.006541 0.05482 0.09331 0.5689 0.000443 0.001732 9.899e-05 0.001084 0.003904 0.01605 0.002461 0.005602 0.01228 0.003396 0.02439 0.04485 0.5907 0.001862 5.224e-05 0.03957 0.01806 0.0001649 0.3184 0.5704 0.01868 0.2538 0.6039 0.004705 0.4881 0.4878 0.008673 0.3754 0.002929 2.626e-05 0.0006682 0.02101 0.04327 0.4744 0.5948 0.01622 0.001585 0.004038 1.301e-05 0.006221 0.4293 0.01127 0.009319 0.0001172 0.07743 0.5969 0.07509 0.004257 0.6069 0.5294 0.001911 0.001656 0.1173 0.3608 0.002173 0.5371 0.1776 0.5028 4.18e-06 0.09431 0.0003509 0.01186 0.3651 0.1009 0.0166 0.004493 0.000508 0.004862 0.003672 0.008164 0.6238 1.804e-05 0.005896 0.004965 0.5902 0.0006821 0.000914 0.001613 0.0005141 0.02976 0.0006802 0.008959 0.0427 0.0002277 0.6064 1.303e-05 0.006434 1.966e-05 0.6022 0.00335 0.5733 0.138 0.01109 0.0001349 0.007464 0.000793 0.02678 0.415 0.0007315 0.4132 0.0002954 0.0007013 0.02079 0.05088 0.4299 0.001873 0.5665 0.01488 0.00445 0.01267 0.006401 0.5619 0.0001955 0.2126 0.0009985 0.0003818 0.007681 0.0002915 0.0001429 0.005152 0.001392 0.002998 0.1946 0.005673 0.01395 0.5736 0.5716 0.0004892 0.009438 0.0001498 0.00541 0.002704 0.5793 0.00408 0.5795 0.5626 0.2116 0.001094 0.05218 0.01967 0.3183 0.002739 0.03174 0.002248 0.001212 0.0004947 0.4375 0.0006543 0.001923 0.003251 0.03978 0.004554 0.5861 0.003243 0.3267 0.002067 0.006898 0.2909 0.001347 1.149e-05 0.0007969 0.0001185 0.004084 1.166e-05 0.000237 0.01762 0.003605 0.0003148 0.01121 2.544e-05 0.0004572 0.003984 0.002328 0.001492 0.003057 0.0003857 0.000607 0.4187 0.004657 0.4204 0.001034 1.815e-05 0.00353 0.0002966 0.001608 0.006956 0.0007722 0.3088 0.001386 0.002901 1.843e-05 0.009602 0.4374 0.004745 0.006873 0.002262 0.3962 0.007403 0.002177 0.003665 0.03161 0.001158 0.003672 0.0001823 0.0008166 0.001531 0.004187 0.00518 0.0003819 0.4355 0.0006211 0.005987 0.5137 0.002043 0.002 0.0005922 0.0004004 0.001242 0.6019 0.0009461 0.004855 0.09743 0.008869 0.001226 5.392e-06 0.00136 0.4996 0.3531 0.01726 0.0007523 0.004287 0.5504 0.006715 0.0006503 0.0008776 2.183e-05 0.5119 0.001305 5.133e-05 0.002436 9.337e-06 0.001556 0.001323 0.00098 0.00373 0.01179 0.5162 0.001839 0.0003451 0.001377 0.001067 0.01722 0.003978 0.4819 0.4229 0.0005941 0.0009745 0.003945 0.0001723 0.001811 0.5553 0.0001334 0.00193 0.05011 0.001143 0.0002124 5.281e-05 0.3691 0.04376 0.4327 0.003215 0.0001459 0.000334 0.0002089 0.004988 0.002815 0.5801 0.00226 0.1028 0.01273 0.0001637 0.01953 1.136e-05 0.007955 0.000725 0.2383 0.002173 0.0001024 0.5698 0.002327 0.001442 0.003215 0.01087 0.5888 0.5621 0.4229 0.003059 0.552 0.008742 9.504e-05 0.04417 0.005043 0.0005675 0.1836 0.003699 0.009072 0.366 0.0001012 0.0003437 2.344e-05 0.002027 0.5667 0.0008872 9.705e-05 0.5725 3.551e-05 0.01785 0.003065 0.005716 0.001816 0.003171 0.00169 0.007451 0.009346 0.5926 0.008198 0.5673 0.1097 0.0001767 0.002302 0.004437 0.005375 0.01373 0.0009423 0.5725 0.4831 0.1263 0.001364 0.002777 0.00338 1.492e-05 0.03476 0.1761 0.0007494 0.02566 0.004902 0.5482 0.0003264 0.0003726 0.005333 0.007672 0.001593 0.002706 0.00323 0.004092 0.01111 0.3886 0.003663 0.005314 0.00236 0.0001592 1.493e-05 0.0005663 0.5326 0.001924 0.003824 0.0058 8.556e-06 0.5652 0.001895 0.00413 0.003567 0.001803 0.003868 1.042e-05 0.001669 0.004099 0.0003821 0.0002625 0.00844 0.005783 9.303e-05 0.007799 0.5691 0.0009754 0.005334 0.003379 0.000556 0.005788 0.007853 0.3913 0.0002884 0.001402 0.0001451 0.01017 0.0002934 0.0007993 0.5732 0.0008676 0.004723 0.00198 0.02958 0.4645 0.0009029 0.002221 0.004902 0.006003 0.5489 0.0006702 0.008571 0.01188 0.001895 0.00539 0.001585 0.002832 0.0005768 0.0008453 0.3433 0.001282 0.002519 0.002476 0.0004116 0.001475 0.005532 0.004152 0.003119 0.01867 0.002289 0.0002576 1.311e-05 0.0003569 0.002005 8.579e-05 0.01154 0.06947 1.056e-06 0.0008822 0.0001079 0.3061 7.093e-05 0.0002153 0.001213 0.005732 0.4559 0.009301 0.5794 0.005434 0.002845 0.009766 0.01199 0.007149 0.0002567 0.007239 7.871e-06 0.006648 0.0009835 0.000268 1.164e-05 0.000405 0.001386 0.004857 0.05522 0.00177 0.007531 1.297e-05 0.001514 0.02068 0.1249 0.0003626 0.01977 0.5996 0.5716 0.005705 0.004143 0.2449 0.3682 0.5686 0.0003867 0.0008721 8.228e-05 0.5453 0.423 0.003981 0.3235 0.3216 0.0004257 0.3589 0.002279 0.001512 0.1216 0.0001416 0.007504 0.002482 0.01897 0.003344 0.1389 0.0008854 0.004835 2.349e-06 0.002751 0.0005036 0.0001771 0.0001288 0.03737 0.4214 0.01114 0.0003035 0.5722 0.02797 0.0007902 0.0003269 1.691e-05 0.0007814 0.00272 0.0002102 0.3974 0.001012 0.0001573 0.001154 0.003221 0.00153 0.3805 0.005579 0.007105 0.0001352 0.002172 0.00161 0.4142 0.0001735 0.0005755 0.3414 0.004173 0.3677 0.003635 0.4154 0.0002655 1.597e-05 0.3747 0.0003941 0.002306 0.04531 0.0008178 0.002021 0.5301 5.107e-05 0.001622 0.001497 0.0003214 0.243 0.06497 6.501e-06 0.003408 0.0003986 0.02369 0.004347 0.01504 0.008121 0.001755 0.3948 0.01415 0.002128 0.001605 0.003148 0.005967 0.002787 0.01074 0.001546 0.000549 0.001763 0.01219 0.007578 0.5791 0.05322 0.0006315 0.004781 0.4429 0.0141 0.005241 0.006195 0.001819 0.003427 0.003657 0.04994 0.0003054 0.003084 0.3937 0.002352 0.002395 0.06315 0.0002555 0.2089 0.0001322 0.01241 0.02885 0.08702 0.0106 0.0004647 0.002331 0.6463 0.001387 0.001311 0.001038 0.3131 0.5384 0.008966 0.001057 0.0001803 0.01303 0.003986 0.00844 0.0003268 0.03546 0.02878 1.526e-05 0.01863 0.01856 8.844e-06 0.0003536 0.007334 0.005895 0.6043 1.505e-05 0.5443 0.003055 0.002611 0.001073 0.0009066 0.000931 3.418e-05 0.0126 0.005876 0.05516 4.979e-05 0.0003769 0.006969 1.771e-05 1.681e-05 0.0003939 0.002358 0.3858 0.02279 0.06291 0.002896 0.5829 0.0007904 1.564e-05 0.1409 0.003413 0.01076 0.005229 0.0012 0.0004968 7.939e-06 0.0001726 0.001383 0.3121 0.3118 0.578 0.000286 0.000142 0.03312 0.565 0.04883 9.213e-05 0.007266 7.399e-06 0.001326 0.5326 8.262e-05 0.4654 0.01666 0.009543 0.2325 0.00688 0.02535 0.01672 0.1274 0.0004548 0.004797 0.004019 0.002464 7.823e-05 0.00782 0.0008808 0.001433 0.009863 0.6191 0.0001898 0.0005241 0.001245 0.001176 0.0002367 0.001449 0.001848 0.1036 0.003375 0.0009781 0.005337 0.0008219 0.4245 0.0009876 0.002682 0.001233 0.008565 0.1469 0.1032 0.5549 0.001182 0.002473 0.0009948 0.0006976 0.00895 0.0002438 0.006272 0.004379 0.01465 0.0001931 0.04079 0.0001752 0.004682 0.005413 0.02537 0.09826 0.009164 0.04943 0.003902 0.03087 0.001009 0.006179 0.001947 0.008357 0.007971 0.0009166 0.02531 6.643e-05 0.002889 0.01413 0.06301 7.664e-06 0.00126 0.001565 0.002864 4.049e-05 0.6053 2.074e-05 0.0003334 0.003565 0.001714 0.001438 0.003226 0.0014 0.005163 0.001285 0.001396 0.001628 0.0003282 0.4233 0.5864 0.5242 0.002518 0.000611 0.01109 9.1e-06 0.001118 2.367e-05 0.0001348 0.002863 7.772e-05 1.107e-05 0.009468 0.0004156 0.0001849 0.006349 1.229e-05 0.5686 0.002606 0.0005273 0.0005823 0.5496 0.0005639 0.009437 0.001345 0.00111 0.003815 0.5574 0.07329 0.001124 0.0001933 0.5003 0.0006289 0.03158 0.02837 6.521e-06 0.3064 0.00996 0.009889 0.00107 0.0006983 0.02596 0.007475 0.007099 0.0006272 0.0003467 0.0009001 0.4434 0.006409 1.449e-06 0.4435 0.5434 0.0002696 0.0001614 0.001977 0.0004413 0.1 0.007146 0.00217 0.003741 0.002966 0.001672 0.4346 0.005558 0.01636 0.05278 0.3655 0.003565 0.4929 1.1e-05 0.005349 0.008164 0.01828 1.57e-05 0.4431 0.0009685 0.3471 0.6258 0.002163 0.02297 0.0004341 0.01394 0.1619 0.002212 0.0004829 0.003851 0.006341 0.002833 0.0004909 0.001107 0.0003005 0.0003277 0.0003075 2.192e-05 0.0002789 0.003991 0.0005743 0.002513 0.001651 0.02364 0.6062 0.536 0.0004694 0.006713 0.0005182 7.735e-06 0.5645 0.0005402 0.02522 0.3891 0.00521 1.69e-05 0.02172 0.0004584 0.0001763 0.6074 0.0002441 0.002665 0.005175 0.01117 0.00736 0.0003917 0.001315 0.5757 6.945e-06 0.0007602 0.09204 0.4827 0.0002087 0.0008043 0.0002839 0.0004589 0.002287 0.001194 0.5695 0.0005314 0.6055 0.001742 0.0004356 8.056e-06 0.3201 0.3198 0.04003 0.005877 0.2669 0.005238 0.01516 0.005262 0.003447 0.001727 0.001257 0.1302 0.3816 1.376e-05 8.953e-06 0.00269 0.0002633 0.1411 0.0005461 0.3043 0.002042 0.0002009 0.0004275 7.394e-05 0.0007488 0.000415 0.000634 0.01733 0.006486 0.003186 0.4412 0.5664 0.5738 0.007975 0.00154 0.0001879 9.961e-06 0.000789 0.4779 0.0004638 0.0001815 0.0007999 6.267e-06 0.008577 0.000396 0.0004968 0.002149 0.1051 0.01162 0.01641 0.01002 0.0745 0.0001682 0.003622 0.005022 0.005577 0.000465 0.3458 0.3665 1.117e-05 0.00715 0.009259 0.002336 1.327e-05 0.006456 0.4992 0.001003 0.003424 0.001552 0.008373 0.004979 0.0005045 0.007973 0.002883 0.03777 0.3635 0.001578 0.1439 0.06859 0.08731 0.0009709 0.007328 0.0001559 0.004107 0.004625 0.002658 0.3601 0.001614 0.0009371 0.02369 0.002149 0.007944 1.8e-05 0.3013 0.4762 0.001621 0.001397 0.001752 0.003562 0.04924 7.566e-05 0.1042 0.5829 0.005247 6.428e-05 0.4749 0.01292 0.003791 0.5567 1.083e-05 0.1898 0.00208 0.003135 0.002788 0.02006 0.001485 0.0001839 0.01873 0.1197 0.5497 0.004502 0.004126 0.001209 0.005776 0.486 0.3713 0.5736 0.00107 0.001441 0.001483 0.3467 0.0002451 0.00252 0.0004003 0.004201 0.0003763 0.05102 0.2891 4.199e-05 0.5677 0.00057 0.003325 0.3128 0.002409 0.001322 0.0002821 0.0009889 0.000767 0.006062 0.009861 0.4218 0.0001439 0.0001824 0.0002325 0.03811 0.01479 0.5648 1.194e-05 0.5593 0.0007532 8.951e-05 0.5451 0.0228 0.01052 0.0004008 0.4067 0.006175 0.0001121 0.003952 0.5696 0.005049 0.0007657 0.004363 0.001918 0.00636 0.002805 1.101e-05 0.013 0.4815 0.4125 8.985e-05 0.0064 0.0007661 0.02372 0.004221 0.5329 0.5916 0.0122 9.834e-06 7.091e-05 0.0003193 0.000939 0.01769 0.0006927 0.0001305 0.00193 0.000546 0.5888 0.0003476 0.0217 0.0004298 0.004404 0.005159 0.5658 0.000245 0.006125 8.652e-06 0.0001459 0.01173 0.008103 0.01825 0.0002581 0.4534 0.01333 8.422e-06 0.0003701 0.0006733 0.0001514 1.791e-05 0.0008423 0.001405 0.04464 0.0002362 0.0006005 0.0006843 0.002279 0.397 0.00013 1.34e-05 0.5734 0.0006762 0.0001028 0.0003758 0.0004405 0.002888 0.008285 0.001739 0.004834 0.3242 0.001562 0.6146 0.002474 0.04712 1.954e-05 0.04042 9.664e-05 0.004315 0.0004729 0.006468 0.00717 0.000271 0.01514 0.00275 0.0002636 0.003454 0.002682 0.01264 0.01687 0.001745 0.0002308 0.007798 0.4747 0.003636 0.006723 0.001853 0.001001 0.001239 0.000551 0.002452 0.4219 0.002142 1.022e-05 0.00525 0.009074 0.001039 0.1761 0.002618 0.5548 0.002059 1.245e-06 1.69e-05 0.0003344 0.003382 0.005017 0.6123 0.3807 0.004122 0.00362 0.003793 0.008957 0.5682 0.004762 0.001938 0.01277 0.00346 0.5618 0.0002267 0.0002437 1.879e-05 0.02605 0.006326 0.001531 0.0005651 0.3026 0.0007532 8.142e-06 0.01681 0.01442 0.02767 0.0006756 2.721e-05 0.02248 0.006845 0.01316 0.002601 0.4701 0.0008137 0.3487 1.194e-05 0.003863 0.0124 0.0002456 0.008365 0.0008518 0.002423 0.01168 0.1352 0.5983 0.5218 0.004206 0.004895 0.005382 0.01526 0.003064 0.001634 9.262e-06 0.01378 0.0005344 0.03012 0.5694 0.0001983 0.5583 0.00664 0.000247 0.007893 0.003398 0.003741 7.232e-06 0.0005344 0.004122 0.0009552 0.001863 0.001335 0.04888 1.229e-05 0.5736 4.909e-06 4.179e-05 0.003134 0.002263 0.6413 0.001499 0.0004447 0.001681 0.01697 0.003039 1.45e-05 1.634e-05 0.5757 0.007316 0.5718 0.5555 0.0001933 0.3769 0.003472 0.005965 9.479e-06 0.003518 0.0004284 0.001073 0.001003 0.04039 0.0008426 0.01256 0.008749 0.009272 0.5245 0.002321 0.1103 0.0004948 0.002581 0.01011 0.0288 0.003533 0.000753 3.058e-05 0.001293 0.01252 0.007475 0.02644 0.002723 0.008085 0.0003058 0.001475 0.02217 0.005618 0.001402 0.005589 0.001232 0.009434 0.004962 0.005817 0.002161 8.274e-06 0.002032 0.05061 0.3031 0.0001355 0.004092 0.5669 0.0003647 0.02631 4.367e-05 0.000192 0.347 0.0004294 0.00154 0.001662 0.001261 0.000393 0.002177 0.0008751 0.273 7.239e-05 0.00171 0.00239 0.0009323 0.001929 0.001443 0.5689 0.3855 0.6406 0.0002821 0.03554 0.5958 0.1268 2.501e-06 0.592 0.0008559 0.0007489 0.01659 0.001499 0.0006829 0.0001544 1.345e-05 0.004507 0.001651 0.001683 5.744e-06 0.5711 0.0005309 0.02142 0.004656 0.01162 0.00853 0.0177 0.01319 1.215e-05 0.268 0.2793 0.1365 1.043e-05 0.0004825 0.001311 0.0001396 0.1998 5.725e-06 0.5636 0.0004127 0.0002444 0.006554 0.5672 0.06136 0.008204 0.0001767 0.001971 0.0006581 0.01246 0.0001054 1.111e-05 0.01057 0.01415 0.4682 0.01533 0.009959 0.05029 0.01661 0.01028 0.0006889 0.007898 0.03221 0.0004583 0.001583 0.02151 0.0117 0.00101 0.5517 0.2292 9.664e-06 0.5213 0.3536 0.5794 0.000329 9.256e-05 0.03873 0.2699 0.002807 0.001694 0.3571 0.002215 1.346e-05 0.2981 0.001644 0.001653 0.08481 0.004708 0.4831 0.0008901 0.0002432 0.01262 0.4532 0.004826 0.0002501 0.00164 0.0007371 0.002927 0.06172 0.001626 0.4926 0.09649 0.02441 0.001039 1.74e-05 9.454e-06 0.0001309 1.138e-05 1.173e-05 5.631e-05 0.00446 0.5971 0.003687 0.001138 0.01014 1.191e-05 0.0334 0.004641 0.001969 1.181e-05 0.001575 0.001506 0.02185 0.0006179 0.000356 0.0004843 0.00194 0.001247 0.00319 0.009746 0.0006152 0.0004941 0.0001164 0.002456 0.006598 0.0004576 0.0003579 0.006604 0.003735 0.004545 0.0018 0.001254 0.2613 0.0002315 0.03897 1.485e-05 0.14 0.002607 0.3973 5.323e-06 0.0004048 0.4007 0.008731 0.0004303 0.004012 0.005345 0.001667 0.006099 0.0001773 0.2824 0.00199 0.0003476 0.5494 0.001296 0.003786 0.008908 0.005914 0.01821 0.5 0.03285 0.0002453 0.2651 0.6532 6.22e-05 3.545e-05 0.0005314 0.000502 0.001039 0.2173 0.0269 0.5669 5.438e-05 0.000282 0.0003154 0.0184 0.002104 0.004743 0.1056 0.3138 0.002891 0.001303 4.639e-05 1.349e-05 0.004314 0.00282 0.0008607 0.02244 0.003241 0.008143 1.111e-05 0.0001184 0.0011 0.003637 0.03668 0.007298 0.002035 0.0003219 0.4165 0.003541 1.193e-05 0.001994 0.5587 8.802e-06 0.001636 6.754e-07 0.5714 0.01823 0.4584 0.5154 0.1286 0.005441 2.625e-05 0.00229 0.5823 3.983e-06 0.245 0.000234 0.01594 0.1058 0.006113 0.001419 0.002377 0.0009247 0.5701 0.4961 0.001135 0.01982 0.006992 0.00104 0.004186 0.579 0.001003 0.0087 7.896e-05 0.0002704 6.68e-05 0.001548 0.0008596 1.282e-05 2.749e-06 0.001095 0.001679 0.3592 9.632e-05 0.004396 0.3849 0.02167 0.002095 0.535 0.01019 0.0009712 0.005333 0.0251 0.1175 0.005704 0.0006608 0.001424 0.002959 0.005646 0.2748 0.005362 0.5767 0.0001737 0.009717 0.0008681 0.002778 0.0019 0.002629 0.002127 0.003095 0.1189 0.001822 1.506e-05 0.003882 1.422e-05 0.001043 0.0006265 0.0003429 0.01034 0.0002433 0.1837 0.5603 0.0001331 0.0002675 0.03788 0.000241 0.0687 0.00243 0.001581 0.00108 0.002041 0.5735 0.1331 1.496e-05 5.515e-06 0.006422 0.08546 0.006792 0.0004647 0.0003106 0.000113 0.0007677 0.0001032 0.01042 0.0001326 0.006534 0.0002403 0.0003933 0.0001499 0.4803 0.0002345 6.311e-06 0.0007246 0.007604 0.0009492 0.001246 0.0101 0.003882 0.002026 0.1694 1.302e-05 0.003692 1.475e-05 0.0004005 0.0001486 0.00325 0.5522 0.0102 0.0003808 0.001824 0.008309 0.3167 0.02154 0.01105 0.005419 0.008025 0.01837 0.007276 0.002956 0.01321 0.0004903 0.003996 0.002091 0.00739 0.0001985 0.00591 0.3212 0.26 0.4342 0.004734 0.005725 0.001515 0.002638 0.003957 9.387e-07 0.004947 0.007222 6.85e-06 0.5507 0.002286 0.007549 8.25e-05 0.007196 0.005413 0.2922 0.00275 0.3592 0.3458 9.552e-06 0.3047 0.2358 0.001121 0.0009108 0.2241 0.594 0.0005289 0.2684 0.002707 0.004097 0.0004076 0.004302 0.04786 0.009927 1.659e-05 8.93e-05 0.01109 0.005477 0.5753 0.6002 0.002098 0.0004668 0.0003839 0.000468 0.001478 0.001449 0.001161 0.01096 0.002745 0.5178 0.002339 0.001771 0.004294 0.5669 0.008775 0.002833 0.1473 0.01639 0.001893 0.0001698 4.668e-05 0.000104 0.0008698 0.0002173 0.0002145 0.137 0.02605 0.07826 0.04277 0.0262 0.05826 0.005941 4.153e-05 0.05621 0.002027 0.007122 0.00162 0.0258 0.003013 0.0001649 0.004406 5.951e-05 1.894e-05 0.0008212 0.0079 0.2919 0.01885 0.0003846 0.0005162 0.004433 0.5461 0.0009651 0.01387 0.0005762 0.3409 0.3393 0.003546 0.3599 0.002126 1.314e-05 0.001501 0.001811 0.3727 0.3729 0.01624 2.513e-05 0.2906 0.5546 0.0006197 0.005221 0.395 0.0007332 0.0308 0.0002765 0.000946 0.002659 0.00154 0.004483 0.008576 0.0008067 0.003706 1.353e-05 0.06812 0.5375 0.1115 4.145e-06 0.003958 0.00241 0.00599 9.656e-05 6.298e-06 7.953e-05 0.003345 0.000488 0.02963 0.0004896 0.001519 0.03001 0.006227 0.003454 0.0009411 0.009623 0.6476 0.003831 0.5899 0.0004082 0.3881 0.002036 5.44e-05 0.006121 0.3673 0.0001108 0.4905 0.0002775 0.001605 9.106e-05 0.001188 8.881e-05 0.002127 0.001294 0.2718 0.008252 7.178e-05 0.0009208 0.0008388 0.04679 0.2044 0.003656 9.067e-05 6.818e-05 0.0002697 0.005999 0.001754 1.387e-05 0.5567 9.555e-06 0.6216 0.0005394 0.003107 0.0005256 0.00709 0.01898 0.00183 0.1642 0.5574 0.00222 0.0007501 0.02391 0.0001925 0.0006603 4.319e-05 0.01381 0.002209 8.629e-05 4.612e-08 0.004263 0.0001203 0.0009833 0.02435 0.0003824 0.007797 0.1651 0.5828 0.000263 0.5526 0.01811 0.001988 0.386 0.01032 0.01312 0.0002148 0.5938 0.01152 0.003011 0.01043 0.0002331 0.03537 0.002172 0.0538 0.006305 0.005622 0.009423 0.1311 0.0001791 0.001533 0.002232 0.0276 0.0009101 5.851e-06 5.056e-05 0.001708 0.0256 0.01729 0.01529 0.5202 0.0009648 7.441e-05 0.5793 1.114e-05 0.0005698 0.2673 0.00336 6.967e-05 0.001073 0.0003338 0.01272 0.5814 0.006851 0.0002062 0.004386 0.003527 0.0009928 8.288e-06 0.0002532 0.1789 0.00107 3.665e-06 0.0005829 0.00154 0.0009763 0.0003412 0.0003872 0.0004491 0.5289 5.368e-06 0.03165 0.001321 0.008321 0.3159 0.5706 0.0007592 8.472e-05 0.5695 1.504e-05 0.0005771 0.0004451 0.5403 0.002067 0.005987 0.3159 0.4069 0.0009602 0.5508 5.094e-05 0.00529 0.5708 0.005904 0.02042 2.249e-05 0.0003258 0.5753 0.005256 0.5753 0.0007953 1.578e-05 0.5467 0.002449 0.3526 0.001215 0.000195 2.14e-05 0.02118 0.0003678 0.001531 0.01313 0.01824 0.001007 0.0002337 0.001898 0.04204 0.02151 0.0001575 0.004059 0.005443 0.02224 0.0004391 0.006353 0.0002449 0.001226 0.001402 0.003098 0.001535 8.91e-06 0.0004336 0.005706 0.0009733 0.4738 0.007395 0.00155 1.291e-05 0.000502 0.000207 0.0005065 0.0001009 0.003 1.841e-05 9.608e-05 0.4031 0.02402 0.1314 0.005795 0.000334 2.984e-05 1.507e-05 0.000823 0.04352 0.001377 0.000904 0.5663 0.03846 0.0003271 4.817e-05 0.000186 4.479e-05 0.0002383 0.005293 0.556 0.5402 0.009999 0.5758 0.0001874 0.0005206 0.0004122 0.009581 0.001438 0.008971 0.2104 0.1107 0.0002631 0.002401 0.0004789 0.0136 0.005014 8.932e-06 0.07367 0.008748 0.02691 0.00105 0.0098 0.3779 0.2621 0.01233 0.01506 0.001321 0.007673 0.004214 0.03384 0.5826 0.0163 0.5649 2.188e-05 0.5959 0.2451 0.0004615 0.5042 1.826e-05 0.003864 0.002584 0.007755 0.0007187 0.5944 8.877e-05 0.001192 0.003889 0.001846 0.09542 0.3883 6.54e-05 0.0001144 0.5448 0.3476 0.0002085 0.6644 0.001322 0.0022 0.1886 0.001854 0.002276 0.5751 0.0006313 0.567 0.1331 0.01047 1.211e-05 0.00235 0.01662 0.0007108 0.02617 0.000239 0.007041 0.0004596 0.6331 0.000483 0.002416 0.4241 0.03001 0.001306 0.003307 1.044e-05 6.802e-06 0.001083 0.3017 0.006086 0.0003519 0.003696 0.003145 9.096e-06 1.11e-05 0.002046 0.002883 0.0001213 0.01103 0.0005262 0.0005533 0.02543 1.67e-05 0.004264 0.0008651 0.004048 0.01273 1.863e-05 0.0001877 0.0002472 0.001299 0.1933 0.01975 0.5728 0.009775 0.324 0.001277 0.004389 0.0005883 0.0003148 0.004837 0.004993 0.0006481 0.5058 0.008329 0.006519 0.005727 2.949e-05 6.066e-05 0.001328 1.843e-05 0.001034 0.001458 0.008049 0.0002208 0.0003165 0.0009909 0.01436 0.0005521 0.00262 0.01849 0.002301 2.638e-05 0.3048 0.6019 0.003804 1.17e-05 0.03514 0.001139 0.01343 0.571 0.002694 0.0009713 0.008554 0.002154 0.02988 0.0005207 0.1231 0.003378 1.479e-05 1.129e-05 2.713e-05 0.002474 0.002626 0.008177 0.03029 1.283e-05 0.004078 0.005857 4.577e-06 9.677e-05 0.0007096 0.006403 0.1886 0.008625 9.658e-06 0.007036 0.002775 0.002267 0.01342 0.02202 0.003639 0.001404 0.001269 0.002102 0.0007881 0.001131 0.0001513 0.578 0.0001473 0.001451 0.005839 0.00708 0.07997 0.0007768 0.00254 0.6004 0.5656 0.009899 0.008506 0.0005372 0.4195 0.01549 0.3199 6.308e-05 0.0001617 0.005949 0.0005186 0.1079 6.976e-05 1.266e-05 0.03268 0.0005225 0.001659 0.0003849 6.228e-06 0.2592 0.008362 1.517e-05 0.0009172 0.0004182 0.02052 0.01144 0.001241 0.00691 0.0002338 0.005193 0.01073 0.01213 0.0001441 0.5223 0.517 0.004859 0.0007335 0.3301 8.004e-05 0.1157 0.00218 0.0002592 0.002325 0.001518 0.0004122 0.4181 0.0001047 0.0001905 0.08461 0.0007469 0.000753 0.5047 2.302e-06 0.0005833 0.000384 0.0005421 0.001446 0.3372 0.001585 0.07187 0.00273 0.5961 0.002438 0.04259 0.02017 0.0008429 0.007092 0.0009354 0.0006631 0.01642 0.004275 0.005405 0.3754 0.596 0.006084 0.02255 0.001401 0.03672 0.002433 0.006693 2.628e-05 0.5854 0.5464 0.3193 0.002063 0.0003827 0.6375 0.5687 0.01519 2.166e-05 0.02676 0.0004514 0.001855 0.001144 0.0002514 0.003516 0.0002472 0.3003 0.00971 0.5891 0.6118 0.003432 0.004625 0.01227 0.003375 0.01252 0.4647 0.006968 0.003308 0.005636 0.0004539 0.005343 1.083e-05 0.0001652 1.725e-05 5.139e-06 0.001811 0.0003977 0.001885 0.564 0.01659 0.004078 0.1354 1.422e-05 0.01979 0.1881 0.5083 9.489e-05 0.3683 5.717e-05 0.5762 0.0002391 0.1955 0.5646 9.429e-05 0.5846 0.0001483 0.0107 0.000106 0.001089 0.002108 0.00418 0.003438 0.01663 1.137e-05 0.01123 0.006814 0.003112 1.04e-05 0.005675 0.000146 0.001021 0.001319 0.008063 1.151e-05 0.0005338 0.01065 0.003256 0.0003547 0.004316 0.3448 0.003177 0.0002563 0.0007921 0.0003431 0.01192 0.007703 1.182e-05 0.01429 0.004686 1.113e-05 0.02393 0.0003318 0.0008829 0.07114 0.003891 0.0002782 0.006696 0.0004361 0.4894 0.4626 0.0001639 0.001912 1.479e-05 6.214e-05 0.02033 0.000786 0.0008906 0.01394 0.002177 0.5903 0.001088 0.2293 0.001414 0.003119 0.0001037 4.153e-05 0.0004005 0.001658 0.0008876 0.03509 0.002779 0.3116 0.0002419 6.488e-06 0.5686 0.001965 0.004261 0.006566 0.0003663 4.989e-05 0.5816 0.002024 0.02251 0.3025 0.001697 0.008131 0.3336 0.0003158 0.5077 0.0001961 0.6073 0.0008719 0.002424 0.002273 9.412e-05 0.0006395 0.0005576 0.005818 7.313e-06 0.4252 0.001286 0.001276 0.0008522 0.5814 0.173 0.000424 0.0001128 0.0103 0.005614 0.001407 0.003959 0.002501 0.00251 0.005919 0.006229 0.003365 0.3795 0.006656 0.5659 0.5932 0.01362 0.4666 0.4028 0.08855 0.6263 0.002533 6.778e-06 0.06713 0.01153 0.000757 0.5204 0.4325 0.005696 0.01992 0.03365 0.4309 0.3067 0.3055 3.125e-05 0.02509 0.001152 0.0001899 0.02538 0.01986 0.0004284 0.002153 0.002213 0.007791 1.33e-05 0.005933 0.001148 0.009443 0.002707 0.5752 0.008442 0.01065 1.781e-05 0.02995 0.5871 3.04e-05 0.00287 9.848e-06 0.004919 0.0003088 0.0002424 0.00154 0.5768 1.452e-05 0.008629 0.0184 0.006379 0.0008756 0.4916 0.3254 0.01081 0.3328 0.001051 0.0002881 0.00149 0.5268 0.0001078 0.003985 0.0002381 0.000457 0.0003292 0.0008822 2.866e-06 0.002227 0.004249 1.677e-05 0.02019 0.000456 0.549 0.0133 0.01207 0.006237 0.1356 0.005207 0.00496 0.000267 0.002907 1.272e-05 0.004294 0.003835 0.02108 0.5617 0.01959 0.0002779 0.01605 0.4742 0.4146 0.0007408 0.0003484 0.002176 8.589e-06 0.5001 0.002828 0.3079 0.006517 0.006475 0.2773 0.0007762 0.002033 0.0009463 0.0009665 0.009367 0.002386 0.005283 0.0004306 0.0002468 0.3135 0.0002822 0.0006598 0.005719 8.654e-05 0.5142 0.005469 0.5561 0.0006048 0.0004212 0.001405 1.1e-05 0.0004203 0.001263 0.0005612 0.0004534 0.003341 0.1161 0.0008627 0.004284 0.002662 0.004658 0.4504 0.5746 0.4636 9.054e-05 0.005054 1.273e-05 0.001782 0.0004273 0.003602 0.4905 0.4958 0.008856 0.001457 0.002905 0.001367 0.001605 0.002788 3.51e-05 0.003741 0.001697 0.005534 0.001042 0.0003841 0.02349 0.000318 0.02453 0.006022 0.5752 0.5703 9.741e-06 0.001169 2.046e-05 0.003869 8.006e-05 0.003924 0.002961 0.0006863 0.1237 0.485 0.001232 0.0002773 0.1416 0.008982 0.0001265 0.04243 0.005111 0.3669 0.1527 0.005553 0.5516 1.038e-05 0.007043 0.003762 0.02025 0.001656 0.008355 0.01004 0.5621 1.221e-05 0.0004178 0.001048 0.01657 0.001238 0.0004669 2.925e-05 0.01681 0.001389 0.0008067 5.211e-05 0.007881 7.341e-06 0.002163 0.006343 0.0002242 0.001193 0.001146 0.001221 0.04324 0.5458 0.4657 0.004532 0.007317 0.00303 0.00022 0.4467 0.5286 0.001729 0.00104 0.007497 0.008164 0.02562 0.0001387 0.5734 0.0007391 0.0021 0.003845 0.0003774 0.01038 0.001463 0.4401 9.371e-06 7.267e-06 0.001053 0.09501 0.001206 0.001392 0.09714 0.001171 0.001933 0.5659 0.003485 0.3741 0.002044 0.001648 0.003506 0.001197 0.0001979 0.0005735 0.0009363 0.001836 0.001498 0.5662 0.01184 0.0001659 0.5726 0.5767 0.005601 4.901e-05 0.03719 0.004246 0.001178 0.001519 0.0001334 0.04209 0.532 0.007161 0.01039 1.624e-05 0.0008365 0.003105 0.004713 0.0001242 0.0001097 0.001001 1.004e-05 0.01908 0.0007173 0.0007574 0.358 0.0002399 0.004673 0.07039 0.006076 0.0002421 0.009372 0.01813 0.0009069 0.002803 0.005058 0.09052 0.05148 0.0003359 0.001338 1.506e-05 0.00627 0.3108 0.3215 0.5728 0.0006808 0.01971 0.001484 0.0009858 1.064e-05 1.299e-05 0.03704 8.406e-05 0.01698 4.175e-06 0.0009016 0.001586 0.002504 5.727e-05 0.4321 0.3007 0.06962 0.003291 0.0001479 0.001243 0.001926 0.2231 0.000841 0.01367 0.002321 0.002324 0.0005157 0.003756 3.773e-05 0.005219 0.002184 0.0001154 0.589 0.003716 0.3583 0.09791 0.005131 0.01477 0.0003028 0.005209 0.0008572 0.004957 0.008846 0.01136 0.00226 8.308e-05 0.5759 0.0002421 8.511e-05 0.006411 0.6176 0.0008483 0.03834 0.007943 0.01073 0.5729 0.0002795 0.0002902 0.002225 0.5404 0.001206 0.0001934 0.1132 0.002793 0.007394 0.0004325 0.0008629 0.5237 0.5584 9.52e-05 0.1117 0.569 0.0001401 0.006291 0.003 0.03034 0.0009179 0.002155 0.01132 0.4121 0.003129 0.001111 0.02305 0.001106 0.002481 0.5895 0.002166 0.006361 0.0004558 0.004761 0.09525 0.00367 0.0005447 0.4149 0.001915 0.047 0.5075 0.002214 0.0006919 0.0001738 0.003464 0.006278 0.0283 0.6658 0.006665 0.004478 0.004827 0.001307 0.3042 0.0124 4.907e-06 0.0004512 0.004331 0.009826 0.001805 0.09444 3.208e-06 0.002113 0.06368 0.01176 0.00029 0.04354 0.1649 0.0004836 0.001114 0.5089 0.4338 0.5897 0.002466 0.004659 0.6255 0.0002421 0.5779 0.001393 0.01244 0.4625 0.001179 3.254e-05 1.261e-05 0.0003146 0.0629 0.0001833 0.0007609 0.00478 0.006145 6.387e-05 0.001238 0.00816 0.0005327 0.5033 0.0005742 0.3345 0.0002675 0.005511 0.001382 0.01021 1.739e-05 0.00039 0.003083 0.01172 0.009018 0.3889 0.01756 0.001164 0.0004054 0.002831 0.001036 0.01135 5.005e-05 0.5201 0.03776 0.008625 0.000708 0.0005426 0.01632 0.5691 0.5779 0.5581 0.0009866 0.0003209 0.5226 0.3774 0.008481 0.004601 0.01189 0.004978 0.002207 0.07623 0.4311 0.002427 0.01342 0.1439 9.009e-06 0.001548 0.01272 0.02789 0.002314 0.0001087 0.00653 0.006748 0.01248 0.5953 0.0004542 0.002239 0.001752 0.003089 0.5601 0.05577 0.003073 0.5203 7.789e-05 0.5379 0.4338 0.1922 0.000747 0.0004914 0.002604 0.5775 0.001174 0.004884 0.0002718 0.4643 0.007725 0.004708 0.002275 0.00103 0.1382 0.005156 3.175e-05 0.003596 0.003545 0.1067 1.512e-05 1.211e-05 0.001813 0.005147 0.6183 0.141 0.5488 0.003264 1.177e-05 0.0007085 0.3069 0.00061 0.5763 0.008467 0.006652 0.0001357 0.01014 0.0002839 0.009653 0.003551 0.4139 0.568 0.02674 0.001047 0.3283 0.3343 0.003489 0.007622 0.3363 0.0009899 0.00111 0.0007683 0.001767 0.0008387 0.002232 0.007099 0.06449 0.003689 0.009658 0.0001276 0.0002665 0.0003965 0.05278 0.004388 0.02468 0.01457 0.5846 2.761e-05 0.0008003 0.004212 0.001186 0.0001779 0.0006997 0.001277 0.005293 0.004261 0.0144 0.03735 0.2 0.0002655 0.06984 0.004756 0.0003569 0.0003536 7.846e-05 0.0001149 0.0006375 0.0002916 0.03248 0.001151 0.5633 0.001005 0.006128 9.45e-06 0.03802 0.008639 0.4883 0.001154 0.5915 0.001368 0.5761 0.6247 0.000603 0.04069 0.006769 0.59 1.855e-05 0.105 0.5505 0.008182 0.0001883 0.008377 1.608e-05 0.005868 0.0001423 0.006546 0.01236 0.0001371 0.01694 0.3078 0.1704 1.261e-05 5.856e-06 0.0003333 0.373 0.5775 0.002041 0.5848 0.6431 0.009125 0.0191 0.3707 0.4877 0.4872 0.0005938 0.0003277 1.127e-05 0.01109 0.000285 0.001307 0.01086 6.976e-05 0.002607 0.1773 0.0001639 0.09486 0.004923 1.759e-05 0.00501 0.0004785 0.004523 0.0004851 0.0004483 0.0008455 0.0001022 0.002161 0.006812 5.483e-05 0.0004619 0.01884 0.0005972 0.573 0.001216 0.000465 0.0001454 3.347e-05 0.001583 0.0004553 0.007174 0.00178 0.0006777 0.002597 0.000988 0.5842 0.001066 0.0391 0.0005818 0.000806 0.005057 0.005844 0.001807 0.007862 2.643e-05 0.5713 0.0004375 0.5623 0.0004507 0.02343 7.227e-06 0.0004055 0.001607 4.969e-06 0.004472 0.0109 0.0002794 0.0001004 0.0003235 0.0001644 0.01107 0.007063 0.002561 3.486e-05 5.972e-05 0.0003042 0.06479 3.615e-06 0.0003513 0.001152 0.005961 0.0007063 0.0004212 0.003621 0.001871 0.002895 0.0001124 0.001157 8.116e-05 0.0002534 0.004374 1.443e-05 0.04596 0.01343 0.002495 0.003766 0.526 0.001376 0.005236 8.479e-05 0.0007124 0.2424 0.04156 0.0006232 0.004601 0.005125 0.02277 0.008583 0.0001367 0.4221 0.002511 0.001003 0.0032 3.775e-05 0.06844 0.0002347 0.566 0.0001857 0.001315 0.01057 0.0002373 3.222e-06 0.5712 0.002656 0.002647 0.000519 0.1175 0.005432 0.5529 0.01034 0.002923 0.0006682 1.683e-05 3.675e-06 0.003272 0.008635 0.09458 0.00113 0.001234 0.0003527 0.01862 3.567e-05 0.5392 0.01365 0.005928 0.002745 0.002416 3.447e-06 0.002226 0.01341 0.4108 0.4087 0.002857 0.001318 0.4488 0.004206 0.0006441 0.02472 0.001015 0.001241 0.0014 6.871e-06 0.002791 0.0003251 0.002619 0.0008462 0.006874 0.0009898 0.0008359 0.5288 0.3606 0.0005949 8.147e-06 0.001439 0.003301 0.191 0.0001786 0.003898 0.0007714 0.421 0.002546 0.04768 1.176e-05 0.0003521 0.0004768 0.01218 0.007161 0.0147 0.5437 0.0524 0.001344 0.002859 0.4139 0.0007125 0.001271 0.5882 0.000131 1.345e-05 0.5846 0.002015 0.5531 6.93e-06 0.04005 0.0001893 0.0002201 0.3263 1.17e-05 0.001366 0.1507 0.005318 0.006231 0.0003429 9.048e-06 0.4638 0.005072 0.003392 0.00222 0.0003511 0.0003828 0.0005297 0.00983 0.01007 0.004691 0.008297 0.004645 0.04975 0.009589 0.0005382 0.0009075 0.006145 0.0002235 0.02203 0.5124 0.1323 0.002099 0.0005956 0.4715 0.0005797 0.4175 0.00551 0.0003397 0.0008328 0.0007182 0.01099 0.2884 0.2884 0.001264 0.04837 0.001032 0.001389 0.01277 0.564 0.001909 0.0006841 0.01067 0.5861 0.003416 0.01124 0.5079 0.5116 0.003396 0.0228 0.001701 0.004436 0.005032 0.08504 0.1137 0.01709 6.435e-05 0.09238 0.581 0.3269 0.2112 0.004154 0.00323 0.0007897 0.001396 0.02032 0.3368 0.3349 0.1976 1.699e-05 0.007489 0.008973 0.3188 1.371e-05 0.05708 2.74e-05 0.004342 0.007416 1.349e-05 0.001793 0.001916 0.01027 0.00115 1.546e-05 0.02322 0.57 0.0007464 0.0004215 0.005354 8.279e-05 0.002769 0.001483 0.01846 0.0009577 0.0009312 0.05822 0.003202 0.00515 0.01187 0.0002376 0.0003375 3.093e-05 0.01944 0.571 0.002934 0.01224 0.6014 0.0005919 0.0005462 0.006567 0.09427 0.002107 1.42e-05 0.03836 0.1409 0.02159 0.003757 0.002132 0.0001359 0.07553 0.1105 0.0001876 0.00828 0.009262 0.002142 0.006722 0.0003277 0.001241 0.5736 0.007198 0.003475 0.0007192 0.197 0.005038 0.001111 0.004718 0.005925 0.001927 0.0008551 0.0001953 7.343e-05 0.0009973 0.001824 5.49e-05 0.01575 7.951e-06 0.0002676 2.386e-05 0.0001351 0.5454 0.00195 0.4234 0.02081 0.2518 0.0004161 0.000704 0.004719 0.005167 0.5013 0.008655 0.001711 2.764e-05 0.04838 0.0006568 0.005721 0.08249 0.5724 0.009018 0.0006809 7.434e-06 0.002798 2.911e-06 1.88e-05 0.3668 0.006315 0.5499 0.0007999 0.001439 0.007369 0.00549 0.0013 0.001405 0.001613 0.0004665 0.006858 0.0001962 0.004455 0.003613 0.02128 0.5751 0.001639 1.028e-05 0.4888 0.00061 0.00668 0.002054 0.3502 4.132e-05 0.002529 0.0002167 0.001835 0.003117 0.02392 0.00217 0.1048 0.002352 0.006452 6.269e-05 0.427 0.444 0.00345 0.08669 0.003217 0.1977 0.008203 0.000225 0.001982 0.01709 0.0007739 0.01327 0.001958 1.294e-05 1.893e-05 0.636 1.424e-05 0.0002931 0.4967 4.861e-06 0.001261 0.08499 0.0003695 0.005619 0.001318 0.002448 1.269e-05 0.0007841 0.003342 0.02971 0.002396 9.341e-05 1.777e-05 0.01665 0.0006937 0.01178 0.01918 3.13e-06 0.001531 0.555 0.606 0.0005022 0.0006808 0.006421 0.007832 0.4298 0.0002277 0.4307 0.001139 0.01118 0.0007482 0.01871 0.001351 0.001602 0.001152 0.000178 0.006236 0.004887 0.0005558 0.006619 0.01194 1.685e-05 0.001048 0.01909 0.00204 0.003967 0.5692 0.002141 0.004915 0.556 0.001178 2.05e-05 0.001984 0.002193 0.0009616 5.779e-05 0.002819 0.5732 1.595e-05 0.0002896 0.004096 0.005332 0.4024 0.0001997 0.1115 0.0001481 0.002865 0.0007728 0.001885 0.0008175 0.5344 6.224e-05 0.4392 0.001589 0.3339 0.005833 4.336e-06 0.001393 0.5005 0.0008022 0.001571 0.0009676 0.003074 0.0005375 0.001779 9.474e-05 0.000307 0.0001343 0.5918 0.007422 1.434e-05 1.717e-05 1.705e-05 0.0001675 0.5415 1.407e-05 0.05056 0.007315 0.002718 0.0007331 0.03942 0.0005972 0.0007174 1.363e-05 0.5149 0.0043 2.934e-05 0.002759 0.01454 0.006803 0.6165 0.0003966 0.01188 0.2401 0.001325 0.001422 0.004304 0.4088 0.00223 0.01398 0.003318 0.4097 0.007478 0.002996 0.0003676 1.609e-05 0.07898 0.002614 0.006742 0.008008 0.2358 0.0003577 9.212e-06 9.064e-05 0.001529 0.0004908 0.6644 0.002596 0.001771 0.0004919 0.002119 0.04685 0.001054 0.0008711 2.043e-05 0.003264 0.2897 0.5401 0.3104 0.08228 0.0005174 0.5147 0.003012 0.009121 0.00303 0.0003095 0.003341 7.22e-05 0.004113 0.003186 0.02227 0.0001435 0.0008594 0.005735 0.07045 0.005508 6.02e-05 0.005734 0.2051 0.2888 0.00822 0.0001207 0.5849 0.008465 0.001393 0.001444 0.5628 7.069e-05 3.615e-05 0.003591 0.002404 8.805e-06 0.005199 0.5592 0.001941 0.003683 0.007373 0.5438 0.01331 0.02384 0.0001069 0.005295 0.007006 0.0009745 8.928e-06 0.003379 0.0175 0.00275 0.5095 0.0004312 0.01129 0.003073 0.0003543 0.002584 0.003622 0.002011 0.0001046 0.3427 0.001437 0.04762 0.0003439 2.625e-05 0.0006048 0.002473 0.0001066 0.003491 0.0009084 0.001755 0.005548 0.09044 0.001671 0.001682 0.006012 0.0002106 0.0003416 0.0009779 0.3688 0.002401 0.004695 0.0001032 0.4441 1.757e-05 0.1487 0.0007061 0.0005853 0.5297 0.007196 0.001829 0.5573 4.193e-05 0.0004169 0.0002222 0.005731 0.0007793 0.008011 8.532e-05 0.2261 0.0003342 0.0189 0.001481 0.02349 0.001424 0.0008482 3.732e-06 0.5766 0.01965 0.0003929 0.008811 0.5747 0.02183 0.0001101 0.008972 0.001714 0.5848 0.004627 0.0003633 0.0009302 0.0005307 0.02847 0.02448 0.002123 0.09224 0.004202 0.01804 0.004405 0.002043 0.0003331 0.0002005 0.0193 0.006604 0.05992 0.5981 0.004467 0.01534 0.4883 0.0002069 0.4741 0.03359 0.07092 0.3182 0.317 0.0001743 0.0001452 0.0005517 0.004601 0.488 0.002098 0.006522 0.001589 0.592 0.01348 0.00344 2.681e-06 0.003401 0.0004654 0.02099 0.04781 0.005861 0.0002473 1.287e-05 0.04955 0.0131 0.003924 0.5632 0.2933 0.008745 0.0001633 0.001719 0.001634 0.03288 0.02249 0.07319 0.1129 8.193e-06 0.009479 0.0003449 0.002766 0.003292 0.000276 0.0009286 5.179e-05 0.00121 0.5751 0.433 0.0003915 0.0002794 0.02572 0.004982 0.003056 0.01662 0.03688 0.0004496 0.3016 0.01317 0.01532 0.00532 0.02701 0.02898 0.01445 0.01051 0.002018 0.004784 0.5955 0.00346 1.097e-05 0.004928 0.000895 0.003408 0.2188 0.009578 1.297e-05 0.01305 0.002207 0.0002017 0.3358 0.02022 0.01132 0.5058 0.005253 2.345e-05 2.65e-05 0.02548 0.0007333 0.004933 0.001132 0.003473 7.871e-05 0.4139 0.000502 0.04584 0.0001342 0.003665 0.005009 0.000107 0.0008999 0.004637 0.03462 0.000214 0.01188 0.5313 0.007811 0.03606 0.0016 6.718e-05 0.5341 0.001029 0.264 0.009871 0.001594 0.06125 0.007088 0.0002257 0.5711 0.001351 0.01685 0.002398 0.001303 0.581 0.005444 0.3582 0.214 9.777e-05 0.004905 0.001582 0.002279 6.136e-05 0.001787 2.05e-05 0.5459 0.03888 0.005773 0.009283 0.5802 0.001705 0.001007 0.0005961 3.39e-05 0.01036 0.0009482 6.811e-05 0.004614 0.008855 0.005566 0.5611 0.108 0.008477 0.004675 0.001319 0.02011 0.6008 0.006349 0.02004 0.001273 0.001931 0.001345 5.048e-06 1.582e-05 0.5545 0.5724 0.002021 0.01118 0.454 0.0965 0.01473 0.005349 0.001912 0.01356 0.0003087 0.009404 0.003769 0.0009919 0.0002496 1.483e-05 0.009932 0.001395 0.3403 0.6052 0.01177 0.000956 0.01029 0.001153 0.001342 0.01195 0.5719 0.002741 0.5562 0.3534 0.004595 0.0002437 0.001155 0.003795 5.905e-05 0.51 0.0007777 0.5394 0.00502 0.005961 0.001639 0.481 0.0001233 0.03032 0.0007592 0.0008901 0.007115 0.0008208 0.1455 0.5776 1.241e-05 8.33e-05 0.005042 0.004178 0.001116 2.997e-05 0.01212 4.737e-05 0.002022 1.214e-05 0.005154 0.3116 0.0003855 0.001158 0.004076 0.003115 0.001137 0.4612 0.0002052 0.01633 0.000306 0.008354 8.867e-06 0.01665 0.0008928 0.4906 0.1673 0.001675 0.001471 0.00182 0.005821 0.01728 0.002873 0.0007952 0.004745 0.4502 0.5665 0.001447 0.03397 0.2333 0.001777 1.827e-05 0.00794 0.0003183 1.44e-05 0.0003403 0.4046 0.568 0.002335 0.001501 0.3994 0.001804 0.003742 0.003738 0.6463 0.0001514 0.001163 1.219e-05 0.02257 0.004156 0.01368 0.005734 0.001146 0.2368 0.0001724 0.0003182 0.5692 0.04252 0.0007215 0.002124 0.5431 0.005805 4.332e-06 0.01222 0.03895 0.008103 0.574 0.0009123 0.0003507 0.0004556 0.004285 0.01403 1.816e-05 0.005994 0.0002061 0.004007 0.0007939 0.001763 0.0003506 0.09845 0.4247 0.03193 0.03109 1.018e-05 0.0002362 9.238e-05 0.01942 0.0002013 0.02171 0.007302 0.3149 0.0003575 1.575e-05 0.5675 0.0001363 0.001832 0.003206 0.00175 0.009918 0.5599 0.01352 0.004789 0.004509 0.1864 0.003504 0.0005532 0.003017 0.00298 0.005986 0.0006406 0.0008323 0.01129 0.003934 0.003051 0.00269 0.005046 0.2345 0.0256 0.0001604 0.3798 0.00148 6.175e-05 0.5767 0.5585 0.001324 0.0005266 0.01726 0.0001249 0.009908 0.002331 0.03052 0.005244 0.0005028 0.004789 0.01149 0.003919 0.001111 0.2226 0.2579 0.007802 0.0001349 0.3733 0.0009614 3.325e-05 0.007469 0.2516 0.0001597 8.441e-05 0.0001124 0.0004234 0.005189 0.002481 0.005353 0.4293 5.645e-05 0.002829 4.783e-05 0.003458 0.6311 0.0004895 0.0009387 0.0003187 0.5714 0.5556 0.006721 0.1257 6.906e-06 0.006262 0.00221 0.008279 1.496e-05 0.001386 0.03858 0.0005989 0.01016 0.002181 1.186e-05 0.5788 0.007169 0.0003994 0.1957 0.01598 0.0002914 0.0009475 0.004723 0.0004214 0.001495 0.0133 0.0003258 0.0001296 0.0007096 0.01114 0.002356 0.001182 0.01662 8.662e-05 0.0008616 0.5695 0.0002431 0.06231 0.002243 0.003727 0.001221 0.0001955 0.0004524 0.0004381 0.0009801 0.6518 0.5967 0.397 0.003268 0.05868 5.048e-05 0.3602 0.3188 0.00825 0.00161 0.5733 0.01434 0.03394 0.01773 0.5625 0.00043 0.03422 0.4502 0.00133 0.2769 0.0001966 0.0001021 0.01102 0.332 0.0005857 0.006664 0.3109 0.0002649 0.006173 0.03189 0.002052 0.0001258 0.2362 0.01114 0.0002221 0.0005482 0.01317 0.5871 0.002381 1.723e-05 0.003179 0.004223 0.1833 0.005254 0.01005 6.904e-05 0.01528 0.001248 1.472e-05 0.01724 0.0004949 0.0006435 0.002291 0.01023 0.04561 0.5576 0.01401 0.001591 0.425 0.01195 0.0006288 0.00268 0.001972 0.3211 0.0001142 0.008037 1.17e-05 6.279e-06 0.003014 0.002641 0.01341 0.001726 0.0001011 0.002051 0.001636 0.00943 0.001333 0.001383 3.925e-05 0.003238 0.0005304 1.712e-05 0.0007429 0.006723 0.03979 0.0009203 0.0005315 0.00413 1.082e-05 4.729e-05 0.002939 0.005322 0.01438 0.002543 0.0005983 0.0002293 0.3912 0.0002676 3.184e-06 0.6015 0.02432 0.003066 0.005252 2.18e-05 7.214e-05 0.4589 0.004396 0.0006698 1.469e-05 0.3541 0.01017 0.0003543 0.001216 0.5628 0.4963 0.00168 0.0006865 0.0002044 0.4753 0.003236 0.004047 0.00312 0.003904 0.03056 0.5592 0.0008928 1.917e-05 0.5727 0.001803 0.005559 0.000345 0.01918 0.00939 0.06694 0.002574 0.002442 0.5859 0.001041 0.001111 0.0006649 0.4728 0.5664 0.4249 8.852e-06 0.0002027 0.4689 0.01206 0.575 0.002071 9.988e-06 0.0004389 0.07001 0.095 0.001352 0.02091 0.2859 5.981e-05 2.738e-05 0.03821 0.0001063 0.0006012 0.07435 0.4488 0.3442 0.0007839 0.001654 1.075e-05 0.003826 0.006162 0.003534 0.06647 0.0004273 5.378e-05 1.179e-05 0.007742 0.0014 0.5926 0.003233 0.345 0.02389 7.795e-06 0.5098 0.001177 0.02115 0.001211 0.000965 0.0002992 0.004104 0.001539 0.0002543 1.311e-05 6.358e-05 0.5707 0.01425 0.003008 0.4032 0.103 0.003067 0.004799 0.0006241 0.001336 0.5876 0.01247 0.0005645 0.5676 0.4332 0.003129 0.0001378 0.04176 0.0001289 0.01076 0.5066 0.05938 0.05942 0.4913 0.5917 0.01523 0.5812 0.5036 0.0004372 0.0005253 0.558 0.5793 0.002048 1.228e-05 0.0004458 0.003814 0.01508 0.003239 0.001614 0.05289 0.1076 0.0002127 0.0004074 0.5659 0.0011 0.0008845 0.00834 0.000337 0.4948 0.00303 0.001731 0.0003671 0.0002901 0.0001583 0.01189 0.002749 0.0001262 0.2902 0.002674 0.002376 0.33 0.02374 0.5605 0.0001068 0.004095 0.001763 0.02442 0.0002245 0.008682 5.436e-05 0.01367 0.01252 0.002481 0.01274 0.2037 0.0005726 0.006064 0.6145 0.08135 2.178e-05 0.0001662 5.637e-05 0.0004071 0.001181 0.03159 0.00036 0.083 0.003374 1.373e-05 0.002973 0.002659 6.003e-05 0.0002873 0.0001001 0.002708 0.1262 0.006724 0.009319 1.977e-05 0.0004582 0.01375 0.0002743 0.0005702 0.002927 0.1902 0.02729 0.0007769 0.001918 0.4948 0.0006125 0.03038 0.013 0.005705 2.51e-05 0.004537 0.003722 0.1685 0.004914 0.0001463 0.0001691 0.01868 0.001642 0.1017 0.07619 0.004884 9.019e-06 0.002954 0.001852 0.003291 0.4621 0.03988 0.003284 0.001253 1.945e-05 0.004553 0.004488 0.07853 0.119 0.01499 0.0001771 0.0014 0.007911 0.008826 3.801e-05 0.3481 0.002098 0.001771 0.006236 0.001274 1.08e-05 0.01416 0.00118 0.0001394 0.2174 0.0002789 0.0001262 0.001608 0.002342 0.002091 1.491e-05 0.06053 4.493e-05 0.0001828 0.002061 0.006358 0.09524 0.5347 0.0005913 0.0009817 1.835e-05 0.3872 0.0002287 0.004638 0.0004899 0.001177 0.006568 0.05894 0.01937 0.008456 0.002238 0.00209 0.001374 0.1281 0.009794 0.001135 0.004729 0.002854 1.462e-05 0.000623 0.0022 0.005413 0.001591 0.0009106 0.4184 0.2899 0.0005033 0.004713 0.0002525 0.004807 0.002411 0.006789 0.5639 0.4284 0.5726 0.0003094 0.5338 0.0151 0.02183 0.002298 0.001048 0.01026 0.001557 0.002185 0.0005575 2.541e-05 0.04794 0.4039 0.0003392 8.892e-05 0.003292 0.001586 0.02291 0.3044 0.5056 0.0001067 0.005049 6.986e-05 0.0001006 0.5115 0.01439 0.00284 0.4067 6.658e-06 0.0005019 0.566 0.4042 0.4119 0.5687 0.000991 0.003757 0.001712 0.5565 0.001287 1.776e-05 0.00635 0.0004621 0.02366 0.009314 0.3661 0.002065 0.573 0.001518 0.01247 0.06522 8.766e-06 0.009192 0.06328 3.043e-05 0.1206 0.001139 0.002175 0.0003028 0.003537 0.4817 0.4794 0.0005372 0.0004532 0.01032 0.00204 0.3626 0.01456 0.009101 0.003057 0.423 0.003053 7.893e-05 0.001875 0.06491 0.04675 0.5846 0.001553 0.007689 0.4313 0.2836 0.2837 0.005306 0.02837 0.0001254 0.008663 1.086e-05 0.001229 0.001584 0.0007878 0.005045 0.01552 0.0286 0.000935 0.408 2.073e-05 0.4078 0.0001895 0.0002754 0.5578 0.579 1.541e-05 0.3756 0.0007071 0.03297 0.004025 0.004659 0.6391 0.0006153 0.01748 0.002357 0.001936 0.0006186 0.5623 0.002368 0.05313 0.0002425 0.0003234 0.06204 0.001253 0.0005124 0.003241 0.0005731 0.00108 0.5667 0.0002279 0.001913 8.178e-06 0.0003362 0.004858 0.5461 0.004686 5.07e-05 0.04452 0.0006634 0.0684 0.005098 0.03071 0.006882 0.00208 0.002878 0.5859 4.574e-05 0.00817 0.0001172 0.2983 9.852e-06 0.000398 0.001106 0.01277 0.007901 0.02368 0.002147 1.528e-05 0.00307 0.3373 0.003247 0.02296 0.001185 0.0001526 7.084e-05 1.207e-05 0.01124 6.231e-05 0.0007962 0.6489 0.006132 0.000453 0.0008043 1.56e-05 0.4726 0.004414 0.4866 0.4049 0.0001109 0.0003684 0.006617 0.0004431 0.0002829 0.0001797 0.05509 0.1856 9.823e-05 0.007015 1.184e-05 0.000468 0.001087 0.0003488 0.009374 0.561 0.0129 0.01639 0.0002068 9.335e-05 0.002208 0.0003965 0.0004007 0.005081 0.02043 0.008211 0.0008803 0.006068 0.01206 1.124e-05 0.0001992 0.006322 0.009805 0.5556 0.0007772 0.002843 0.0004867 0.0007765 0.004568 0.005783 0.001514 0.003034 0.01208 0.001253 0.001489 0.009459 0.02608 2.457e-05 0.1227 0.0001409 0.0008269 1.348e-05 0.1267 0.333 0.0006253 0.002487 0.006962 0.003045 0.3899 0.001571 0.01759 0.0001172 0.004968 0.0001195 1.135e-05 0.04529 0.294 0.001165 0.005757 0.0007558 0.0003073 0.002783 0.004466 0.01602 0.005668 0.03293 0.0001177 0.001653 0.0003245 0.02988 0.0007164 0.02221 2.205e-05 0.000491 1.118e-05 0.002664 0.4258 0.005395 4.113e-05 0.08393 0.009276 0.0001529 0.01338 0.01936 0.4412 0.1622 0.00301 0.25 0.02697 0.006287 0.0003076 9.825e-05 0.0004169 0.01122 0.654 0.008829 0.007408 0.003637 0.002819 5.688e-05 0.0002222 0.006025 0.5796 0.0002556 0.00412 0.0004292 0.03311 0.005297 0.003024 0.01133 0.5454 0.001285 0.002911 0.000111 0.3732 0.003839 0.05629 3.34e-05 0.0002105 0.001172 0.01706 0.0009587 0.004351 0.008669 0.0003344 0.07971 0.001435 0.0009968 0.0053 0.003721 0.0002638 0.01585 0.009123 0.001277 0.2313 0.4548 0.0003329 0.0003332 0.0002457 0.0001779 0.005537 1.063e-05 0.5417 0.00286 4.995e-06 0.568 0.0006783 1.255e-05 0.0246 0.003377 0.0008237 0.001127 0.3426 0.0005635 0.00555 5.3e-05 0.004229 0.5977 0.3393 0.2065 0.01903 0.004451 0.02208 0.0007492 0.003118 0.0001391 0.002285 0.1899 0.1296 0.3755 0.002133 0.0002204 8.666e-05 0.004923 0.003444 1.08e-05 0.305 0.003773 0.5697 0.006677 0.005 0.001491 0.0003063 0.0001852 0.002641 0.4998 0.0009448 0.001452 0.5056 0.0006955 0.001044 0.002722 0.1321 9.897e-06 0.5483 0.007649 0.01231 1.727e-05 0.007079 0.5536 0.003612 8.208e-06 0.005583 0.0002423 0.0001861 0.5663 0.004832 4.671e-06 0.001174 0.0007204 1.64e-05 0.03961 0.005352 0.4802 0.5713 0.0221 0.00474 0.001532 6.942e-05 0.0004497 1.35e-05 0.002615 0.002677 0.03263 5.858e-06 0.001803 0.0569 0.002984 0.01109 0.00703 0.00229 0.0001332 0.4606 0.0085 0.4702 0.004579 0.5119 0.001031 0.004811 0.1447 0.000224 0.5496 0.003497 0.2294 0.003325 3.001e-06 0.0004051 0.4465 0.008151 0.0003046 0.001102 0.0103 0.5132 0.00524 0.01009 0.0008455 0.01228 0.6379 0.001003 0.0002259 0.00126 0.01131 0.0001349 0.0008141 0.4061 0.3574 0.002258 0.006941 0.01182 0.01578 1.047e-05 0.002382 0.02804 0.003829 6.415e-06 0.5108 0.5555 0.0003143 0.002025 0.003216 0.005169 0.0009659 0.001251 0.5759 0.3566 0.0009 0.0005764 0.1907 0.03254 0.412 0.002979 0.002018 9.546e-06 0.03536 0.001812 0.003122 0.0001182 0.01002 0.1865 0.0006493 0.008836 0.004611 0.001597 0.4301 0.2142 0.258 0.0004427 0.08196 0.01198 0.005883 8.533e-05 0.0009347 0.0005285 0.007812 0.003775 0.02966 0.003929 0.005516 0.002781 0.0006379 0.02108 0.04339 0.004751 1.716e-05 0.354 0.006552 0.004288 0.002137 0.0154 0.004668 0.0005302 0.002743 0.5818 0.0003726 0.0006397 0.5342 0.003417 0.004678 0.009534 0.0009981 0.2866 0.0005622 6.352e-06 0.3239 8.465e-05 0.002564 0.0001318 0.001214 0.006549 0.5818 0.007061 0.002635 0.0002252 0.001789 0.06141 0.6251 6.782e-06 0.04951 0.000957 0.0004199 0.001079 0.001742 0.001735 0.0009009 1.812e-05 0.001523 0.002075 0.001691 0.001045 1.16e-05 0.006146 0.02126 1.338e-05 1.259e-05 0.001002 0.003668 7.491e-05 0.001391 0.03118 0.0006043 0.000975 0.004963 1.199e-05 0.000219 0.002863 0.001177 0.004457 0.008114 1.56e-05 0.008003 0.001387 0.5722 0.0125 0.002941 0.02495 0.000288 0.05207 0.08442 0.0004077 0.003325 0.5845 9.078e-05 0.574 1.044e-05 0.2863 0.005629 0.002599 0.03288 0.001731 0.0008672 0.6217 0.005045 0.0002161 0.003148 0.00555 0.635 0.0001116 0.0027 0.002303 0.0008672 0.09504 0.00113 0.009241 0.0006421 0.576 0.0001159 0.0005498 0.0004725 0.001134 0.002735 0.4751 0.0006179 0.006472 0.001439 0.01639 0.574 0.008375 0.0187 0.2966 0.5572 0.2806 0.07893 0.0005879 0.04551 0.00301 0.009355 0.593 0.005209 0.1887 0.008147 6.166e-05 3.023e-08 0.0006775 0.003631 0.00498 0.003893 0.01749 0.00229 0.0007439 0.0001168 0.0002211 0.002426 0.003975 0.0005022 0.000229 0.00123 0.0001705 0.00168 0.0001614 0.008299 7.59e-06 0.0005817 0.001827 0.5515 0.0008793 0.3461 0.0006046 0.003312 0.003412 0.5929 0.001394 0.0005871 0.003046 0.003092 0.07693 5e-05 0.009938 0.02069 0.1302 0.06188 0.05684 0.0002994 0.00834 0.004367 0.6235 0.0003555 7.181e-05 0.004767 6.925e-06 0.5775 0.142 0.005297 0.1912 0.001497 0.5788 0.002095 0.3468 0.593 0.0001475 1.154e-05 0.002701 0.0004845 0.003801 0.06587 0.01695 0.0004457 0.001812 0.3359 0.4116 0.001658 0.5699 0.4174 0.09102 0.000218 0.003803 0.0006841 0.003951 0.003422 1.165e-05 0.01592 0.005488 0.001771 0.002945 0.0002892 0.04757 0.001134 1.528e-05 0.3846 0.0006112 0.3697 0.4356 8.965e-06 1.773e-05 0.2097 0.003663 0.007955 0.001054 6.629e-05 0.01078 0.01379 0.5346 0.000968 0.008374 0.002361 0.06445 0.04729 0.3932 0.4485 0.009521 0.00519 0.0001188 0.002171 0.002726 0.5503 0.03928 0.0002355 0.004015 0.4153 0.4157 0.01191 0.001538 0.01198 0.0003918 0.0005666 0.03371 0.01782 0.0004009 0.003634 0.01678 0.05558 0.001312 0.5528 0.0005551 0.3598 0.01553 0.0002576 0.0002099 0.01045 0.5135 0.001137 0.0009729 0.000814 1.12e-05 0.002202 0.5469 0.006036 0.5862 0.0006086 0.4267 0.0005948 0.3482 0.361 0.007091 0.4761 0.5701 0.3592 0.0002557 0.008106 0.008514 0.01627 0.008189 0.002085 0.0003181 0.0003141 4.944e-05 0.3522 0.0125 0.3526 0.3467 0.03722 3.248e-06 0.0001999 0.1418 0.02799 0.002392 0.0777 0.0001763 0.003795 1.292e-05 8.159e-06 0.4018 0.0171 0.0005288 0.3115 0.0002041 1.601e-05 0.0009842 0.5277 0.002549 2.076e-05 0.002721 0.007209 0.09274 0.001767 0.001062 0.03067 8.109e-05 0.003967 0.0001463 0.002627 0.3682 0.005582 1.569e-05 0.006033 0.2203 0.001694 0.0002068 0.0137 0.0002088 0.01007 0.001314 0.001055 0.002594 0.0003487 0.0005609 0.4643 0.0006642 0.001164 0.008404 1.589e-05 0.002598 0.006233 0.4876 1.807e-05 0.0002786 1.099e-05 0.0007614 0.4517 8.616e-05 0.004024 0.01745 0.1342 0.005985 0.001404 0.004925 9.99e-06 0.0003846 8.009e-06 0.0001572 0.0001444 0.0004135 0.00373 0.02257 4.031e-06 0.001074 0.03082 0.004981 0.5565 0.004306 0.166 0.003425 5.769e-06 0.0002144 0.0005203 0.01018 0.0006835 0.002923 0.392 0.01705 0.007806 0.5731 0.01054 0.007434 0.005433 0.0187 0.001797 0.4918 0.01116 8.089e-06 0.002767 0.4327 0.01835 0.4287 0.0005045 0.0005417 0.0005304 0.3309 0.001035 0.006139 0.0002313 0.02045 0.007517 0.0008418 0.03083 0.003262 0.0003646 0.005127 0.004681 0.6678 0.003166 0.0003703 0.00149 0.4796 1.98e-05 0.05233 0.5564 0.0008169 0.02594 0.00383 0.001378 0.563 1.233e-05 0.0005097 4.896e-05 0.0007473 0.0006354 0.5791 0.0003172 0.001824 0.0004703 0.005464 0.003125 0.007837 0.07176 0.2905 0.000466 0.02845 0.01198 0.0004625 0.001983 0.008054 0.0112 0.4066 0.5743 0.0004829 0.005546 0.001526 0.0007878 0.4426 0.0002605 0.506 0.000464 0.5193 0.004308 1.749e-06 0.0008015 0.009892 0.001317 0.0344 0.003413 0.001548 3.64e-06 0.002209 0.02287 0.001591 0.02153 6.989e-06 0.003348 0.0004936 6.353e-06 0.004325 0.5236 0.001606 0.007017 0.01147 0.3559 0.007264 2.496e-05 2.673e-06 0.5266 0.3514 0.00515 0.005534 0.0002016 0.03608 0.5863 0.006429 0.003877 0.6234 0.6067 0.002015 0.001636 0.0004174 0.4473 0.0007137 0.003627 0.0007374 0.01796 0.002403 0.08631 0.0004912 0.01306 2.497e-05 0.01296 0.0004981 0.264 0.05323 0.0001853 0.0003927 0.03792 1.497e-05 0.3534 0.5466 0.1731 0.4107 0.006799 0.001006 0.5023 0.0002289 5.037e-05 0.005639 0.00691 0.6351 0.002281 0.002849 0.0009653 5.365e-05 0.001155 0.00279 0.00686 0.01094 0.0008865 0.0003357 0.4855 0.4775 0.006415 0.0005336 0.001376 0.0001234 0.03885 0.01159 0.0002324 0.0001442 0.001565 0.004623 0.03969 0.01907 0.001984 1.67e-05 0.0001919 0.0002369 0.004677 1.614e-05 3.256e-05 0.0441 0.01292 0.5211 0.00527 0.0003189 0.004824 9.915e-05 0.5237 0.001166 7.585e-06 0.006776 0.006559 0.3856 0.004887 0.02115 0.1584 0.001411 0.000589 0.3034 0.3016 0.004032 0.02168 0.2237 9.844e-06 0.4809 4.892e-05 0.0003885 0.0002447 8.066e-06 0.001789 0.0003747 0.01232 0.3561 0.05556 0.003082 0.1427 0.02298 0.001829 0.01067 0.3042 0.000266 0.01405 0.08237 0.009332 0.01242 0.0005762 0.5696 0.002203 0.01466 0.001746 0.4207 0.01119 0.4196 0.001052 0.3146 0.5013 0.005468 0.0003016 0.002142 0.0006484 0.06257 0.003652 0.3175 5.285e-06 0.0003097 0.01645 0.001664 0.0005254 1.123e-05 0.0001537 0.0004819 0.01456 0.002604 0.0009687 0.0008109 0.004986 0.004536 0.06273 0.01946 0.005855 0.003145 0.0004314 0.016 1.327e-05 3.385e-05 0.0001902 0.001299 0.0002465 0.001144 1.674e-05 0.004322 0.003412 0.1315 0.3565 0.001487 0.5693 0.0006958 0.01 0.02638 0.1998 0.008735 0.002246 0.4054 0.3937 0.01024 0.0004756 0.5658 0.002873 0.001428 0.3382 0.4025 0.5714 0.02256 6.46e-05 0.002315 0.5789 0.0003196 0.003646 0.0001866 0.001074 0.0009642 0.005318 0.5852 0.002349 0.03474 0.08055 0.0004012 0.1735 0.01793 0.00731 1.582e-05 0.0002351 0.593 0.0002806 0.001754 8.677e-05 0.001975 9.492e-06 0.5678 0.009282 0.009424 0.001198 0.003802 0.0188 0.001262 0.007916 0.0003635 0.3188 0.0002997 0.002114 0.2055 0.002946 0.01165 0.009102 0.01234 0.5694 0.002674 0.302 0.3022 0.005672 0.0007521 0.4695 0.004938 0.001069 0.5354 0.01839 0.003272 0.002945 0.001237 0.08104 0.2258 0.005059 1.653e-05 0.005246 0.000135 0.004897 0.0003864 0.01434 0.01998 0.02763 0.002462 0.4235 0.006227 0.00121 0.0006873 1.875e-05 0.06129 0.6058 0.6261 0.002095 1.178e-05 0.4354 0.002484 0.02834 7.071e-05 0.0132 0.001413 0.00148 0.4224 0.009597 0.002365 0.007229 0.0001329 0.01458 0.004683 1.267e-05 0.0001427 0.0001606 0.02228 0.0001404 0.001263 0.01393 0.0002623 7.025e-05 0.579 0.0002678 0.1531 0.001849 0.0006451 0.1704 0.000105 0.000781 0.5136 0.5911 0.0008933 0.00609 0.001201 0.003667 0.03643 0.5676 0.3279 0.07425 1.187e-05 0.002979 0.05502 0.0004233 0.06131 0.01663 0.3309 1.295e-05 0.002138 0.0007827 0.1037 0.002084 0.3245 0.1076 9.333e-05 2.733e-06 0.01338 1.694e-05 0.005319 2.365e-05 0.003076 0.06619 0.0001068 0.01394 1.685e-05 0.002492 0.3737 0.00145 0.000216 0.5865 0.0004662 0.5663 0.006981 0.0001576 0.0003088 0.009855 0.002342 0.000864 1.211e-05 0.007621 0.002333 9.452e-05 0.0008719 1.17e-05 0.00233 6.122e-05 9.731e-06 0.0003788 0.02268 0.01685 0.5753 0.0653 0.002172 0.0008388 0.0003587 0.6059 0.004052 0.0002996 0.0003297 0.001406 0.0005223 1.704e-05 0.0002485 0.0001044 0.0003134 4.669e-05 0.3472 0.3487 0.001958 1.188e-05 0.004452 0.5675 0.004136 0.009974 0.5624 0.5213 0.05145 0.009734 0.005987 0.003305 0.5714 0.01144 0.0004522 0.005561 0.006629 0.0007545 0.002759 0.01848 0.0008868 0.002629 0.008311 7.935e-06 0.0002268 0.006869 0.0005698 1.688e-05 0.0003621 0.003501 0.00106 2.528e-05 0.0004995 0.004121 0.03276 0.02914 0.0001676 0.001869 0.0006525 0.01015 0.008758 0.04839 0.004726 0.07838 0.0007583 0.001723 0.6311 0.004472 0.001114 5.388e-05 0.008142 0.0003324 4.816e-05 1.115e-05 0.0009316 0.01876 5.586e-06 0.001788 0.002237 0.001894 0.002532 0.01195 0.5628 0.1128 0.0002049 0.3108 0.5573 0.2908 0.2912 0.004133 0.007546 0.01262 0.5515 0.0004926 1.337e-05 0.03577 0.0004114 0.4331 0.003401 0.0001696 0.001641 0.006458 0.2407 0.0112 0.1134 0.01818 0.0001679 0.0006422 0.5389 0.02616 0.01257 0.3525 0.5343 0.4625 0.16 8.016e-05 0.01666 0.000688 0.0008271 0.004812 0.0007156 0.002005 0.4455 0.00188 0.5686 0.4715 0.001031 0.0006566 0.001991 0.007566 0.02403 0.0009538 0.02956 0.0003908 0.005384 0.4937 3.313e-05 0.000575 0.003897 0.0007432 0.001057 0.5901 0.006241 0.01771 0.001228 0.000622 3.797e-06 1.436e-05 0.0009692 0.002779 0.6021 0.001927 0.02895 0.1979 2.121e-05 0.0004879 0.0003307 0.0008793 0.434 0.587 0.002912 0.5743 0.0005335 0.07509 6.634e-05 0.02769 0.0006715 0.5861 0.01645 0.0001598 0.03757 0.008263 0.001427 0.001059 0.001086 0.6315 0.0005909 0.3958 0.001466 0.01265 0.5726 0.00165 0.08633 0.0002798 0.01176 0.4667 0.001875 0.002224 6.51e-06 0.004069 0.002144 0.004502 0.0005436 0.002314 0.0001838 0.0005555 0.0001639 0.0002346 0.3203 0.001321 0.002516 0.1165 0.0007512 0.02705 0.001972 0.008887 0.001091 0.0002753 0.006891 0.006569 1.973e-05 0.002872 0.02431 0.004333 0.1581 0.0007499 0.0006145 0.01078 0.004614 0.004315 0.0002204 0.000503 0.003642 0.3955 0.01082 0.01738 0.001258 0.000814 0.02767 0.001349 0.0128 0.0703 0.0008568 0.01076 0.005181 9.83e-05 0.001772 0.001282 8.188e-06 0.003855 0.0145 0.001135 0.00107 0.4968 8.344e-05 0.2102 0.4121 0.003047 0.00102 0.01139 0.001656 0.01494 0.001453 0.01138 0.5723 0.01076 0.006031 0.00166 0.005611 0.0008284 0.2167 0.5684 0.005961 4.643e-05 0.002666 0.0009314 7.256e-06 0.006258 0.004599 0.004687 0.0002513 0.02192 0.000227 0.3311 0.3284 0.00548 0.002886 0.001225 6.356e-05 0.04073 0.00492 5.079e-05 0.004688 0.008653 0.0003633 0.007552 0.00798 0.5604 0.001793 0.0004236 0.0002804 0.6367 0.2889 0.0005872 0.0001013 0.0003238 0.00708 0.0006266 0.001288 0.001197 0.03155 0.002654 0.0092 5.632e-05 0.3255 0.000936 0.02066 0.006153 0.0001491 0.4749 0.005823 0.0003582 0.005095 0.06833 0.5093 0.0002341 0.00516 0.5512 0.02719 0.0002647 0.0004911 0.0004247 0.001935 0.0001723 0.0001886 0.002747 0.002917 0.003285 0.4517 0.5714 9.491e-06 0.002278 0.5206 0.01075 0.0001564 0.001117 0.01833 0.01133 0.003407 0.002957 0.5718 0.001117 5.524e-06 0.08931 0.02774 0.005644 0.00176 0.2112 0.00744 0.0005219 0.0004738 0.0002843 6.803e-06 0.3405 0.01481 0.4609 0.001171 0.009324 0.05071 3.056e-05 0.004612 0.001313 0.09408 1.138e-05 0.00137 0.04089 0.01242 2.318e-06 1.382e-05 0.4992 0.02179 0.01629 0.004636 0.000319 0.000306 0.6595 0.00158 0.575 0.02455 0.01175 0.006015 0.0003127 0.01626 0.003333 0.006971 1.7e-05 0.03465 0.01939 0.0005744 0.5479 0.007086 0.0003666 0.001478 0.008476 0.002844 0.02128 0.01052 0.001308 0.001159 0.01071 0.0001518 0.0002992 0.5869 0.003279 0.001653 7.88e-05 0.06488 0.3058 9.642e-06 0.001975 0.01144 0.000188 0.001706 0.004849 0.004458 0.02437 0.01304 0.0003974 0.0001149 0.005147 0.005342 0.0009363 0.01088 0.5652 0.005149 0.0007727 0.4982 0.005279 0.03069 0.006485 0.000114 0.0009384 0.007179 0.3192 1.167e-05 0.0001402 0.0001414 0.01258 0.002363 0.0001376 0.5764 0.4118 0.02698 0.001802 4.608e-08 0.006955 1.711e-05 0.0002754 0.5915 0.007104 0.009332 0.001551 0.005237 7.886e-05 0.0001106 0.0052 0.006899 0.005791 4.754e-06 0.01371 0.0002506 0.0001625 0.01238 0.006219 8.475e-05 0.0007183 0.002391 0.004102 0.0002944 0.5692 0.0004337 0.5503 0.2422 0.5485 0.002848 0.008956 6.63e-05 0.001228 1.141e-05 0.5356 0.002627 0.01132 0.4305 0.00139 0.008462 0.2381 0.002957 0.007013 0.0008108 0.004585 0.004838 0.4001 0.0001014 0.04672 0.003976 0.02977 0.1427 0.0003709 0.0002596 0.09515 0.001574 0.0127 0.003634 0.003595 0.001484 0.002259 0.007982 0.4537 0.06047 0.5745 0.001385 7.927e-05 0.0036 0.001025 0.009031 0.03769 0.2355 0.0001023 0.002771 0.5914 0.002345 0.2694 5.037e-06 7.228e-06 0.5932 6.653e-05 0.01312 0.007692 0.01239 0.5674 1.381e-05 0.5718 1.46e-05 0.4531 0.002775 0.502 0.005849 4.601e-06 0.09163 0.562 0.6342 0.002225 3.204e-06 0.4204 0.0002229 0.02362 0.0005335 0.0003711 0.001769 8.863e-06 0.04585 0.002633 0.02196 0.0003093 1.5e-05 0.2894 1.478e-05 0.001935 0.5752 0.4326 4.89e-05 0.01703 0.0008896 0.5711 0.001908 0.5678 0.01552 0.617 0.0006984 0.5669 2.359e-05 0.01032 0.2301 0.001335 0.5623 0.5977 0.0004985 0.00636 7.282e-05 0.1351 0.002272 0.01371 0.000135 0.002255 0.0005051 0.003329 0.01536 0.003037 0.002209 0.0004951 0.005295 0.2786 7.494e-07 0.004387 0.002965 0.0003503 0.003381 0.003704 0.02233 0.002044 0.02626 0.001944 0.003181 0.02984 0.0007725 0.008437 0.02509 0.01382 0.05509 0.5529 0.2906 0.009616 6.543e-06 0.0007485 3.929e-06 0.5795 0.0003655 0.0003654 1.248e-05 0.238 0.2567 0.003836 0.01456 0.0005404 0.0005208 0.0002373 0.03934 0.0001641 9.879e-06 0.001447 0.001777 8.442e-06 0.005547 0.00243 0.6381 0.009277 0.002288 0.004248 0.3429 0.0004764 0.0001676 0.0003722 1.164e-05 0.6073 0.01031 0.0553 0.548 0.001793 0.0004308 0.006421 0.00301 0.0004462 0.0002914 0.004679 1.774e-05 0.006349 0.5496 0.002179 0.009379 0.0004784 0.0008278 0.005554 0.001052 0.0002804 0.0007834 0.000176 0.00134 0.4815 1.357e-05 0.5633 0.0007179 0.01636 0.003713 0.0005146 0.0007717 0.001287 1.255e-05 0.5994 0.5432 9.492e-06 0.5753 2.425e-05 0.0002271 0.07399 0.007142 5.867e-05 0.001591 0.004164 0.002469 0.006024 0.3589 0.0006888 0.02042 0.2976 0.003575 0.002337 1.031e-05 0.002445 0.0004771 0.02366 0.2768 0.002056 0.006228 0.0001135 0.0005733 0.0006369 0.0005275 1.919e-05 0.008709 0.03697 0.0005589 0.4832 0.001252 1.72e-05 1.929e-05 0.4748 0.01577 0.008924 0.0001586 0.007264 0.002181 0.003229 0.0009294 0.0024 0.0112 0.004 0.575 0.01551 0.009111 0.0009769 0.002031 0.002296 0.004063 0.000245 7.707e-06 0.0004189 0.001697 0.5888 0.001167 0.0005012 0.004473 0.0001572 0.01311 0.1102 0.01446 8.535e-06 0.02322 9.501e-05 1.594e-05 0.0009669 0.003418 9.368e-06 0.1044 0.002996 0.000329 4.793e-05 0.001696 1.178e-05 0.006701 0.0004053 7.954e-06 0.0007804 0.0001539 0.0007488 0.006931 0.5347 0.003858 1.497e-05 0.0008867 0.00279 0.00865 6.631e-06 0.0006664 0.007904 0.007808 0.0002789 0.003707 0.001337 0.2776 0.01311 0.04104 0.01703 0.004205 0.06588 0.002365 0.008035 0.003723 0.0003038 0.001099 7.68e-06 8.629e-06 0.001105 0.004206 0.003216 1.486e-05 0.0001917 0.002049 5.035e-05 0.6493 0.001449 0.002838 0.08288 0.001657 0.001265 1.491e-05 0.0002303 0.001186 0.00171 0.0007455 0.0008348 0.00505 0.06592 0.003126 0.001877 0.5022 0.1259 0.0004069 0.4353 0.5527 0.006095 5.079e-05 0.03227 0.002187 0.02863 0.005447 1.356e-05 0.0008671 0.4774 0.0007334 0.003226 0.008518 0.01313 0.006427 0.005216 0.001077 5.549e-06 0.00054 0.4141 0.001024 0.0005924 0.3431 0.004523 0.07816 6.882e-05 0.006966 1.334e-05 0.0001653 0.001343 0.1611 0.02468 0.0005283 0.00537 0.001267 1.924e-05 0.01174 0.4232 0.002266 0.3606 0.0005876 7.926e-06 0.009042 0.0007341 0.0003917 0.001629 0.4314 0.009918 0.005554 0.399 0.5674 0.5713 0.0005425 0.0007915 0.002132 0.01297 0.01434 0.004749 0.5558 0.0008968 0.4553 0.0005436 0.005283 0.003861 0.0004928 0.005858 0.00256 1.515e-05 0.3349 0.0009909 0.01675 0.0385 0.003952 0.000558 0.01359 0.0008325 1.656e-05 0.07708 0.05296 0.007429 0.001178 0.4159 0.5827 0.01433 0.4159 0.006052 0.004688 0.03678 0.01341 0.04242 0.5847 0.1756 0.01147 2.787e-05 0.0004422 0.01624 0.01035 0.000883 0.00511 1.486e-05 4.008e-05 0.002938 0.01141 0.5728 0.00114 0.04102 0.006959 0.2403 0.001215 0.5656 0.0008083 0.0001084 0.0004947 0.0003274 0.01031 0.05989 0.0001431 0.001481 0.005301 1.686e-05 0.0003538 0.009853 0.01075 1.171e-05 0.001155 0.005322 0.0003229 0.0004036 0.0003073 1.185e-05 0.1948 0.0002866 0.0007487 0.003316 0.01832 0.0007642 0.2873 0.02192 0.0001987 0.3605 0.4143 0.009795 0.5769 0.0002966 0.0003379 0.08527 0.0004146 0.00114 0.006569 0.00149 0.001067 1.135e-05 0.008474 0.004331 0.006565 0.001666 0.0001323 0.001491 0.0003879 0.01122 0.00462 0.02026 0.009341 0.03474 0.00207 0.08313 0.0008938 0.0004335 0.000669 0.004489 0.002096 0.0007156 1.412e-05 5.403e-05 0.001647 0.6121 0.001525 2.443e-06 0.001214 0.001867 1.561e-05 0.0002747 0.002003 1.708e-05 0.002966 0.0006725 0.01511 0.005986 6.911e-05 5.673e-06 0.003909 9.817e-05 0.3468 0.5571 1.188e-05 0.004504 1.837e-05 0.001185 0.0002775 0.003472 7.553e-06 0.08906 0.01201 8.014e-06 0.04218 0.003953 0.001598 0.06363 0.0003088 0.006574 7.622e-06 0.4175 0.574 0.3711 0.001623 0.0005334 0.002281 0.5372 0.568 0.0005968 0.003228 0.6355 0.0009108 0.03599 0.4547 1.107e-05 0.006218 0.002347 0.003017 0.01521 0.001227 0.0003141 0.5773 0.3957 0.5208 0.06982 0.0002135 0.2089 0.005879 0.006157 0.552 0.3399 0.002165 0.007699 0.002234 0.6378 9.098e-05 0.0011 0.01169 0.0009016 0.003735 7.985e-05 0.002135 0.01343 0.5437 0.008812 1.116e-07 0.0006989 0.003076 0.007519 0.0003623 0.002697 0.05037 0.0003748 0.0002462 0.04293 0.001057 0.1978 0.5701 0.0007517 0.0007979 0.6039 0.6039 0.2089 0.007552 0.5848 4.78e-06 0.005808 0.0003694 0.4089 0.000533 0.007312 0.2721 0.0001198 8.929e-05 9.169e-05 0.001844 0.5378 0.00127 0.001545 9.979e-06 0.003172 0.01138 0.001763 0.001292 0.01363 0.004507 0.0008894 2.267e-05 0.0003802 0.001594 0.4176 0.000626 7.165e-05 0.006334 0.007807 0.0001999 1.346e-05 0.002405 0.01395 0.006463 0.01023 0.007912 0.0002866 0.001074 0.01034 0.5566 0.003916 0.001827 0.0001993 0.002572 0.008969 0.004305 0.001597 0.00171 0.0004352 0.007595 0.04961 0.004668 0.01328 0.003901 0.003064 0.001243 0.001405 0.001032 0.02717 0.002804 0.5552 0.002539 0.001829 0.1549 0.1999 0.003914 0.01009 0.007933 0.5674 1.401e-05 0.001709 0.001317 0.01048 0.0008159 0.02586 1.075e-05 0.003375 0.003334 0.0005628 0.0003337 7.521e-05 0.0008782 0.6166 0.0004923 0.000877 0.3501 0.0007942 0.002746 0.001761 0.01442 0.0001277 0.01362 0.005323 0.0006463 0.0008573 0.002405 0.5625 0.001254 0.007749 0.4839 0.005884 0.0001273 0.0004551 0.5413 0.003052 0.004781 0.4684 0.007522 0.001603 0.339 0.03861 0.0002007 0.003797 0.5623 0.264 7.98e-05 0.2471 0.01369 0.001569 0.005374 1.456e-05 0.003238 0.04302 0.08265 0.001103 0.5617 0.5619 0.5603 0.007994 0.05059 0.0006234 0.004083 0.0002461 0.1021 0.007483 0.002333 0.001201 0.001121 0.001259 0.006994 0.0003578 0.000211 0.001148 0.002678 0.167 0.001916 1.313e-05 0.06793 0.4859 0.0007704 0.009825 0.0007105 0.004756 0.006613 7.399e-06 0.0001919 0.001747 0.0001118 0.0006968 0.6207 0.0475 0.5387 0.001186 0.0004496 0.005379 0.004349 0.0009397 0.0091 0.0078 0.0761 0.364 0.02206 0.0001156 0.0008457 0.002066 1.645e-05 1.214e-05 9.865e-06 0.0002896 0.001517 0.005602 0.0004542 0.5788 1.6e-05 0.005827 0.004662 0.001537 0.0002683 0.003368 0.5822 1.544e-05 0.0008408 5.567e-05 0.00505 0.0137 0.03404 0.3992 0.001177 0.007814 0.04545 0.05147 0.4839 0.002467 0.005448 0.4819 0.5307 9.929e-06 0.592 0.001922 0.0002025 5.903e-05 0.5677 0.002594 0.635 0.001684 0.0004286 0.0004301 0.002186 1.194e-05 0.1936 0.002829 8.345e-05 0.01079 0.01639 0.0008463 6.714e-05 0.01513 0.5691 0.005183 0.01388 0.001031 0.002229 0.0006462 0.00103 0.0009601 0.004305 0.0002414 0.0001457 1.688e-05 0.00432 0.6006 0.007625 0.0009892 0.02848 0.2044 0.006067 0.05435 0.0107 0.519 0.0005776 0.001326 0.002236 0.001902 0.5696 0.000351 0.496 0.0009424 4.044e-06 0.3902 0.0007471 0.0001367 3.399e-06 0.1179 0.0005074 0.003958 0.5674 0.0004477 0.008736 6.7e-05 1.631e-05 4.426e-06 0.005909 0.06709 0.003755 0.001871 0.001472 0.002527 0.0001575 0.000406 0.01648 7.79e-06 0.5283 0.1397 0.4211 3.567e-06 0.0002067 9.551e-06 0.6071 0.5733 0.003323 0.004033 0.0007519 0.000216 0.02084 0.001509 0.001529 0.365 0.0084 1.14e-05 0.4506 0.223 0.4085 0.01217 0.007287 0.001884 0.6433 0.01296 0.01241 1.296e-05 0.002147 3.872e-05 0.004877 0.3707 0.05376 0.0002228 0.4842 3.903e-06 0.5688 0.001796 0.0009308 0.0007589 1.025e-05 0.0004357 0.00133 2.419e-05 0.001109 0.003494 0.01196 0.001532 0.3191 0.00522 0.002542 0.002017 0.0009081 0.0001352 0.02028 0.0001209 0.004038 6.776e-05 0.009379 0.006043 0.007389 0.001373 0.00592 0.001343 0.007057 0.02588 0.0005019 7.844e-06 1.014e-05 0.002238 0.0002228 0.06534 0.0009746 0.0008578 7.013e-05 5.02e-05 0.00524 0.0006941 0.09978 0.01683 0.0002692 0.3128 0.09658 0.0004966 0.5713 0.003035 0.001589 0.0001972 0.0005161 0.00346 0.001759 0.4402 0.0001229 0.01339 0.001886 0.0002088 0.008653 0.0001676 1.916e-05 1.688e-05 8.559e-05 0.01386 0.004109 0.02177 0.001489 1.881e-05 0.009887 0.001034 9.275e-05 0.002445 0.01397 0.02298 0.0003196 1.513e-05 0.1226 0.003915 0.01931 0.1933 0.06964 0.001212 0.0002044 0.001298 0.003854 0.3356 0.3904 0.324 0.001673 0.0002878 0.5641 0.0004266 0.0005095 0.0001788 0.003748 1.661e-05 0.002154 0.001792 1.147e-05 0.02524 0.01043 0.006018 0.007025 2.65e-05 0.0136 0.003275 2.729e-05 0.05403 1.116e-05 0.003345 0.004561 0.0001163 7.472e-05 4.241e-05 7.873e-06 1.515e-05 0.0006884 0.0008119 0.003265 0.0002044 0.00132 0.02526 0.000748 0.005609 0.009767 0.0008259 0.001947 0.001111 0.001011 0.0006151 0.4488 8.32e-05 0.1968 0.0002561 0.004264 0.001956 0.0001404 0.0001474 0.0004102 0.00879 0.001302 0.0004231 2.02e-05 0.0003892 0.0005001 0.02459 0.02851 0.6399 0.0008052 0.0003732 0.007953 1.378e-05 0.0001847 0.0004252 0.004332 0.005271 0.2984 0.01013 0.006002 9.62e-06 0.2274 0.003363 0.003487 0.02027 1.72e-05 0.002846 0.000505 0.0008093 0.0001522 0.008061 0.01167 0.003594 0.003612 0.004731 0.006329 0.5674 0.1448 0.0003164 0.04046 1.371e-05 9.907e-06 0.0001473 0.0002471 9.641e-05 0.005389 0.0006137 0.3286 0.04201 0.5787 1.112e-05 0.01478 0.01283 8.06e-06 0.0008008 0.006091 4.334e-05 0.003208 2.239e-05 0.002313 0.001957 0.0005581 0.3024 0.003488 0.006272 0.001836 0.009289 0.04463 1.363e-05 0.4143 0.5896 0.0005479 0.004642 0.0004654 0.01452 0.000256 0.0003288 0.008616 0.0003627 0.0002195 1.865e-05 0.5594 0.001052 0.4252 1.253e-05 0.0001185 0.0008305 3.914e-06 0.0002135 0.001215 0.003156 0.002465 0.001744 0.00387 0.0007794 0.0001402 0.01167 0.0001378 5.162e-06 0.01286 0.0005197 0.5734 0.3111 0.001031 0.0009574 0.2442 0.002713 0.0007972 0.0001376 0.002581 0.0001125 9.886e-05 0.001199 0.5951 0.0191 0.003428 0.5405 0.01269 0.0001518 0.02601 0.03905 0.0001477 0.006588 0.1397 0.0001942 0.03061 0.53 0.002597 0.00113 0.4278 0.001227 0.001323 0.003078 1.396e-05 0.002012 0.0134 0.001371 0.6001 0.002616 0.002184 0.02266 0.001341 0.002919 0.001266 0.0002468 0.000434 0.00268 0.002189 1.182e-05 0.001524 0.0006849 0.0008004 1.676e-05 0.01862 0.004306 0.002272 0.000213 0.0003885 0.4067 0.004527 0.4967 0.002319 1.284e-05 0.02676 0.01656 0.4999 0.006961 0.5216 1.397e-05 0.4145 7.023e-06 0.01123 4.834e-05 8.125e-06 0.0004985 0.009871 0.002003 0.004035 0.008032 0.4723 0.1514 0.001889 0.04097 0.5875 0.007894 0.01399 0.007443 1.659e-05 0.00243 0.002434 0.007199 0.007428 0.0009147 6.733e-05 0.0007894 0.0002104 0.001373 0.000842 0.001043 0.01375 0.0001299 0.2466 0.01377 0.5727 1.53e-05 0.004806 0.05269 0.0008058 0.006201 0.01624 0.009221 0.5854 0.0003988 0.003289 0.0002355 0.004554 0.004488 0.5697 0.004435 0.01259 0.00643 0.0001988 5.385e-05 0.003521 0.01535 0.2606 0.00184 0.000474 0.6467 1.312e-05 1.347e-05 0.1391 0.0001039 1.024e-05 0.3981 0.2911 1.383e-05 0.0004424 0.006808 0.003222 0.00239 7.074e-05 0.5626 0.5797 3.661e-05 6.365e-05 0.02216 0.5641 0.552 5.356e-06 0.00409 1.235e-05 0.0005185 0.0006408 0.0004612 0.0005403 0.0007952 0.007007 0.002941 0.007805 0.001936 1.209e-05 0.0005647 0.000278 0.0005428 1.199e-05 0.4035 0.008433 0.006499 0.5471 0.00488 0.001944 0.003764 0.0001276 0.0001831 0.5452 0.0004636 0.5576 7.535e-06 0.005224 0.03709 0.01307 0.5684 0.0004833 0.0003307 0.5694 0.6137 0.1236 0.0003403 0.006024 0.008905 0.01427 0.002535 0.5711 0.002792 0.09379 0.0003594 0.004976 0.02241 7.956e-06 0.1856 0.5694 4.867e-06 0.02652 0.2181 0.01519 0.008802 0.1456 0.0009512 0.005177 5.544e-06 0.00243 0.005379 0.1656 0.01068 0.0003763 0.001316 0.001215 7.314e-05 0.4131 0.6291 0.002442 0.0003195 0.3433 1.479e-05 4.95e-06 0.1809 0.001775 0.03521 0.6004 0.0009903 0.1652 1.35e-05 0.0001463 0.001334 0.005893 0.00275 0.003423 4.192e-05 0.006951 0.003986 0.1497 0.5726 0.003749 0.005918 0.001132 0.003077 0.002062 8.888e-05 5.556e-06 0.005189 0.0002796 0.000563 0.004837 0.01296 0.002186 0.3886 0.225 0.002136 0.005141 0.0003945 0.001645 0.0003277 0.001632 0.0007192 0.001793 1.23e-05 0.005922 0.003434 0.005137 0.01513 0.3112 0.004984 0.006322 0.5647 0.0008509 0.0008879 0.007677 0.001157 0.5744 0.5463 0.01075 1.553e-05 0.0001195 0.007968 0.0001909 0.007784 0.002108 0.0004314 0.0004661 0.0002013 0.03278 5.826e-05 0.5708 0.04571 0.0008762 8.453e-05 9.718e-05 0.5048 0.02693 0.01571 0.2616 0.002765 0.0001266 0.03781 7.065e-06 0.1125 9.896e-05 0.001264 0.007259 0.003814 0.5228 0.001755 0.0006656 0.03505 0.0002147 0.07977 0.009224 0.0001779 0.001391 0.0001319 0.5938 0.0006474 0.006035 0.4387 0.0197 0.3979 0.1941 0.003039 0.001698 0.01014 0.5348 0.004714 1.439e-05 0.006795 0.01822 0.0003804 0.001305 0.001628 6.481e-05 0.00261 0.6038 0.008711 0.001887 0.001772 0.0007849 0.3543 0.007953 0.0001938 0.003893 3.679e-06 0.001553 0.003528 0.0004684 0.002257 0.6679 0.07036 0.5806 0.3977 0.3904 0.004608 9.201e-06 0.5812 0.01473 0.005435 0.007017 4.251e-05 0.000883 0.003465 0.0001742 0.01008 0.414 9.185e-06 0.0006914 1.039e-05 0.001546 0.0005281 0.002971 0.0003054 0.002265 0.007934 9.307e-06 7.506e-06 0.3698 0.5547 0.3263 0.01117 0.03555 0.00462 0.001072 0.001525 0.0006775 0.000189 0.5677 0.0001267 0.001805 0.003446 0.0002548 0.002333 0.003849 0.3648 0.0004538 0.3584 0.006697 1.554e-05 0.0005701 0.0001306 0.03849 0.004346 0.1967 0.001807 0.5493 0.0003049 0.01136 0.3105 0.002342 0.02455 0.4092 0.0006806 0.04505 0.02338 0.000362 0.01909 0.0001203 0.4423 6.608e-05 0.1713 0.5435 0.05078 0.005116 0.425 0.002684 0.579 0.004582 0.001751 0.001064 0.0009382 0.2917 0.292 1.689e-05 0.00784 0.0006783 0.0003789 0.002763 0.0004536 0.005982 1.026e-05 0.002955 0.0003517 0.002352 0.5814 4.475e-05 0.0029 0.0003096 0.001146 0.001657 0.2263 0.0006923 0.001258 0.0001702 0.001036 0.3521 0.001819 0.0001689 0.001485 0.0046 0.0005109 0.001563 0.00514 0.0002795 1.488e-05 0.5563 0.0005513 0.00295 0.002605 0.01134 1.092e-05 0.1459 0.001204 0.001084 0.009633 0.0002205 5.382e-05 0.000368 0.002619 0.003005 0.002064 0.5793 0.0003433 0.00107 0.5721 1.27e-05 1.337e-05 0.1061 0.5898 0.00809 0.0002121 0.001265 1.506e-05 0.004875 0.001207 0.0007558 1.331e-05 0.003717 0.004291 0.3877 0.001297 0.0001333 0.0005503 0.4296 0.005783 0.5012 0.08259 5.246e-06 0.004955 0.0313 2.561e-05 1.18e-05 0.4608 0.3107 0.0177 9.674e-06 0.394 0.0001341 0.0005475 0.5716 0.04906 0.004784 0.0008627 0.5803 0.006037 0.005214 1.525e-05 0.05993 0.002366 0.005102 0.5693 0.01017 0.0263 0.5078 0.001735 0.4816 0.0006491 0.2807 0.0154 0.0007754 0.002671 0.001306 8.318e-05 0.579 4.055e-05 0.2251 0.5589 0.009725 0.4173 0.01184 0.0001306 0.0007368 0.01155 0.002731 0.001941 0.1213 0.003484 0.02601 0.0004125 0.574 0.582 0.5588 0.003614 0.000154 0.0001542 0.005081 0.0006232 0.006456 4.105e-05 0.006937 0.001361 0.005078 0.01023 0.0002814 0.01095 0.0008071 0.0006136 0.4194 0.0004989 7.86e-05 0.06666 0.0001545 0.4962 0.006418 0.006138 0.00559 0.01752 0.2571 0.000239 3.059e-05 0.0005114 0.4214 0.0001939 1.134e-05 0.05741 1.266e-05 0.005158 0.0006501 1.169e-05 0.00218 0.001122 0.5088 0.001605 0.006325 0.001926 0.0002455 0.003749 0.001674 0.003461 1.271e-05 4.124e-05 0.002376 0.002196 1.689e-05 0.002323 0.01252 1.071e-05 0.03159 0.0002555 0.004441 0.0004323 0.2097 5.886e-06 0.001138 0.01832 0.0001723 0.001225 0.003236 1.048e-05 0.004959 0.1895 0.578 5.45e-05 6.236e-05 0.003644 0.0002061 0.007977 0.005015 0.006372 0.0003181 0.0001377 0.5729 1.556e-05 0.0001472 0.00113 0.01854 0.1511 0.5769 1.45e-05 0.000618 0.005829 0.0005875 0.006558 0.5632 0.005238 0.004513 1.964e-05 0.0002379 0.02536 0.01661 0.00299 0.002141 0.0002063 0.0008415 0.4392 0.007966 0.0006937 1.672e-05 0.0017 0.08101 0.002764 0.001321 4.114e-05 0.0001273 1.24e-05 0.007054 4.138e-05 0.05898 2.053e-05 0.02635 0.5426 0.0002987 0.00072 0.003761 0.0001793 0.0008436 0.01641 0.008081 0.0008492 0.5272 0.0009148 2.964e-06 9.295e-06 0.004396 0.00136 0.004085 0.002262 0.008147 0.004028 0.002244 0.001899 0.02189 0.005222 9.372e-06 0.02921 0.005884 0.0005092 0.0007224 0.002282 1.477e-05 9.427e-06 0.0004559 0.001357 0.6036 0.01391 0.003879 0.003595 0.002023 0.001049 0.006783 4.16e-05 0.00166 0.007511 0.001336 0.001261 0.5151 0.498 0.0005414 0.00399 3.139e-05 0.001068 1.388e-05 7.64e-05 0.01402 1.371e-05 0.004453 0.0002026 0.008119 0.006206 0.0001833 0.1373 0.2784 0.4449 0.006616 0.1482 0.3479 3.246e-05 1.411e-05 0.0002135 0.005698 0.1973 1.142e-05 0.01671 7.615e-05 0.0003546 0.003545 0.009894 0.03873 0.007847 0.0002821 0.002852 0.0007836 0.2696 0.0002286 0.001825 0.004791 0.0004967 0.05494 0.4991 0.0002793 0.00842 0.2453 0.003177 0.04439 0.000157 0.01238 6.133e-05 0.01782 0.2678 0.0001137 0.007602 0.0008685 0.06129 0.001859 0.0002781 0.0161 0.2712 0.0133 1.131e-05 0.05322 0.0006113 0.03939 0.0007462 0.1089 0.002956 0.002271 0.381 0.0002177 0.004842 0.621 0.006277 0.5797 0.009323 0.0245 0.0004816 0.03069 0.004163 0.002589 0.002912 0.0001353 0.0005216 0.0008944 0.001128 0.001962 0.3262 0.4371 0.0007031 0.0003407 0.565 0.002145 3.816e-06 4.583e-05 0.0002648 0.000299 0.0009689 0.0001209 0.5705 0.0007948 0.002976 0.005836 0.00178 0.005926 0.5825 0.01064 0.002036 0.5577 1.224e-05 0.5249 0.003937 8.533e-06 0.002493 0.002552 0.3137 0.001849 0.4794 0.0002539 0.0003338 0.03643 0.002091 0.001833 0.009336 0.00144 0.001651 0.002217 0.004322 0.0002176 0.004561 0.5599 0.0125 0.0003923 0.001482 0.009948 3.777e-06 0.02055 0.3874 0.0008295 0.001702 0.001245 0.009154 0.001633 0.001488 0.2903 0.02122 0.1917 0.3071 0.004311 0.001301 0.00368 0.0001209 6.406e-05 1.439e-05 0.01164 0.5792 0.002562 0.01429 0.0009094 0.009372 0.000533 0.001019 0.000338 0.001917 0.0009106 0.002089 0.5701 0.006077 0.003174 0.0007069 0.008872 0.4131 0.2048 0.003344 0.5827 0.5764 0.006384 0.0163 0.001538 0.06909 0.004814 0.04151 0.002989 1.303e-05 0.005622 0.004987 0.0272 0.5815 0.5756 0.001194 0.001167 0.01403 0.1198 0.01093 0.6403 0.0001308 0.004403 0.004317 0.008649 0.006886 0.004999 0.0049 0.005552 0.01089 0.3433 0.0002014 0.07737 0.0002081 0.002968 0.09748 0.02334 9.016e-05 0.5628 0.002582 0.206 0.008166 0.3464 9.057e-05 0.0008282 0.002443 7.077e-06 0.0007056 0.01399 9.484e-06 1.585e-05 3.985e-05 0.0005488 0.0002618 0.0007245 0.02108 0.006453 0.005728 0.0001811 0.1361 0.04483 0.02175 0.02528 0.0007296 0.1824 0.0006547 6.768e-05 0.002492 0.06347 0.006591 0.0007975 0.001592 0.002414 7.648e-06 0.5262 0.0004265 0.4213 0.5351 4.293e-05 1.105e-05 0.5291 0.0002527 0.001507 0.005887 0.003688 0.01272 0.5232 8.384e-05 0.5659 0.003855 2.903e-05 0.005419 0.001061 0.01604 0.1049 0.01645 0.006951 0.5518 0.6162 0.0001196 0.6099 0.003293 0.00265 0.005048 0.00734 0.6044 0.01577 0.0003215 0.0002042 6.467e-06 0.005134 0.001506 2.329e-05 0.6137 0.000878 5.248e-05 0.0004919 2.255e-05 0.009558 0.001071 9.441e-05 0.000438 4.74e-05 0.005215 0.01763 2.588e-05 0.5519 0.008598 1.317e-05 0.5698 0.01013 0.0001467 0.00433 0.004766 0.005613 0.005998 0.0005652 5.691e-05 0.004012 0.0001533 0.4485 0.000519 0.0002791 1.139e-05 0.001867 0.0002737 0.004411 0.03726 0.0004356 4.168e-06 0.007297 0.004856 0.003496 8.411e-07 0.006734 2.294e-05 0.02203 1.221e-05 0.001989 0.01983 0.0005944 0.000933 0.001257 0.006165 0.006255 0.389 0.003932 0.01114 0.01894 0.0004894 0.0006994 0.03384 0.007795 0.0008796 0.007068 0.5738 0.1137 0.0005556 0.006227 0.424 0.6043 0.0005548 0.003388 0.001222 0.00329 0.001043 0.01751 0.0001415 0.003445 0.006226 0.006648 0.009625 0.000116 0.002215 0.01178 0.5655 0.4641 0.004303 0.004512 0.0001786 0.0004328 0.007581 0.002908 2.293e-05 0.0001071 0.0134 0.008677 0.001356 0.01203 0.006923 0.166 0.4779 1.491e-05 0.04701 0.1796 0.001781 0.01697 2.24e-06 1.034e-05 0.0009927 1.167e-05 0.000331 1.949e-05 0.001114 6.068e-06 0.01243 0.001966 5.906e-05 0.0007364 0.002046 0.0002613 0.4652 0.3878 0.05766 0.0002557 0.001976 0.0001252 0.000331 0.0008796 1.091e-05 1.577e-05 0.4694 0.001798 1.497e-05 6.729e-06 0.339 0.1067 1.009e-05 0.01486 0.003359 0.01166 9.682e-06 0.002881 0.02208 0.02801 0.001112 0.002899 0.004305 0.00825 0.001748 0.5713 7.65e-05 0.002772 0.5135 0.00261 0.5448 4.77e-06 0.3767 0.02823 8.614e-06 0.006592 1.068e-05 0.003853 0.002623 0.004001 0.0001349 0.03635 0.02663 0.007118 0.0159 0.01706 0.004231 0.04892 0.002779 0.00652 0.0004997 0.0001293 0.001269 1.574e-05 0.0004828 7.371e-05 0.0107 1.922e-05 0.006484 0.002554 0.005834 0.003287 0.5254 1.071e-05 0.03702 0.002027 2.914e-06 0.001925 0.1017 0.0002212 0.004807 0.01534 0.02076 0.00926 0.005629 0.1022 0.001178 0.02398 0.002309 0.5597 1.234e-05 8.021e-05 0.0006599 0.0001857 0.000269 0.007791 0.04402 0.001026 8.077e-05 0.000236 0.003044 0.009844 0.5438 0.001892 0.006904 0.0002029 0.0008642 0.0003951 0.02647 0.009596 0.1026 0.001901 0.000435 0.4784 0.0001297 0.0004435 0.006383 1.003e-05 4.831e-05 0.004178 0.01132 0.6128 0.00325 0.0379 0.002714 0.001246 1.448e-05 0.02707 0.003331 0.006912 0.002758 7.98e-05 0.5687 0.000183 0.458 0.09016 0.0006064 0.003372 0.0002489 0.3809 0.01154 0.004796 1.446e-05 0.01356 0.0002282 0.05251 0.002673 0.0003482 0.001517 0.003113 0.0003893 0.04274 0.0007037 0.1502 0.416 0.5823 0.0001123 0.5582 0.0001624 0.5982 0.0001316 0.0004167 8.623e-06 0.007315 0.000801 0.06592 0.007536 0.001245 0.001684 4.461e-06 0.02725 0.008029 0.002887 0.01647 0.002837 0.09224 0.56 0.001578 0.04404 0.0007334 0.008234 0.008602 0.01292 4.298e-06 0.009268 3.8e-05 0.003463 9.993e-06 0.02521 0.01935 1.435e-05 0.417 0.2758 0.001886 1.504e-05 0.009831 8.71e-05 0.002894 0.002324 0.02794 0.00271 0.5874 0.03739 0.01083 0.5332 0.001009 0.01582 0.005726 0.003684 0.002351 0.0005445 0.01093 0.00245 0.3693 0.5715 1.327e-05 0.0005858 0.3476 0.05187 0.01021 0.003167 0.002477 0.0009618 0.002746 0.007537 0.01956 0.02743 0.005197 0.00382 0.001871 0.003707 0.0009113 6.24e-05 0.5123 0.001438 0.00182 1.485e-05 0.002725 0.01361 1.349e-05 0.3371 0.4229 0.01918 0.000364 0.003832 0.0005689 0.004049 0.02512 0.0003132 0.0002749 0.007047 0.0006012 0.006374 0.0071 0.000679 0.01326 0.0001064 0.00209 0.01336 0.01085 0.0008349 5.864e-06 0.0007939 0.04973 0.3456 0.00405 0.001146 0.004692 2.126e-05 0.0001682 0.1222 0.001305 0.0006032 0.0003446 0.443 0.005181 0.004795 1.181e-05 0.004166 0.01729 0.0007511 0.002143 0.005734 1.152e-05 1.514e-05 0.001847 0.1165 0.02185 0.5931 0.3404 0.5923 1.165e-05 0.0008651 0.0006803 6.184e-05 0.008673 0.03247 0.01639 3.948e-06 0.004508 0.001041 0.0001739 0.5376 8.041e-05 0.006718 0.3864 0.02034 0.004375 0.0001805 0.0002656 1.72e-05 0.002078 0.0005833 0.006037 0.5711 0.0008151 0.01844 1.592e-05 0.01053 0.0001658 0.006515 1.31e-05 0.02798 0.03022 0.001498 0.0008071 0.4906 0.5859 0.03469 0.614 0.005381 0.003872 0.001581 0.04676 0.03025 0.03195 3.675e-05 9.001e-05 0.00458 0.001204 0.0002818 0.003274 0.0003607 0.5358 0.005051 0.2471 1.891e-05 0.4686 2.952e-05 0.5253 0.005252 9.176e-05 1.482e-05 0.0003314 0.184 0.001347 0.0001044 0.003253 0.006423 0.01842 0.0002118 0.001372 6.921e-05 0.0003025 0.001043 0.5406 0.001586 0.3483 0.02597 0.01765 0.002639 0.02375 0.003524 0.0008608 3.603e-05 0.0007452 0.3884 0.0381 0.00441 0.0001708 0.002166 4.314e-05 0.01575 0.0004815 0.008073 0.001989 0.4974 0.597 1.521e-05 1.458e-05 1.172e-05 0.0001444 0.006233 0.0005733 0.001376 0.0009274 0.5774 0.002646 0.002572 0.009334 0.0004173 0.001886 8.802e-06 0.189 0.0004703 0.02031 0.005566 0.13 0.0003067 0.002843 7.603e-05 0.5865 0.0007331 0.5724 0.0007964 0.00663 0.07512 0.0002612 0.0685 0.4036 0.003132 6.62e-05 0.01146 0.5716 0.004056 1.432e-05 0.01726 0.0002028 0.3754 0.09803 0.002319 0.00837 0.5727 0.0003955 0.02813 0.0004672 0.005157 1.696e-05 0.0006403 0.001694 0.0003365 0.002198 2.255e-05 0.003379 0.1221 3.272e-05 0.0006454 0.4297 0.0004696 0.0001155 0.005513 0.01009 0.005661 0.0002408 0.0008229 1.573e-06 0.0007175 0.3229 0.5923 1.073e-05 0.127 1.001e-05 0.1092 0.002012 0.03061 0.0182 0.002866 1.885e-05 7.101e-05 0.01131 1.257e-05 0.001274 0.002849 0.004725 0.3959 0.1198 1.307e-05 0.0004793 0.001094 0.0001124 0.00656 0.04697 1.472e-05 0.0001906 0.3318 0.5283 0.002643 0.3343 0.003437 0.001596 0.3579 0.001089 0.0007162 0.001681 0.002445 0.004731 0.06348 0.0005822 0.0001123 0.5511 0.3917 0.4563 0.001501 0.0008242 0.0003025 0.4979 0.003976 0.555 0.0001353 0.0004888 5.895e-05 0.02638 0.0005274 0.4565 0.2243 0.08773 0.003569 0.5724 0.001057 0.003348 0.5101 0.00279 0.0009356 0.0006854 0.001197 0.0002866 0.237 0.4727 0.002174 1.469e-05 0.0003835 0.3664 0.007048 0.5784 0.01725 0.3894 0.5832 0.0002347 0.09239 0.001518 0.007982 0.0007719 0.001233 0.0003479 0.4625 1.271e-05 0.01046 0.003871 0.0006523 0.0006821 0.001541 1.451e-05 0.003045 0.002184 0.0004247 1.342e-05 0.04304 0.001191 0.002409 0.07389 0.0002198 0.0001887 0.00328 2.351e-05 0.6033 0.3622 0.0003206 0.004413 0.1788 0.05049 0.5711 0.0002687 0.002381 0.001596 0.0007 0.001234 0.00504 0.005658 0.01176 0.3749 0.0008162 4.435e-06 0.000318 0.0007189 2.992e-05 0.002498 0.005224 0.002171 0.007102 0.01503 0.001814 4.623e-05 0.0007927 0.001022 0.01966 1.889e-05 0.003477 0.001311 0.5914 0.006523 0.001977 0.0008719 0.5794 0.001414 0.007353 0.001799 0.5268 0.0008466 0.007811 0.5076 0.04003 0.00243 0.02816 4.18e-06 0.09013 0.005223 0.008085 0.004415 0.01788 0.002013 0.1251 0.02216 0.006102 0.0002386 0.003415 0.0003351 0.00479 0.003199 0.00523 0.004158 0.0041 0.5755 0.3772 0.0007099 0.3778 0.001009 0.0003592 0.4744 0.007176 0.124 0.0108 0.00766 0.3765 0.4337 8.468e-06 0.0007248 0.008311 0.002454 0.0009037 0.0005763 0.008805 0.0001729 0.002437 0.00392 6.503e-05 0.006051 0.0009783 4.839e-06 0.01461 0.0009199 0.00533 0.1871 0.01207 0.0004023 0.005359 4.242e-05 0.0008648 0.00802 0.0001582 0.000734 0.001015 0.003317 0.009936 6.867e-05 0.001357 0.007804 0.04412 0.003557 0.001057 0.006539 0.002223 0.0205 0.000518 0.004356 0.0005368 0.001013 0.0001035 0.007001 0.5438 2.119e-05 0.0003363 0.03262 0.0001667 1.844e-05 0.002192 0.01479 0.006408 0.008495 0.01014 0.00531 0.4488 1.208e-07 0.001454 0.004421 1.395e-05 0.6356 0.5917 0.003964 0.5841 0.02002 0.02598 0.001608 0.000333 0.002482 0.039 0.009323 0.0001514 0.002451 0.0004801 0.003148 0.4619 0.01239 0.5654 6.948e-05 0.0008253 0.001476 0.006972 0.005199 0.0009703 0.002544 0.001995 0.001791 0.0008145 0.004578 0.0134 0.5022 0.5902 0.0005033 0.4326 0.004227 0.0004733 0.003909 0.0008269 0.002735 0.02313 0.0092 0.001927 0.0009432 0.5375 0.5564 0.001666 0.001951 4.809e-06 0.0002433 0.0001437 0.008753 0.0004437 0.01354 0.4565 0.008988 1.63e-05 0.002046 0.01371 0.5736 0.0006841 0.05381 5.941e-05 8.156e-05 0.535 0.5656 0.001655 0.002949 0.0002482 0.005395 0.002595 0.006032 0.00201 0.293 0.0008962 0.001415 0.0003277 0.00216 0.002953 0.003256 0.001304 0.03923 0.000717 0.004249 0.001922 0.003359 1.773e-05 0.007868 0.003877 0.002808 0.001369 0.006231 0.02856 0.001498 0.003237 0.5474 0.4577 0.001536 0.0048 0.3856 0.002439 0.001196 0.1615 0.0001014 0.0002237 0.4115 0.001605 0.0004497 0.0006031 0.001242 0.001633 0.001033 6.061e-05 0.04279 0.01415 0.002124 0.01764 0.008238 0.3346 0.003466 0.004968 0.0001861 0.001483 0.002186 0.007214 0.004536 0.001831 0.00449 0.2628 0.0006864 0.001169 0.007991 0.0004159 0.4419 0.007206 0.001072 0.001762 0.0002682 0.5558 0.01563 0.0002566 0.0002093 0.01802 0.01185 7.292e-07 0.003449 0.01021 0.0001348 0.001023 4.273e-06 0.08846 0.000749 0.5831 0.0004958 0.06232 2.641e-06 0.000309 0.00868 0.009464 0.3894 0.3835 0.3902 0.07903 0.0006562 0.001229 0.02302 0.001716 0.003534 0.001587 0.005318 0.002262 0.0004685 0.00712 6.307e-05 0.01728 0.0002364 0.0002677 0.1027 0.009854 0.003578 0.0004209 0.002855 0.5048 0.3205 0.0007432 0.0006597 0.004781 0.0006766 0.0001307 0.0003479 0.05013 0.006862 0.00458 0.3654 0.0003687 8.05e-05 0.1758 9.021e-05 0.002452 0.003835 0.5054 0.003118 0.002185 0.003903 0.007324 0.03697 0.155 0.0002373 0.0005149 0.003723 0.001612 0.0001701 7.531e-06 0.007755 1.26e-05 0.03732 0.0001183 0.001426 0.001407 0.006688 0.003196 0.06373 0.0005366 0.01587 0.01307 0.008034 7.31e-06 0.01895 0.002706 0.6382 1.304e-05 0.5671 0.0001016 0.002017 0.0005929 0.5819 0.005162 0.002658 0.006534 0.4845 0.3728 0.2319 0.003449 0.05511 0.5803 3.499e-05 8.769e-05 0.3948 0.05744 0.0003373 0.003842 0.0177 0.0001835 0.008552 0.0001186 0.0008234 0.004784 0.356 0.0006619 0.03896 0.5672 0.001705 0.002309 0.00441 0.006843 0.004459 0.07192 0.004526 0.001885 0.05021 0.01513 0.006474 0.007088 0.1071 0.0001314 0.000504 0.0003843 1.113e-05 1.104e-05 0.02286 0.01414 0.01054 0.001909 0.000272 0.001643 0.3318 0.5452 8.889e-05 0.003044 0.03579 0.002921 0.5435 0.00336 0.06563 0.001943 0.00226 0.002219 0.006488 0.002657 0.0009005 0.01737 0.001642 0.007154 0.4777 0.004798 0.01035 0.04791 0.3135 0.0001836 0.001079 2.448e-05 0.4139 0.1549 0.3836 0.002051 0.001218 8.1e-05 0.0002181 5.265e-06 0.006327 0.00385 0.0001986 0.07063 0.0008058 0.02288 0.0277 0.003518 0.0006347 0.434 0.00052 0.00562 0.001251 0.5727 0.0006358 0.0005112 0.0008095 0.002223 0.07438 0.01036 0.0192 0.002335 0.001209 0.4563 0.0008488 0.002751 0.0004871 0.001304 0.3219 0.04401 0.0004327 0.001654 0.001376 0.009612 0.0006317 0.0006108 0.007526 0.003336 4.314e-05 0.0002039 0.007653 0.001505 0.002694 0.0003467 1.363e-05 0.5305 0.00647 0.004087 0.0003388 0.001659 0.002683 0.0003937 0.0001314 0.002251 5.937e-06 0.03242 0.01451 0.0002262 0.009749 0.001831 0.04507 0.5241 0.0008843 0.0001099 0.0006315 0.0002784 0.004891 0.002798 0.01561 0.01289 0.5208 0.0131 0.0001167 0.003106 0.1683 0.5713 0.002438 0.003057 0.0008057 0.01073 0.01162 0.002776 0.008394 0.5709 0.4129 0.00526 0.001401 0.1581 0.003527 0.0007869 0.0002546 0.0001058 0.001761 0.0032 0.5705 0.004308 0.01121 5.293e-06 0.007974 0.1318 0.0008421 0.009716 0.5893 0.0007895 0.001818 6.172e-06 0.005844 0.01019 0.001778 0.5923 0.0006679 3.929e-05 0.5205 0.3453 0.5641 0.004818 0.0001261 0.2511 0.004653 0.002196 0.006037 0.0004469 0.004619 0.00132 8.728e-05 0.003706 0.0001805 0.3557 0.5221 0.001285 0.009013 0.5669 0.002602 0.004152 0.1242 0.1093 0.01032 0.5069 0.2461 0.0004644 0.001396 0.002134 7.92e-05 0.004012 0.01413 0.004261 0.002501 0.004549 0.0007416 0.0004893 0.000228 0.001643 0.001913 0.005622 0.0002343 0.006849 0.0003537 0.0001635 7.953e-05 0.001352 0.008486 0.01814 0.001771 1.503e-05 0.0006513 0.000677 0.4529 0.2929 0.434 0.03825 0.001713 0.0001995 0.05176 0.2028 0.5949 0.0168 6.508e-05 0.4143 0.0004861 1.086e-05 0.3717 0.001615 0.003599 0.004336 0.0004512 0.5713 0.009446 0.5329 0.3823 0.3324 0.5688 0.008761 0.001285 0.0006271 0.005369 0.4234 0.007021 0.004332 0.1319 0.0005354 0.006393 0.007892 0.009486 0.0007611 0.2542 1.102e-05 0.0003182 0.3898 0.3864 0.008167 0.001205 0.004178 0.003191 0.0004127 0.001727 0.002238 0.0002361 0.0003309 0.00176 0.3922 0.1281 0.03826 0.001379 0.4705 0.0009278 0.0211 1.251e-05 0.001689 0.02127 0.00789 0.0343 0.0003429 1.193e-05 0.009318 0.001181 0.0002353 1.911e-05 0.006848 0.5571 0.3852 0.5473 0.01937 0.0008042 0.2161 0.0001575 1.539e-05 0.0002249 0.5717 0.0009823 0.293 0.006053 0.01243 1.314e-05 0.002672 0.004253 0.6235 0.4111 0.004903 5.099e-07 0.001985 0.003294 0.0001453 1.635e-05 0.0008608 0.0002881 0.0009029 0.001584 0.1268 0.03658 0.004324 0.0001401 0.002214 0.01072 1.322e-05 0.007077 0.01352 0.001837 0.2348 0.0004705 0.09337 0.0001179 0.004778 0.002575 0.0002701 9.794e-05 0.0009921 1.329e-05 0.01999 0.001649 0.0001003 2.342e-05 0.05365 0.0006217 0.0006972 0.3749 0.005553 0.004506 0.001103 0.002033 0.002287 0.001392 0.01214 0.5707 0.0008075 0.03904 6.412e-05 0.001842 0.005439 0.004563 0.008283 0.009463 0.0005103 0.0004876 0.007948 0.4135 0.01832 0.08965 0.5212 0.036 0.003154 0.6442 0.1851 0.009095 0.0005508 0.04669 0.3014 0.0001376 0.5238 0.1269 0.0009732 0.000135 0.0008476 0.0002802 0.005606 0.1436 0.0006051 0.6097 0.5287 0.0002379 0.3997 0.06977 0.03291 0.02198 0.001913 0.4834 0.0007221 0.001806 0.003948 1.614e-05 0.0003741 0.06021 0.00132 0.001283 0.00407 0.09367 0.0009948 0.002973 0.5532 0.05851 0.2943 0.002143 0.02557 0.01223 0.002572 0.006866 0.5724 1.154e-05 0.0007428 8.654e-05 0.5586 0.02091 0.02616 0.0008347 0.006507 0.01039 8.72e-05 0.0001991 0.006061 0.006229 0.001241 0.002976 5.46e-05 0.0006027 0.004615 0.008967 0.02721 0.0003562 0.0005313 0.0006733 0.009306 8.743e-05 1.744e-05 4.019e-05 0.5676 0.02657 2.365e-05 0.0001064 0.01224 0.008979 0.0001598 0.0014 0.0186 0.2984 0.0003678 0.566 0.004615 0.006578 1.595e-05 0.0003593 0.0002093 0.548 0.0003496 0.0001461 0.005301 0.001066 0.03057 0.01179 0.0001145 0.009419 0.002642 0.0148 1.633e-05 0.5725 0.3876 0.007511 8.56e-07 0.5689 0.006168 0.003154 0.02594 0.102 0.02042 0.0003805 1.446e-05 0.01876 0.4235 0.0007842 0.02536 0.0001251 0.001768 0.0005727 0.0432 0.4254 0.003305 0.01043 0.0006876 0.0001452 0.0002024 0.01068 0.02896 0.003886 1.408e-06 0.1964 0.05747 0.001017 0.003445 0.0002023 0.5527 0.01511 0.0005509 2.659e-06 0.01042 0.0007327 0.0003586 0.005139 6.233e-06 0.0004757 0.009513 0.04861 0.582 0.000216 0.0002009 0.5696 0.001245 0.0003167 0.4012 0.005417 1.407e-05 0.003001 0.0003436 0.01181 0.0003606 0.0005148 0.003384 0.0001118 0.000715 0.5524 0.529 0.5287 0.005195 0.0009027 0.002374 0.002382 0.0003091 0.001086 9.464e-06 0.04247 0.00534 0.0009212 0.001995 0.4434 0.0001827 0.0002427 0.005516 0.0005429 0.01163 0.6056 0.5427 0.6432 0.1093 0.007735 0.001018 0.0002772 0.001327 1.336e-05 0.02346 0.002309 0.001538 0.01098 0.0003102 0.003952 0.0008516 0.006815 0.004815 0.4006 0.007944 0.4143 0.004475 0.00389 0.5716 0.5238 0.002622 0.006878 0.008037 6.754e-06 9.38e-05 0.01739 0.001285 0.001541 0.006514 0.006384 0.004256 0.005165 9.378e-06 0.0001212 0.4782 0.0004034 0.0001142 0.3896 0.006061 0.003497 0.5693 0.009152 0.001168 0.002767 0.1531 0.01144 3.731e-06 0.001348 1.086e-05 0.2385 0.5681 0.000369 0.03921 0.0001292 0.06957 0.01006 0.0005732 0.0008025 0.4017 0.000609 0.0001515 0.001672 0.001723 0.0253 0.4058 0.0013 0.0004092 0.1978 0.005642 0.0008589 5.25e-05 0.5714 0.001507 0.5371 0.002142 0.001899 0.001566 0.0655 0.0007403 0.006921 0.5034 1.346e-05 0.4696 0.001747 0.04079 0.5731 0.003229 0.005712 0.6457 0.06338 0.002491 0.000134 0.5448 0.00657 0.009442 0.0006878 0.002331 0.04604 0.4314 1.819e-05 0.005914 0.003434 0.0004347 0.5795 0.00228 0.0115 0.01277 0.0009298 0.01145 0.01908 0.01512 0.5652 0.003876 0.01956 0.5252 0.007258 0.06064 0.005955 0.0005808 0.007482 0.08371 0.001375 0.05127 0.1009 0.2168 0.001893 1.37e-05 0.0004358 0.4169 3.847e-05 0.6168 0.4983 0.000194 0.1712 0.005285 0.0007905 0.0008007 0.009373 0.008589 0.004606 1.456e-05 6.993e-06 0.0002934 0.2763 0.03937 1.028e-05 0.006507 0.0007744 0.2962 2.722e-06 0.0004997 0.001388 0.04216 0.05214 0.0001916 0.0003313 0.005173 0.5414 0.001072 5.887e-05 0.0002083 0.003527 0.001135 0.000109 0.000414 0.002362 0.5542 0.005243 0.003241 9.042e-05 0.0001222 0.01034 0.0001214 6.053e-07 0.0005563 0.00271 0.001419 0.5775 0.4203 4.119e-06 0.002038 0.001574 0.001396 0.5701 0.007889 0.5559 0.0007292 0.1741 0.002182 0.00235 0.0006539 7.945e-05 0.0004326 0.003392 0.006701 2.903e-05 0.1464 0.000557 0.001573 0.004393 0.01481 1.299e-05 0.0006172 0.007414 0.0001839 0.00237 0.09009 9.817e-05 0.002337 0.002471 0.01951 0.2771 1.413e-05 0.0002276 0.0004207 0.006774 0.00194 0.0006491 0.000142 0.0002919 0.004795 0.4168 0.000595 1.581e-05 0.001048 0.00078 0.003697 0.4879 0.4194 2.778e-05 1.247e-05 0.001633 0.009909 0.001696 0.003215 0.0005572 0.008316 0.006657 0.01494 7.898e-06 1.019e-05 0.001128 0.4559 0.004722 0.5693 0.3866 0.001645 0.0009027 0.003048 0.01744 1.421e-05 0.005975 0.003558 0.005543 0.0002951 0.5359 0.6164 0.4923 0.009237 0.003622 1.709e-05 0.5336 0.007117 0.001646 0.2726 0.002401 0.2158 0.005042 1.332e-05 0.0007643 0.004053 0.001489 0.01382 1.581e-05 0.0138 0.002682 0.5957 6.326e-06 0.002631 0.0009049 0.0007045 0.0008835 0.5421 0.001116 0.4858 7.958e-06 1.53e-05 0.01323 0.0001546 0.0003074 0.0005364 0.004501 0.1804 1.684e-05 0.0004721 0.09113 4.018e-06 0.0001046 8.121e-05 0.001433 0.01614 0.008163 0.1278 0.4932 9.576e-05 0.0001919 0.001873 0.0007927 0.000342 0.0005649 0.0008154 0.346 0.00821 0.002179 0.00953 0.002895 0.003895 0.0002671 0.4145 0.002697 0.3611 0.5647 0.000467 0.1742 1.237e-05 4.102e-06 0.0001134 0.06332 0.003216 0.03512 0.002286 1.364e-05 0.03406 0.007412 6.7e-05 0.004728 0.002192 0.4982 0.001385 0.2123 0.4521 3.425e-06 0.003542 0.004906 0.004476 0.003492 0.4116 2.641e-05 0.000997 0.001531 0.005938 0.005279 0.0008883 0.0006419 0.5448 0.001462 0.0003148 0.5921 0.001543 0.0002296 0.001289 0.001898 0.0001691 0.05486 0.004674 0.00111 0.0002326 0.03523 2.181e-05 1.375e-05 0.00796 0.1712 0.005794 0.001187 0.002663 1.044e-05 0.41 0.002495 0.02824 0.01438 0.001588 0.01282 0.00271 0.006506 0.03672 0.0004165 0.00036 0.3905 0.004505 9.697e-06 1.449e-07 0.5761 0.006018 0.6478 0.0007552 0.003663 5.903e-06 0.0009374 0.001035 0.001804 0.5709 0.5391 0.002222 0.00382 0.001557 0.009666 0.02657 0.01055 0.3855 0.001775 0.0306 0.000547 0.564 0.000539 0.0063 0.004775 0.00616 1.105e-05 0.01281 0.5797 0.006627 0.006296 0.008697 8.804e-06 0.011 0.006934 0.3157 0.006921 0.0009188 0.000647 0.0005186 0.3028 1.128e-05 1.243e-05 5.911e-06 0.006157 0.118 0.008109 0.001583 0.00155 0.021 0.04091 5.985e-06 0.0004855 0.0005134 0.03401 0.009414 0.0002496 0.004423 0.02258 1.242e-05 0.007089 0.576 1.534e-05 0.08892 0.01224 0.5506 0.004119 0.02208 0.5312 0.03138 0.5866 0.08109 1.088e-05 0.001216 1.037e-05 0.002669 0.0005338 0.003798 0.0007416 0.008062 0.00421 0.002288 1.048e-05 0.00103 6.775e-05 0.003721 0.003833 0.01021 0.0003408 0.0005262 0.009384 0.001595 0.001907 0.001108 0.5464 0.3668 0.0001971 0.0009457 0.000163 0.001255 3.676e-05 0.5255 7.247e-06 0.009981 0.0146 0.005466 1.227e-05 0.0004624 1.299e-05 0.006701 0.004535 0.01062 0.001373 0.002947 0.007167 0.008147 0.3951 7.883e-05 0.5649 7.236e-06 0.0005423 0.00178 0.0001274 0.0002177 0.0002863 0.001495 0.0002127 0.000727 0.003848 0.0002796 0.01052 0.0009871 0.004055 8.436e-05 0.003243 0.01484 0.01125 0.1874 9.343e-06 0.0004912 4.563e-05 0.02635 0.02162 0.003573 7.177e-05 0.5582 0.009368 0.002152 0.0007394 0.007188 0.005895 0.5502 0.5414 0.02442 0.01202 0.0005822 0.004775 0.1006 0.06068 0.0003572 0.0372 0.0002912 9.959e-05 1.584e-05 0.0005509 0.0001057 0.001656 0.5285 0.01236 0.006076 1.145e-05 0.004655 1.374e-05 0.5575 0.001143 0.0001107 0.4033 0.003498 7.013e-06 5.725e-05 1.141e-05 0.4653 0.4826 1.084e-05 0.0002485 0.0002173 0.1864 0.419 1.158e-05 0.008516 0.1562 1.308e-05 0.01165 0.01608 1.189e-05 0.0001478 0.002534 0.0002981 0.5747 0.0584 0.01153 0.03143 0.0006274 0.3789 0.002872 0.003609 0.5403 0.0003166 0.1569 0.005295 0.1895 0.1004 0.006931 0.009392 8.543e-06 0.0001693 0.009395 0.0009949 5.815e-05 2.262e-05 0.001715 8.533e-06 0.6114 1.105e-05 6.588e-05 0.6099 0.008629 0.5019 0.006432 0.002079 0.003656 0.004437 4.023e-05 0.004665 0.002263 0.0001372 0.0003097 0.003495 0.0008699 0.113 0.363 0.0001164 0.007025 0.003951 1.19e-05 0.03363 0.06743 0.04309 0.002228 0.4505 0.0003349 0.0002152 0.005553 0.000665 0.1188 0.3854 0.01534 8.274e-05 0.5721 0.006082 0.001482 7.302e-06 0.0002658 0.0007504 0.005525 1.119e-05 1.389e-05 0.002489 0.001028 0.004356 2.787e-05 0.0004672 0.005455 0.001569 0.005117 0.0178 0.5722 0.0008212 0.03503 0.002182 3.522e-06 0.03226 0.001879 6.435e-06 0.004442 1.444e-05 0.0008944 0.02274 0.008498 8.247e-06 0.005748 0.001949 0.006449 0.0003021 0.1264 0.00106 0.006273 0.0002007 0.007802 0.001285 3.854e-05 0.0006668 0.009413 0.2849 0.0004986 0.00381 0.0009957 0.0009147 4.209e-05 0.004933 0.2327 0.0003979 0.02691 0.001587 0.03577 0.004967 0.002436 0.5787 0.003967 0.00358 0.0123 0.3254 0.4718 1.363e-05 0.01145 0.0001583 0.0007093 3.038e-05 0.003984 0.002685 0.0001079 2.048e-05 0.005523 0.0007641 0.1677 0.6581 0.5698 0.009253 0.004367 0.001349 0.05282 0.008921 0.5644 0.001968 0.538 0.03702 0.06787 0.0008165 0.0114 0.03516 0.001872 0.003362 0.001572 0.004448 0.002285 0.4566 0.0008353 0.02875 0.002692 0.000237 0.006895 0.00594 0.0006259 7.142e-05 0.0001921 0.003983 0.5425 0.006698 0.02533 0.001707 0.002656 0.001707 0.1072 0.02438 0.004027 0.007143 5.437e-06 0.00384 0.002223 0.01137 0.002398 0.566 0.0005304 1.464e-05 0.000645 0.03584 0.001784 0.3808 0.004393 0.0009503 0.009202 0.423 0.1845 0.006989 6.762e-05 0.4189 0.03852 0.006769 0.06991 0.001048 0.04448 0.008822 0.0175 9.191e-05 0.4939 0.002218 4.517e-05 0.0002151 0.01315 0.002373 9.607e-05 0.003775 0.05119 0.001691 0.007502 0.3154 1.035e-05 3.126e-06 8.351e-06 0.008863 0.0003966 0.0003088 0.00764 0.5718 8.199e-06 0.00581 0.01835 0.2131 0.5327 0.0003278 0.005292 0.2267 0.02898 0.0004757 0.4475 0.002943 0.006686 0.0002513 0.003591 0.002504 0.003202 0.4664 0.09875 0.0006261 0.0006033 0.002302 0.0004507 0.001414 0.001276 1.148e-05 0.332 0.0006948 0.001944 9.075e-05 0.0001273 0.0007362 0.009381 0.505 0.5893 0.007235 9.182e-05 0.007967 1.079e-05 0.6672 0.00745 0.5723 0.002257 0.001392 0.004303 0.0443 0.006295 4.262e-05 0.01138 0.0003159 0.002047 0.001602 1.25e-05 0.0002859 0.004325 0.002405 0.002315 0.5678 0.56 0.002341 3.685e-06 0.0001683 0.00103 0.000677 0.004335 0.001015 6.523e-05 0.5645 0.006878 0.0002238 0.005244 0.00163 0.5746 0.6312 0.002594 0.00806 1.032e-05 0.3202 0.1298 0.002028 0.0009681 0.5668 0.5142 0.005097 0.55 0.0002641 0.0009267 0.2485 0.02209 0.001896 0.006982 0.00759 0.005236 0.00302 0.002871 0.569 0.001053 3.873e-05 0.01506 0.01208 0.5665 0.3949 0.02794 0.005624 0.5924 0.0008559 0.004953 0.0001308 0.03215 0.006521 0.0001743 0.3199 0.0001132 0.00064 0.005797 0.003112 0.00508 0.0003645 0.009444 0.01637 0.003664 0.3422 0.001397 0.006354 0.5348 0.004892 0.0182 0.003941 0.002013 6.085e-05 0.1024 0.5748 5.078e-05 0.0004765 0.132 0.0001958 0.0006216 0.003196 0.0006687 0.007247 8.146e-05 0.0002553 0.5718 0.003814 0.0003483 0.00361 0.002083 0.5626 0.3301 0.001885 0.07345 0.5536 0.001308 0.0007292 0.01327 0.01882 0.000704 0.0003706 0.01589 0.1017 0.06974 0.01024 0.0083 0.008288 0.01757 0.3216 9.009e-06 0.004038 0.0002939 0.003504 0.003653 0.0006619 0.00563 4.101e-05 1.811e-05 5.991e-06 0.0004647 0.005545 0.001269 0.00929 0.02719 0.01414 0.001105 0.005315 0.5108 0.5869 6.488e-05 0.03679 0.01026 0.5868 0.3243 0.3243 0.0008601 0.01208 0.3527 0.3528 0.0219 0.000685 0.003668 0.3795 0.0005073 0.0001226 0.001675 1.078e-05 0.001776 0.001628 0.01063 0.0001472 6.251e-05 0.005797 0.5619 0.03382 0.00237 0.5632 0.0585 0.01442 0.0005425 0.1142 0.005009 0.003864 0.01232 0.006567 0.03405 0.0006269 0.005152 0.0005802 0.5131 0.001282 0.003718 0.00344 0.002043 1.211e-05 7.954e-06 0.006428 0.005541 0.01738 3.676e-06 0.001664 0.008003 0.001073 1.656e-05 0.01495 0.0009225 0.01201 9.056e-05 0.007158 0.5852 0.002112 0.004862 0.0009992 0.002745 0.0006405 0.008461 0.004281 0.0002955 0.0003664 0.6405 0.002008 0.5719 0.01174 0.00156 0.3447 0.004442 0.004783 0.0004391 4.527e-05 0.003673 0.002158 0.02479 0.004201 0.0005084 4.632e-06 0.0002924 0.00683 0.002512 0.6402 0.004661 0.007252 0.001244 0.0002542 0.008813 0.0005739 0.0001142 0.000183 0.6089 0.005087 0.0004663 0.006849 0.006096 0.006104 0.01367 0.5854 0.0007171 0.001981 0.0001949 0.004046 0.001174 0.003943 0.6264 0.0007871 0.1206 0.001814 0.5371 0.01584 0.0002614 0.00602 0.003813 0.005899 1.27e-05 1.836e-05 0.4386 0.0004693 0.00261 0.008846 0.007069 0.007004 0.00026 0.004659 0.01706 0.01439 0.5442 0.002442 0.0001095 0.00754 0.0005494 0.0007239 0.0483 0.3297 0.006539 0.002235 0.0001784 0.00835 9.264e-05 0.02431 0.004325 0.159 0.0001695 0.004808 0.001014 0.4533 0.001054 0.01006 0.01402 0.01195 0.5511 0.5494 0.001787 0.2092 0.0005091 0.0187 0.001509 0.0009217 0.5717 0.000402 0.0001131 8.595e-05 0.0007656 0.0004745 0.000116 0.001187 0.1421 0.0009298 0.5654 0.001748 0.006386 0.02382 0.0009284 0.002042 0.00662 0.007517 0.001836 0.03703 0.01034 0.5379 0.002386 0.001446 0.001168 0.006786 0.6377 0.002062 0.0002549 0.005137 0.4562 0.0006607 0.01834 0.01481 0.0005362 0.0001679 0.001402 0.009936 0.0004275 0.001495 0.005135 0.003717 0.0002937 1.1e-05 0.0001141 0.005392 0.4796 0.006084 2.652e-06 4.798e-05 0.01038 0.03685 0.001552 0.0006992 0.0005647 0.001278 0.001136 0.01173 1.171e-05 0.0005657 0.001114 0.3879 2.191e-06 0.000165 7.193e-06 0.002008 0.004725 0.0002375 0.001066 0.01367 0.01186 0.0001978 0.004178 0.002013 1.089e-05 0.005837 0.1415 0.009343 0.007118 0.006186 0.007136 0.003562 0.007953 0.001458 0.0003278 0.002442 0.001569 9.263e-06 0.00103 0.0003463 0.02256 0.5566 0.5231 0.0006895 0.0002241 7.633e-05 5.486e-05 0.07717 0.0001556 0.0008884 0.001948 0.5726 0.002306 0.008562 1.557e-05 0.0009676 1.284e-05 0.004972 0.02376 0.009733 8.946e-05 0.008594 0.002998 0.297 0.0003935 0.0004362 0.00387 0.000426 0.5353 0.5421 0.00193 0.00135 4.044e-06 0.003211 0.004299 0.001371 0.01018 0.08335 0.6425 0.5236 0.01007 0.0001336 5.352e-06 0.01708 0.0005985 0.004433 0.0001755 0.009936 0.0008675 0.009235 8.786e-06 0.6197 0.006802 0.0002446 0.0001418 0.5474 0.0001111 0.03033 1.277e-05 0.0001683 1.228e-05 0.005571 0.007664 0.4708 0.006032 0.0005926 0.0006261 0.0003627 0.000602 0.002741 0.008647 0.04302 0.0001489 0.004271 5.296e-06 0.4566 1.115e-05 0.06684 0.001407 0.3589 7.365e-06 0.0004897 0.0008401 0.5725 1.466e-05 0.002912 1.34e-05 0.002662 0.5734 0.01249 0.004738 0.02633 0.02087 1.584e-05 0.008831 0.03802 0.0002783 0.008876 0.001464 0.001171 0.001293 0.001768 0.03007 0.008881 9.563e-05 0.0004601 0.5797 0.5721 0.2476 0.004531 0.001847 0.0004457 0.00337 0.5581 0.001424 0.002237 0.5113 0.00386 0.001841 0.0551 0.0005798 0.003178 0.005515 0.3043 0.002955 0.5513 0.4621 1.762e-05 0.0008992 0.04063 0.2065 0.001137 0.0311 0.0001293 0.001297 0.005653 0.08291 0.006738 1.024e-05 0.5575 0.5817 0.01275 0.002749 0.002361 0.0001427 0.01298 0.003426 0.0005832 0.01436 0.006154 0.01453 0.0007356 0.5715 0.1467 0.1454 0.03254 0.001357 0.1738 0.008271 0.0005127 3.081e-05 6.643e-06 0.001232 0.004643 0.004257 0.003347 0.09507 0.00174 0.0004244 0.02404 0.003994 0.005566 0.0003631 0.5609 0.5661 0.001204 0.0008112 0.00214 0.005083 0.002255 0.007027 0.002299 0.1918 0.01088 0.5758 0.3078 0.0008686 0.5731 0.0004407 0.001006 0.009314 0.0013 0.0004061 0.4075 0.00327 0.01155 0.0001457 0.0005724 6.091e-06 0.05615 0.414 0.5501 0.1192 0.0008289 0.0004734 0.01001 0.4137 0.0007942 0.0002664 0.0006947 0.001798 0.08329 0.03256 0.5258 0.004506 0.4103 0.003418 0.003025 0.001505 0.0002618 0.005418 0.00972 9.085e-05 0.007682 0.00301 0.0023 5.348e-05 0.0007438 8.463e-05 0.02691 0.2933 8.117e-06 0.001401 0.0004109 0.004041 0.4311 0.0003897 1.431e-05 0.003075 0.002318 0.004266 0.0002092 0.0001167 0.0004097 0.001997 0.00304 0.0003355 0.005356 0.01636 1.197e-05 0.1255 0.0006879 0.005839 0.003756 0.001895 0.003093 0.6481 0.0002569 0.0003998 7.411e-05 0.005572 0.07057 7.44e-05 0.004405 0.5055 0.0008839 1.229e-05 0.004831 0.0001605 0.0004134 0.04179 7.687e-06 3.272e-06 0.0009163 0.001599 0.0101 0.0004001 3.435e-06 0.006272 0.0474 0.0002811 0.000813 0.007809 0.0003646 0.04021 0.0006399 0.004647 0.01699 0.002024 0.003207 0.5666 0.006975 0.0009306 0.0003704 0.002167 0.01344 0.003679 0.0008138 0.02466 0.004839 0.001253 0.005986 0.0001169 0.002004 0.001127 0.01197 0.01058 1.358e-05 0.33 0.0002733 0.02794 0.5793 0.06581 0.0004833 0.009017 0.4523 0.0003126 0.0002086 0.0001622 0.3849 0.005371 0.001714 0.0009615 9.661e-06 0.003368 0.03319 0.001678 0.4972 0.003057 0.005094 0.00193 0.001369 0.008424 0.003739 0.003579 0.005052 0.005559 0.01414 9.824e-06 2.552e-06 0.0004285 0.1092 0.0002615 0.01494 0.3843 0.0005526 0.03282 0.003178 0.005829 0.008327 0.5652 0.009356 0.002574 0.01415 0.03291 0.2594 0.00593 0.002403 1.377e-05 0.5813 0.5892 0.5577 0.003377 2.205e-05 1.653e-05 0.0004473 0.000235 0.008044 1.103e-05 0.00115 0.002471 0.553 0.001542 0.001406 0.03305 0.0002968 0.004063 0.5106 1.302e-05 0.0005871 0.4073 0.01313 0.001485 0.5582 0.005983 0.002844 0.01729 0.5702 0.0005536 0.001846 0.002426 0.3198 0.004834 8.848e-06 0.01761 8.779e-05 0.0004056 0.002767 0.07848 0.000953 0.001547 0.0008241 0.0003895 0.03382 0.003627 1.148e-05 0.005745 0.01023 0.0006807 0.003218 0.005227 0.0007885 0.5496 0.02814 9.495e-06 0.0205 0.001613 0.001429 0.006144 0.5367 0.3377 0.0001029 0.001503 9.722e-05 0.4522 0.07382 0.01324 0.0007651 0.0002277 9.637e-05 0.004716 0.001572 0.00183 0.0121 0.002343 0.001497 0.005002 0.01093 0.004411 0.0002951 0.5468 0.0002762 0.0004705 0.1615 0.09806 0.4817 0.01487 0.00157 0.5732 0.001356 0.008362 0.003906 0.001382 0.006012 0.1567 0.001866 0.002389 0.5502 0.0009722 0.0003125 0.6197 8.435e-05 0.006494 0.0008662 0.001006 0.001829 0.006542 0.008644 8.642e-05 0.01949 0.3577 0.4395 0.6388 0.0002314 0.001176 0.0007663 0.2881 0.005248 0.001717 0.2854 0.03228 7.302e-06 0.003294 0.002906 2.517e-06 0.02108 0.0004612 0.0007962 0.00152 0.3173 0.0001132 0.0001578 0.02881 0.03263 0.5659 0.005157 0.2012 0.01524 0.001366 1.168e-05 0.002301 0.001381 2.495e-05 0.003131 9.226e-05 0.002241 0.004291 0.001143 0.00016 0.0002635 0.2317 0.001262 0.5694 0.003615 0.005298 0.0085 0.1898 0.01405 0.000393 0.4744 0.5115 0.0005951 5.757e-06 0.003512 0.0005257 0.02609 0.0001353 0.0009337 1.697e-05 0.001295 5.633e-06 0.02154 0.00416 0.001085 0.01367 0.5711 0.005003 0.0002809 0.5586 0.004805 0.001194 0.001826 0.003211 0.0003216 0.0008784 0.002257 0.001848 0.001305 0.5786 0.0002074 0.007593 0.01236 1.454e-05 8.809e-05 0.000697 0.5406 0.001977 0.001876 2.91e-05 0.003617 1.19e-05 0.001918 0.0001274 0.00285 0.01942 0.001441 0.2146 0.007824 0.0002564 0.1141 0.00963 0.5587 0.01805 0.0001233 0.01538 0.07368 0.5302 0.3644 0.2115 0.01173 1.028e-05 0.003168 0.0004688 0.00478 0.00143 0.0001825 0.5688 0.332 0.002098 0.004465 0.06286 0.4695 0.01283 0.0001758 0.01208 0.5689 0.003013 0.05171 0.00408 0.00661 4.149e-05 0.5289 0.001273 0.5938 0.0007477 0.00526 0.1411 4.816e-06 0.001603 0.1871 0.001597 0.0001698 1.63e-05 0.5548 0.3886 0.001028 0.002118 0.02031 0.000868 0.01361 0.0002287 0.0009301 0.5529 0.0017 0.03496 0.01386 0.004341 0.0001996 0.01182 0.002339 0.573 0.0257 0.004132 0.573 0.0003217 0.0001066 0.0001239 0.00975 0.03217 0.02459 0.001851 0.5408 0.004764 0.2566 0.0221 0.002821 1.75e-05 0.003237 0.0008417 0.001475 0.03939 0.02128 0.02168 0.001531 0.05403 0.004786 0.0008781 0.006642 0.0003914 0.005719 0.002756 1.54e-05 0.001355 0.0001446 0.003403 0.5567 1.264e-05 0.002585 0.003625 0.001027 0.001224 0.02119 0.007728 0.001698 0.0005712 0.3494 0.0001262 0.1126 0.004577 0.008149 0.6037 0.003385 2.653e-06 0.6017 0.0007255 0.02291 0.5105 0.0009456 0.1207 9.074e-05 0.0003505 0.0007029 0.001798 0.0004433 7.007e-05 0.003328 0.01185 0.007432 0.5802 0.5773 0.0002789 0.0004286 0.004095 0.5697 0.02156 0.002048 4.693e-05 0.06141 0.003006 2.839e-07 0.0006396 0.001635 0.001004 0.0131 0.0005508 0.00251 0.05785 0.4192 0.3396 0.0008667 2.893e-05 0.000299 0.5717 0.004951 0.02204 0.04606 0.001114 0.002726 0.4391 0.3777 0.004146 0.04336 0.01935 0.0007751 0.0006545 0.0008831 0.004426 0.609 0.002317 0.003985 0.0111 0.0003555 0.0008808 0.5716 1.385e-05 0.00134 0.0001656 0.0004534 0.001111 0.01419 0.01179 0.000998 0.001796 0.001585 0.001301 0.02968 9.205e-06 0.4221 0.003582 0.01031 0.0007667 0.0844 0.004396 0.09483 0.004879 1.084e-05 8.928e-05 0.5423 0.03348 0.004095 0.0141 3.889e-06 0.004391 0.005176 0.02326 5.924e-06 0.1832 0.002709 2.321e-06 0.003617 0.005261 0.0007988 1.292e-05 0.0006101 9.619e-06 0.1371 0.3239 0.01709 0.005201 0.3827 0.01393 0.3035 0.09946 0.0005678 1.673e-05 0.5957 0.002873 0.0002948 0.4461 0.00361 0.5045 0.008348 0.0146 0.01453 0.0005951 0.001191 0.001126 0.008693 0.002234 0.01065 1.234e-05 0.575 0.001083 0.4729 0.4097 0.005019 0.006947 0.05198 0.0006118 0.001196 0.01255 0.5688 0.000465 0.0005545 0.0002135 0.4332 0.00815 0.3053 0.002603 0.0007662 0.0002899 0.0003449 0.5579 0.001593 0.04058 0.01461 0.006068 0.00432 0.3711 4.471e-05 0.007906 0.0001662 0.02145 1.413e-05 0.001603 0.002823 0.0001459 0.0007064 0.01705 0.1671 0.01377 0.1783 0.0008972 0.004901 0.01714 0.003139 0.002946 0.4185 0.02262 3e-05 0.001581 0.4282 0.013 0.0003215 0.0002174 0.009129 0.002246 0.3812 1.352e-05 0.003446 0.0002596 0.02873 0.005815 2.482e-05 0.005214 1.602e-05 0.0004792 0.003064 0.01423 0.009408 0.002433 0.56 0.1007 0.002194 0.5323 0.502 3.926e-06 1.81e-05 0.001048 0.002929 0.1144 0.3758 9.662e-06 0.0006415 0.01178 0.2395 0.0002948 1.76e-05 0.1277 0.01115 0.002975 6.758e-05 0.02228 0.003315 1.657e-05 0.5628 0.001133 1.366e-05 0.005484 0.02079 0.002932 0.01864 0.4391 0.002115 0.0003085 0.0004929 0.000263 0.0003315 0.000322 0.002545 0.02633 0.0001148 0.001415 0.005582 0.002042 0.002791 0.001987 0.6376 0.3055 0.5752 0.001999 0.5724 0.5666 0.0006996 0.002722 0.1392 0.005809 0.0006076 1.091e-05 0.0003133 0.000175 0.2085 0.008084 9.946e-05 2.493e-05 0.01438 0.002944 0.001823 0.5617 0.1656 1.418e-05 0.5787 1.592e-05 0.2079 0.001689 0.003995 0.001291 0.001109 0.03064 0.0007127 0.003629 0.2898 0.5885 0.001684 0.000534 7.035e-06 0.07028 0.000329 0.001483 0.005217 0.0007216 0.0007913 0.003286 0.002869 2.426e-05 0.09914 0.00195 0.003861 0.001316 0.002763 0.0005349 0.4768 0.0008904 0.011 0.0005421 0.5807 0.06004 0.007568 0.007077 0.002935 0.2105 1.338e-05 0.003185 0.0003449 0.04373 0.5796 0.00138 0.01012 0.004773 0.004875 0.05313 0.4883 0.0001564 0.3521 0.0003957 6.484e-05 0.1413 0.3511 0.002815 0.0003799 0.001297 0.0009293 0.001426 0.0003547 0.000592 0.001206 0.003765 0.001155 0.0008534 0.0001828 0.008207 0.01389 0.00249 0.006035 0.004691 0.2335 0.01103 0.006567 0.0004018 0.01011 0.006166 0.3 0.1551 0.373 0.009332 0.0003397 0.00156 0.001804 0.3112 0.3109 0.003286 0.0004429 0.5756 0.04219 0.002202 0.0004173 0.0001142 0.002973 1.421e-05 0.01139 0.003178 4.648e-05 0.06991 0.5566 0.01654 7.461e-05 0.0009106 0.0005174 0.4733 0.007555 0.00479 0.002528 0.1526 0.0001216 0.0001251 0.005141 0.3001 0.5942 0.003122 0.006725 0.01965 0.0001499 0.003472 0.4947 0.001135 0.05279 0.01024 0.002504 0.001107 0.04714 0.001674 0.0002729 0.0002258 0.441 0.0005738 0.002267 0.0007348 0.007702 0.0001043 0.002204 6.701e-05 0.0003204 0.002606 0.001028 0.0009882 0.001756 0.1733 2.026e-05 0.00822 0.007019 0.001909 0.001103 0.06232 0.001036 0.4263 0.5798 0.0003462 4.438e-05 0.000509 0.005156 0.005445 0.001943 1.082e-05 0.001912 0.5523 0.0007182 0.001382 0.0296 0.005466 0.00106 0.004422 2.184e-05 1.642e-07 0.003503 0.03417 0.6168 0.03322 0.02693 0.001328 0.01782 0.03207 0.0005705 0.0009894 0.001354 0.01011 0.3648 0.0004667 0.427 0.001027 0.005409 0.003935 0.0004131 0.01432 0.02103 0.005001 0.001155 1.798e-05 0.005859 0.0005992 0.004749 0.01733 0.005263 0.004579 0.00434 0.0001098 0.0002337 0.4955 0.01067 0.004257 0.001368 0.005309 8.129e-05 0.01372 0.4263 0.5585 0.2314 0.426 0.5762 6.081e-05 0.002665 0.003271 0.0003169 0.3636 0.2999 0.001321 0.5596 0.1054 6.196e-05 0.5508 0.008461 0.06445 0.004114 0.0001154 0.5407 0.0007643 0.0002576 0.001809 0.01477 0.007731 6.583e-05 0.571 0.03309 0.0004385 0.2576 0.0002621 0.02305 0.003517 0.001124 0.002129 0.000436 0.0493 0.5586 0.5867 0.0004687 0.001041 7.588e-05 0.02671 0.001806 0.3643 0.5765 0.001927 0.0002471 0.01406 0.01332 0.01633 0.1795 7.474e-05 0.00235 0.4228 0.006519 0.009281 0.009049 0.0001719 0.4889 0.003375 0.000792 0.1052 0.04415 0.001769 0.003157 0.1037 0.000374 0.02701 0.0001112 0.004085 0.01029 1.659e-05 0.2386 0.001068 0.00249 0.007499 0.00311 1.569e-05 0.001476 0.002328 0.0103 0.0006389 0.004014 0.001386 0.001377 0.01403 0.0001392 0.00405 0.001567 0.001676 0.001668 0.002046 0.05378 0.003823 0.3307 0.3699 0.001733 0.0002653 0.1666 0.006252 0.5752 0.003316 0.4281 0.006147 0.009714 0.0007624 0.001678 0.002071 0.5686 5.069e-05 0.009156 0.002672 0.0503 0.02682 0.01196 0.01805 0.007674 0.2761 0.05414 0.001118 0.0001927 0.0002744 0.5844 0.4147 0.04577 4.827e-05 0.000223 0.006169 0.01357 0.0007497 0.024 0.5155 0.001203 0.01176 0.0004594 0.05876 0.4228 8.167e-05 0.001556 0.007254 0.02878 0.001371 0.02287 0.0003901 0.0003082 0.00692 0.0008177 0.0004835 0.00869 0.01893 0.000964 0.00446 0.001064 6.114e-06 0.004146 0.5735 0.01112 0.3178 0.0004043 0.006251 0.007099 0.02786 0.5088 0.003331 0.001625 7.389e-05 0.008432 0.02552 0.03346 0.0001214 0.01132 0.3739 6.722e-06 0.01017 0.001648 0.05701 6.985e-05 0.004949 0.08671 1.592e-05 0.1045 0.003606 1.225e-05 0.001832 0.001244 0.05202 0.0001183 0.473 0.02699 1.231e-06 0.6429 0.004674 0.4076 0.2885 0.004235 0.4069 0.006874 0.0004239 0.3714 0.001054 0.006619 0.006629 0.4881 1.149e-05 0.0001786 0.2195 5.493e-05 0.007491 0.0003755 0.001094 0.0003254 0.5721 6.867e-06 0.5819 4.08e-06 0.001716 0.0003091 0.0006932 0.0352 0.3542 0.3543 0.00139 5.129e-06 0.002564 0.4545 0.2183 0.4856 0.07412 0.005075 0.001012 0.001954 0.008784 0.0005205 0.02736 1.318e-05 0.3212 0.0001433 0.5692 0.3876 0.001471 0.05841 0.0001234 4.392e-06 0.4531 0.4144 0.002013 0.002639 0.4307 0.002334 0.004496 0.1016 6.825e-05 0.2565 0.000138 0.007971 0.001865 0.002363 0.0006854 0.0172 0.009878 0.06355 0.001835 0.0002573 0.0003483 0.0002079 0.00322 0.0003382 0.004097 0.001493 7.02e-05 0.001117 0.02123 0.000797 0.001746 0.001424 0.009629 0.00531 4.8e-06 0.0007506 0.0004351 0.000575 1.045e-05 0.01191 0.3318 0.3319 0.002761 0.004092 0.004288 0.002323 0.0004087 0.0001271 6.392e-07 0.08285 5.324e-06 0.002113 0.00615 0.5577 0.569 0.0004392 0.001093 0.002699 0.0008546 0.00231 0.06005 0.0006177 0.005174 0.001529 1.875e-05 0.334 0.02272 0.5647 0.004909 0.2391 0.0007011 0.5631 0.005958 0.01537 0.427 0.0005961 0.4078 0.001735 0.002156 0.007336 0.0005266 0.008994 0.001162 1.242e-05 0.003459 0.00891 1.53e-05 0.001523 0.004554 0.5041 0.6297 0.0005926 0.5306 0.000913 0.003071 0.0007415 0.5018 0.0001411 0.5476 0.0012 1.049e-05 0.003247 0.005619 0.0007548 0.4911 0.003812 0.5785 0.003258 0.5648 0.004087 0.001585 0.00904 0.007497 0.001848 0.002331 0.0001314 0.000738 9.436e-05 4.03e-05 0.005389 0.009574 0.000892 8.246e-05 0.009445 1.177e-06 0.0008984 0.008191 0.5985 0.007367 0.4397 3.479e-05 0.07407 3.936e-05 0.003075 0.007889 0.009657 0.002314 0.005897 0.01454 0.006873 0.4318 0.0001677 0.4015 0.004485 0.001228 0.00159 0.0006007 0.005459 0.57 0.005017 0.0003054 0.003847 0.0009554 0.007612 0.4045 0.2788 0.0003398 2.72e-05 0.5724 0.02024 0.03338 1.086e-05 4.291e-05 0.001828 0.044 0.001271 0.5802 0.003997 0.0318 0.001174 1.248e-05 0.4516 0.0002942 0.001507 0.009357 0.001368 0.0002544 0.5719 0.003447 0.0009333 0.01966 0.001683 0.0007641 5.441e-05 0.5935 0.003534 0.5687 0.4353 0.003938 0.5007 0.004102 0.0004722 4.032e-05 2.052e-05 0.0425 0.006576 0.1201 0.2481 0.0009286 0.0004971 0.3893 0.006619 0.006408 0.04269 0.004459 0.2616 0.03568 0.001319 0.001349 0.007891 0.0447 0.001931 0.01178 0.03152 0.2863 0.2857 0.3453 0.004216 0.0001345 0.002328 0.02621 0.005331 0.001495 0.0006387 0.09524 0.0003794 0.008292 0.005789 0.001807 0.0001379 0.00062 0.001457 0.0003454 0.008343 0.002986 0.0003482 0.000122 0.0006049 0.01906 0.009635 0.5281 0.01159 0.001118 0.003535 0.004711 0.00534 0.00179 0.001239 0.002041 0.000238 0.644 0.01001 0.004997 0.001475 0.00126 0.001107 0.00278 0.02692 0.0006012 0.4159 7.896e-05 0.001678 0.003058 1.736e-05 0.0009513 0.07523 0.0006038 1.249e-05 0.2192 0.0006923 0.3882 0.142 0.001196 0.0004072 0.0005659 0.5712 0.009377 1.565e-05 1.078e-05 0.01956 0.004197 0.001225 0.01068 0.4322 0.003519 0.5791 0.03693 0.5676 6.661e-05 1.047e-05 0.00016 0.1869 0.0002613 6.068e-06 0.0004896 0.01847 0.004447 0.5757 0.0003818 0.001117 0.0008489 3.622e-05 0.00815 0.002218 0.004055 0.001149 0.0112 0.005311 0.004764 0.004109 0.1453 0.003987 0.2288 0.003269 0.0002784 0.0001226 0.03807 0.5407 0.0001928 0.03817 0.0002645 0.002762 0.0001429 0.0001491 0.558 0.001194 0.0001286 0.009748 0.006818 0.006864 1.693e-05 0.623 1.278e-05 0.004962 5.517e-05 0.0001515 0.008503 0.5584 0.0001667 6.809e-05 0.001577 0.004434 0.005729 7.429e-06 0.006346 0.4204 0.06847 1.184e-05 1.171e-05 0.00978 0.006869 0.005373 0.002713 0.3706 0.001139 0.5756 0.4717 8.976e-05 0.006183 0.02432 0.003625 0.0001274 0.3625 0.01998 0.006724 0.4385 0.02412 0.01619 0.001227 0.01409 0.06599 0.001815 0.000657 0.01861 0.0002071 0.1306 0.4925 0.4116 0.001306 0.00472 0.4256 0.01373 0.05392 8.298e-05 0.01888 0.001228 0.0001321 0.0008617 0.5494 0.5978 0.0002452 0.4428 0.001474 0.001087 0.009814 0.01342 0.0001047 0.5985 0.001186 4.163e-05 0.02958 0.351 0.001466 0.5981 0.1873 0.01323 0.003416 0.00686 0.2813 0.009714 0.002253 0.2394 0.002581 0.002739 0.0003284 0.00236 1.001e-05 0.001906 0.3228 0.00073 0.003547 0.07087 0.00248 0.003212 0.0002745 0.007189 0.5677 0.0006677 0.002948 8.178e-05 0.006419 0.01018 0.008545 0.5595 0.01925 0.001305 0.001554 0.0454 0.007757 0.0007144 0.03142 0.006622 0.01512 0.03379 0.0001284 0.5399 0.0007189 0.002903 0.002855 0.0004863 1.128e-05 0.000746 0.000693 0.3789 0.006173 0.4689 9.666e-05 0.6276 0.0006558 0.3586 0.4138 0.002027 0.02264 0.004244 0.003127 0.4614 0.001147 0.001294 0.0001347 1.218e-05 0.001364 0.006842 0.0661 0.004746 0.001321 8.034e-05 0.0002947 0.0005577 0.004768 0.002588 0.3977 0.005705 0.0001574 0.003971 0.003019 0.005819 0.285 0.2395 0.005216 0.01022 0.005351 0.001751 0.01242 0.007558 0.003669 0.0004571 0.07955 0.2775 0.0007966 0.00157 1.279e-05 0.001937 0.02242 0.000434 0.003361 0.004174 0.01038 0.006906 0.07382 0.007829 0.009648 0.2126 0.5744 0.001492 0.009835 0.0146 0.4837 0.001133 0.002738 0.4841 0.0002033 0.002511 0.005806 0.01637 0.0007314 0.5323 0.03444 0.5833 0.0009423 0.0001954 0.00388 0.002427 7.422e-05 0.5684 0.1122 0.002194 0.001776 0.4069 0.005698 0.001722 0.000849 0.001902 0.004605 0.3972 0.5612 0.5797 4.368e-05 0.006431 0.3975 0.01715 0.001553 0.0005299 0.01437 0.004046 0.006874 0.4199 0.0008074 0.6671 0.000181 0.0002596 0.01521 0.5749 0.443 0.0001496 0.001429 0.07785 0.02131 0.3668 1.396e-05 0.4787 0.001975 1.484e-05 0.001608 0.004646 0.4625 0.001402 0.004736 0.0002216 0.001584 0.004839 0.001424 0.02925 0.005467 0.244 0.02441 0.0007898 0.03264 0.001273 1.274e-05 0.003938 0.002764 0.01453 0.5737 4.729e-06 0.00472 0.000248 0.0004678 0.5782 0.02455 0.5299 0.008933 0.02047 0.1083 0.0003075 0.01669 0.007024 1.261e-05 0.003619 0.02225 0.003473 0.002868 0.00325 0.005341 0.004062 9.965e-06 0.001799 0.004945 0.002061 0.000132 0.005053 0.3995 0.0001936 0.008832 0.003467 0.0005615 0.0003715 0.0001772 0.001675 0.000324 0.0002753 6.028e-05 0.01063 0.001207 0.3549 0.6048 0.5137 0.007294 9.039e-06 0.001005 0.04387 0.01603 0.005633 0.0004646 0.00273 0.0005468 0.007318 0.001053 7.652e-05 8.964e-05 0.007595 0.001706 0.003036 0.6063 0.1267 1.163e-05 0.005408 0.01031 0.0005647 0.001082 0.0429 0.00536 4.876e-05 0.01738 0.0001751 7.799e-06 0.5794 0.09926 0.02931 0.0009491 0.0002481 0.4395 0.1948 0.2925 0.2946 0.0002215 1.291e-05 0.4559 0.0005197 5.481e-05 0.001444 5.64e-06 0.000987 0.3959 0.6119 0.5705 0.001122 0.001054 0.4629 0.01126 0.005301 0.000243 0.03203 0.01115 0.003321 0.0008292 0.004811 0.0004476 0.04669 0.0002078 0.008004 0.001487 0.0001044 0.01367 0.008041 0.0001487 7.745e-06 0.05225 0.0001094 1.206e-05 0.01771 0.5594 0.3845 0.05768 0.3295 0.00621 0.04191 0.0103 0.3731 0.003507 0.0002323 0.06267 0.008685 0.001208 0.08294 0.0003466 0.001451 0.001712 0.002381 0.4609 2.875e-05 0.01559 0.5659 0.333 0.0001847 1.353e-05 0.003665 0.0009784 0.0004148 0.0006704 0.000845 0.007567 0.0001317 0.01144 0.3249 0.002297 0.0001451 0.0005608 0.006205 0.1006 0.001321 0.531 0.002598 0.0009005 0.001311 0.001657 0.0001127 0.0005734 0.003258 0.0004993 0.0861 0.3156 0.007125 8.452e-05 0.002419 0.2811 0.001321 0.002347 0.007266 0.0001649 0.001385 0.000302 0.00413 0.002775 0.01672 0.0004283 0.592 7.298e-05 2.82e-05 0.0001083 0.008187 6.663e-06 0.2894 0.0003447 0.3159 0.007426 0.3087 0.001495 0.5657 0.398 0.005399 0.02216 0.00175 0.0013 0.000271 0.00695 0.3412 0.003978 8.773e-06 0.457 0.001489 0.002764 0.001976 0.00277 0.01093 0.6483 0.477 0.0001947 0.5886 0.5715 0.0001534 0.0008332 0.3204 0.5827 0.5305 0.3368 0.5922 0.0003525 0.3771 0.6258 0.0002234 0.0007274 0.001972 0.003916 0.0004579 0.4964 0.5689 0.0005424 0.0005899 8.761e-06 0.001409 6.127e-05 0.2154 0.002203 0.0003992 0.01046 0.5426 0.0002009 0.001047 0.0004735 0.0007718 0.03959 0.003355 0.03505 0.01578 0.002079 0.003403 0.05874 0.0002305 0.001983 0.0005126 0.5738 0.001775 0.4655 5.393e-05 0.006974 0.001728 0.009724 1.305e-05 0.173 0.175 0.004676 0.5874 0.002304 0.0001178 9.123e-05 0.0005384 1.797e-05 0.002654 0.3952 0.04614 0.01157 6.133e-05 0.0009343 0.03945 0.08575 0.03594 0.04408 0.02171 0.1439 0.0421 0.2954 0.0009129 0.5568 0.0003887 0.05607 0.0005196 0.006681 0.3129 0.5759 0.000632 0.08367 8.297e-06 0.001018 0.005599 0.007318 0.5939 0.008468 0.4912 0.0066 0.008952 0.00182 0.5598 0.05578 0.005265 0.00118 0.003737 0.001028 0.0121 0.0007749 0.03705 0.00247 0.3526 0.00472 0.01012 2.023e-05 0.001315 6.319e-05 0.002074 0.0002918 0.000335 0.001548 0.0001439 2.476e-05 0.001386 0.01774 0.001197 0.003086 0.5642 0.07263 0.0001909 0.0001572 0.0009978 0.008795 0.5791 0.01022 0.5743 0.5546 0.02284 0.01329 0.0008549 0.005137 0.00308 0.0003036 0.001441 0.003147 0.0003879 0.004189 0.0001237 0.0001139 0.5624 0.01322 0.002078 0.006149 0.3158 0.0008111 0.001633 0.5708 0.002194 0.4231 0.0006256 0.5301 0.01821 0.002806 0.003723 0.01227 0.05919 0.002117 0.003586 0.0008137 0.007547 0.5587 1.651e-05 0.01622 0.01006 0.001512 0.527 0.002743 0.0002302 0.0002368 0.2163 0.001103 8.582e-06 0.001743 1.581e-05 0.01934 0.03093 0.004739 5.857e-05 0.0004731 0.003579 0.3354 0.01573 0.01456 0.001616 9.126e-05 0.4219 0.02219 0.002708 0.0009435 0.5718 0.4569 0.2999 0.001258 0.002472 0.00755 7.857e-05 0.0003379 0.001773 0.00679 0.0004641 0.004002 0.00187 0.004993 5.087e-07 0.0002765 0.003511 0.0004009 0.0001291 0.0005738 0.002401 0.0002257 0.005302 0.05496 0.001737 0.01498 0.308 0.008597 0.03599 0.01271 0.0005964 0.006353 0.000908 0.005688 0.1204 0.2148 1.566e-05 0.0276 0.5731 0.00408 0.5708 0.4489 0.001051 0.3093 0.006343 0.003891 0.01163 0.001855 0.000296 0.6057 0.0008419 0.002425 0.002846 1.247e-05 0.02195 0.005256 0.0001841 0.0003498 0.4448 0.01011 0.558 0.0001838 1.773e-05 0.004392 0.01722 0.001074 0.0396 0.0005268 0.00106 0.02528 0.002887 0.5666 0.0001163 0.02215 0.01387 0.0001855 0.0001484 0.04354 0.007288 0.007093 0.01297 0.007075 0.007542 0.02021 0.01269 0.001808 0.004793 0.00275 0.004767 0.0002973 9.609e-06 0.0001536 0.03409 0.01104 0.0002463 0.005339 0.0001825 0.001088 0.6202 0.5853 1.005e-05 0.00248 0.0002389 0.0095 0.0001783 0.001629 8.733e-06 0.003713 0.0001656 9.937e-05 0.00142 0.0008864 0.0002682 0.0005042 0.002858 4.586e-05 0.02991 0.006814 0.03603 0.4172 0.004518 0.003227 0.007559 0.0006804 0.1659 0.005526 0.0006709 0.0003665 5.944e-05 0.2995 0.00592 0.0001798 0.009634 0.007025 0.005437 0.003813 0.002152 0.002532 3.881e-05 0.00651 0.003092 0.0006445 8.259e-05 0.2804 0.006199 0.0002266 0.03586 0.0001015 0.2202 1.065e-05 0.0003083 0.005371 1.99e-05 0.001616 8.063e-06 0.003106 0.0002158 0.0002865 0.0008905 0.0006995 0.02009 0.0001956 7.491e-05 0.005937 0.5758 0.004631 0.001962 0.003365 0.01554 0.007835 1.316e-05 0.0005369 0.0008682 0.0003736 0.001634 0.005508 0.0004414 4.167e-06 0.01141 0.003063 0.001858 0.004304 0.0003565 0.399 0.006814 0.03663 7.876e-06 0.1354 1.143e-05 0.01126 0.001482 0.428 0.0009462 0.005083 0.0006311 0.004138 0.002049 0.1043 0.53 0.0008836 0.002825 0.002618 0.004313 0.003368 0.004297 0.004539 0.000207 7.2e-05 0.004405 0.01293 0.00253 0.4336 0.002858 1.099e-05 0.000447 1.145e-05 0.009977 0.00517 0.0003878 0.001642 0.007435 0.003475 0.4528 0.0001005 0.0007272 0.006 0.02022 0.004575 0.001167 0.009741 0.00675 0.001054 0.0001044 0.0006573 0.4206 0.001323 0.06202 0.001181 0.0004006 0.0008199 0.2058 0.00174 0.003526 0.0008897 0.01363 2.414e-05 0.1495 0.3334 0.01784 0.0002803 0.002573 0.001162 0.000485 0.004119 1.231e-05 0.003231 0.0007222 0.0005907 0.0001668 0.0004876 0.006697 0.007557 0.004026 0.02283 0.005373 0.0001814 0.001579 0.0001785 0.01177 0.003396 0.003878 0.0002473 0.0002801 0.0001589 1.161e-05 0.4279 0.005261 0.5931 0.02374 0.02788 0.0006607 0.004498 0.0007334 0.0008465 0.002239 6.609e-06 0.00126 0.03836 0.5318 0.001183 0.0145 0.5658 0.5326 0.05605 0.004909 0.0002874 8.601e-05 0.002937 0.004604 0.01404 0.2781 0.001185 0.03746 0.01736 0.0007934 0.001232 0.01003 0.0004242 0.00182 0.003263 0.02779 0.403 0.0002587 0.001294 0.0003448 0.005362 0.001474 0.002633 0.4454 0.002645 0.1601 8.698e-06 0.003507 0.2055 0.5553 0.02415 0.005828 0.003723 0.0003298 0.2127 0.01764 0.001936 0.0003794 0.002218 0.4548 0.0004679 0.4302 0.0005376 0.02433 0.01401 0.001531 0.001264 0.01072 0.0001422 0.0003047 0.0007749 0.01216 0.001021 0.01408 0.0005943 0.0003324 0.002879 0.0009242 0.0001463 0.02369 0.007455 0.07081 0.0002705 0.04853 0.0001868 0.004016 0.01485 0.01052 0.0001464 0.00791 0.0002619 0.0001077 0.001335 0.001178 0.002755 0.006696 0.0009171 0.009826 0.1123 0.001102 0.002221 0.5667 0.0006643 6.185e-05 1.326e-05 0.001983 0.002796 0.3421 0.573 0.0005425 0.49 2.556e-05 1.735e-05 0.0007546 0.00219 0.008015 0.005279 0.0835 0.01293 0.004871 0.09827 0.0003945 0.002684 0.006201 0.3853 0.0003069 0.4237 0.4603 1.163e-05 0.1821 1.566e-05 0.0181 0.3719 0.006797 9.571e-06 0.0001414 0.01516 0.003362 2.086e-05 0.001674 0.0005305 0.005694 0.5784 0.4689 0.0004876 0.0002856 0.007332 3.309e-06 0.001396 6.448e-06 0.0008813 9.32e-06 1.055e-05 0.0001202 0.0001029 0.005235 0.0004904 0.01945 0.001114 1.065e-05 0.000104 0.003773 0.02364 0.03776 0.003667 0.0002414 0.0004022 0.01464 0.5162 0.001114 0.0004832 0.0001163 0.0004384 0.07134 4.76e-06 0.0004362 0.0003956 0.004423 0.001977 0.02565 0.001371 0.5719 0.002463 0.05141 0.007263 2.878e-06 0.004605 2.175e-05 0.002234 0.0008027 0.0101 0.004385 0.4813 0.002357 0.004967 0.008546 0.003368 0.001043 0.003232 0.0001257 7.513e-05 2.368e-05 0.0005254 0.004345 0.0002065 0.00125 0.006943 0.001778 0.0009223 0.002102 0.001979 0.0007701 1.975e-05 0.00243 0.004393 1.62e-05 0.009141 0.0003182 0.0003786 0.01017 0.003042 0.00636 3.586e-06 0.000594 0.00552 6.433e-05 0.0002537 1.064e-05 5.472e-05 0.01836 0.0008815 0.007101 0.02474 0.001288 0.006208 0.00103 0.01364 0.00408 0.004809 0.0007203 0.0009183 8.549e-05 0.04021 0.003914 0.02922 6.858e-05 0.006358 6.181e-05 0.5559 0.6019 0.007493 0.4799 0.003684 0.003727 0.04756 2.341e-06 0.004045 0.005829 0.3477 0.02118 7.711e-06 0.002925 1.03e-05 0.0008923 0.5716 8.496e-05 0.00362 0.003487 0.002358 0.0002852 0.003408 0.001164 0.00283 0.003884 0.05252 0.006691 0.5584 0.5113 0.002082 0.607 0.01002 0.002884 0.009834 0.1349 0.00239 0.00483 0.001765 0.07168 0.004222 0.003074 0.4935 0.001022 1.047e-05 0.05554 0.005973 0.1645 0.00606 0.0007646 0.05542 0.01281 0.004711 8.749e-06 0.314 0.0004942 0.01522 0.03474 0.4619 0.01367 0.0004013 0.005516 0.001619 0.003868 5.28e-06 0.6017 0.003338 6.978e-05 0.5585 0.003263 5.707e-05 0.007932 0.01707 0.0007609 0.5361 0.0004944 0.001623 0.156 0.009054 0.003784 0.0002563 5.24e-06 0.5142 0.6099 0.0007733 0.0003145 0.003542 0.001212 0.002465 0.5511 0.0009242 2.809e-06 0.007013 0.5765 0.001174 0.006488 4.043e-06 0.008177 0.0008617 0.000551 0.005341 0.002214 0.5689 0.5164 3.422e-05 0.02523 0.02732 7.266e-05 0.4128 0.0009497 0.4355 0.004753 0.0409 0.003066 0.3152 0.0004617 0.0003157 0.07119 0.5596 0.596 0.008799 0.5598 0.4989 0.00041 0.0002451 0.0007303 0.3561 0.003848 0.002771 0.001817 0.0007008 0.005667 0.4941 0.0002629 0.0007661 0.08634 0.004992 5.55e-05 0.01021 0.001949 0.0005594 0.02801 0.001267 0.3317 8.243e-06 0.578 0.006972 0.0009398 6.322e-05 0.002252 0.005829 0.07963 8.664e-05 0.007147 0.001272 2.423e-05 1.683e-05 0.03208 0.000725 0.00299 0.01135 0.4603 0.02911 9.654e-06 0.001291 0.5041 0.0008255 0.5325 0.002964 0.07411 0.02388 0.4971 9.167e-06 0.002586 0.0005868 0.0003321 0.4436 0.001372 0.0002604 0.0001123 0.01572 0.0006347 0.004753 0.004621 0.002222 0.3297 0.2133 0.5609 0.3184 6.822e-05 0.4095 7.362e-05 0.0006626 0.002785 0.0002409 0.0003075 0.0008507 0.008113 0.005614 0.3957 1.77e-05 0.0007367 0.000477 0.008195 0.00605 0.01446 0.0005027 0.01518 4.641e-06 0.389 0.1189 0.01681 0.01608 0.0001641 0.6066 0.3851 0.004018 0.0003411 2.885e-05 0.0006558 0.3198 0.002679 7.396e-06 0.5716 0.0002568 0.2404 0.5825 0.4059 0.0008842 9.592e-05 0.006984 7.502e-06 0.04224 0.02081 0.01229 0.002687 0.01273 0.005471 0.3993 0.3722 0.0002464 0.007565 0.5863 0.01425 0.002895 0.008049 0.01398 0.005923 0.004802 0.005825 0.007014 0.002647 0.5733 0.6523 0.0002853 0.0007285 0.00955 0.005022 0.0008128 0.00137 3.35e-06 0.05063 0.0002994 0.002307 0.009126 0.04027 0.009658 0.00294 0.04808 0.0005813 0.003669 3.136e-08 0.005279 8.25e-05 0.0006798 9.75e-05 0.0067 0.006221 0.0002201 0.0009453 0.01557 8.573e-06 1.304e-05 5.857e-06 0.004508 0.001061 0.5681 0.08734 0.0001242 0.01199 0.5062 0.0005127 0.001233 0.001218 5.941e-06 0.003862 0.0002702 0.0001971 0.0007033 0.001317 0.004727 0.008438 0.004914 1.103e-05 0.011 0.01241 0.01976 0.00187 0.04083 0.003325 0.00019 2.092e-05 0.005284 0.5262 0.004406 0.000245 0.001593 0.004157 0.003895 0.006533 5.217e-05 0.0004394 0.0008674 0.004372 0.01585 0.007574 0.5823 8.318e-05 0.006158 0.4716 0.006171 0.003344 0.5752 0.001311 0.00158 0.08399 0.0009143 0.001509 0.0002877 0.0001667 0.0002975 0.0017 0.02279 0.005318 0.3787 0.003745 0.0002698 0.001527 0.003254 0.06932 0.02735 0.006216 0.023 0.01104 0.000717 0.008566 5.071e-05 0.001268 1.905e-05 0.03229 0.0001536 7.164e-06 0.01574 0.5685 0.00444 0.001715 0.003478 0.02143 0.002384 4.675e-06 0.0001071 9.882e-06 0.2333 0.001109 0.003452 0.005831 0.002456 9.883e-06 0.0008099 0.001008 0.0331 0.0008421 0.001048 0.01062 0.0007063 0.587 0.0002565 0.003601 9.168e-06 0.05953 0.004799 0.5605 0.1717 0.0009258 0.01935 0.003338 0.0004016 0.001903 4.538e-06 0.1545 0.000264 0.000312 0.005568 0.005726 0.002745 0.5737 0.395 0.005202 5.222e-05 0.5073 0.00152 0.01662 0.0006441 0.5185 0.01291 0.4093 0.0001628 0.001919 0.001363 0.004065 0.4942 0.6013 8.241e-05 4.572e-05 0.566 0.0002607 0.001403 0.002149 0.006517 0.114 0.0009959 0.005372 0.3021 0.00263 0.01591 0.0005864 0.01206 0.005631 0.007582 0.6076 0.0002637 0.4934 6.368e-05 0.00926 0.06436 0.02531 0.002726 0.5593 0.004882 0.004447 0.0628 0.0006233 0.3309 0.006654 4.479e-05 0.007464 0.004701 0.03983 0.2608 0.003476 0.001372 0.01246 0.004352 0.001206 0.03593 0.001487 0.0003335 0.000482 0.001632 0.001732 0.006046 8.685e-06 0.003963 0.01053 0.003446 1.451e-05 0.0902 0.0009664 0.002768 2.379e-05 0.0005014 0.002546 0.01084 0.001346 0.003607 0.006898 0.002615 0.004124 0.02217 8.959e-06 0.002136 0.004129 0.0003904 0.000151 0.5686 6.251e-06 0.005457 0.001826 0.000107 0.00156 0.3368 0.5193 8.282e-05 0.006334 0.0004525 0.5044 0.004555 0.2551 0.006031 0.01646 0.0007557 8.446e-05 0.000545 0.002297 0.1319 0.0005045 0.03056 0.0008146 0.0006502 0.0007232 0.001096 0.005216 0.5738 0.008839 0.5732 0.0006378 7.294e-05 0.001041 0.0008523 0.5492 0.0001317 0.0002292 0.1363 0.004982 1.117e-05 0.5412 0.001415 1.654e-05 0.2026 0.003622 0.004531 0.001811 0.0003796 0.01249 0.001327 1.791e-05 0.002381 0.009661 0.6032 0.001653 0.003889 0.00255 0.2641 0.002331 0.0002999 0.01595 0.001667 0.01567 2.445e-05 0.0001258 0.006195 0.001357 0.0001633 0.0006814 0.01185 1.237e-05 0.008996 0.003762 0.000201 0.002312 0.001369 0.0004837 3.603e-06 0.00192 0.0003251 0.000115 0.0008114 0.003319 0.01811 6.498e-05 0.5703 0.001613 0.007594 0.001438 0.2099 5.927e-06 0.009425 0.006058 0.5741 0.008637 0.001525 0.0071 0.001646 0.008278 0.001453 0.001839 0.0004686 0.5685 0.0006405 1.175e-05 0.002203 0.02242 0.0005861 5.061e-05 0.01861 1.66e-05 0.003953 0.001097 0.3761 0.0008891 0.001481 0.3282 0.3274 0.003639 0.005638 0.0009382 0.01888 0.6151 2.001e-05 1.385e-05 0.008817 0.4815 0.007299 0.0002801 0.03449 1.252e-05 0.5658 0.01321 0.0006511 0.571 0.396 0.0196 0.3462 0.001358 0.0149 0.004457 0.0002612 0.001601 0.0001643 0.000513 0.001147 9.906e-06 0.5705 0.2397 0.006177 0.003587 0.0007674 0.0001596 0.0001849 0.005347 0.1289 0.0002074 0.0004087 0.0008934 0.000211 0.0004004 6.086e-06 0.001326 0.001107 0.5733 0.0008071 0.001264 0.04448 0.003899 0.5578 0.01204 0.1622 0.002061 0.003562 0.01791 0.0002009 0.3557 0.003857 0.538 0.003917 0.003875 0.002647 0.5397 0.0003469 0.0007371 0.002843 0.00834 2.11e-05 0.5696 0.3558 0.0333 0.001434 0.0004996 0.001919 0.2828 0.008691 0.554 0.001854 1.412e-05 0.03005 0.01408 1.082e-05 0.002409 0.0001381 0.004146 0.001878 0.001806 0.003468 0.0005669 0.0008754 0.003885 0.00722 0.003002 0.5463 0.003449 0.006185 0.08083 0.003591 0.002067 0.02021 0.5491 0.0003273 0.004209 0.003287 0.001221 0.005064 0.001086 0.007371 0.0001846 5.276e-05 0.01436 0.007525 0.003431 0.001879 0.5871 0.1234 0.6416 0.325 0.004763 0.001839 0.00373 0.5756 0.003433 0.009364 0.0005849 0.006739 0.002286 0.01077 0.5707 0.003729 0.000726 0.004102 0.0001626 0.002618 0.0006613 0.001121 0.001446 1.513e-05 0.003987 0.004213 0.0001974 0.0007217 0.007926 0.4005 0.00443 0.6156 0.007424 0.3982 0.002265 0.3844 0.0003452 0.001224 0.08026 0.5295 0.001967 0.002739 8.43e-08 0.4554 0.003775 0.01382 4.772e-05 0.06364 0.001214 0.0002371 0.04615 0.000649 0.1078 0.01391 0.001996 0.004507 0.0003567 0.1789 0.003563 0.009993 0.00131 0.003974 0.1652 7.144e-06 0.005134 0.0009734 0.3864 0.0004225 0.4811 9.036e-06 0.01272 0.5623 1.525e-05 0.6308 0.001431 0.01332 0.002759 0.0001473 0.0002352 0.002032 0.01364 0.001248 0.001 0.02229 0.01131 0.5621 0.5263 0.006871 0.03511 0.001067 0.001122 0.0004889 0.0119 0.5727 0.01508 0.001303 0.0007402 0.001833 0.007857 0.006398 0.04652 0.00307 0.5817 0.002157 0.5758 0.01344 0.001597 0.001012 0.002853 0.02293 0.000316 0.003116 0.03627 0.03547 0.0005923 0.5732 0.007462 0.1474 0.006344 0.004641 0.0003129 0.00781 0.00298 0.0005013 0.04058 0.001826 0.004066 1.197e-05 0.0445 0.002339 7.512e-05 0.001237 0.04372 0.543 0.004629 0.008868 0.01431 0.001525 0.01249 0.02536 0.01272 0.002646 0.01201 0.001214 0.5094 0.01549 0.01053 0.002415 0.0008967 0.3514 0.5219 0.007537 6.532e-06 8.516e-07 0.01008 0.0002872 0.003836 0.005275 0.002486 0.0005537 0.001408 1.574e-05 0.4681 7.569e-06 0.001737 0.3535 0.5686 0.004721 0.01616 0.0006802 0.001792 0.01409 0.5725 0.03042 0.007413 0.001534 0.4374 0.005445 0.0002179 1.195e-05 0.004917 0.01202 0.00466 0.0002021 1.364e-05 0.001705 7.967e-05 0.002481 6.118e-06 1.55e-05 0.0007623 0.0003954 0.003508 0.005483 0.005373 0.4042 0.0005452 9.154e-05 0.0007718 0.007606 0.03683 0.6317 0.001078 0.119 0.4049 0.0002017 0.04188 0.01977 0.3505 0.04002 0.5455 0.002822 0.02044 0.005702 0.0116 0.5628 9.516e-06 0.02088 0.004188 0.003067 0.0002356 0.000128 0.413 0.007384 0.4132 0.009509 0.5758 6.35e-05 0.000627 0.01681 0.001277 0.009284 0.03335 0.005827 0.001623 0.5754 0.005524 0.007403 0.0002741 0.01993 0.0001023 0.02352 0.00724 0.333 0.0002914 0.1081 0.0004074 0.5056 0.1557 1.654e-05 0.002906 0.0009213 5.799e-05 0.0004751 6.572e-05 0.06643 0.002483 3.112e-06 0.006818 0.2988 0.04423 0.0001524 0.001169 0.0009818 0.003242 0.001324 0.01474 0.005313 0.0004133 0.002362 0.002482 0.00775 0.003476 0.3936 0.003875 0.0002234 0.0006881 0.003617 7.318e-05 0.005945 0.001163 0.4929 0.00223 0.001922 0.005201 0.0001112 0.001553 0.3451 0.006455 0.0006077 0.004623 0.001971 0.005879 0.001529 0.0004112 0.02927 0.004288 1.096e-05 0.001865 0.001727 0.01278 0.03884 0.0005842 0.0004425 0.001577 0.03514 0.2802 0.005816 0.0008689 0.5614 0.5137 0.002575 0.0181 0.004479 0.09612 0.075 0.002203 0.3115 0.5835 0.009657 0.0001023 0.4605 0.57 0.0008979 3.462e-05 0.008039 0.002997 0.009889 0.01154 0.0008788 0.0001697 0.05094 0.0008382 0.1106 0.04298 0.6436 0.001945 0.01007 0.4587 0.002043 0.003982 0.0004018 0.01182 0.002369 0.0005456 0.01106 0.005198 0.002867 0.001257 0.0002549 0.007721 0.01009 0.001471 0.0008594 0.5732 0.0001388 0.001468 0.0003602 0.01148 0.1996 0.01187 0.004358 0.005912 0.00713 0.3959 1.504e-05 0.005274 1.051e-05 0.01225 0.1299 0.004089 0.4336 0.4133 0.0001124 0.002019 0.002479 0.4645 1.853e-05 0.0009226 0.0002447 0.00369 0.02758 0.02101 0.0002131 0.5972 0.5527 0.0003695 0.006152 0.009065 0.5355 0.535 0.008822 0.001941 0.142 1.17e-05 0.5746 0.6118 0.005048 0.2297 0.008068 0.006645 0.0002956 0.08512 3.108e-08 0.001656 8.792e-06 0.001001 0.08169 0.0001178 0.6009 0.319 0.5597 0.02712 0.0009857 0.04121 0.4084 0.001121 0.0009737 0.003014 6.667e-06 5.625e-06 0.0003974 2.946e-06 0.1964 0.0006428 0.0291 0.003181 0.562 0.5538 0.0007018 0.001245 0.000453 0.006156 0.001975 0.003914 0.0001704 0.001912 0.001071 0.01094 0.5409 7.115e-05 0.0006601 0.009304 0.00234 0.0005712 0.004923 0.6167 0.0006833 0.002975 0.003371 0.0001654 0.0005765 0.0001686 0.3552 0.004947 0.1998 0.03961 0.0002303 0.585 4.445e-06 0.000493 0.07577 0.01804 0.0005975 0.004283 0.1422 0.01097 0.002479 0.0143 0.0004686 0.003442 0.08797 0.002709 0.005555 0.00363 0.1665 0.366 0.01678 3.224e-05 0.01217 0.00932 0.007084 0.001138 0.00819 0.0009712 0.01058 0.4674 0.0005218 0.01076 6.465e-05 0.4798 0.0002091 0.002385 0.003695 0.04438 0.000717 0.00797 5.535e-06 0.001128 0.0178 0.0212 0.02185 0.01053 0.01788 0.0004936 7.38e-05 0.0007971 0.0007033 0.01337 0.001128 0.03387 0.0001546 0.007501 0.0006909 0.0004984 0.001262 0.002642 0.004507 0.003406 0.001644 0.007947 0.002209 0.003428 0.000373 0.004329 0.001823 0.04201 0.004472 0.001921 0.01228 1.284e-05 1.885e-05 0.007611 0.0002055 0.003392 0.04331 0.0009568 0.004301 0.005816 1.122e-05 0.0007771 0.04688 0.3394 0.005151 0.0003592 0.008409 0.01914 0.5672 0.002894 5.135e-06 0.004925 0.00549 0.01187 0.5383 0.02818 0.0002316 0.009455 0.3197 0.001807 0.008864 0.0008095 6.492e-05 2.117e-05 5.693e-05 0.04741 0.0005362 0.002459 0.01096 0.01475 0.004444 0.01018 0.001231 0.0002716 0.002531 0.003632 0.6086 0.02519 0.00914 4.772e-05 0.06256 0.000383 0.0003011 1.409e-05 0.003904 0.001461 0.009802 0.005327 0.001558 0.0006217 0.0001146 0.01011 7.03e-05 0.001554 0.00529 0.01646 0.0006341 0.0004907 0.5669 0.000437 0.003163 0.00153 0.01302 0.001417 0.3458 0.0004816 0.004382 0.01307 0.002879 0.01167 0.0001493 0.003556 0.5686 0.001664 0.42 0.0001338 7.928e-05 0.003297 0.001903 0.001452 3.636e-05 0.002265 0.002173 0.000431 0.5206 0.002071 0.007911 0.002369 7.89e-05 0.0149 0.01792 0.01797 0.01329 0.1878 0.002141 3.493e-05 0.001467 0.04959 0.02033 0.02017 0.002853 0.4325 2.535e-05 0.005089 0.001889 0.001195 0.0001276 0.001055 0.3217 0.005959 0.002686 0.5978 0.1341 0.002457 0.068 0.07155 0.001892 0.0002186 0.5981 0.4805 0.006975 0.0663 0.008829 0.001206 0.4683 0.0003301 0.006334 0.0001734 0.008992 1.655e-05 0.0003837 0.001083 0.0001621 0.002852 0.001444 0.004869 0.5813 0.5697 0.04304 0.0001419 0.0006438 0.00228 0.004674 0.607 0.01825 0.0001194 0.09524 0.6023 0.01254 0.5957 0.003001 0.0009107 0.0007748 0.5583 0.003959 0.0003249 0.005724 0.000697 0.002772 0.00273 0.01121 0.001864 0.5714 1.739e-05 0.02713 0.003775 0.3422 0.3863 0.001994 0.02683 0.0004013 0.002131 0.009972 0.0006036 0.5804 0.004784 0.1539 0.008889 0.006599 0.001491 0.0003622 0.0009375 1.096e-05 0.0112 0.00539 0.5614 0.003069 0.0005806 0.01221 0.4781 0.01047 0.006916 0.0006988 0.003812 0.0001293 0.0004229 0.001174 0.0009801 0.0177 0.005051 0.04522 0.01113 0.01151 0.0008743 0.003819 8.882e-05 0.0003634 0.001089 0.00718 0.5752 0.002543 0.0003946 9.701e-05 0.0005878 0.005916 0.4621 0.006099 0.0003576 0.002419 0.008571 0.2079 0.001481 0.001777 1.718e-05 0.002596 4.456e-05 0.01175 0.0002193 0.007657 0.07822 0.001818 0.01592 0.0001296 0.5592 0.005398 0.001539 0.002101 0.007728 0.002924 0.5707 9.806e-05 9.312e-06 0.03875 0.0006067 0.0008026 1.423e-05 0.01808 0.565 0.0004087 0.006379 0.0006705 0.04011 0.009842 0.01297 0.0003954 0.01803 0.0004293 1.754e-05 1.237e-05 1.491e-05 0.001815 0.01196 0.000774 0.02128 0.04621 0.005092 2.384e-05 0.01291 0.5652 0.6054 0.008193 0.518 0.01229 0.4627 0.001896 0.003627 0.004482 0.004428 0.003642 0.1114 0.002282 0.0008345 0.004657 0.0007112 0.0006519 0.0004455 0.5822 0.5803 0.00264 2.391e-05 0.2214 0.03863 0.002062 0.006331 0.04244 0.01207 0.00763 0.02635 6.616e-05 0.01534 0.001531 0.001285 0.5503 0.2227 0.01071 0.005064 0.005722 0.5942 9.263e-05 0.006533 0.5565 0.0002178 0.2143 0.012 0.0003475 0.005727 0.413 0.0009462 0.04432 0.00123 2.806e-06 0.002569 0.001013 0.5484 0.1945 0.001173 0.06116 0.001275 0.0003015 0.2136 0.3456 1.578e-05 0.0005233 0.4852 0.3191 0.001645 0.03255 0.008003 0.002077 2.579e-05 0.6123 0.02855 6.24e-05 0.02546 0.09281 0.0007053 0.002971 0.01505 0.001652 0.007005 0.0001036 0.001151 0.002611 8.21e-05 9.749e-06 0.001694 0.0001846 0.0006719 0.3954 0.0008793 0.01401 4.841e-05 0.002306 0.002947 0.001796 0.003463 0.003652 0.02482 0.0004188 0.01982 0.003166 0.006078 0.005145 0.003278 0.007992 0.01363 0.001621 0.01956 0.0114 9.306e-06 0.0001844 6.137e-06 0.006023 7.381e-05 0.3808 1.089e-05 0.572 0.01434 0.01693 0.009188 0.007344 0.5747 0.003168 0.007107 0.0004057 9.546e-05 0.00183 0.0005208 0.01596 0.01964 0.0007291 0.1868 0.005885 0.005589 0.0007738 0.0007789 0.5796 0.000205 0.002812 0.0055 0.0006847 0.01545 0.05676 0.001122 0.0006056 0.0001471 0.0009696 0.0001802 0.5506 0.5528 0.2289 0.005086 0.0005837 1.315e-05 8.559e-05 0.0001217 0.0008174 8.098e-05 0.01472 0.001436 0.002162 0.0001188 0.0009241 0.002953 0.5388 1.111e-05 0.005782 0.003163 0.001637 0.4991 0.01809 0.0005621 0.01274 0.5822 0.5579 0.008804 0.0009801 0.074 0.0004207 0.001972 0.006392 0.003731 0.004157 0.01103 7.8e-05 0.001658 0.00033 0.5016 0.007468 0.003575 0.3507 0.5771 1.371e-05 0.001472 0.0002092 0.01534 0.4049 0.0003655 0.005061 0.002065 0.003158 0.002938 0.0001652 0.009183 0.008331 0.3595 1.874e-05 0.01448 0.003101 0.006714 0.6484 0.004517 0.0002939 0.4635 0.4999 0.001424 4.883e-06 0.002267 0.002588 0.0001289 0.0009008 1.702e-05 0.3751 0.008229 0.0002221 0.01884 0.4069 0.007272 0.004909 0.003837 0.00512 0.0001801 3.927e-06 0.000805 0.0001032 0.0002332 0.05574 9.023e-06 0.02639 0.4705 0.003053 1.422e-05 0.001004 0.003943 0.0008796 0.5689 1.797e-05 0.002064 0.001503 0.0001176 0.5831 0.0001973 0.004208 0.01281 0.02769 0.006107 0.01027 1.196e-05 0.03238 0.558 0.003115 0.08052 0.000562 0.2993 0.009855 0.0009922 0.0009031 0.0009569 0.006922 0.0002677 0.001141 0.0004132 0.001928 0.00423 0.6053 0.1559 2.775e-05 0.004335 0.0006911 0.001728 0.0002092 8.431e-05 4.349e-05 0.4258 0.4691 0.4449 0.0689 0.006416 0.1669 0.01235 0.00956 0.002386 0.0007326 0.0001562 0.002336 0.0006096 0.004927 0.001284 0.04364 1.502e-05 9.326e-05 7.426e-05 0.6373 0.0004643 0.3466 1.869e-05 7.899e-06 0.001614 0.0006923 0.003887 0.05985 0.001803 0.005764 0.4457 3.619e-05 0.01223 0.0164 0.005433 0.01839 0.0086 2.993e-05 2.084e-05 0.009388 0.01844 0.003509 0.00514 0.0001508 0.4612 0.5848 0.003891 0.0002493 0.001183 0.001491 0.5788 0.0003187 0.0001145 0.0007635 0.1485 0.02005 0.005641 0.533 2.81e-05 0.5744 0.009264 0.003531 2.734e-05 0.0004841 0.3052 0.001681 8.536e-05 0.002006 0.01309 0.004604 0.0003633 0.6122 1.92e-05 0.0001103 8.961e-06 0.003282 0.01049 0.004125 0.5133 1.528e-05 0.005696 4.151e-05 0.1743 0.002544 0.06771 0.02014 0.0007703 0.001294 0.01068 0.002648 0.0001457 0.4713 0.0004851 0.001596 0.002319 0.01041 0.00154 0.003785 8.708e-06 0.5639 0.0003465 0.002751 0.00102 0.006401 0.02225 0.003768 0.003405 0.002128 0.1731 6.731e-06 0.3605 0.000887 0.0001564 0.002607 0.0004551 3.629e-05 0.6026 0.006356 0.0004516 0.0003162 0.5286 1.183e-05 0.001519 0.001507 0.002185 0.001574 0.02713 0.008229 0.4823 0.0011 0.003678 0.01232 0.004085 0.01411 0.3401 0.002306 0.0001923 0.0004095 0.0001018 0.00149 0.04838 0.01064 0.008018 0.001028 0.0424 0.0003667 8.37e-05 0.1251 0.5625 0.4178 0.01203 0.5631 0.002397 0.511 0.4454 0.0005018 0.5621 0.0168 0.008203 0.2402 0.0001452 0.001574 0.0001261 0.003858 0.003385 0.002913 0.01375 0.002667 0.02836 0.002424 0.005742 0.0001084 0.001461 1.273e-05 0.0262 0.1511 0.007511 0.0001069 0.001723 0.0003103 0.5656 0.4784 0.0006351 0.0007382 0.006214 0.0008475 0.002093 0.5719 0.4741 0.005573 4.807e-06 0.4698 0.0004091 0.007461 0.007699 0.001175 0.3315 1.319e-05 0.1491 0.08265 0.008856 0.04522 0.0001102 0.007079 0.002353 0.009815 0.01539 0.007605 0.0007472 0.0002618 0.002907 0.0005552 0.0007165 0.002467 0.003992 9.975e-05 0.00533 0.000135 1.694e-05 0.0005926 0.002982 0.001778 0.01612 0.0003401 0.001394 0.001413 0.004407 0.005158 2.757e-05 0.003245 0.001967 0.0008603 0.6212 0.5693 6.744e-05 0.000701 0.0006257 0.5278 0.5612 0.004359 1.664e-05 0.001731 0.03258 0.0003561 0.000634 0.0003777 0.006798 0.0175 0.001763 0.002505 0.01021 0.396 0.002087 0.2004 0.001788 0.04078 0.03531 0.0244 5.704e-05 0.5497 0.5155 0.5661 0.003396 0.00132 0.001832 0.001107 0.5967 0.005954 6.477e-05 0.5611 0.5831 0.0002215 0.03357 6.375e-05 0.598 0.00368 9.578e-05 0.004426 0.0002368 0.003587 0.0006227 0.0103 0.005506 0.02474 0.0001383 0.0003431 4.482e-05 0.0006375 0.5727 0.418 0.4389 0.0009535 0.0002428 0.5589 0.0004896 0.0008842 0.001017 0.0001486 0.001089 0.04696 0.03329 0.008284 0.004076 0.000532 1.031e-05 0.003106 0.00182 0.001982 0.0002224 0.003421 0.003336 0.005374 0.0009845 0.001658 0.0007078 0.002493 0.00338 1.055e-05 0.0008525 0.02673 0.0005908 0.01053 0.0003425 0.01757 0.0021 0.008038 0.05125 1.001e-05 2.379e-05 0.5703 0.0185 0.007649 0.001097 0.3045 0.01362 0.002932 0.2122 0.002385 0.1518 0.01929 0.1193 0.008325 0.008883 0.002358 0.001783 1.194e-05 0.0008978 0.006501 0.5691 0.007938 0.0004309 0.04549 7.137e-05 0.00507 0.002929 0.008035 0.0006262 0.01451 0.02884 0.009602 0.007447 0.06721 0.003594 0.001927 6.438e-05 0.008646 0.005303 7.449e-05 0.005239 0.007383 3.488e-06 0.0008511 0.00479 0.5332 0.002635 0.001154 0.0001331 0.0006055 4.616e-06 0.0005441 0.01197 0.0003102 0.02547 0.0001911 2.171e-05 0.0001781 0.004349 0.005197 7.551e-05 0.0001934 0.0005013 0.0001162 4.079e-06 0.08152 0.01277 0.0009978 0.005499 0.0003348 0.002457 0.006468 1.041e-05 0.00201 0.004735 0.01003 0.04262 0.005414 0.0008371 0.01279 0.0008851 0.0002284 0.00602 0.5739 0.0001772 0.2938 9.363e-06 0.2464 0.003213 0.002205 0.005078 0.003271 0.01473 0.0006191 0.2103 0.5979 0.0007366 0.5649 0.0005054 0.00475 1.697e-05 0.001564 0.03035 9.066e-05 0.2732 0.0002497 0.003408 0.0008979 0.01054 0.00194 0.0004068 0.0592 0.002752 7.794e-05 0.5217 0.5703 3.433e-06 0.0003026 0.0002731 0.0001775 0.001338 0.03151 0.004667 0.1846 0.005595 0.0008444 0.005223 0.3917 0.009931 0.0001366 0.06022 0.0007087 0.002667 0.0005088 0.001896 0.001858 0.00119 0.0007036 0.0001692 0.09935 0.3708 1.489e-05 0.0005807 0.0003456 0.006522 0.0007742 0.005542 0.00295 0.0196 0.5278 0.000288 0.004149 0.003567 0.0007243 0.002886 0.01935 0.008329 0.008397 0.001556 0.007467 0.00176 0.001759 0.008498 0.004507 8.361e-06 0.00154 0.09646 0.02872 0.001113 0.2667 0.5671 9.003e-06 0.5843 0.3303 0.01484 0.446 0.04994 0.4478 0.4899 0.01935 0.01484 0.002436 0.01088 0.3963 0.5783 0.01241 0.0001454 0.008687 0.001278 0.0002199 0.01722 0.4219 0.0005824 0.002737 1.542e-05 0.01122 0.4986 7.793e-06 0.0002637 0.003489 0.2633 0.0005333 1.319e-05 0.5611 0.0005966 0.5888 0.00452 0.4646 0.001835 0.007131 0.3517 0.002902 0.01269 0.1201 1.838e-05 0.00243 0.0001303 0.01413 1.352e-05 0.001074 0.0001771 0.0008637 0.004427 0.4502 0.001189 0.04575 0.0002131 0.0002211 0.0002606 0.04452 0.04855 0.0001979 0.005783 0.5554 0.0001424 0.001164 0.0004936 0.0008842 0.001363 0.05118 0.005779 0.04373 0.003496 0.001228 0.5158 0.0008157 0.0007336 0.005791 0.361 0.3441 0.4665 8.549e-05 0.003067 0.003653 0.0002319 0.0007695 0.2602 0.002091 0.009768 0.01563 0.00108 0.002693 0.003929 0.09482 0.007641 0.0005247 0.009154 0.004795 0.0002222 0.0003631 0.002415 0.0007 0.0002463 0.0002348 0.0008931 0.001684 0.1368 0.004849 0.0005723 0.01365 0.0009386 0.005948 0.4861 0.001241 0.6417 0.000498 0.008025 0.01194 0.5651 0.5781 0.001396 0.01337 0.00967 0.006909 0.001744 0.007896 0.0003374 0.01207 0.0002373 0.01023 0.5775 0.01142 0.003982 0.0411 0.008109 0.3774 0.001898 4.621e-05 0.05546 0.0001007 0.0001035 0.007031 1.992e-05 0.5328 0.0002437 0.1035 0.01805 0.002269 8.771e-05 7.031e-05 0.01788 0.5722 0.001926 6.553e-05 0.001484 5.686e-05 0.000978 0.008525 0.00319 0.1116 0.000537 9.449e-05 1.22e-05 0.002566 0.0006491 1.008e-05 0.009721 0.004394 0.009045 0.5902 0.005053 0.0001319 0.5487 0.0005149 0.002135 0.015 0.5652 0.5146 0.0007591 0.4573 0.06497 0.005398 0.001418 0.02899 0.003509 0.0008879 0.003163 0.0001379 0.5217 0.009652 0.002546 0.001283 0.2524 0.3197 0.3243 0.0008013 1.008e-05 0.0004867 0.0103 0.001151 0.00181 0.0002394 0.01555 0.5454 0.002506 0.002795 1.191e-05 3.57e-05 0.571 0.003017 0.0002421 0.00459 0.0002402 0.4525 1.006e-05 0.002147 0.01019 0.00214 0.0002161 0.3542 0.03396 0.002592 0.0002009 0.0001586 9.901e-06 2.953e-05 0.0006232 0.008971 0.0005937 0.0002806 0.03733 0.003679 0.3491 0.002882 0.001331 0.004158 0.08427 0.1889 0.003314 0.4836 0.00893 1.102e-06 0.0001607 0.1211 0.00331 0.5269 1.336e-05 0.001595 0.007597 0.003361 0.0001327 0.0003326 0.4062 0.4082 0.001332 0.01854 1.845e-05 0.009094 0.008175 0.008842 0.5623 0.0003285 0.001991 0.03235 0.00646 4.485e-05 0.0003346 0.00981 0.4885 0.02006 0.002821 0.05556 0.01368 0.01275 0.002248 6.436e-06 0.005656 0.01493 0.4045 0.003746 0.331 0.3311 0.05105 0.4017 0.07119 0.05783 0.01073 0.002633 0.0005297 0.5634 9.718e-06 0.3261 0.004219 0.001907 0.5776 0.006567 0.5609 1.084e-05 0.3354 0.0008589 0.003213 0.4237 0.01045 0.3075 0.007882 1.522e-05 0.3685 7.682e-05 0.01657 2.645e-05 0.02103 0.01874 0.007588 0.000103 0.01179 0.0001543 0.03561 0.5722 0.007434 0.006111 0.3611 0.0001567 0.01001 0.005583 0.01758 0.0007706 0.4129 0.00162 0.01999 1.968e-05 0.002092 0.005944 1.619e-05 0.001824 0.002635 0.3691 0.01661 0.008832 0.3793 0.5803 0.5929 0.005073 0.00285 4.593e-05 0.00568 0.02178 0.01423 0.0002886 0.4981 0.5641 0.001255 0.0006547 1.341e-05 0.0005876 0.001793 4.992e-06 0.001493 0.04621 0.0004473 0.001389 0.5177 0.5564 0.0003375 0.00106 0.009871 0.006637 0.03868 0.006217 0.003882 0.004495 0.01544 0.01436 0.002382 0.0002424 0.006009 0.5775 0.147 0.4628 1.216e-05 0.02985 0.002056 0.001092 0.05523 0.5713 0.003734 0.005243 0.001781 0.1333 0.07592 0.0002067 0.01207 0.07377 0.05596 0.001517 0.003522 0.001849 0.0003802 0.4104 8.948e-05 1.212e-05 0.007296 9.777e-06 0.001893 0.0007062 0.5719 0.01386 0.2584 0.4534 0.5862 0.1149 0.007501 0.005769 0.01308 0.002251 0.3529 0.0001976 0.6199 0.002232 0.03442 0.007464 0.06249 0.001504 0.006913 0.04052 0.031 0.0004927 0.005085 0.002251 0.00127 0.008397 7.024e-05 0.5982 0.4108 0.06556 0.001487 0.002764 0.0007221 0.007908 0.5268 0.0004759 0.003306 0.1553 0.1942 0.003809 0.3738 0.4386 0.0007138 0.006775 0.01224 0.04499 7.502e-06 0.0005078 8.181e-06 0.0006916 0.02067 0.006696 0.001437 0.00202 0.6082 0.0008356 0.002929 1.568e-05 0.001106 0.001435 0.007786 0.01562 1.158e-05 0.5757 0.00341 0.3024 0.001323 0.005475 0.5568 0.01177 0.0005401 8.281e-05 0.0005812 0.00488 7.96e-07 0.01184 0.002603 0.01844 0.007104 0.00134 0.02395 0.0003221 0.0018 0.0008354 0.00482 0.007426 0.002177 0.003141 0.02809 0.005946 1.336e-05 0.4119 0.4035 0.000158 0.004331 0.6328 0.003354 0.001529 0.0004769 0.5669 0.01734 0.0001385 0.4268 0.002315 0.01635 0.01342 1.205e-05 0.5722 0.003472 0.5467 0.005856 0.3163 0.007237 0.0054 0.0002582 0.00292 0.3405 0.003907 0.006012 0.005845 0.5607 0.0001323 0.03605 0.0006524 0.0002855 0.004001 0.001937 0.5334 0.0009081 0.00194 0.1094 0.006714 0.0002832 0.3034 1.768e-05 0.002584 0.04732 0.0007607 0.000212 0.0105 0.001171 0.000436 0.02137 0.4803 0.05107 0.3653 0.003637 0.4966 0.4966 6.847e-06 0.0001753 0.003568 0.001133 0.01652 0.001056 0.003148 0.1789 0.01313 0.001903 0.00785 0.002952 0.001583 1.344e-05 0.003989 0.3738 0.005007 0.00176 7.312e-05 0.002374 0.0001065 0.5703 0.00568 0.00643 0.4102 0.006088 0.0199 0.07733 2.75e-05 0.0002434 0.002661 0.001177 0.004945 7.368e-05 0.007697 0.001781 0.002101 0.0112 0.5322 0.4291 0.001314 0.01697 0.008433 0.01619 0.0004433 0.001587 0.01254 0.001148 0.003212 0.0008577 0.0125 0.02179 0.6193 0.001821 1.897e-05 0.0001086 0.002865 0.001248 0.0008558 0.006935 0.5741 0.02315 0.000129 0.006512 0.0008552 0.04572 0.007479 3.47e-05 0.01366 0.003299 0.007203 0.002041 0.1345 0.0009707 0.001048 0.003089 0.413 6.125e-05 0.547 5.361e-05 0.003324 0.0003806 0.001309 0.005782 0.001409 0.002201 0.00157 0.5825 1.055e-05 0.00266 0.003688 0.0007716 0.617 0.0031 0.05161 0.01255 0.06486 0.0002141 0.004535 0.5683 0.0002528 0.01666 0.5657 0.003293 0.01588 0.000632 0.001135 0.6117 0.0002795 0.001795 0.0004995 0.00459 0.00846 0.003906 0.01047 0.0024 0.003856 0.001779 7.733e-05 1.449e-05 0.002396 0.0001181 6.6e-05 0.006602 0.002141 0.5007 0.03485 0.5424 0.001322 0.002272 0.01135 2.96e-05 0.006717 0.0006165 0.007115 0.1247 0.001079 0.4556 0.003941 0.4622 0.1237 0.009821 1.961e-05 0.02729 0.2601 0.01047 0.0007618 0.00155 0.0009362 0.4629 0.001328 0.0007044 1.524e-05 0.1446 0.006911 7.866e-05 0.0006385 0.003889 0.01124 1.676e-05 0.5766 0.002371 0.0004865 0.4466 0.04639 0.5701 0.0003332 0.0001829 7.856e-05 0.000749 0.005265 0.0175 9.745e-05 0.003337 0.615 0.001141 0.3513 0.4302 0.1709 0.007077 2.013e-05 1.231e-05 0.0003117 0.0001545 0.0051 6.995e-06 0.0007236 0.001221 0.08247 0.008472 0.3379 0.1402 0.3954 0.3851 0.000799 0.00399 0.002771 0.001131 0.5429 0.0003105 0.03929 0.02009 0.0005264 0.3303 0.0001376 0.3597 0.01508 0.002412 0.003864 0.0004842 0.001502 0.2767 0.0004239 0.009969 0.001228 0.01665 0.04141 0.005934 0.003682 0.0002846 0.09447 0.002641 0.02467 0.002091 0.0006107 0.5516 5.339e-05 0.005426 0.003131 0.01117 0.001631 0.000377 0.006444 0.02041 0.6337 0.0003598 0.005615 0.3827 0.001953 1.296e-05 0.0194 0.00127 0.5397 1.868e-05 0.07885 0.005384 0.004901 0.03127 0.004792 0.5555 0.0001052 0.02997 0.003956 0.2186 0.001112 0.004265 0.006694 0.2015 0.001818 0.6001 0.003696 0.009378 0.004997 0.3534 0.5709 0.003369 0.006931 0.003411 0.02014 0.0009104 0.008245 0.002042 0.01648 0.022 0.005433 0.6246 0.001621 0.007004 1.927e-05 0.01493 1.106e-05 0.00386 0.007639 0.0007485 0.005907 0.0002709 0.0003374 8.877e-05 0.0003545 0.0003177 0.03009 0.5506 0.02349 0.6357 0.5757 1.348e-05 0.3141 0.02674 0.001167 6.651e-05 0.1366 0.00695 0.002253 0.00128 7.519e-05 0.0003804 0.0001279 0.6149 3.576e-05 0.007185 0.00469 0.01775 0.003162 0.0003741 0.02324 0.04919 0.001106 0.5522 0.0006908 0.07773 0.001257 0.002039 0.003304 0.0001692 0.0003152 0.01625 0.0003416 0.009747 0.0003529 0.001454 0.003799 0.002842 0.0008898 0.00266 0.002299 0.3963 0.007602 0.1976 0.02892 0.0006956 0.007261 0.009891 0.006384 0.002626 0.0001147 0.0007045 0.01266 0.02765 0.00285 0.2447 0.3934 0.0002095 0.08811 0.0003898 0.5745 0.03128 6.541e-05 6.959e-05 7.448e-05 0.5936 0.0004713 0.003756 0.00132 0.002301 0.001653 0.001697 0.02752 8.295e-05 0.0002203 0.002574 0.03676 0.0006227 0.01375 0.004347 0.001566 7.568e-05 0.001197 0.005586 4.498e-05 0.003944 0.3995 0.5548 0.3511 0.01069 0.0009265 0.003613 0.00331 0.001929 3.672e-05 0.3473 0.03184 0.1152 0.0003361 1.059e-05 0.001039 0.0006276 1.826e-05 0.01166 0.0009383 0.005617 0.573 0.005121 0.003131 0.05549 0.001258 0.1616 0.5741 0.4125 0.001678 7.336e-05 0.5677 0.2059 0.001383 0.2186 0.01318 4.943e-06 0.002574 0.4097 0.42 0.3737 0.394 0.5408 0.01096 0.01982 0.006989 0.005129 0.5808 0.001081 0.005332 0.002406 0.0001097 0.05688 0.1581 0.02538 0.04539 0.0001072 1.094e-05 0.0002201 0.0002463 0.05563 0.5732 4.168e-05 0.005912 0.0252 0.0028 9.892e-05 1.375e-05 0.04295 0.1831 0.0001003 2.18e-05 0.003305 0.00229 0.01381 0.586 0.0001178 0.002714 0.001121 0.01487 7.542e-05 0.0002092 0.4142 0.5647 0.002548 0.0004711 0.002207 1.763e-05 9.857e-05 0.007452 0.0006537 0.003386 0.01683 0.001241 0.5609 0.001529 0.0004731 0.0156 0.001413 0.00444 0.001327 0.001296 0.4048 0.01192 0.006358 0.0007864 0.0007129 0.001045 0.00221 0.002837 0.002703 0.006305 0.02688 0.0004927 1.914e-05 0.005707 0.001221 0.3537 0.0008652 0.02041 0.05184 0.006453 0.005249 0.004236 0.001104 0.008537 0.01188 0.006721 0.002708 0.0001673 0.01208 0.0001627 0.5604 0.006358 0.001217 0.003387 0.005541 1.112e-05 0.0001314 0.3203 0.3203 0.2834 0.2833 0.002211 0.2336 0.0082 0.4843 0.5542 0.01288 0.0034 0.00305 0.01254 0.001071 1.122e-05 0.001343 0.6085 0.0005537 0.006375 0.001964 0.006343 0.001003 0.5649 0.0002279 0.007253 0.02349 0.0005052 0.5716 0.004448 0.007134 0.002551 0.04377 0.0217 0.159 0.02712 0.3953 0.006707 0.008554 0.001776 0.00168 3.26e-08 0.003561 0.003429 0.01901 0.0001825 0.5191 0.5244 0.003932 0.009669 8.275e-05 0.03332 0.001668 2.817e-05 2.705e-05 0.5726 0.01464 0.03764 0.001514 0.0003005 0.001053 0.0007049 0.5705 0.1312 0.0008931 0.5666 0.003645 0.0001499 0.03504 0.0004723 0.06964 0.04397 0.002788 0.01112 0.001946 0.0002566 0.307 0.00675 0.0003595 0.005367 0.0003349 0.002704 5.921e-05 0.002441 0.003795 0.03157 0.0003239 0.000206 0.02786 0.0007955 0.0004004 0.5612 0.0003479 0.0002848 0.02267 0.01854 0.0001395 1.739e-05 0.0008533 5.195e-05 0.3875 0.01542 0.001468 0.003537 0.384 0.001851 5.535e-05 0.007459 0.002369 0.5776 0.0007835 0.0006816 0.0008218 0.0149 5.075e-05 0.01174 0.5573 0.3509 0.004661 0.004866 0.569 0.6029 0.0006851 0.001112 0.5665 0.0007783 0.003199 0.001834 0.3057 0.3079 0.5901 0.00208 0.00768 0.004183 0.0008198 0.0004879 0.002657 0.005114 1.017e-05 0.0001465 0.01361 0.000101 0.003248 9.242e-05 0.5605 0.5612 0.002416 0.000207 0.5705 0.000321 0.0003089 0.02382 0.004291 0.004837 0.001231 0.003413 7.228e-06 0.0001474 0.005533 0.01441 0.379 0.0001007 0.0008615 0.001443 0.4852 0.5863 0.047 0.0007235 0.006219 0.00349 0.004939 0.0003704 0.01168 0.01962 1.523e-05 7.465e-06 0.0004424 0.001056 0.001255 0.568 0.0001861 0.5796 0.05759 0.006995 0.456 0.0002688 0.0005654 0.03589 0.01253 0.000922 0.02632 1.714e-05 0.42 0.0005151 0.0004083 0.01194 0.3649 0.3714 0.3027 0.0001005 0.001331 0.01401 1.263e-05 0.003384 0.0005573 0.0009537 0.001775 0.001022 0.08621 0.3669 1.623e-05 0.5188 0.001345 0.01378 0.007913 0.573 0.005331 0.002103 0.07088 1.591e-05 0.01866 7.724e-05 0.000646 9.754e-05 0.004738 0.2861 0.286 0.0004373 0.29 0.003262 0.0006584 0.5679 9.847e-06 0.0003422 0.1031 0.001821 0.4135 0.003232 0.001399 0.004356 0.00141 0.03659 0.3674 0.00673 0.009466 0.003598 0.4382 0.0006841 0.0006834 0.0002392 0.01201 0.001423 0.001066 0.5697 0.0411 0.00109 0.000218 0.0001284 0.0005422 0.008501 0.01484 0.01476 0.01214 1.35e-05 0.001321 0.007272 0.04735 0.003068 0.01466 0.0001543 0.02655 0.001893 0.01329 0.5555 0.1139 1.713e-05 0.0004649 0.01191 0.1726 0.6133 0.0397 1.781e-05 0.09738 0.003908 0.000531 0.0002123 0.008675 0.009609 0.002329 0.01731 0.007466 0.002805 0.0136 0.5739 0.5676 0.5727 0.001442 0.0009827 0.0006637 0.004173 0.0003861 0.4713 0.004199 0.01745 0.0001192 0.00174 0.4877 0.0001115 0.002976 0.0001484 0.01163 0.002187 0.001215 0.0009809 0.003837 0.009944 0.008708 0.0001222 0.001734 0.02867 0.5881 0.0001386 0.006308 0.000945 0.005269 0.02007 9.174e-05 0.0001768 0.008229 0.0002736 0.0009039 0.0001204 0.002658 0.09422 0.0001172 0.02245 0.007479 0.007001 0.0002797 9.032e-05 0.005757 0.0001222 0.4533 0.005396 0.1092 0.003483 0.01918 0.04846 0.04242 0.0006155 0.001155 0.003304 0.0226 0.0001672 7.316e-06 0.02466 0.003311 0.003126 0.0004349 0.0002561 0.4129 0.001741 0.0009552 0.00234 0.03792 7.245e-06 0.0007723 1.81e-05 0.0002403 0.2562 0.001107 6.005e-05 0.00436 0.0001784 0.3974 0.003315 0.007651 0.03652 0.06955 0.06307 0.00239 0.01619 0.005531 0.005148 0.004365 0.001212 0.0001033 1.493e-05 0.404 0.4215 0.0004564 0.0001709 7.809e-05 0.001272 0.009742 0.003553 1.78e-05 0.001791 0.007237 0.02027 0.3616 0.000812 0.005724 0.008526 0.0003738 0.01645 1.082e-05 0.002782 0.009244 0.001669 0.0002538 0.000311 0.0002345 0.000138 0.0001743 0.002725 0.001094 0.004747 0.001097 2.449e-05 0.004319 0.001439 0.00258 0.5699 1.31e-05 0.0001837 0.1585 0.001584 0.000144 0.01272 0.002421 0.01772 0.000675 1.281e-05 0.0187 0.3921 0.0003128 0.0151 0.002998 0.1545 6.062e-06 0.5629 0.5747 0.5758 0.01657 0.0001326 0.0001282 0.003745 0.0009755 0.5515 0.1969 0.06212 0.001126 0.000281 0.003267 7.57e-05 0.4887 8.354e-05 0.002605 0.002615 0.001001 0.001604 0.001788 0.5067 0.0005663 0.002821 9.534e-06 0.004368 0.2827 0.0005863 0.01476 0.000167 0.4646 0.0001018 0.002565 0.001978 0.006086 0.003307 0.5807 0.007185 0.003968 0.007336 0.5424 0.08762 0.001176 0.00116 0.003167 0.00426 0.001707 0.0119 0.01383 0.3063 0.0005919 0.01166 0.003182 0.007926 0.001925 0.4354 0.0003937 2.891e-06 0.001723 0.0008948 0.4924 1.733e-05 0.006022 0.001788 0.4159 0.001448 0.1677 0.0009824 0.1001 0.005417 0.5627 0.2101 0.09352 0.4613 0.001541 0.00297 0.004337 0.01959 0.0008114 0.002482 0.01398 0.2169 0.03653 0.4411 0.0002565 0.002259 0.0001294 0.0006623 0.327 0.0001512 0.0001987 0.0004588 0.007561 0.001485 0.02739 0.5971 0.002603 5.191e-05 7.917e-05 0.001811 0.00676 2.291e-07 0.01435 0.02043 2.403e-05 0.004128 0.02986 6.408e-06 5.204e-05 0.002957 0.02591 0.007261 0.6179 0.008875 0.001706 0.0003593 0.001093 0.5469 0.6165 0.006253 0.002663 0.02373 0.0001482 0.0001459 0.01887 0.01943 0.006726 0.0004797 0.00286 0.5535 0.0006959 0.08744 0.0001767 1.114e-05 0.0004173 0.0002709 1.228e-05 0.361 0.00293 4.141e-05 0.002757 1.145e-05 0.0001023 0.0031 0.3761 0.003184 0.0004368 0.01298 0.02015 0.3068 0.001753 0.001829 0.07081 0.01684 0.1728 0.01116 2.397e-05 0.004537 6.551e-05 0.007377 0.002746 0.0006209 3.62e-05 9.605e-06 3.009e-07 0.0007583 0.0001736 0.0007018 0.0182 7.42e-05 0.006898 0.003517 0.04511 7.304e-05 0.01798 0.003947 0.009996 0.001964 1.934e-05 1.315e-05 0.000785 0.0002433 0.0006802 0.0002107 0.153 0.000208 0.001611 0.01128 0.006764 0.002832 0.1991 0.002383 0.0001979 0.001419 0.3238 0.3072 0.1503 0.003014 0.005318 0.04306 0.001743 0.003156 0.02034 0.0002791 0.2421 0.6177 0.002506 0.002192 0.009067 0.01005 0.008993 0.01162 0.5902 0.01689 0.0007989 0.0009376 0.003855 0.001685 0.6036 0.005682 0.0005839 0.01629 0.00845 1.54e-05 0.005558 0.03808 0.005051 0.2914 0.02349 0.001471 0.0001185 0.4121 0.007546 0.01041 0.02122 0.002121 5.034e-05 0.291 0.001675 0.0005783 0.4588 2.916e-06 0.0007655 0.0006867 0.6303 3.405e-05 0.008734 0.001227 0.001059 0.01644 1.065e-05 0.0004364 0.004529 0.006829 0.4111 0.02653 0.5695 0.3307 0.00114 0.000212 0.002838 0.03981 0.0002762 0.0001554 0.0001368 0.0003959 6.875e-05 1.804e-05 0.5629 0.5531 0.1801 0.001902 0.6315 0.003555 0.001212 7.614e-05 0.001175 1.174e-05 0.003335 0.0001334 2.754e-06 0.5858 0.01783 0.006219 0.4859 0.0004317 0.01879 0.0009361 0.0001109 1.514e-05 6.083e-05 0.001587 0.003303 0.00045 0.009703 0.001348 5.34e-05 0.002955 0.003615 0.2414 0.001593 0.0155 0.0005928 0.05598 0.5792 0.0008477 0.0007798 0.01497 0.2823 0.2822 0.04593 0.5669 0.002344 0.001951 0.003973 0.0004185 0.0001819 0.4709 0.0009896 0.4251 0.5393 0.0002485 0.003126 0.0001701 0.003068 1.684e-05 0.005787 0.0318 0.0007852 1.377e-05 0.3172 0.562 0.1306 0.3788 0.003068 0.0005006 0.5611 0.02833 0.0006759 1.65e-05 0.04282 0.001287 4.983e-05 0.0006084 0.5719 0.01833 6.935e-05 0.09622 1.906e-05 0.005874 0.00124 0.5719 0.0003703 0.005561 0.001162 2.83e-05 0.004121 0.0003168 6.455e-06 0.001984 0.003494 0.6091 0.0001549 0.5487 0.006038 0.0006177 0.0005062 0.01913 0.005828 0.5794 0.6226 0.01497 0.007593 0.01164 0.001563 6.574e-05 0.03864 0.01441 0.01772 0.5661 0.007984 0.0521 3.915e-06 0.001658 0.00666 0.1026 0.0009677 0.00124 0.6337 0.6337 0.395 0.008037 0.0005204 0.004431 0.0003773 0.0002059 4.128e-05 0.0004561 0.0002012 7.306e-05 0.2287 0.2496 0.0008889 0.001812 0.0005563 0.002343 0.0007128 0.5188 1.81e-05 0.3287 0.3393 0.4664 0.0003252 0.0003349 0.01193 0.05206 0.0004824 0.003498 0.0002794 0.001863 0.003962 1.753e-05 0.3144 0.002826 0.008913 0.549 9.732e-06 2.425e-05 0.0001544 0.005332 0.002125 0.05132 0.009957 0.002694 1.015e-05 0.0001912 0.5343 0.6369 0.004902 0.0005043 0.00146 0.0156 0.007988 0.0003809 0.02378 9.915e-06 1.43e-05 0.007872 0.002356 0.2924 0.00205 0.03092 0.03546 0.00513 9.681e-06 0.001657 0.4041 0.4044 0.0004899 0.01533 0.0005568 0.003247 0.5726 0.0007697 0.002282 0.43 0.001092 0.001258 1.422e-05 0.002568 9.393e-05 0.0003532 0.007454 0.00138 3.207e-05 0.03517 0.0152 0.1803 0.001561 0.3942 0.0005383 0.0003659 0.005333 0.5705 0.5652 0.0002992 0.01211 0.008257 9.369e-06 0.001306 0.1126 0.003597 0.0006659 1.696e-05 0.002671 0.002151 0.01412 0.00587 0.002774 0.01052 0.01125 0.3962 0.003227 0.0001176 0.001428 0.001267 6.899e-05 1.631e-05 0.0181 0.001806 0.009507 0.004367 0.07741 5.069e-05 0.0005013 0.5726 0.0002451 0.1188 0.1793 0.0001723 0.0002984 0.02854 0.001063 0.4534 0.1326 0.0009647 0.6262 0.0003418 0.5742 0.003142 0.002708 0.03523 0.0004241 8.04e-06 0.008025 0.001412 0.003098 0.0001553 0.009655 0.01195 0.04072 2.606e-05 0.008354 0.08302 4.213e-05 0.01003 1.427e-05 0.000653 1.704e-05 0.005631 0.002269 0.5716 0.005386 0.00557 0.1031 0.01104 0.001604 0.009471 0.01753 0.4129 0.0119 0.4323 0.002169 0.005636 0.0004703 0.001067 0.002794 0.0009328 1.32e-05 0.02276 0.006793 0.009632 0.497 0.1512 0.007266 0.009317 0.002539 0.001863 0.02676 0.0001074 0.0007843 0.001375 0.0186 0.0007437 0.1562 0.005427 0.0003361 0.002216 0.0004628 0.01151 0.0007543 0.002697 2.789e-06 0.008719 0.01177 0.009807 0.002009 0.0002551 0.007931 7.6e-06 0.01081 0.04958 0.0002458 0.03701 0.004264 0.001937 0.001625 0.009342 0.0003109 0.3872 0.06461 0.003721 0.5731 0.0001848 0.00735 0.0009594 0.01663 0.2882 0.0005677 0.00419 0.002991 0.0004196 0.05468 3.798e-05 0.01054 0.004775 0.5868 0.001881 0.4697 0.5097 0.5803 0.0577 0.0007431 0.005972 0.007618 0.5122 0.0001728 9.462e-05 0.0001171 0.005944 0.3953 0.000662 0.005793 0.006797 0.0004353 0.5985 0.5557 0.01906 0.009284 0.005363 0.008097 0.01433 0.005055 0.0006467 0.03656 0.001189 0.004545 0.0002605 0.08413 1.003e-05 0.01214 0.005967 0.02177 0.0008558 0.005273 0.004185 0.0006085 0.001581 0.5534 0.003019 0.4097 0.004581 0.5108 0.001397 0.5721 0.003195 0.001185 7.908e-06 0.01143 0.0003539 0.003962 0.01468 2.071e-05 0.006332 0.005396 0.0004493 0.0006764 0.3099 0.005914 0.5548 0.009713 7.886e-05 2.038e-05 0.3171 9.642e-06 0.002876 0.005916 0.0009495 0.0006734 0.0001632 0.002649 0.0001538 0.05852 0.07889 0.03213 0.002096 0.002734 0.5684 0.0001725 0.001931 0.009348 8.021e-05 1.541e-05 0.0002314 0.494 0.05526 0.004688 0.009528 0.002125 0.08731 0.004923 0.004951 0.0004038 0.002712 0.000216 0.02542 0.0004573 0.001327 0.01822 0.002374 0.001157 0.0003536 0.007502 0.001159 0.6276 0.003488 0.002556 0.001224 0.004163 0.02272 1.435e-05 0.001706 0.4364 0.0003707 0.002288 0.5349 4.595e-06 0.000458 0.005706 0.221 0.04147 0.03711 0.5658 0.0003807 6.864e-06 0.0006635 0.005182 0.007572 0.0002348 0.5014 0.0003171 8.33e-05 0.074 0.002858 0.001329 0.2931 0.0002202 1.333e-05 0.00495 0.007156 0.0003307 1.319e-05 9.656e-06 4.948e-06 0.5813 0.05698 0.21 0.0001775 0.001642 0.0004231 0.0001652 0.2938 0.007083 0.008815 0.002034 0.0004149 0.3058 0.01049 0.02286 0.0008206 0.01843 0.01049 0.4386 0.04014 0.0008836 0.5576 0.3521 0.02876 9.18e-06 0.0155 0.0006078 1.268e-05 0.0006299 1.413e-05 0.2044 0.0002741 0.003009 0.0002997 0.002302 0.03897 0.001006 0.003494 0.408 0.00255 0.4858 0.003234 0.00817 0.003191 4.076e-05 0.235 0.003586 1.436e-05 6.217e-05 0.02282 9.188e-06 0.001141 0.05447 0.08761 0.01322 0.0007051 0.0007232 0.002419 0.0007546 0.437 0.04186 0.0001662 0.001498 0.2589 0.08534 0.1791 0.4679 0.01258 7.045e-06 0.0001005 0.0009673 0.002677 0.3266 0.2891 0.005668 0.4135 0.3874 6.443e-05 0.4916 0.003561 0.3289 0.003313 0.007351 1.31e-05 4.245e-06 0.00362 0.4618 0.007781 0.0001816 0.003362 0.0006524 0.001313 0.001502 0.0006786 0.0004334 0.00994 0.005299 0.01772 1.296e-05 0.1505 7.971e-06 0.001347 0.0004679 0.000869 0.00573 0.00371 0.005744 0.001445 0.003392 0.001439 0.5831 0.03369 0.005259 0.005602 2.021e-05 0.006415 0.01189 0.000486 0.5552 0.001051 7.403e-05 0.005328 6.753e-05 0.01465 0.007701 5.565e-05 0.000118 0.4057 0.007756 0.001189 0.6141 0.0022 0.0003285 1.578e-05 0.02441 0.04423 0.001558 0.3962 0.001979 0.6061 0.2913 0.002696 0.002843 0.02377 0.3874 0.542 1.26e-05 0.001567 0.001948 0.03953 0.008802 0.5927 0.04311 0.009015 0.01095 5.886e-06 0.008183 0.616 0.3936 0.03041 0.004178 0.01024 0.0005075 1.395e-05 0.001832 0.01496 8.298e-05 0.004066 0.007878 0.001545 0.3858 0.02426 0.009108 0.0002589 0.002158 0.004291 0.3173 0.008272 0.003239 0.001088 0.03401 0.01515 0.001005 0.0002129 0.003777 7.13e-06 0.03183 0.004905 0.006675 0.5717 0.0005335 0.006709 0.01551 0.0002502 0.008621 0.01148 0.0001661 0.002603 3.967e-05 0.0002162 0.0009525 0.5529 0.3707 0.008151 2.827e-05 1.52e-05 0.0005769 0.004142 0.06638 2.726e-05 0.0008768 0.003582 0.0001784 0.01044 0.3997 0.009082 0.0003757 0.002058 0.5207 0.003346 0.0003473 0.4264 0.3885 0.03835 0.5708 9.279e-06 0.003307 0.01936 0.486 0.02658 0.03156 0.4053 0.0002571 0.5725 0.0009894 0.5571 1.835e-05 0.05474 0.4726 0.001833 0.004255 0.006956 0.003267 0.01831 0.004546 0.001082 6.989e-06 0.1328 0.003013 0.002018 0.0001204 0.006855 0.3923 0.0005188 1.219e-05 0.0003088 0.03884 0.0167 0.002774 0.0005729 0.01931 0.0005911 0.4087 0.002177 0.08006 0.06977 0.0001546 0.007766 0.003834 0.5491 0.09047 0.001975 0.006618 0.5762 0.002299 0.008935 0.3922 0.0005961 0.002123 0.0007659 0.001254 0.007078 0.0002584 9.5e-05 0.0008418 0.0002306 0.002424 0.0002737 0.002449 0.001129 0.005219 0.0008866 0.001549 0.001069 6.049e-06 0.5161 0.004164 0.01075 0.003845 0.004869 0.006306 0.0001096 0.002317 0.002539 0.02337 0.5766 0.0003475 0.003639 0.005068 0.005318 0.02698 0.005488 1.662e-05 0.000305 4.641e-05 0.3276 0.001155 0.0008597 0.001534 0.003007 0.003517 0.03339 0.0047 5.976e-05 0.0001431 0.008568 2.057e-05 0.002512 0.0004189 0.001212 0.001826 0.5388 0.0001872 0.003367 0.001204 0.001594 0.000152 0.01174 0.6189 0.002349 0.004746 0.5706 0.001359 0.0006788 0.004388 0.0007893 0.08156 0.03363 0.004071 0.02101 0.001436 0.001465 1.113e-05 0.0005565 0.003051 7.059e-06 0.07748 0.007617 0.5667 0.003154 4.12e-06 0.00145 1.278e-05 0.002555 0.0001874 0.01075 0.002507 0.5646 0.002565 0.001391 0.08065 6.486e-05 0.001338 0.000658 0.01016 7.929e-06 0.01927 0.02451 0.01291 0.002809 0.003335 0.4755 1.258e-05 0.006166 0.4123 0.0106 0.0005746 7.224e-05 0.5766 0.001419 0.001272 0.0003334 0.0009166 0.5501 0.5715 0.03671 0.02853 0.0117 0.03553 0.0264 0.04948 0.0006774 0.0001263 0.001139 0.004377 0.4013 0.00522 0.001875 0.006701 2.002e-05 0.0088 0.3682 0.5435 0.007184 0.00376 0.005176 0.1846 0.001239 0.005064 0.01244 0.0002229 0.569 0.00704 0.5207 0.272 0.5742 1.078e-05 0.003677 0.002993 0.004564 0.6515 0.002347 0.0002037 1.527e-05 0.4519 0.007171 0.0001338 0.002932 0.0004557 0.0004382 0.004871 0.573 0.0002251 0.001282 0.1399 1.337e-05 0.0674 0.005361 0.001308 0.001349 0.02629 0.01058 0.01563 0.001056 0.01751 0.1435 0.009521 0.4452 0.05714 2.645e-05 0.001896 0.003461 0.5486 0.5159 0.004009 0.003162 2.982e-05 1.4e-05 0.0001412 0.003833 0.3958 0.008661 0.006356 0.02164 0.008618 1.233e-05 0.157 0.004586 0.4587 0.0007182 0.009975 0.006868 0.001384 0.0004239 0.0089 0.003108 0.3914 6.277e-05 0.3689 0.0229 6.931e-05 0.001017 0.0006416 0.576 0.5696 0.1163 0.0007553 0.0001037 0.02276 0.0009249 0.0001281 0.0005785 0.0005137 0.04876 1.383e-05 0.0001686 1e-05 0.003551 0.01018 0.001007 1.683e-05 0.001251 0.008042 0.004051 2.683e-05 0.004196 1.391e-05 3.562e-05 0.001123 0.002729 0.00268 0.007862 0.5708 6.305e-05 0.08446 0.2737 0.0007769 0.1997 0.0001774 0.001248 0.0006752 0.0007264 0.1025 0.0005114 7.176e-06 0.008836 0.004087 0.002701 0.001716 0.001406 0.0314 0.003919 0.006047 0.000758 0.0008006 0.002048 0.00829 0.00113 0.0002089 0.000382 0.03205 8.148e-05 0.02133 0.4771 0.00248 0.2129 0.4168 0.0003235 3.231e-05 0.0003946 0.001586 0.4388 0.001759 0.0004929 0.005335 0.4609 0.0002233 0.4456 0.0004891 0.5652 0.1795 0.03032 0.2475 0.0009819 0.00239 0.1972 0.0007484 0.001627 0.0002257 0.0008817 0.07119 0.002088 0.5779 0.0004928 0.0002765 0.58 0.00218 0.0008533 0.1163 0.001239 0.004134 0.4529 0.02685 0.3438 0.004877 0.001867 8.586e-05 0.003572 4.963e-06 0.5679 0.000396 0.003036 0.002288 0.01401 0.0007941 0.0003122 0.3798 0.003548 0.199 0.002218 0.001316 9.329e-06 0.001963 0.5477 0.005649 0.0058 0.04968 0.4364 0.0005878 0.0004248 0.08655 0.6412 0.01946 0.01334 0.0005742 0.00719 0.6037 0.1812 0.002697 0.002163 0.004497 0.0001647 3.087e-06 0.0004217 0.5401 5.58e-05 0.4863 1.56e-05 0.00309 0.01122 0.0009131 4.476e-05 0.3863 0.00354 2.929e-05 1.634e-05 0.5658 0.000625 0.5455 0.425 0.005564 0.0008255 0.1189 0.5497 0.007447 0.006388 0.008998 0.003175 0.1147 0.0001754 0.2865 0.2866 0.05584 0.5731 0.04221 0.0002297 0.000216 0.002578 0.009905 0.3017 0.5326 0.005911 0.01131 0.0001525 0.5687 0.1382 0.02492 0.0008213 0.01469 0.0008205 0.0003127 0.0003929 0.004205 0.001347 0.0006804 0.01076 0.002263 0.0003276 0.007045 0.006794 0.5769 0.3717 0.574 0.005536 0.05119 0.002146 0.002559 8.164e-06 0.0122 8.318e-05 0.0009625 0.01879 0.03572 0.02758 0.001915 0.003639 0.001397 9.637e-05 0.2775 0.002111 0.4199 1.335e-05 0.03388 0.0009136 0.001394 0.008699 0.02545 0.000747 0.001326 0.0009054 0.0001756 0.001702 0.01673 0.008598 0.001987 0.001445 0.02751 7.266e-05 0.008144 0.0003686 0.0001616 0.001413 0.002822 1.397e-05 0.002652 0.0009772 0.3463 0.0002557 0.08454 0.01738 0.01419 0.01864 0.0004531 0.007003 0.001323 0.0006018 0.01073 0.0009875 0.0006093 0.5938 0.0004314 0.006089 0.0004696 0.007513 0.3365 0.001742 0.004867 4.574e-06 8.889e-05 0.002215 0.006972 0.01203 0.0001222 0.007865 8.193e-06 0.0005287 0.004364 0.003711 0.0008263 0.0006201 0.6398 0.002148 0.0001702 0.001041 0.000318 0.4177 0.004423 0.001261 0.4627 0.5684 0.003917 1.516e-05 0.01045 0.001945 1.408e-05 0.002007 0.0007307 0.383 0.0005343 0.01471 0.0004402 0.5184 0.3513 0.01064 0.008169 0.003721 0.00307 0.0003921 0.009488 0.3223 0.4776 0.0005002 0.004542 0.0004776 3.101e-05 0.0007173 0.0001277 0.007235 0.00251 0.008699 0.0005197 0.009889 0.01012 0.001377 0.003004 0.003056 0.002363 0.00453 0.0009724 0.5452 0.0436 0.001755 0.01689 0.01253 0.4311 0.002319 0.001368 0.001339 0.0002992 0.001119 0.5705 0.001295 0.00101 0.003377 1.545e-05 1.48e-05 1.262e-05 0.007044 0.5727 0.001065 0.001362 0.02548 0.02825 0.4001 0.583 0.4702 0.6029 0.0145 0.0003335 0.004647 0.0003453 1.23e-05 0.03086 0.004414 0.01187 2.542e-06 0.004829 1.599e-05 0.002854 0.004764 1.112e-05 0.2458 7.404e-05 0.0001502 0.02367 0.2101 0.0007744 0.003663 0.003688 0.002821 0.005876 0.1731 0.002033 0.007516 0.004093 1.838e-05 0.004282 0.5072 9.933e-06 0.2265 0.002758 0.001157 0.0003052 9.948e-06 4.371e-05 0.008629 0.001534 0.0001364 0.0162 0.0217 0.003382 0.0001051 0.0009083 0.02099 0.3031 0.5608 0.02557 0.0005104 0.4811 0.001667 0.01456 0.5559 0.001657 0.002835 0.0007898 0.02686 0.00281 0.0005285 0.5757 0.5429 0.0001158 0.004657 0.006376 0.004604 0.003419 6.515e-06 0.0004633 0.5797 0.01504 0.08717 0.001893 0.02846 1.778e-05 0.5598 0.002474 0.004875 0.000905 0.4415 0.006452 0.05989 0.0005674 0.022 0.0002221 0.006646 0.0003895 9.647e-05 0.00363 0.008776 0.007524 0.00587 0.00384 0.02623 0.0008894 0.189 0.001913 0.0006808 0.6244 0.0007539 0.008568 0.000349 0.0054 0.0002402 0.0108 1.57e-05 0.4941 0.008843 1.087e-05 0.04129 0.0002785 0.5779 0.01854 0.000639 0.001711 1.159e-05 0.0006385 0.001092 0.5635 0.005777 0.01385 9.078e-05 0.01562 0.001868 0.4116 7.847e-06 0.0006581 0.01801 0.004527 0.001974 0.4103 0.0005512 0.4078 0.0001283 0.007089 0.001964 0.003897 0.007275 0.006008 0.02331 0.001958 0.007825 0.0001762 0.000808 3.822e-06 0.001293 0.003028 0.005854 0.0008244 0.5856 0.5696 0.002062 0.6106 2.046e-05 0.01997 0.003659 0.004053 0.009742 0.002487 0.007555 0.003973 0.006013 0.001168 0.3645 2.135e-05 0.002348 0.01838 0.06562 0.003246 0.003878 0.151 0.0001433 1.227e-05 0.0005649 0.006897 0.0004852 0.5728 0.1469 0.002946 0.5711 0.06458 0.004349 0.002239 0.0004145 0.3141 0.004005 0.01377 0.4066 0.487 0.001116 0.00437 7.346e-06 1.304e-05 0.564 0.01072 0.5566 0.0001124 0.0002564 0.00899 0.2717 0.005421 0.571 0.000297 0.0005722 0.3631 0.5487 0.004766 0.5635 0.008653 0.009333 0.004079 0.001624 0.0005532 0.002996 0.001485 0.5749 1.331e-05 0.01098 0.01275 0.0001241 0.0001104 0.001039 0.5718 0.01909 4.559e-05 0.0004894 0.5718 0.574 0.003539 0.005973 0.03044 0.04245 0.1359 0.009654 2.014e-05 0.003137 0.004806 0.003283 0.001423 0.0004024 0.0008966 0.05452 0.5233 0.5527 0.3947 0.001063 9.063e-05 1.679e-05 0.001131 0.1515 0.1306 0.003315 0.04527 1.394e-05 0.004137 0.03892 0.0001615 0.5653 0.01267 0.4878 0.005368 9.266e-06 0.03208 0.001167 0.3965 0.001364 0.004338 0.003123 0.0006 0.00848 0.02824 0.0003423 5.365e-05 0.0008969 0.002713 0.2655 0.3205 0.01515 0.001287 0.006872 0.005811 0.005644 0.5715 0.02461 0.03968 1.821e-05 0.0004645 0.1075 0.012 7.143e-05 0.01672 0.00021 0.0003925 0.573 0.00305 5.13e-06 0.000465 0.5135 1.385e-05 1.635e-05 0.3998 0.001228 1.694e-05 0.001029 0.002422 0.5743 0.0003169 0.4071 0.01363 0.001093 0.0005005 0.003276 0.08546 1.43e-05 0.00499 0.0008568 0.001112 0.0003123 0.0137 0.3714 0.003082 0.571 0.008518 0.007061 0.5682 0.005305 0.5917 0.02414 0.0003949 0.001521 0.1751 0.05164 0.2944 0.001515 4.692e-05 0.001625 0.0009524 0.0004438 0.0006564 0.000163 0.001584 0.0007486 0.002747 0.5979 0.0006595 0.01322 5.459e-05 0.001498 0.0008143 0.01413 0.001217 0.604 0.006241 0.0003282 0.5725 1.251e-05 0.000821 1.322e-05 0.4613 0.02213 0.02288 0.1811 0.004667 0.002319 0.01441 0.0264 0.5769 0.4735 0.3856 0.6643 0.004423 0.002205 1.601e-05 0.1339 0.04187 0.001888 0.002829 0.002601 0.5779 0.01417 0.000144 0.006531 0.02408 0.002654 0.009765 0.009506 0.0005744 0.0007918 1.394e-05 0.3315 0.001369 0.00355 0.008051 0.004922 0.5015 0.0001268 0.4331 0.01309 0.001118 0.5766 0.5462 0.01671 0.2943 0.004522 0.003632 0.003846 0.0001922 0.006767 0.009356 0.0004944 0.02487 0.000117 0.005054 0.6174 0.0004066 0.3499 0.2314 0.3566 0.0008489 0.008584 0.4281 0.0003213 7.206e-05 1.304e-05 0.002245 0.009119 0.004339 0.4809 0.000627 0.003822 0.5771 0.0006294 0.001447 0.002197 0.02192 0.005084 0.09277 0.149 0.006042 0.3907 0.3845 0.003808 9.403e-06 0.0009091 0.001229 0.00363 0.001522 0.0004613 1.805e-05 0.0002724 0.003637 0.00682 0.5605 1.949e-05 0.5805 0.0009347 0.001297 9.835e-06 0.4312 0.006024 0.0003612 0.0009388 1.139e-05 0.0003346 0.006492 0.0002065 0.005784 9.825e-06 0.001423 0.006841 0.001503 0.005487 0.006153 0.006145 0.3302 0.01998 0.006046 0.2725 0.4436 0.003427 0.3169 0.4558 0.0189 0.0001523 0.0007375 0.004095 0.01657 0.5735 0.02553 0.001131 0.000661 0.01861 0.005051 0.002213 0.0008847 0.1979 0.001375 0.0007358 0.003511 0.0006722 0.008088 0.007642 0.0002909 0.0002686 0.5605 0.0006121 0.01043 0.0004646 0.001697 0.04896 0.0005708 0.0002679 0.0979 0.009032 0.009174 0.0007294 0.005777 0.4343 0.03458 0.00101 0.001537 0.00111 0.4319 0.1218 0.002458 0.005569 0.02011 0.06546 0.5632 0.3457 0.0003364 0.3283 0.2391 0.4029 0.0006418 0.0003134 0.0001066 0.006248 0.5882 0.03818 0.1638 0.586 0.003757 0.5075 0.03391 0.3683 3.344e-07 0.02321 0.01162 0.5602 0.0004281 0.00813 7.899e-05 0.001738 0.01408 0.0264 1.887e-05 0.01637 0.000103 0.00528 0.0005674 0.3602 0.06629 0.0001231 0.0001304 2.921e-05 0.002291 0.01027 0.0009171 0.0001276 0.00624 0.01613 1.161e-05 0.003818 8.037e-05 0.06631 0.0004977 0.004385 0.006944 9.917e-05 0.003254 2.012e-05 0.4268 0.0008676 0.5659 0.5717 0.5684 0.01205 1.904e-05 6.579e-05 0.0001662 3.469e-05 0.0002243 0.3598 0.004383 0.5533 0.00887 0.000736 0.3441 0.002821 0.005401 8.594e-06 8.993e-06 0.001505 0.003294 0.0007614 0.2997 0.2996 0.007666 1.62e-05 0.5733 0.1045 0.1586 0.002387 0.009213 0.0002312 0.0004557 0.0011 0.00208 0.4702 0.497 0.09392 0.621 0.348 0.002643 0.004736 0.002054 0.1264 0.01458 0.00252 0.004698 0.1528 0.01667 0.005895 0.03386 0.007114 0.6228 0.007113 1.002e-05 0.0001607 0.5842 0.01141 0.03522 0.0005658 0.0306 0.5909 0.000324 0.0001963 0.006939 0.0006404 0.006256 0.07557 0.006696 0.1918 0.3106 8.439e-06 0.004655 0.65 0.005145 0.0001882 0.5865 0.0003889 1.916e-05 0.004481 0.002901 0.0009658 0.003278 2.518e-05 1.334e-05 0.3854 0.572 0.002171 0.006309 0.0005143 0.0009953 1.142e-05 0.5832 0.0001521 0.001197 0.0002502 0.5291 0.1018 0.006875 0.009886 1.755e-05 0.01791 0.001021 0.001651 0.03371 0.0002154 0.002826 0.0009727 9.983e-05 0.0527 0.007255 0.004743 0.000515 0.01034 0.5784 0.0016 0.008254 0.1174 0.006666 0.005735 0.02185 0.5237 0.001097 0.001284 0.2213 0.02528 0.00311 0.001142 0.003972 0.0272 0.0004582 0.003493 6.71e-06 1.527e-05 0.0002809 0.001289 1.43e-05 0.001048 0.01987 0.4428 0.003796 0.001299 0.000412 0.6017 0.07801 0.0001686 0.002692 0.003825 0.003509 0.006251 0.002698 0.001407 1.437e-05 0.04384 0.009725 0.2301 0.001177 0.004646 0.008185 0.000389 0.001133 0.03906 0.0008629 0.01872 1.308e-05 0.3844 0.0008602 0.619 0.008905 0.004489 0.5625 0.09006 0.001386 0.001884 3.739e-05 8.454e-06 0.0006217 0.005121 0.001315 0.001684 0.5703 0.0003333 0.003918 0.004388 0.006919 0.011 3.165e-05 0.008486 0.0004479 0.09319 0.586 0.0007042 1.454e-05 0.007039 0.001031 0.008018 0.6079 0.03781 0.5672 0.004576 0.0006642 0.002363 0.05663 0.0006147 0.01228 0.07262 0.06561 0.00404 0.004201 0.001325 0.006039 0.004887 0.5709 0.4879 5.575e-07 2.046e-05 0.01132 0.001183 0.005456 0.0006739 0.004136 8.752e-06 0.5548 0.0002451 0.05062 0.004144 0.004914 2.204e-05 0.6005 0.004133 0.001567 0.006863 0.3604 0.3643 0.4048 0.006009 0.0001531 0.0009577 0.5879 0.000777 0.002118 0.05471 0.00123 0.0009682 0.4939 0.4938 0.01182 0.004905 0.5351 0.005088 0.0004112 0.5606 0.008063 0.4463 0.5983 0.03453 0.0001885 0.0003093 0.002929 0.0001879 0.1945 0.002255 0.005249 0.02791 0.004224 5.333e-05 0.5682 0.5749 0.5461 0.6136 8.333e-06 8.02e-05 0.0003104 0.009621 0.004302 0.5487 0.003209 0.005106 0.0001754 0.02831 0.5762 0.0007488 0.2092 0.008629 0.001733 0.5599 0.0008136 0.0005142 0.002699 0.0009881 0.002731 0.003459 0.03764 0.05347 0.00352 0.01185 0.05003 0.004609 0.001535 1.374e-05 0.004623 0.01279 0.001582 0.02031 0.002022 0.02856 0.0006189 1.292e-05 0.5739 0.001578 0.0004957 0.0653 0.01646 0.001252 0.005591 0.0001608 0.001659 0.3408 0.002395 0.0005887 0.000978 0.002007 0.02074 0.01142 0.002037 0.007021 6.68e-05 0.3784 0.002567 0.0104 0.004422 0.2149 0.001334 0.0004253 0.007229 0.3878 0.0009623 0.007939 5.993e-05 0.09434 0.006753 0.001635 0.001561 1.977e-05 0.003176 0.07505 0.002797 0.0007048 0.0004883 0.01017 0.005784 4.214e-05 0.3427 0.3912 0.0004283 0.0003024 0.001152 0.0004224 0.002016 0.0009437 0.0001486 0.3689 0.00142 0.002985 0.001162 0.005448 5.007e-05 0.002706 0.000774 0.001437 0.001071 0.006716 1.034e-05 0.0001435 0.524 0.009886 0.001135 0.0003344 0.001091 0.6093 0.00329 0.0001429 0.01797 8.806e-06 0.4009 0.006666 0.002442 3.294e-05 0.588 0.008625 0.00104 0.0001776 0.0156 0.003304 0.6208 0.0276 0.2898 0.002059 0.0001374 3.76e-06 0.07986 0.001956 0.0003333 2.277e-06 0.1579 0.005278 0.02399 0.006703 0.01617 0.5584 0.003797 0.07475 0.002214 0.005676 0.005235 0.05847 0.0009767 0.04475 3.051e-05 0.0007074 0.0006923 0.5513 0.0002095 0.5258 0.5393 0.0001763 1.344e-05 0.5186 0.009935 0.01752 1.006e-05 0.003618 0.5707 0.001512 0.5789 8.407e-06 0.0141 0.02542 0.0005338 0.001574 0.0004711 1.999e-05 0.3314 0.001808 0.002108 0.1193 1.742e-05 0.5621 0.001491 0.001957 0.1251 0.003519 0.5822 8.534e-05 0.09577 0.1369 0.005461 0.008284 1.449e-05 0.0009776 0.5593 0.0002955 0.0001454 0.0005116 0.003744 0.006202 0.6277 0.005695 0.0002683 0.006764 0.02405 0.002027 0.005056 6.492e-05 0.1292 0.00149 0.3023 0.00116 0.004122 0.5642 0.0001507 0.3395 0.02334 0.005046 2.638e-05 0.00111 0.001658 0.002382 0.3329 0.002121 0.005281 0.0005014 0.0011 0.00945 0.0008006 0.0008896 0.2261 0.3494 0.004281 0.4148 0.4261 0.0005398 0.0005275 0.04481 0.002561 0.0001509 0.5569 3.006e-06 0.5641 0.1676 0.0005268 0.5223 0.001516 0.007493 0.003671 0.008516 4.942e-05 0.003747 0.0004724 0.5748 0.01599 0.01442 0.05268 0.00063 0.003592 5.476e-05 0.002226 9.308e-06 0.007864 0.006731 0.0001093 0.5958 0.007827 0.003898 0.1563 0.2999 0.5692 0.0003014 0.4781 0.00149 0.0005326 0.004204 0.006304 0.01272 0.002054 5.787e-06 0.001567 0.06253 0.006049 0.001156 0.03514 0.03447 0.04607 0.0007496 7.572e-05 0.0004952 0.00502 0.001667 0.0001235 0.5667 0.00139 0.006839 0.006875 0.0002 0.004034 0.5954 0.000158 0.03079 0.5183 0.005167 0.008829 0.00274 0.03747 0.001571 0.002581 0.1622 0.1177 0.008686 0.5343 0.08518 0.000764 0.00724 0.003594 0.0009056 0.001572 0.5398 0.4751 0.003936 0.002659 1.013e-05 0.001608 0.4618 0.002084 0.3237 0.005499 0.001739 0.14 0.001606 0.002115 0.5676 0.05078 0.5625 0.002954 0.00195 0.3567 0.3567 0.001189 0.0003301 0.006564 0.0004092 0.01065 0.002318 0.005517 0.4119 8.626e-05 0.01162 0.409 0.003398 0.001032 0.5151 0.003983 0.001789 0.00127 0.0401 0.002645 0.2513 0.0006947 0.0008781 0.001113 0.001006 0.002394 0.006475 0.4789 0.5832 6.45e-05 0.1376 0.002964 0.5811 0.001786 0.01049 0.0004052 0.004386 0.4818 0.006438 0.006898 0.003341 0.005802 0.005671 0.3403 0.01229 0.001423 0.0008808 0.03114 0.002038 2.76e-05 0.02421 0.001024 1.068e-05 0.003158 0.01579 0.002155 0.002905 0.01578 0.1576 0.002538 1.318e-05 1.903e-05 0.0004045 0.001202 0.001118 0.0004368 0.001375 1.219e-05 0.002117 0.0007452 0.001387 0.000843 5.892e-05 1.765e-05 3.02e-05 0.001937 0.007282 3.882e-05 0.004983 0.59 6.804e-06 0.05852 0.001271 0.5676 0.000884 0.4184 0.001259 0.5307 1.898e-05 2.337e-05 0.003542 0.02022 0.0006126 7.13e-05 0.0003288 0.003102 0.007605 0.003492 0.001581 0.001207 0.005804 0.003703 0.0004967 0.004891 0.001099 0.5385 0.000604 0.0001824 0.0001981 0.0009318 0.02086 0.0002489 0.0008205 0.006079 0.008517 0.0004247 0.008151 0.5666 0.0003514 0.4349 0.4666 1.577e-05 0.006197 0.01277 0.0001794 0.003002 0.0001289 0.0654 0.5787 0.003397 0.0001722 0.003821 0.0005587 2.229e-05 0.004875 0.02657 0.2936 0.008859 0.004001 0.002329 0.0002717 0.001348 0.001582 0.0002525 3.183e-05 0.002758 0.0005186 0.009072 0.001528 0.01788 0.01623 0.0003613 0.03187 0.001863 0.002856 0.5898 0.5625 0.003173 0.002829 0.0185 0.5712 0.179 0.0004359 0.0002705 0.01515 0.5987 0.000862 0.0003319 0.2849 0.007308 0.002415 0.007703 0.4967 0.008202 0.01614 0.0149 0.002184 0.378 0.006213 3.354e-05 0.006821 0.5236 0.009954 0.004978 0.0002902 0.0001636 0.008203 0.0001117 0.001289 0.3409 0.601 0.0006618 5.85e-06 0.001194 0.0006083 0.02091 0.0008845 0.5817 1.844e-05 0.01075 0.03675 0.002809 0.01057 0.0006417 0.6646 0.006404 0.03723 0.03307 0.4659 6.49e-05 0.002738 0.575 0.004861 0.5653 0.001462 0.09613 8.743e-06 0.001605 0.2488 0.5218 0.5002 0.001541 0.008108 0.005817 0.5756 0.004554 0.0003113 9.192e-05 0.008416 0.003585 1.79e-05 0.0002381 0.006994 0.0004929 0.0002746 2.189e-06 0.08041 0.4052 0.003423 0.435 0.01929 4.993e-05 0.00115 0.3756 0.005209 0.04028 0.003685 0.0004179 0.0004589 0.572 7.86e-05 0.004876 0.002473 0.001125 0.002779 0.001183 0.01151 2.549e-05 7.468e-06 0.65 0.00895 0.003919 0.003742 0.01913 0.007301 0.0009803 0.03302 9.312e-06 0.0007556 0.6195 0.4325 0.0005008 0.5489 0.0001763 0.0003773 0.215 0.0001779 0.0674 0.000212 0.001566 0.2352 0.0006307 0.002646 0.004311 0.008886 0.001315 1.29e-05 0.5072 0.06171 0.1356 2.392e-05 0.02935 0.00175 0.005133 0.001702 0.3109 0.0002439 0.004424 1.878e-05 0.05923 0.03405 1.058e-05 8.853e-05 6.278e-06 0.0006945 1.127e-05 0.002821 0.000432 0.007222 0.01021 0.01211 0.0004546 1.948e-05 0.0005941 0.02033 0.2558 0.6003 0.000492 1.111e-05 0.002433 1.111e-05 0.0002036 0.003207 0.646 0.001798 0.04355 0.0001702 0.01863 0.002771 0.00611 0.0002284 0.0001007 0.00189 0.5633 0.5558 0.007247 0.004848 0.002897 0.01994 0.001289 0.000628 0.00454 0.02409 0.007215 0.002928 0.4842 0.0499 0.007406 0.5709 0.005522 0.4261 0.002005 0.006447 0.5584 0.006009 0.3683 0.5837 3.785e-06 0.1715 0.04152 0.00486 0.00318 0.05758 0.002934 0.006254 0.5501 0.003405 0.5595 2.545e-05 0.004498 0.003821 0.00413 0.004011 0.001309 0.002856 0.03611 0.0004344 0.001706 0.005366 0.4427 0.06913 0.0005013 1.354e-05 0.0003075 0.002856 0.003414 0.0002003 0.0003159 0.004433 1.14e-05 1.541e-05 0.03966 0.007269 0.0002702 6.631e-05 0.2104 1.499e-05 0.5778 0.6382 0.6381 0.005423 0.0005535 0.5656 0.002028 0.3649 0.001176 0.006746 7.942e-05 0.000179 0.0004073 0.00079 0.4847 0.0004353 0.009644 8.31e-06 0.0004194 0.001248 0.001493 0.4071 0.0006246 0.0007285 7.261e-06 0.004499 0.119 1.318e-05 0.01692 0.004288 9.301e-05 0.0006768 0.5286 0.001044 0.001526 0.002833 0.002497 0.02235 0.001999 0.06076 0.002236 0.0008782 0.2123 0.001466 0.01063 0.0001746 0.0004286 0.002945 0.0029 0.004591 0.003417 0.0008679 0.0008883 0.006375 0.0002336 7.441e-05 0.001496 1.2e-05 0.01185 0.001401 0.0002491 0.004196 0.003113 0.02691 0.0009483 0.001572 0.5074 0.008703 0.5769 0.5137 0.385 0.5723 0.001789 0.0003078 0.003269 0.0004842 0.001936 0.002057 0.0003309 0.1897 0.001714 0.5857 1.494e-05 0.001058 0.5111 0.02424 0.002761 0.0015 0.004104 0.001296 0.5521 0.007512 0.001614 0.03372 0.004642 6.233e-05 4.551e-05 0.6022 0.003491 0.5457 0.4176 0.006039 0.6156 0.0003179 0.02549 1.588e-05 0.01578 0.5514 0.000134 0.05983 0.5025 0.00162 0.0009057 2.86e-06 0.0009905 0.5778 0.0004501 0.2752 0.001934 0.3039 0.3036 0.007675 0.00818 0.0193 0.00109 0.0008239 0.01471 0.001785 0.001173 0.5994 0.001281 0.47 0.02175 0.0006415 0.004966 0.4513 0.2475 0.5301 0.003002 0.03566 0.0005276 0.01582 0.00343 0.001715 0.0002472 0.0003513 8.821e-08 0.01415 0.00199 0.0008158 0.001972 6.906e-05 0.5643 0.03494 0.003757 0.0157 8.115e-06 0.0126 0.005043 0.0007168 5.038e-05 0.01372 0.01438 4.409e-05 3.902e-05 0.5629 0.4257 0.0008774 0.00211 0.001415 0.0001905 0.01852 0.0006214 0.0004686 0.0006794 0.0007688 0.004415 0.3189 0.003669 0.001913 0.000324 0.0725 0.0005357 0.01508 0.002946 0.223 0.5828 0.134 0.4882 1.251e-05 0.001564 0.001557 0.02149 0.006176 0.0003266 0.005129 7.636e-05 0.007818 0.5616 0.001274 0.3253 0.003778 0.02694 0.006009 0.5023 0.02896 0.000126 0.000341 0.0078 0.009125 0.002046 0.003276 0.0006095 0.000244 0.0001573 0.004355 0.004552 0.6447 0.01795 0.0055 1.96e-05 0.01363 0.5914 0.00163 0.01129 0.001321 0.3715 0.4748 0.002917 0.4878 0.002246 0.1143 0.02841 0.001142 0.009895 0.0005267 0.5461 0.007246 0.0009363 0.0001459 0.006851 0.0002663 0.001425 4.734e-05 9.487e-06 0.01329 0.0007548 2.424e-05 0.002889 0.003409 0.5238 3.408e-06 4.288e-05 0.001684 0.004082 0.01417 0.02227 0.01198 0.5801 0.02114 0.001167 0.0002455 0.001607 0.005171 7.119e-05 0.002833 0.000249 0.5777 0.0001351 0.008201 0.0008305 0.002948 0.002281 0.0005912 0.594 3.838e-05 1.714e-05 0.3687 0.582 0.1798 0.008067 0.001969 0.04614 0.002029 0.001691 0.01775 0.0004574 0.009982 0.09747 0.002684 0.05083 0.01008 0.0009316 0.008896 3.569e-05 0.1293 0.001464 0.006068 0.008962 4.822e-06 0.00504 0.398 0.01444 0.0006618 0.2396 0.4679 0.000493 0.00141 0.002026 0.002989 0.5427 0.01421 0.008745 0.007726 0.08494 0.0007504 5.911e-06 0.02311 0.5987 0.02736 0.00404 0.5735 0.0233 0.002127 0.002297 0.05623 0.001359 0.004562 0.04305 0.0003132 0.0963 0.001535 2.328e-05 1.247e-05 0.0004972 0.004265 0.005543 0.000489 0.001451 0.003691 4.023e-06 4.876e-05 0.0002955 0.3498 0.000836 0.0002749 0.002327 0.00746 0.0008752 0.01219 0.0001833 0.001032 0.5632 0.2299 0.5803 0.0005164 0.004349 0.5692 0.001105 0.169 7.559e-05 0.0007973 0.002174 0.005904 3.675e-06 0.0001572 8.698e-05 6.171e-06 0.01241 0.0009145 2.593e-05 0.2461 0.001025 0.06916 0.03432 0.004114 0.000777 0.0009188 0.0007618 1.042e-05 0.02864 0.0005365 0.002353 0.007382 0.5777 0.002474 0.5056 0.001806 0.008133 0.01953 0.5557 0.1275 0.2249 0.01353 1.004e-05 0.001232 1.121e-05 0.001778 0.01485 0.003733 0.06646 0.07832 0.003033 0.003297 0.05502 0.1311 0.002764 0.006336 0.02658 0.004109 0.4161 0.001507 0.00542 0.0002076 0.0003618 0.002763 2.762e-05 0.4427 0.003188 5.405e-05 0.0005227 0.01982 0.03251 0.01019 0.01144 0.001432 0.06364 0.001079 8.225e-05 1.518e-05 4.214e-08 0.0002602 4.052e-06 0.202 0.01258 0.02036 1.466e-05 0.003537 1.29e-05 0.06324 0.0002484 9.412e-05 0.0001701 8.212e-05 0.0006207 0.0001518 0.02954 0.01269 0.002385 0.009162 1.145e-05 0.00106 0.003903 0.0006353 0.01037 0.006411 0.003188 0.0003513 0.3474 0.001163 0.604 0.003782 6.963e-05 0.006923 0.001586 0.006551 0.006921 0.001119 0.5433 0.5816 0.2073 2.435e-05 0.00268 0.002386 0.04548 0.001247 0.001128 0.002395 0.4114 0.1832 0.001745 0.0001369 0.00105 0.008924 0.4192 0.4448 0.01016 0.07783 0.07623 0.002992 0.04029 0.001922 0.004753 0.213 3.241e-06 0.002974 0.000865 0.0005572 0.0158 0.002377 0.002459 0.0004596 1.496e-05 0.00326 0.006247 0.0006655 0.001835 1.797e-06 0.004039 0.0006274 0.0003128 0.009755 0.448 0.001584 0.003022 0.007907 0.02395 0.001951 9.767e-05 0.007953 0.1905 0.000348 0.1369 0.01639 0.5714 0.01306 0.5679 0.6642 0.0005059 0.0005242 0.005308 0.0004187 0.009656 0.5353 0.01798 0.03402 0.007247 0.001189 5.592e-05 0.1094 0.01539 0.0001226 0.5892 0.5479 0.04567 0.0009622 1.103e-05 0.0007292 0.0001189 0.6012 0.0001244 0.009949 0.01274 6.712e-05 0.004171 0.04561 7.731e-05 0.0001766 0.0003603 0.0002703 6.484e-06 0.009594 0.004533 0.005483 0.09254 0.05098 0.003884 0.001297 0.003378 0.1354 0.001039 0.001078 0.000631 0.003225 7.087e-05 0.01225 0.5693 0.00319 0.002454 0.008087 9.044e-06 0.004385 0.2887 0.002671 0.001542 0.00435 0.5233 0.5815 0.169 0.006399 0.001399 0.0006385 0.004287 0.001197 0.001655 1.194e-06 7.995e-05 0.0001296 0.04194 0.0009727 0.007502 0.0006444 0.0007465 0.5765 0.005658 0.008206 0.001995 0.001357 0.00021 0.003968 0.0005129 1.546e-05 0.0009235 0.0001781 7.177e-05 0.4316 0.002883 0.0009229 0.001133 5.94e-07 0.0006174 0.0005367 0.0003512 0.01496 0.0009699 0.007972 0.001319 0.004119 0.02311 0.3782 0.4346 0.002516 0.01109 0.5359 0.5604 0.004319 4.435e-05 0.006868 0.004215 0.0003246 7.247e-05 0.001906 0.000344 0.005268 0.41 0.5214 0.03001 0.5435 0.003858 0.003125 0.0004541 0.01074 5.697e-05 0.005392 0.0051 0.0004794 0.1333 0.2791 0.003459 3.299e-06 0.02057 0.01016 0.005522 0.004057 0.002048 0.005567 7.257e-05 8.052e-06 0.5746 0.07591 1.077e-05 0.007822 0.005517 0.2662 0.008412 0.00858 0.0179 0.00137 0.001078 0.01595 0.03741 0.001663 0.5967 0.001414 0.0001472 8.159e-05 0.002058 0.4767 0.0009824 0.0009653 0.0004594 0.204 0.001102 0.004663 0.03008 0.5847 0.0004054 0.01601 0.0006988 0.000364 0.007313 0.01504 0.5691 0.5742 6.683e-06 0.007585 0.0001349 7.289e-06 0.007232 0.5611 0.0005066 0.002946 0.001092 0.0005069 0.002772 0.5644 0.0001931 0.4568 0.003985 0.008656 0.001619 0.3859 0.002849 1.438e-05 0.0003281 0.001689 0.02741 0.0001196 1.3e-05 0.004329 0.03827 1.543e-05 0.4575 0.0003955 0.301 0.07732 0.004619 0.0004674 0.407 0.2777 0.0005135 0.007613 0.002939 0.002631 0.001538 0.01068 0.003555 0.09091 0.0006529 1.086e-06 8.787e-06 0.0006078 0.003763 0.002924 0.05338 0.5392 0.0007361 0.5134 0.001261 0.02494 0.008274 0.00211 0.002095 0.001826 0.4413 0.0006123 0.01236 0.5329 7.657e-05 0.003657 0.0001663 0.3521 0.004559 0.003618 0.005942 0.0001483 0.01857 0.0721 0.01161 0.004601 0.002084 0.2653 2.679e-05 9.36e-05 0.1805 0.1115 0.4242 0.001417 0.001394 0.0006197 0.1092 0.00122 0.001611 0.03707 0.02051 0.00189 0.0001703 0.2386 0.0002291 0.01064 0.01528 0.007693 7.244e-05 0.001346 0.0007067 0.005436 0.0003865 0.01054 0.1006 0.001961 0.0003679 0.007469 0.0005722 0.007551 0.0007041 0.00529 0.01424 1.046e-05 0.02122 0.002944 0.004001 1.129e-05 0.0001606 0.0008821 0.5678 0.1794 0.002327 0.0422 0.006799 0.001046 0.00121 0.009776 0.0002076 1.007e-05 0.0003801 0.001071 0.02294 0.004675 0.003093 0.001181 0.0005054 0.0004802 0.003664 0.01201 0.008576 0.5044 0.004404 0.1745 0.5828 0.0001644 0.5672 0.2941 0.3194 0.0006257 1.767e-05 0.0007345 0.0007305 0.0008051 2.223e-05 0.00273 0.5206 0.007137 0.04482 0.04691 0.001214 0.001106 0.00381 0.3974 0.2241 0.0001058 0.4583 0.0002209 0.0002626 5.096e-06 0.0004725 0.0009674 0.4138 0.001662 0.5757 0.0001815 0.5415 0.02293 1.498e-05 0.02699 0.001546 0.5601 0.003531 0.0008568 0.02728 0.5348 0.0004627 0.3731 0.004886 0.009861 0.0004648 0.5229 5.128e-05 0.0007697 0.56 0.008337 0.001366 0.004745 0.04472 0.001273 0.5655 0.001677 0.5515 0.0009762 0.001877 0.001426 0.5637 0.0006204 0.001869 0.6016 0.5039 0.0003718 0.001055 0.4992 0.01243 0.001247 0.5632 0.006332 0.0003762 0.0001219 0.5677 0.001719 0.1817 0.4685 0.03959 1.113e-05 0.5671 0.001022 0.001415 0.3784 0.5779 0.5604 0.004935 0.002203 0.0003269 0.003359 0.001748 0.00665 0.01117 0.00289 0.0161 0.06271 0.03155 0.002723 3.316e-05 1.83e-05 0.0002402 0.001764 6.029e-06 0.01711 7.247e-06 0.00337 0.5946 0.006432 0.4408 0.0004051 0.002088 1.465e-07 0.001049 1.545e-05 0.00848 0.001586 0.5766 0.001667 0.1647 0.0005804 0.0002395 0.008471 6.81e-06 0.005275 0.003892 0.4581 0.6513 0.001055 0.0005413 1.398e-05 0.4501 0.0731 0.3935 0.00117 0.07936 0.001507 7.715e-05 0.00182 8.629e-05 0.574 0.5731 0.0011 0.00111 0.007293 0.0002828 0.008451 0.02595 0.0005725 0.0001743 0.01147 6.975e-05 0.008191 0.01384 0.0002132 0.0006805 0.0007948 0.00104 0.002002 0.0005971 0.04894 0.543 0.0009257 0.003952 0.002504 0.0002756 0.3616 0.001675 0.003333 0.008399 0.008953 1.442e-05 0.05382 0.005455 0.002758 0.02676 0.001635 6.808e-06 0.4289 0.002653 0.006159 0.5262 0.286 0.000757 0.002417 0.001766 6.721e-06 0.01572 0.04314 0.004049 4.176e-05 0.4333 0.01139 0.001482 0.00409 0.001553 0.000251 0.0002638 0.01875 0.0001655 0.000301 0.001942 0.0002334 0.0022 1.636e-05 0.1435 0.0004735 0.0003332 0.5624 0.001278 1.242e-05 0.01942 0.0157 0.3857 9.936e-06 0.05936 0.09034 0.0319 0.007863 0.002183 0.006118 0.01533 0.0004333 0.0009411 0.5614 0.0001156 0.6096 0.007383 0.0008444 0.0001982 0.00712 0.001328 0.5545 5.671e-05 0.01082 7.96e-06 0.5616 0.2273 0.03146 0.07781 0.5709 0.002123 0.0008196 9.326e-06 0.1723 0.05228 0.001118 0.0002459 0.01213 0.004724 8.248e-05 0.0005751 0.005823 0.008705 0.005803 0.1929 0.008568 0.01043 0.0001186 0.0009257 0.003079 0.2675 0.001478 0.06403 0.008384 0.3693 0.1211 0.0002756 0.001836 0.3501 0.09833 0.001367 0.001645 0.01003 0.5572 0.5722 0.007087 0.0002032 0.0009429 0.3451 0.02063 0.005135 0.0004148 0.0004547 0.3754 0.0008056 0.05108 0.5806 0.007898 0.006351 0.04469 0.003677 0.0003682 0.002111 0.007908 6.341e-05 1.102e-05 3.418e-05 0.0007941 0.3415 0.01009 0.01703 0.003786 0.5826 0.3731 0.456 0.002436 0.0001609 0.01228 0.01651 0.004449 0.005276 0.002363 9.824e-06 0.0003492 0.01268 0.06229 0.006717 0.0002831 0.003238 0.002022 0.0001657 0.5818 0.5549 0.0009303 1.193e-05 7.809e-05 0.1313 7.773e-05 0.001603 0.5369 5.275e-05 0.5308 0.002595 4.229e-06 0.001631 0.001195 0.01776 0.5777 0.5511 0.03559 0.008607 0.0536 6.433e-05 8.538e-06 0.01943 0.09298 0.004929 0.007088 0.007122 0.001506 0.01394 0.005763 0.531 0.5705 0.5656 0.01085 0.5313 0.001097 0.5513 0.002169 0.5641 0.004493 0.02913 0.003196 0.002052 0.02342 7.036e-05 0.001504 9.38e-06 0.002374 0.001945 0.00193 0.009482 0.000278 5.239e-06 0.0001499 0.1615 0.1731 8.115e-05 0.001752 0.001376 2.269e-05 0.0008292 0.0006194 0.0002324 0.015 8.558e-06 0.5675 0.2483 0.003776 0.3001 0.002569 0.0001687 0.001182 5.167e-05 0.009595 0.03323 0.5224 0.007539 0.3921 0.0001647 0.6676 0.01829 0.1162 0.001303 0.0003167 0.4298 0.05957 0.05905 0.001849 0.01444 0.001991 0.005752 0.005621 0.0007233 5.93e-05 8.243e-05 0.3591 0.553 0.005635 0.03765 0.001316 0.0002392 0.00976 0.006348 0.3714 0.00324 0.001536 0.009022 0.2723 0.2713 1.495e-05 0.0009145 7.939e-05 0.5729 0.05589 0.002306 0.6376 0.0019 0.5715 0.0001441 0.0007211 0.1597 1.203e-05 0.0003935 0.2238 0.5689 0.6069 0.002653 0.2557 4.941e-05 0.003135 0.001848 0.5567 0.001601 0.001122 0.001672 0.00169 2.176e-05 0.5885 0.009742 0.009311 0.0008682 0.009582 0.002149 0.5762 0.0007498 1.155e-05 0.5875 0.0009992 0.008639 0.0002187 0.002672 0.0007468 0.3702 9.623e-06 0.6015 0.006165 0.001562 0.001433 0.002856 0.005239 0.4114 0.03751 0.002568 0.006984 0.0133 0.002101 0.007144 0.0004675 0.000202 0.02394 0.4449 6.064e-05 0.001623 0.001604 0.008045 0.003141 0.001001 4.033e-06 0.3592 0.0004392 0.001745 0.0002778 0.02216 0.004532 0.0005548 0.003132 0.604 0.007058 0.01806 0.0008484 0.01211 0.0002284 0.6222 0.02558 0.5774 0.0002889 0.001059 4.997e-05 0.002498 0.00388 0.4355 0.001634 0.005932 0.01457 0.002411 0.006318 0.0004232 0.0001662 0.00318 0.0004306 0.0009337 0.002606 0.01758 0.009172 0.02545 0.002489 0.001397 5.447e-05 0.0004405 0.003651 0.004315 0.0008834 0.5193 0.001773 0.0002036 0.008335 0.01282 0.199 0.5735 0.0001388 0.003329 0.002914 0.004239 0.5628 0.006495 2.716e-06 0.5694 0.0001885 0.0009255 0.2791 0.03604 0.0001997 0.0005532 1.02e-05 0.0003423 0.0007016 0.5464 0.003016 0.001742 0.01873 0.02287 0.4052 0.00781 0.5707 0.0002144 0.04487 0.005764 0.0005826 0.003395 0.005696 0.03693 0.0008869 6.718e-05 0.03911 7.716e-06 0.4125 0.01329 0.00109 0.5456 0.4296 0.0002143 0.005887 0.004433 0.01011 0.5407 0.00303 0.01513 0.001457 0.001957 0.001919 0.578 0.4102 0.00426 0.001176 0.0004952 0.003203 0.007415 0.004835 0.004265 0.003264 0.359 0.1192 0.5488 0.001684 1.387e-05 0.5691 0.02806 0.009393 0.6422 0.00327 1.414e-05 0.01495 0.01666 0.02354 0.004237 0.0006316 0.6625 0.005966 0.0009957 0.003558 0.5714 0.3272 0.04526 0.01252 0.009693 0.0006034 0.006603 0.001746 0.001416 0.03486 0.003418 0.5464 0.007626 0.0001675 0.002418 1.287e-05 0.0002447 0.2811 0.462 0.2372 0.0003278 0.01067 0.0007309 0.008359 0.001629 0.0008646 0.0313 0.3935 0.4011 0.5306 0.01021 0.002746 0.004616 0.000397 0.03019 0.03275 0.001815 0.003285 0.000109 0.02688 0.003726 0.2965 0.005998 0.004411 0.007115 0.514 0.002818 0.2507 0.3843 2.435e-05 0.0005894 0.0001698 0.001136 9.795e-05 0.00407 1.409e-05 0.0003638 0.1395 2.968e-06 0.001436 0.03281 0.5752 0.01851 0.0001354 0.0007882 0.01399 0.3602 0.02836 0.0018 0.002192 0.2261 7.756e-05 0.006485 0.1739 0.01217 0.0001617 0.001364 0.0003353 0.002224 0.1599 9.222e-05 0.02694 0.2896 0.1979 0.005634 0.03436 0.0007173 0.002495 0.006468 0.009024 0.04006 0.0004599 0.0002544 0.5646 0.001012 4.585e-05 0.0002583 0.00278 1.019e-05 0.0006115 0.0573 0.0001356 0.001349 0.5661 0.006103 0.03584 0.0009607 0.001029 0.001924 4.68e-05 0.5627 0.0007496 2.932e-05 0.002256 0.001572 7.567e-06 0.01467 0.004191 9.393e-06 0.001775 0.00093 0.001201 0.000841 0.001361 0.005552 0.0002933 0.01123 0.001435 0.0001073 0.000513 0.384 0.05323 0.01301 0.001345 0.0002873 0.001908 0.0002295 0.003917 0.005226 0.3792 0.0004786 0.5869 0.007793 0.5442 0.2883 0.04677 0.479 0.573 0.5985 0.5985 0.001966 0.02767 0.004797 0.04023 0.4496 0.002878 3.208e-05 1.202e-05 0.0002209 0.03519 0.4125 0.0058 0.002282 1.737e-05 0.01035 0.005901 0.01184 0.4133 0.004106 1.963e-05 0.01881 0.00392 0.001431 8.099e-06 9.908e-06 3.096e-07 0.01632 0.5065 0.01158 0.0009526 0.00558 0.002072 0.005938 0.6236 0.01833 0.001897 0.0011 0.003208 0.0005758 0.0164 0.004877 0.009504 0.0002451 0.571 0.0002843 0.002833 0.003327 0.0005979 0.00357 0.3531 0.004131 0.005621 0.002982 0.0465 0.5071 0.3463 3.356e-05 0.0602 0.0005698 0.09261 5.148e-05 0.01325 0.001753 0.003389 0.5718 0.06423 0.4452 0.02593 1.033e-05 0.005755 0.003536 0.5703 5.241e-05 0.02164 0.1107 0.0005119 0.02741 0.5676 0.01781 0.002759 0.004838 0.0001995 0.6274 0.5228 0.000242 0.004751 0.0001673 0.3875 0.001746 0.0004602 0.0006303 0.5028 0.001693 0.0002779 0.004005 0.473 7.348e-05 0.01037 0.001283 0.007968 0.00725 0.03284 0.3355 0.5666 0.0003774 0.0002619 0.001265 0.007104 0.6581 0.001879 0.002849 0.00167 0.0001599 0.0002716 0.0004687 0.3163 0.001598 0.5499 0.00522 0.0003517 0.002687 0.0003395 0.3423 0.2946 0.5746 0.01698 0.0001426 0.0004641 0.002716 0.02856 0.001977 0.002095 0.007481 0.004066 0.006746 0.03003 0.002939 0.5686 0.0002448 0.008217 0.006529 0.003395 0.04821 0.0183 0.002285 0.001191 0.0009359 0.002527 0.002496 0.05523 0.0032 0.000335 0.000454 0.01527 0.506 0.00146 0.002004 0.007041 0.4403 1.073e-05 0.5729 0.000531 0.002091 0.0086 0.008303 0.003229 0.01778 0.01296 0.005437 0.009953 1.104e-05 3.433e-06 0.01006 0.0003781 0.001998 0.0002722 0.4763 0.05112 0.5738 0.003387 0.0007086 0.1311 0.5523 7.422e-05 0.01676 0.0007824 0.001292 0.0002153 7.771e-05 0.009654 0.000274 0.05435 1.302e-05 0.0007579 0.0004754 0.006315 0.02639 0.0001243 0.0002041 0.5658 0.0001973 0.001327 0.007188 0.04742 0.0008556 0.001646 0.1177 0.6653 0.1305 0.4966 0.001001 5.987e-05 1.553e-05 0.01282 6.146e-05 0.5502 0.006524 0.05065 0.0001437 0.003512 0.5699 0.0005678 0.0001011 0.001827 0.004701 0.04344 0.0004887 7.614e-05 0.2745 0.0001291 0.09377 0.00495 0.006377 0.0002764 0.001334 0.01856 0.0004891 1.392e-07 0.00061 0.5962 0.005868 2.007e-05 0.00412 0.557 0.005873 0.002327 0.1138 0.0001491 0.0003852 0.3091 7.587e-05 0.0007801 0.5721 0.01044 0.0007189 0.04714 0.08795 0.0005541 0.0006609 0.004923 0.003124 0.0009464 0.0002903 0.0004748 0.001812 0.0002149 0.007379 0.01617 0.005719 0.5677 0.6607 1.528e-05 1.25e-05 0.0008767 0.003295 0.0007945 0.006011 8.237e-05 0.0002288 0.002733 0.0003654 0.001022 0.4128 0.112 0.0003007 0.01251 0.3942 0.002919 0.02579 0.01372 0.007485 0.005209 0.002228 0.0001602 0.01844 0.0004401 0.004953 0.02744 0.001462 0.0008995 0.0006328 0.004236 0.0001723 0.377 0.0009126 9.59e-06 0.0096 0.521 0.005122 0.001069 0.0004532 9.639e-05 0.0898 8.932e-05 3.162e-05 0.4063 0.0009179 5.952e-05 0.0001447 0.0007596 0.0003481 5.296e-06 0.3583 0.0003278 0.02405 0.009734 0.5195 0.4207 0.0012 0.003146 0.03826 8.526e-05 0.5247 0.0008916 0.4672 0.008419 0.2938 0.4315 0.005901 0.02197 0.2797 0.0003157 0.01267 0.004344 0.0008294 0.01165 0.005859 0.03653 0.001467 0.4142 0.001383 0.5334 0.006886 0.009266 8.56e-06 0.0002711 0.0155 0.0008757 0.5654 1.442e-05 0.09583 0.00664 0.0001014 0.001573 0.001808 0.4651 0.003055 0.2856 0.003976 0.06399 0.001485 0.384 0.09141 0.001533 0.002617 0.04104 0.000488 0.0007956 0.4971 6.09e-05 0.001582 0.0003846 2.238e-05 0.005559 0.01548 0.0004301 0.03343 0.204 0.00606 0.0008736 0.2611 0.0004527 0.003577 0.001456 0.005482 0.0007396 0.0527 0.007829 0.00532 0.004463 0.0345 0.001822 3.639e-05 0.3175 0.0001048 0.001216 0.004374 0.006152 0.0001851 0.00549 0.007458 0.05521 0.03649 0.001015 0.0001062 0.0007963 0.002797 0.0009224 0.000145 0.002131 0.003298 0.08727 0.003019 1.069e-05 0.2854 0.01726 0.004188 0.001052 0.02907 0.003767 0.001855 0.006958 0.0002062 0.0006376 0.3098 0.0008803 0.01031 0.003058 0.009915 0.3996 0.00883 0.004597 0.5123 0.3947 0.01679 0.005168 0.4019 0.0007567 0.5509 0.007438 0.5035 0.002055 9.745e-05 0.01928 0.1174 9.525e-05 0.01436 0.00474 0.005897 0.00271 0.01131 0.001447 0.001641 0.0001138 5.697e-05 0.0002527 0.002971 0.0009953 0.0003826 0.01783 0.003223 0.002264 0.0009429 0.0106 0.003086 0.4987 0.4988 0.002796 0.002459 0.0001866 0.5815 0.6029 0.5317 0.0008474 0.5758 0.3625 0.01164 0.5091 0.196 0.0009079 0.001015 0.00378 0.001191 0.6073 0.0007581 0.0008944 0.009098 0.01469 0.2199 0.0002218 0.006365 7.82e-05 0.006438 1.275e-05 0.1134 0.008202 0.0009761 0.5343 0.002862 0.1127 0.00776 0.6264 0.0001735 0.5393 0.2759 0.2756 0.0005582 0.003486 0.1285 0.0002614 0.483 0.0002682 0.01066 0.001432 0.002784 0.5479 7.358e-05 0.001585 0.002684 0.0157 0.5644 0.003946 0.08991 0.5721 0.2814 0.0002944 0.5748 0.0198 0.0009921 0.0001759 0.5767 0.002833 0.008617 0.01707 0.0001811 0.006658 0.5732 0.00546 0.0002979 9.598e-05 0.007118 0.01939 0.4134 0.5782 0.402 0.007568 0.0006224 0.0002535 0.004864 0.364 5.379e-06 2.798e-06 0.004238 0.001565 0.003017 0.6426 0.006258 0.503 0.3303 0.06011 0.001048 0.02611 0.01174 4.842e-06 0.009563 1.52e-05 0.0006658 0.01614 0.01632 0.0009595 7.584e-05 0.00416 0.0004405 1.843e-05 0.5797 0.4264 0.004889 0.001816 6.594e-06 0.01027 0.02346 1.301e-05 0.0003385 0.3645 0.0003546 2.343e-05 0.009327 0.0008895 0.0002775 0.0002657 0.02421 0.0009484 0.06167 0.0008858 0.01195 0.001842 0.06966 0.0004519 0.04215 0.4475 0.5756 0.001328 0.009918 0.001071 0.02419 0.001759 0.2277 0.0001081 4.015e-05 0.0005861 0.6062 0.002515 0.001534 3.794e-05 0.01443 0.03135 0.1239 0.001404 0.002753 0.3029 0.004925 0.009284 0.005565 0.002383 5.914e-05 0.3902 0.01204 0.0003088 0.0002511 5.174e-05 0.009044 0.004214 0.001186 0.007976 0.002229 0.01276 0.02946 0.004779 0.004519 0.0007588 0.01292 7.617e-06 2.725e-05 0.01234 0.001476 0.0007987 0.5811 0.01088 0.002204 0.0003271 0.02162 0.004819 0.003186 0.0189 0.0009921 0.0009102 0.00387 0.01076 0.05746 0.01643 0.003621 0.009008 0.005441 0.001141 0.0001683 0.01414 0.0002729 0.37 0.001738 0.003477 0.3687 0.002505 0.01456 0.04824 0.5473 0.02061 0.01258 0.005141 0.3756 0.000478 0.00567 0.02261 0.0003365 0.3863 0.0006923 2.6e-05 0.006348 0.4125 0.0003288 0.5666 0.001079 0.0005666 0.02558 2.122e-05 9.117e-06 0.002616 0.0008916 0.03683 0.002 0.5576 0.004485 0.003872 0.001243 0.05005 0.006543 0.01663 0.0004042 0.06817 0.002136 0.002721 0.07384 0.0001977 0.008329 7.045e-05 3.085e-05 0.4917 0.5391 3.843e-05 0.4361 0.000104 1.479e-05 0.00313 0.00487 0.3467 0.0002929 0.006385 0.3287 0.2971 0.05009 0.1212 0.001879 5.271e-05 0.4897 0.003673 0.01738 0.0004918 0.03934 0.03401 0.4025 0.0004654 0.004996 9.051e-05 0.001728 0.001632 0.001139 0.0007557 0.002094 0.007157 0.3277 0.0004669 0.001791 0.001332 0.07551 0.007332 0.5761 0.0003452 0.6639 0.00052 0.4714 0.004431 0.1174 0.004197 0.1611 0.0002625 2.351e-05 0.003896 0.5498 1.573e-05 0.3188 0.002366 4.349e-05 0.3702 0.001133 0.00114 0.0009871 0.5971 0.003844 0.0003878 0.004336 5.702e-05 0.2227 0.2258 0.005135 0.0545 0.05274 0.0001242 0.001062 0.0007247 0.001133 0.01337 2.896e-05 0.4885 0.005572 0.00175 0.3788 0.0007726 0.002613 0.002687 0.348 0.00626 0.002364 0.002888 0.005041 0.5716 0.0004305 0.0008819 0.0007595 5.77e-05 0.007751 0.5664 0.5719 0.03641 0.005856 0.5527 0.001827 0.006579 0.0001331 0.08018 0.0001236 0.008102 9.02e-05 0.001617 0.02016 0.001036 0.5262 0.001811 0.002257 0.0004522 0.0001717 0.006002 0.00664 6.57e-05 0.007381 7.656e-06 0.009801 0.0001942 5.275e-05 0.0002832 0.0005255 0.0003556 0.02209 0.001624 0.003234 0.01232 0.07645 0.007701 0.01603 0.002406 8.39e-06 0.02517 0.572 0.008731 0.03059 0.001588 0.5774 0.0002759 0.01905 5.937e-05 7.397e-05 0.006316 0.2415 0.004539 0.0001269 0.5232 0.4671 0.00534 0.0003221 8.331e-05 0.4708 0.006781 0.0001817 2.484e-05 2.193e-05 0.001984 0.4888 0.003252 0.0001493 0.01259 0.003422 0.006053 0.0002086 4.358e-05 0.0006915 0.0004994 0.001613 0.003664 0.01887 0.05577 7.067e-06 0.01445 0.5669 0.003569 0.3974 0.000361 0.0002703 0.005727 0.00626 0.002884 0.0005753 5.26e-06 0.000889 0.5814 0.01325 0.0002915 2.422e-05 0.002043 0.01994 0.00555 0.008992 0.1763 0.0003371 0.0004228 0.004251 0.0003716 0.006948 0.5626 0.006537 0.3568 0.04698 0.00803 0.01056 0.0001167 2.152e-05 0.04423 0.2977 0.0001423 0.001823 0.1435 0.04629 0.002908 0.001903 0.003175 1.361e-05 0.002429 0.008438 0.5953 0.34 0.007929 0.0002005 0.000101 0.01075 0.2163 0.001764 0.0002168 0.0124 0.006163 9.041e-05 0.001744 0.01733 0.01154 0.4478 0.01146 1.518e-05 6.004e-06 0.02034 0.000163 0.00197 0.5646 0.004327 3.578e-05 0.001574 6.688e-05 0.01397 0.4003 0.001233 0.002043 0.0975 0.05854 0.001884 0.2127 0.0008882 0.4417 0.001251 0.000136 0.01969 0.0002137 0.004194 0.03323 0.01479 0.00104 0.0004737 0.008375 0.005536 0.00276 0.001454 0.003521 0.001069 0.003611 0.3468 0.0006353 0.001511 0.008418 0.007381 0.5518 0.00266 0.003196 0.003587 0.004694 0.01079 0.007271 0.4089 0.007792 0.001416 0.2154 0.1325 0.4357 0.0005988 0.0006628 0.4585 9.537e-05 0.0002302 0.006959 8.055e-05 5.891e-05 0.01038 0.006452 0.001054 0.0002695 0.002166 0.002634 0.5806 0.0001035 0.001212 0.005126 0.001455 0.0766 0.6681 0.4111 0.004408 0.00163 0.2042 0.002209 0.02009 0.01271 0.5637 0.0006795 0.0026 0.005216 0.000231 0.0004179 5.221e-05 0.444 0.001087 0.002067 0.01056 0.008298 0.003063 0.0004391 0.5724 0.004742 0.575 0.5578 0.02093 7.677e-06 0.0001383 0.005054 0.001332 0.6421 0.0007034 0.003531 0.009054 0.001485 0.5756 0.06727 0.4989 0.004933 0.001284 0.0009393 7.825e-06 0.001319 0.3123 0.003263 0.0006107 8.657e-06 0.05113 0.5002 0.5581 0.004469 5.618e-05 0.0006593 0.02154 0.0004077 0.4866 0.002064 0.354 0.468 0.3492 0.001258 7.919e-05 2.241e-05 0.001157 0.006906 0.07358 0.01639 0.504 0.002461 0.1494 0.542 0.001129 0.0001054 0.009003 0.0009462 0.009369 0.0009626 5.645e-05 0.003523 0.0001113 0.01526 9.548e-05 0.0004626 5.213e-06 1.243e-05 0.001354 0.2774 0.2774 0.009212 0.003674 0.01396 0.0005155 0.02366 0.005081 3.825e-06 0.4072 0.577 0.0001938 0.04129 0.0003584 0.002632 0.0007473 9.615e-06 0.004311 0.4199 0.001255 0.002595 0.0003734 0.02074 0.02017 0.0008938 0.02938 0.0001476 0.0001046 0.003605 0.006174 0.005472 5.955e-05 1.138e-05 0.0054 0.02271 0.002627 0.5881 0.551 0.0001605 0.002878 0.01033 7.033e-05 0.001797 0.001177 0.378 0.5865 0.4897 0.6018 0.01744 0.001085 1.083e-05 0.005597 0.0007887 5.741e-05 0.03525 0.03633 0.0001507 0.002181 0.001702 0.4167 0.07433 0.0003536 0.008906 0.005786 0.005673 0.000195 3.647e-05 5.348e-05 0.5998 0.01474 0.3935 0.0003505 0.001282 0.002518 0.00224 0.003569 0.0006617 0.009016 0.007766 1.33e-05 0.007363 0.002558 0.4944 0.001372 0.0001592 0.0003732 0.005518 0.002774 1.243e-05 0.001468 0.4042 0.007468 0.0005699 0.2768 0.1503 0.4872 0.583 0.0005533 0.4863 0.0005211 0.0001668 0.001687 0.008782 0.0001235 0.005808 0.02696 0.001671 0.0006338 0.00531 0.1377 0.03465 0.004836 0.01283 0.03051 0.0009492 0.038 0.0003442 0.004324 0.5345 0.003965 0.007242 0.0007993 0.01989 0.003503 0.003843 0.001249 0.001161 0.0005659 0.0001763 0.009187 0.006189 9.733e-05 0.001061 0.006609 0.001003 0.0001627 0.002725 0.0002654 0.02926 0.0001681 0.002003 0.000489 8.731e-06 0.005313 0.5112 1.232e-05 0.01412 0.01603 0.0008563 0.004617 0.5604 0.05583 0.002672 0.02276 0.4016 0.0005513 0.005712 0.0003705 0.6212 0.04925 0.662 3.527e-05 0.003832 1.04e-05 0.4463 0.006305 0.001421 5.069e-06 0.006707 0.01088 3.44e-06 0.007962 0.5457 0.00582 0.4983 9.845e-06 0.0001638 0.0008795 0.0009786 0.5582 0.1926 0.003558 0.1316 0.003045 0.001215 0.007378 0.001851 0.002515 0.00179 0.001062 0.0003301 0.3203 0.01231 9.887e-06 0.00991 0.001375 0.004518 0.5119 0.001712 0.0004007 0.5285 0.001014 0.003099 0.5652 0.01667 0.008868 0.005721 0.133 0.02194 0.00021 9.319e-06 0.01057 0.001938 0.0007047 0.0008235 1.426e-05 0.007193 0.00073 0.6485 0.3314 2.548e-05 0.02101 0.0005041 0.1725 2.335e-06 0.006015 0.01317 0.002364 0.001261 0.002995 0.3561 0.002981 0.0003485 0.002953 0.005899 0.007468 7.885e-05 0.4343 0.1078 0.002122 0.1573 0.0002642 0.003159 0.004536 0.001025 0.0001084 0.004034 0.0008717 0.002117 5.663e-05 0.001318 0.001493 0.002198 2.455e-06 0.004439 9.801e-06 0.007371 0.5742 0.000303 0.0004212 0.4941 0.005003 0.0001917 0.3902 6.258e-05 0.00369 1.404e-05 0.01039 0.0001019 0.00199 0.001405 0.00293 0.0008517 0.3076 0.3063 0.003188 8.959e-06 0.000977 7.183e-06 0.4444 0.001135 0.5507 0.003481 0.3751 0.000649 0.003726 0.01032 0.3699 0.003791 0.04468 0.1226 0.0001945 0.003914 1.882e-06 0.6132 0.0005432 0.01756 0.0007224 7.947e-06 0.001692 0.01437 0.05257 0.00125 0.01227 0.001181 0.003967 0.0005859 0.001206 0.003152 0.001528 0.459 0.0006409 0.001248 0.001888 0.003104 0.0006379 7.565e-05 0.003048 0.0006667 0.04025 0.0564 0.5802 0.009247 0.04466 0.4768 0.0001656 0.5454 0.01162 0.0003362 0.3284 0.2835 0.0004215 0.0005017 0.5411 3.263e-05 0.003639 0.01012 0.1034 0.02376 0.0008212 3.095e-06 0.01501 0.00994 8.126e-06 0.0004987 0.002096 0.4851 0.005229 0.0006172 0.1416 0.006008 4.943e-05 0.005563 0.3786 0.01711 0.01319 0.00558 0.003424 0.003507 0.003589 5.411e-05 0.5638 0.004346 0.0005515 0.0004238 0.02427 0.0006044 0.02092 0.0004451 0.003391 0.0006328 0.4495 0.007248 0.0005599 0.0006392 0.07691 0.01792 0.0006224 0.004351 0.001845 0.04897 0.001691 0.003481 0.009563 0.06653 0.003867 0.001593 0.0001917 0.5107 0.2337 0.005811 0.0164 0.001111 0.007595 0.001693 0.0009701 0.02607 0.001365 0.003219 6.594e-05 0.06179 0.001939 0.0001634 0.001911 0.006265 0.5806 0.001501 0.04751 0.0001621 0.0001853 0.003552 0.002696 0.0005439 6.036e-05 0.002054 0.0003326 0.006724 0.0003792 0.0003434 0.0001225 0.5851 0.3945 0.5724 0.2269 0.001009 0.006769 0.001812 0.006349 0.0004184 0.4356 0.009325 0.001367 0.006542 0.002128 1.373e-05 4.74e-05 4.881e-05 0.0004317 0.005204 0.01513 0.007532 4.875e-06 0.0004191 0.001545 0.008152 0.004416 6.97e-07 0.00381 0.356 0.2254 0.5198 0.001983 0.002263 0.004027 0.5774 0.0003624 0.007616 0.03478 0.01648 0.04167 0.002744 0.004384 0.005503 0.001307 0.3668 0.01431 0.5345 0.001574 0.002071 0.0002069 7.654e-06 0.6514 0.004148 2.667e-05 0.0004791 0.5712 0.003072 0.008807 6.137e-07 5.986e-06 0.05353 0.0005409 0.001995 0.0007121 0.01466 0.001442 0.06008 0.03999 0.6339 0.001017 0.0004899 0.5187 0.002573 0.004385 0.1364 0.0001705 0.002171 0.0009748 0.004779 0.0006676 0.004674 0.0001347 0.3885 1.097e-05 0.0001299 0.002358 0.00486 0.339 0.07056 0.336 1.317e-05 0.001315 0.000243 0.5796 0.5588 0.5705 0.01287 0.0004455 0.01032 0.0003426 0.004678 0.007184 0.00491 0.003214 9.818e-05 2.474e-05 0.009648 0.5722 0.001458 0.006179 0.5018 0.002435 0.001348 0.001909 0.003771 0.00167 0.0007969 0.0001349 0.02509 0.0102 0.0001392 0.1802 0.0001321 0.09887 0.0001406 0.0003163 0.0007709 8.796e-05 0.006528 0.4768 0.0001309 0.006637 0.1551 0.02982 0.02764 0.216 0.0006729 0.002801 7.512e-05 0.02161 0.005562 0.001336 0.001804 0.0006016 0.0008657 0.002806 0.000755 0.005466 0.00454 0.5854 0.007766 0.3986 0.002909 0.005769 0.004188 0.0001412 0.003867 0.001151 9.324e-06 0.015 0.002595 0.000966 0.0005258 0.003235 0.007863 0.002589 0.0008315 9.448e-05 0.001157 3.959e-05 0.0001589 0.0009949 0.5148 0.008408 0.1441 0.1759 0.004016 0.004402 0.0001304 0.5785 0.2568 0.01303 0.0002502 0.003435 0.001561 0.004905 0.0008953 0.003518 0.01959 0.02091 1.053e-05 0.0005507 9.332e-06 0.1582 7.537e-05 8.57e-06 8.441e-05 0.4137 0.002087 0.3551 0.3552 0.0004316 0.0001535 1.276e-05 0.004707 2.653e-05 0.002425 0.006966 0.6275 0.001901 0.0001623 0.003534 0.5304 0.0003091 0.4135 0.002566 0.02741 0.5747 0.071 0.02403 0.001158 0.07866 0.002421 0.05058 0.0009117 0.414 0.01595 0.0045 0.006777 0.0008724 0.002418 0.001078 0.1454 0.0006274 0.04136 0.001706 0.0009437 0.0009784 0.0001391 0.1258 0.005473 0.1608 0.004998 0.008187 0.001619 0.002479 0.01823 0.0001978 1.043e-05 0.1257 0.002891 0.001106 0.4859 0.0006315 0.001415 0.01455 0.001666 0.0005965 0.3785 0.0355 0.6028 0.5705 0.399 0.5642 4.331e-05 0.3094 0.0007899 0.0003406 0.0001227 0.01293 0.000118 0.004014 0.01377 0.001492 0.000503 0.0006861 0.5027 0.000128 0.5577 0.0002605 0.0001594 0.0003178 0.002868 0.1811 0.002321 0.0009365 0.4597 0.00824 0.06514 0.000403 0.0005245 0.5722 0.003226 0.007566 0.5982 0.008513 0.00121 0.5718 0.005556 0.5754 0.0001637 0.005966 0.0001526 0.4246 0.01483 0.00935 0.004476 0.01042 0.004167 1.009e-05 6.227e-05 0.006778 0.4026 0.02927 0.3648 0.0001681 0.5604 0.001262 0.02462 0.0003223 0.01317 0.005503 2.731e-05 0.002432 0.02778 0.002936 0.003454 0.03279 0.4225 0.01733 0.0007372 6.767e-05 0.01477 0.5295 7.071e-05 0.007909 0.221 0.001639 1.858e-05 0.0003783 0.0001151 0.0007912 0.003567 0.003088 0.00117 0.0035 0.007734 1.342e-06 0.001336 0.5881 0.005085 0.001201 0.01058 0.03526 0.003787 0.008288 1.234e-05 0.002188 0.0008147 0.004586 0.574 0.002676 0.04423 0.007945 3.821e-05 0.005302 0.000375 0.01524 0.00103 0.3778 0.005791 5.331e-05 0.1973 0.07407 0.001722 0.001684 0.0007292 0.001559 0.003123 0.0001086 0.002387 0.09075 0.002068 0.007953 6.806e-06 0.0002582 0.002751 0.0008598 0.005055 0.002513 0.005392 0.1238 0.5108 0.002446 0.002457 0.05075 1.061e-05 0.0008748 0.04551 0.002037 0.0001032 0.001245 0.002894 0.001224 0.02016 0.0004978 0.0003008 0.4157 0.007952 0.002515 0.05014 0.001391 0.5373 0.5754 3.611e-05 0.001333 0.003901 0.0007975 0.004575 0.001147 0.008925 0.005243 0.002753 0.000919 0.3277 0.0003554 0.01769 0.0005893 0.002933 0.2122 0.004797 0.5829 0.001145 0.003402 0.05365 0.3238 0.03455 0.0008692 0.5735 0.006774 0.5626 0.002084 0.006375 0.003165 0.01687 0.006181 8.765e-05 0.008897 0.000117 0.411 0.572 0.0001053 0.006415 0.008082 0.0002587 0.002511 0.003001 0.001436 0.00835 0.5321 0.005906 0.0008236 0.0007527 0.001389 0.001823 4.079e-05 0.554 2.825e-08 0.5604 0.06736 0.00506 0.04233 0.004319 0.0006553 0.0006999 0.003979 0.5177 0.000408 0.0003582 0.3578 0.00178 0.0001595 1.596e-05 0.001252 0.002377 0.002075 0.0008968 0.00113 0.001531 9.894e-06 0.001841 0.005488 0.1255 0.009881 0.008903 0.3848 0.05427 1.649e-05 0.0001448 0.002959 0.005797 0.1235 3.732e-05 0.00213 0.009336 0.004408 0.02914 0.01576 0.0003093 0.001544 4.264e-05 1.065e-05 0.05974 0.0003483 0.003339 0.01276 1.155e-05 0.001622 0.004415 0.001132 0.005451 1.329e-05 0.01791 0.001004 0.05682 0.000857 0.006273 9.698e-05 0.00176 0.008061 0.5555 0.003363 0.001716 0.002291 0.1296 0.1038 4.65e-05 0.0002651 0.565 0.5705 0.4201 0.001552 0.000465 1.029e-05 0.000744 0.001256 4.323e-05 0.0002383 0.001931 4.459e-05 0.002612 0.0007297 0.003465 0.002089 1.284e-05 0.5692 0.01234 0.002426 0.003703 0.4003 0.000984 0.004489 0.3017 0.001187 0.002298 0.001929 0.468 0.04251 0.5656 0.03684 0.002884 0.0001148 8.482e-05 0.02986 0.0001953 7.762e-05 0.00267 0.001824 0.00109 0.001392 0.5617 0.001548 8.86e-05 2.586e-05 0.5902 4.233e-05 7.209e-05 0.001545 0.01287 0.4189 0.002425 0.002784 0.00822 0.5743 0.2395 0.0002068 0.01694 0.001461 0.001917 0.001183 8.879e-05 0.0003229 0.001674 0.5955 0.004842 0.004776 0.3701 0.003034 0.00244 0.007598 0.0003569 0.0001588 0.2771 0.5748 0.0008762 0.001343 3.527e-05 0.003206 0.0003917 0.003936 3.074e-06 0.001071 7.585e-05 0.5739 0.004798 0.003594 0.3582 0.3582 0.0003675 7.429e-06 0.006542 0.004177 0.0006428 2.262e-05 0.0008484 0.009008 0.008992 0.002654 0.00429 0.5809 6.882e-05 0.0001558 0.006988 0.2051 9.517e-06 0.008818 0.03689 0.002615 0.0004259 7.923e-05 0.3859 0.000999 6.564e-05 0.004529 0.005276 0.004187 0.03469 0.006619 0.008716 0.001591 0.02458 0.00615 0.00539 0.004606 0.3754 0.001108 0.02538 0.01829 0.3907 0.03799 1.156e-05 0.0003248 0.005108 0.000667 0.004355 0.003819 0.01494 0.01475 0.002935 8.266e-05 0.01034 0.0002134 0.007421 0.00359 0.0002633 0.002498 0.0157 0.0002425 0.4527 0.0006843 4.516e-05 0.573 0.001811 0.3367 8.052e-05 0.007908 0.001997 0.1096 0.007345 0.002843 0.005644 0.0006852 0.5722 0.01197 0.005505 0.0001681 0.3482 1.047e-05 0.0002946 0.1954 0.01251 0.005214 2.109e-05 0.4624 0.004442 0.4217 0.002427 6.601e-06 0.003048 0.001263 0.3047 0.003306 0.5954 0.4918 4.652e-05 0.01618 0.00107 0.002469 1.321e-05 0.0005385 0.003118 1.056e-05 0.0001132 0.02684 0.0003405 0.3516 0.00189 6.201e-06 0.008844 0.05761 0.4242 0.5627 0.003797 0.005988 0.0008259 0.0003935 0.007518 0.002244 0.02324 7.4e-05 0.003355 0.08234 0.5628 5.828e-06 0.002171 0.002872 0.0032 0.007 0.0003316 0.0001095 0.005425 0.003334 0.3157 0.001252 0.02315 0.006935 0.01124 0.5191 0.05694 0.267 0.000291 0.001093 0.3217 0.3217 0.1064 0.003616 0.0205 0.001329 0.004224 0.002066 0.001229 0.2641 0.00229 0.5774 0.01107 0.004853 0.004697 0.01575 0.5759 0.004364 1.044e-05 0.008244 4.965e-05 0.008021 0.03397 0.5661 0.0008021 0.01051 0.000179 0.006608 0.000189 6.406e-05 0.04842 0.007465 0.0003814 0.5831 0.01763 0.003875 0.00565 0.00467 0.04969 8.064e-05 0.2366 0.002321 0.00528 0.0004541 0.07985 0.02938 0.003693 0.0004675 0.5459 0.0006446 0.001127 0.03488 0.001778 0.01146 8.773e-05 0.0008158 0.002772 1.772e-05 3.456e-05 0.0002371 0.0004571 0.005201 0.01829 0.03971 6.368e-05 0.007647 0.0005885 0.5551 0.0108 0.2337 0.5442 0.0009747 0.5109 0.007153 0.01327 0.5713 0.006607 4.734e-05 0.001163 0.4131 0.3876 0.001656 0.000796 0.004178 0.0004664 0.002505 0.01861 0.4133 0.04045 0.00526 0.02063 0.006008 0.001438 1.294e-05 0.004837 0.0006926 0.003107 0.06735 0.009367 7.485e-05 0.01643 1.68e-05 0.0001871 3.791e-06 0.1714 0.000125 0.0006489 0.0002569 0.001581 0.001512 0.2649 0.01325 0.009265 0.4011 0.003324 0.0002443 0.002952 0.1932 0.005906 0.003182 0.002688 0.5776 0.0002435 0.02315 0.006141 0.01086 0.006421 0.004409 0.0007931 0.006726 0.002052 1.503e-05 0.3125 0.0003014 0.01494 0.003249 0.01556 0.2289 0.0002265 0.001265 0.006652 0.001594 0.01406 0.00872 1.972e-05 0.2368 0.4099 0.001136 0.008778 0.007182 0.01996 0.09009 0.01937 0.0008971 0.009483 0.003115 0.0001783 7.304e-06 0.0003189 0.00122 0.007836 0.02509 0.000123 1.156e-05 0.0008534 0.0004235 0.02796 1.203e-05 1.304e-05 0.002754 0.01248 0.1577 0.01087 0.0002266 0.0002248 0.001833 0.03295 0.004674 0.005801 6.064e-05 0.007929 0.002763 0.03243 3.914e-05 0.0003476 0.001789 0.004589 0.1669 0.001513 0.007739 0.009515 0.02652 0.003207 0.06049 0.006817 0.000611 0.002315 0.004829 0.009178 0.004296 0.009751 0.003551 0.003591 0.003107 0.0001328 0.004929 0.001005 8.209e-05 0.01273 6.492e-05 0.001191 6.611e-05 0.0001512 0.001157 0.108 0.0004878 0.4451 0.0007556 0.03613 0.005143 0.0005508 0.0006045 0.004396 0.0005439 0.0002384 0.1504 0.1717 0.0007625 0.0007251 0.004211 0.02061 0.009257 0.03942 3.845e-05 0.01605 0.00264 0.0112 0.3667 0.0004618 0.002043 0.0004456 0.0297 0.004685 4.184e-05 0.2991 0.002017 0.5696 0.003983 0.02523 0.0004032 0.006412 0.5674 0.0001812 0.0003497 1.47e-05 0.4548 0.0001774 0.006254 0.05455 0.2463 0.008284 0.2287 0.0574 0.001504 0.0009071 0.3681 0.5607 0.000654 0.00604 7.206e-06 0.003312 0.02944 0.03455 0.006965 0.007856 8.173e-06 0.007385 0.3588 0.5612 0.000563 0.618 0.001848 0.03413 0.003392 0.003686 0.006081 0.002687 0.01621 0.006626 0.4494 0.002791 0.5077 0.002471 0.000515 0.5772 8.95e-06 0.04949 0.5753 0.0005054 0.001743 0.0001814 0.4135 0.4136 0.2988 0.0002089 0.09334 0.5587 0.1421 0.0002104 0.02036 0.007897 0.3957 7.106e-05 2.074e-05 0.4077 0.002679 0.007896 0.00498 0.001878 0.001838 0.000728 0.1326 0.009752 0.001796 0.008067 0.003035 0.00823 0.3086 0.0004714 0.03877 0.0001818 0.001533 0.2544 0.02959 0.006783 0.003098 0.5745 0.002994 0.1116 0.5576 0.0226 0.01201 0.003538 0.001637 0.004059 0.001931 0.002437 0.1442 0.005339 0.004539 0.004775 0.4426 0.006155 0.0004283 0.003197 0.0128 0.09368 0.3768 0.5408 0.003614 2.726e-05 0.0008257 0.001053 0.02207 0.002054 0.008498 0.1723 0.0005341 0.001858 0.0003749 3.764e-05 0.02417 0.0005833 0.002121 0.006526 0.0001292 0.3303 0.06238 0.4143 2.303e-05 0.4504 0.00387 0.0004613 0.5472 0.0002952 0.1346 0.0003435 0.005175 0.03953 1.826e-07 0.01326 0.05216 0.003307 0.0001086 0.00292 0.005702 0.5842 5.978e-05 0.0007254 0.03892 0.002748 0.004475 0.008747 6.01e-06 0.004645 0.0005386 0.000987 0.003713 0.000488 0.0001764 0.0003202 0.003223 0.008704 0.001014 0.002001 1.341e-05 0.0003665 0.01401 0.5772 3.464e-05 0.001634 1.509e-05 0.0004441 6.276e-05 0.005373 0.04874 0.002339 9.236e-05 6.229e-05 0.01017 0.002839 0.0003586 0.008674 0.002528 0.000544 7.19e-05 3.73e-05 0.004083 0.01449 0.01479 0.2422 0.6322 0.04582 0.0007359 0.4951 0.495 6.901e-05 0.0002453 0.1792 0.0003968 0.005416 0.003539 0.003234 0.3612 0.001391 0.001593 0.008629 0.002847 0.001205 5.577e-06 0.1099 0.0007508 1.577e-05 0.0007604 0.3989 0.5755 0.005878 0.0008426 0.001806 5.294e-05 0.581 0.5738 0.001032 0.002043 0.003632 0.001246 2.571e-05 0.0006014 0.3599 0.001745 0.007729 0.004581 0.00172 6.597e-05 0.08227 1.443e-05 0.00337 0.001318 0.2878 0.0004821 0.0005506 0.0004905 0.00199 0.0004819 0.002109 0.003744 0.0005822 0.002259 0.5537 0.5779 0.003098 0.5282 0.5815 4.327e-05 0.001096 0.0001483 0.003222 0.001558 0.001714 0.006509 0.229 0.01259 0.5802 0.01195 4.302e-05 0.004397 0.005463 0.003018 0.00409 0.001728 0.4143 0.001596 0.0007359 0.005051 0.003428 0.0001931 0.4635 0.0123 0.003408 0.007652 0.4165 0.00932 0.001981 0.01421 0.01988 0.0003347 0.0002909 0.3456 3.87e-05 0.0001434 0.0007552 0.5878 0.002908 0.000198 0.01882 0.0009492 0.01241 0.02771 0.001662 0.0003049 0.4146 0.01001 0.5768 0.6068 0.0002969 0.001171 0.6501 0.5734 0.07674 3.899e-06 0.01773 0.01253 0.01629 0.5233 0.02765 0.001214 0.3661 0.5764 8.31e-06 0.0001246 0.02025 0.00403 0.00344 0.01287 0.007247 0.008728 0.0009704 2.332e-06 0.01056 0.01765 0.00293 0.06565 0.006199 0.03465 0.00143 8.29e-06 0.008541 0.000252 0.1668 0.004878 0.004899 0.0007331 0.000483 0.04859 4.242e-05 0.03041 0.004258 0.4235 0.003624 0.2354 0.002275 6.361e-06 0.08474 0.04759 0.00508 0.0001302 0.003281 0.001087 0.0007329 0.000591 0.000162 0.5646 0.007215 4.124e-05 0.005208 0.009221 0.4495 0.4497 0.03514 0.001487 0.004118 0.004406 0.0002063 1.848e-05 0.001534 0.004399 1.433e-05 0.004719 0.03321 0.4894 0.005927 0.0001038 9.904e-06 0.5218 0.00512 0.003024 0.4005 0.001131 0.02191 0.01617 0.006242 0.0002517 0.3862 0.001138 0.01038 0.006118 0.4247 0.02731 0.008626 0.001416 0.3528 0.0006217 0.03865 0.5369 0.02032 0.5612 0.000144 0.01863 0.002895 0.001559 0.001538 0.002231 0.0556 0.546 1.281e-05 0.007791 0.04244 0.003472 0.05923 0.1695 0.4153 0.4023 0.5303 0.02235 0.01437 0.5505 0.01353 0.002767 0.002927 0.05505 0.005501 0.609 0.008913 0.002366 0.3884 0.003638 8.985e-05 0.0144 0.5242 0.01629 0.003944 0.0002633 0.05367 0.01551 5.944e-05 0.007631 0.0001273 0.003103 0.008553 0.002963 0.5365 0.5094 0.371 0.0116 0.01009 0.3701 2.78e-06 0.001994 0.01114 0.003492 0.001293 0.00899 0.003473 0.0003947 0.004677 0.0004892 0.002406 0.004416 0.001281 0.00244 0.0005569 0.000768 3.963e-05 0.001801 0.05531 0.5722 0.001081 2.22e-05 0.0005111 0.004182 0.004168 0.0393 0.5474 0.0003598 2.016e-05 0.003879 0.002026 0.03213 0.0002024 0.0001904 0.004047 0.0006224 0.3084 0.5633 0.005091 0.003553 0.001882 0.03845 0.001365 6.531e-05 0.004232 0.004067 0.00184 0.0165 0.001835 0.004577 0.01019 0.008046 0.565 8.482e-06 0.04895 9.024e-05 0.004754 0.01073 0.002087 0.01791 0.006359 0.007483 0.004061 0.004941 0.001927 0.0001785 0.05 0.004132 0.001898 0.005415 0.2748 0.2744 0.002191 0.0003468 0.004757 0.007434 0.3899 0.5707 0.5729 0.00516 0.001916 0.0001894 0.5713 0.103 3.449e-06 0.5672 9.416e-06 1.492e-05 0.002283 0.0003065 0.00653 0.0002513 0.00239 8.016e-05 9.737e-05 0.004217 0.0001899 0.004312 0.04522 0.005658 0.001034 6.197e-07 0.01559 0.09089 0.0003681 0.003987 0.001058 0.4648 0.03568 0.003507 0.0217 0.03559 0.009012 7.34e-05 0.0003694 0.04754 0.00422 0.00409 0.5715 0.0134 0.003502 0.0002664 0.0004133 0.5863 0.004282 0.01428 0.001829 0.1914 0.00151 0.0001097 0.3001 0.02068 0.00278 0.03099 0.09973 0.007879 0.2774 0.0002821 0.006096 0.0416 0.01171 0.5697 0.2959 0.0006467 0.01222 0.569 0.002525 0.0006221 0.01693 0.001059 0.02534 0.00437 0.005721 0.4984 0.0003922 0.04729 0.000633 0.0001488 0.0004043 0.0002235 0.004785 0.06933 0.001178 0.003974 0.009299 0.004297 0.4284 0.01854 0.0004531 0.001756 0.0001401 1.266e-05 0.004579 0.0006757 0.001751 0.006052 0.02815 0.0008697 8.077e-05 0.008396 0.582 0.05793 0.0003704 0.02834 0.004235 0.0001066 0.001175 0.003304 0.00281 0.0001195 0.004481 0.001983 0.1121 0.0001956 0.0001661 0.003432 0.002072 0.00275 0.007728 0.003039 0.0003589 0.002601 0.009085 0.01555 0.001012 0.0003711 0.001521 0.003333 0.04647 0.001897 0.001624 0.00579 0.00358 0.008745 0.4891 0.0004357 0.01897 0.002697 0.286 0.5942 0.02844 0.03252 0.04265 0.003671 0.05393 0.0001927 0.4149 0.4511 0.007219 0.4093 0.003945 0.002779 0.007116 0.209 7.315e-05 0.02852 0.008544 0.008343 0.001175 0.004638 7.374e-05 0.000109 5.384e-05 0.0006323 0.0006762 0.01546 0.000115 0.5751 0.377 0.009329 0.0002797 0.001018 0.0007733 0.005029 0.001018 0.001766 0.4531 0.001596 0.4956 0.005944 0.3768 0.008867 0.05617 0.5651 0.00116 0.3203 0.1101 0.003146 0.004184 0.02774 0.0006463 8.683e-05 0.03015 0.0001913 0.2756 0.4114 0.0003737 0.003448 0.001301 0.02445 0.3484 0.009904 0.0007569 0.001684 0.01191 0.01475 0.0004504 0.002617 5.55e-05 0.004851 0.5951 0.3334 0.006329 0.3849 0.008167 0.0002598 5.488e-05 0.0002542 0.2309 0.003286 0.01043 0.0001263 8.816e-05 0.02728 0.3417 0.001872 2.006e-05 0.0051 0.01753 0.6436 6.486e-05 0.0305 0.0001562 0.002999 0.17 0.001464 0.00464 0.0001405 0.000151 0.000128 0.00559 0.2168 0.03272 4.778e-05 0.04228 0.007229 0.5857 0.001291 0.01406 0.0005582 0.003371 0.01764 5.379e-05 0.01667 0.007437 0.004768 0.002473 0.01062 0.000715 0.01224 0.0003445 0.002375 0.001031 0.006468 0.00598 0.000413 0.001417 0.005789 0.000498 0.0009832 0.001697 0.0006953 0.4891 0.001272 0.6 0.02071 0.0005522 0.0001077 0.5863 0.001447 0.3456 0.5604 0.002422 0.4716 0.5167 0.009175 0.01332 0.002117 0.003392 0.5343 0.0001324 0.0004413 0.01231 0.0005656 0.02078 0.1822 0.04047 0.3804 0.005299 0.006515 0.3794 0.3793 0.004836 0.5833 0.00472 0.4256 0.004145 0.003183 0.0002352 0.00928 0.5804 8.536e-05 0.2618 0.3613 4.333e-05 0.0139 0.0113 0.001348 0.0001132 0.04075 0.004515 0.01868 1.017e-05 0.003476 0.002413 0.1981 0.0007338 0.001601 0.2765 5.434e-05 0.0001182 1.269e-05 0.001429 0.1677 0.003945 0.008617 9.683e-06 0.03154 0.0008338 0.01729 0.0103 0.004318 0.0003394 0.004358 0.002965 0.01234 0.1844 0.0008568 7.285e-06 0.002002 0.5727 0.007241 0.3875 0.001847 0.002178 0.09308 4.894e-06 0.001338 0.3931 0.0001708 0.5537 0.004009 0.001735 0.0003056 0.001533 0.0005108 0.004026 0.1687 0.008202 0.6283 0.005899 0.0001933 0.0001123 6.67e-06 0.5726 0.05384 0.0004156 0.2734 0.274 6.729e-05 1.427e-05 0.5478 0.02707 0.06992 0.000122 0.008288 0.01755 0.004133 0.004675 0.000251 0.01015 0.0004826 0.01371 0.0009438 6.644e-05 0.002673 0.1629 0.008108 0.0002263 0.5481 0.001935 0.01011 0.001975 0.3981 0.5565 0.4146 0.003842 0.004216 0.0002284 0.5374 0.001847 0.000575 0.0007459 0.0005152 0.00984 0.01295 0.4277 0.0001277 0.5754 0.001502 0.0004676 9.846e-05 0.002114 1.124e-05 0.005661 0.3931 0.03485 0.0003459 0.008717 1.722e-05 0.001923 0.3302 0.003088 0.5867 0.01982 0.009419 0.0001287 0.009921 0.05676 0.003401 0.001293 0.0001188 0.1925 0.004188 0.003601 0.4193 1.23e-05 0.3891 0.0002466 0.3869 0.5977 0.6124 0.006715 0.002339 0.00339 0.001527 0.0001304 0.0003754 0.003438 0.009259 0.5556 0.0331 0.0001965 0.0008326 0.04821 0.005634 0.003552 0.6464 0.003486 0.004771 0.0004148 0.004756 0.001076 0.6006 0.01844 0.003268 0.001716 0.0001189 0.4085 0.002878 0.001088 0.005579 0.5069 0.4064 1.577e-05 0.005955 1.41e-05 0.547 0.008228 0.005863 3.348e-05 0.002003 0.008314 0.00305 0.00309 0.006284 0.02277 1.222e-05 0.0008734 0.0008643 0.0008196 0.0083 0.01051 0.0009949 0.001141 0.03855 0.003159 0.001498 0.01018 0.006394 0.006457 0.1522 0.0007851 0.002323 1.273e-05 0.01368 0.005618 0.05811 0.00525 0.002856 0.2804 0.2804 0.01204 0.005619 0.001447 0.1898 0.0008341 0.001305 6.153e-05 0.0023 0.001731 0.0002379 0.001927 0.6018 0.003849 0.3667 0.001031 0.006171 0.008518 0.004797 0.5713 0.009174 0.03299 0.4623 1.089e-05 0.0005102 0.5986 0.004703 0.5765 0.009759 0.00557 1.325e-05 0.0008595 0.004886 0.004539 0.0005223 0.006269 0.0007797 0.001902 0.02943 0.0006817 0.0008503 1.096e-05 0.001114 0.223 0.0007823 0.0003391 5.092e-05 0.004696 1.15e-05 0.005727 0.008228 0.002833 0.0003167 0.03316 0.007049 0.002217 0.006982 0.4148 0.0001451 0.0001255 5.347e-05 0.0006162 0.01108 0.001118 1.077e-05 0.0009595 0.5636 0.00207 7.786e-05 0.01751 0.1405 0.001751 0.003089 0.0001086 0.04798 8.393e-07 0.002404 0.002426 0.5214 0.0001247 0.007516 0.02648 0.008626 0.5367 0.0007767 0.002979 0.003307 0.1356 0.02978 0.001597 0.0001536 0.0001088 0.0001413 0.03991 0.0006606 0.003499 0.001624 0.0001471 0.01192 0.02873 0.002203 0.008834 0.00131 5.07e-05 0.1962 6.022e-05 0.002064 0.02133 0.0003728 0.2687 0.04475 6.275e-05 0.002524 0.0001953 0.0008802 0.004433 0.5974 0.5725 0.668 0.002604 0.6637 0.1155 0.4115 0.001209 0.0005055 0.0008041 0.00226 0.001637 0.000323 0.5391 0.001528 0.002028 0.1168 0.1045 0.003257 0.008244 0.07492 0.05574 0.02206 0.01348 0.004756 0.5627 0.0003428 0.583 0.02746 0.001789 0.006387 0.0003028 0.001951 7.965e-06 0.01538 0.001373 0.04097 0.0002625 0.555 0.5812 0.5676 0.008616 0.0002919 0.001623 0.008859 2.728e-05 0.0009964 0.1576 0.002132 0.0002267 0.5746 0.06046 0.0006622 0.003193 1.359e-05 0.0001082 0.5643 0.01851 5.933e-05 0.0004512 0.006881 7.896e-05 0.07871 0.0001799 0.001289 4.96e-05 4.484e-05 0.07656 3.686e-06 0.005623 0.001974 0.002951 0.0002602 0.05203 0.01066 0.001129 0.0136 0.00103 0.005716 0.0009335 0.009502 0.4318 6.886e-06 0.01 0.004166 0.004872 0.1109 0.0002622 0.0002146 0.001883 0.0004095 0.001762 0.01913 0.007502 0.03591 0.0003958 0.01321 0.4244 0.001296 0.0001728 0.001492 0.004904 0.003853 6.71e-07 1.09e-05 0.6002 0.0003445 0.001007 0.0053 0.0003236 0.5726 0.5221 0.003393 0.4688 1.171e-05 0.04251 0.002108 0.006654 0.005257 0.0002542 2.039e-05 0.006391 0.004291 0.01316 0.354 0.4398 0.00941 3.446e-05 0.3193 0.003615 0.001946 0.5355 0.0009789 0.0007445 0.03126 0.005868 0.01076 0.3705 0.007095 0.09873 0.004894 0.001401 0.001043 6.941e-05 0.002945 0.001866 5.649e-05 0.00372 0.5727 6.175e-05 4.187e-05 1.487e-05 1.14e-05 0.4181 0.001033 0.002892 0.005706 4.93e-05 0.02327 0.006584 0.1995 0.006333 0.0001015 0.006623 0.0001598 0.0123 0.002465 0.02994 0.009599 0.006223 0.003156 0.0001583 0.0002195 0.3637 0.5079 0.00111 0.06101 0.0006568 0.00423 0.004124 4.672e-06 0.004683 0.001331 0.002596 6.528e-05 0.5674 0.007683 0.0004174 0.0007179 4.375e-05 7.291e-06 0.04334 0.0007001 0.003301 0.07936 6.266e-05 0.002197 0.004036 0.00125 0.07074 0.0005406 0.001722 0.003685 6.213e-05 0.002167 0.006715 6.922e-05 0.03942 0.004878 0.0001693 0.0006372 0.007853 0.001109 0.0359 0.002437 0.004326 0.3405 0.003515 0.0001009 0.0228 0.002623 7.522e-05 0.004383 0.6117 0.001999 0.008076 0.006008 0.006896 0.0001517 0.00441 0.02081 0.00379 0.003109 0.01643 0.001218 0.002519 0.003222 0.001358 0.05504 0.6285 0.006522 0.0001706 0.002743 1.214e-05 6.084e-05 1.236e-05 0.05061 4.235e-05 0.009056 0.0002093 0.0002995 0.002501 0.009742 0.003989 0.002465 0.009093 0.01174 2.018e-05 0.003827 0.01641 0.5321 0.0008069 0.00531 0.006475 1.043e-05 0.0003091 0.007445 0.0001069 0.1547 4.309e-05 0.002061 0.5636 0.008083 0.0005263 0.0005802 0.007182 0.001253 0.5648 1.077e-06 0.0342 0.1571 0.03172 0.4089 0.174 0.004722 0.4179 0.0003344 0.002577 0.002129 0.6422 0.002331 0.04339 8.161e-05 0.002015 0.0001312 5.406e-06 0.4022 1.199e-07 0.02281 0.01746 3.209e-05 0.001434 0.01632 0.003654 0.005805 0.5794 0.002316 0.005353 2.082e-05 0.2586 0.001005 0.01398 0.0001848 0.1385 0.002182 0.00641 0.0005304 0.002669 0.004457 0.005106 6.053e-05 0.382 0.001146 1.399e-05 0.004859 0.003037 0.01273 0.007304 0.5458 0.0003742 0.001848 0.0003035 0.002586 0.001309 0.09886 0.01554 0.5819 0.0008046 0.0009722 0.5849 0.5477 0.00134 0.009911 0.5756 0.6318 0.007824 0.001933 0.002437 0.0004287 0.03725 0.2478 0.001338 4.295e-05 0.003856 7.879e-05 0.003115 0.003958 0.03956 0.01349 0.4514 0.009625 0.003352 0.03706 0.004696 0.001028 0.02444 0.001198 0.428 0.00137 0.006343 0.3251 0.002654 3.597e-05 1.277e-05 0.002786 0.009431 0.0002893 6.67e-05 0.07477 0.002409 0.5899 0.312 0.004503 0.002248 0.429 0.002912 0.0724 0.0003258 0.5672 0.5642 0.2749 0.5722 0.5638 0.4751 0.002048 0.0003858 0.000654 0.003093 0.0006349 8.24e-05 0.009274 0.001792 0.0004362 0.267 0.0006921 0.0007167 0.0006329 0.001218 0.0003002 0.0006098 0.3381 0.04316 0.2143 0.02187 0.006941 3.895e-05 0.0006289 0.01545 0.002277 4.22e-06 0.04797 0.007451 0.01594 0.004576 0.0007871 1.855e-05 4.568e-05 0.00219 0.000592 0.0005476 0.01249 0.01927 0.0001265 0.002267 2.351e-05 0.0009455 0.002414 5.441e-05 0.003993 0.0005809 0.003473 0.001765 0.008525 0.0001356 0.0008435 0.00203 0.004716 8.682e-05 0.006307 0.0006083 0.005687 0.4719 0.01406 5.453e-05 0.000322 0.6412 0.0001226 0.001233 0.0005318 7.249e-05 0.001448 0.001082 0.5946 0.4054 0.4059 0.007935 0.0002724 0.6008 0.569 0.01302 0.0485 0.568 0.0006343 0.5713 0.2781 0.007517 0.003442 0.001014 0.0004639 0.001814 0.01353 0.0006245 0.05092 0.5784 1.443e-05 0.008221 0.0005442 0.0002225 0.004678 1.463e-05 0.0001852 0.0007629 0.01169 0.001746 0.03146 0.0001005 0.002618 0.0005348 0.3529 0.02519 0.5765 0.05624 0.1895 9.719e-06 0.00393 0.108 0.003387 0.004379 0.4187 0.01256 0.001422 0.001331 0.00134 0.003562 0.0009508 0.6087 0.006465 0.002316 0.5968 0.0005759 4.015e-05 0.5899 0.3709 0.02803 0.001588 0.156 0.000249 0.5869 0.007645 7.695e-05 0.005585 0.0003232 0.005355 0.003949 0.3542 0.0001517 0.005841 6.329e-05 0.4142 0.0003221 0.00108 0.008264 0.0002792 0.0001139 0.4213 4.83e-05 5.179e-05 0.0006989 0.002691 0.3706 0.0006409 0.04024 0.009465 0.0007466 0.007399 0.002467 0.0001475 0.01945 0.5703 0.3313 0.0009402 0.001648 0.0008507 0.5593 0.006154 0.0001087 0.009472 0.001279 0.008408 0.001004 0.00746 1.417e-05 0.0113 0.006008 0.007386 2.033e-05 0.004878 5.053e-05 0.003772 0.001851 0.5872 0.004295 0.002186 0.0009407 0.003652 0.0001158 0.03139 0.2191 0.0001089 0.0008645 0.006301 0.0001727 0.0318 0.5783 0.0006417 0.2931 0.293 0.6654 0.01928 0.004252 0.01926 6.772e-05 0.0001212 0.2475 0.000111 0.003812 0.005007 0.005519 0.6022 0.08715 0.0004517 0.005503 1.709e-05 6.02e-06 0.00848 0.006539 0.002354 0.002043 0.0003337 0.0004019 0.03507 0.05435 0.1852 0.005538 0.0625 0.03701 0.0583 0.03537 0.5876 0.002463 0.003081 0.3278 0.0005122 4.971e-05 0.3897 0.006853 0.01067 0.5392 0.4155 0.0004025 0.001112 7.331e-05 0.3314 0.2062 0.09304 0.003583 0.1143 0.02636 0.003644 0.0002934 0.009289 8.02e-06 2.166e-05 0.0009698 0.03173 0.002336 0.006623 0.02037 0.002271 0.0001695 0.003572 0.0001432 0.001371 0.002667 0.5172 0.592 0.002853 0.003185 0.01015 0.003965 0.004841 0.4946 0.01439 1.223e-05 0.009755 0.0001358 0.001308 0.006723 0.008129 6.308e-05 0.01629 0.0008905 0.5729 0.0002994 0.0145 3.902e-05 0.5045 0.0002257 0.03031 0.0002232 0.0005862 0.001933 0.002503 0.005776 0.0005471 0.00186 0.0001293 0.0005241 0.002941 0.004963 0.002465 0.00013 0.0008821 0.002049 0.001348 0.001586 0.009107 1.045e-06 0.0309 0.4169 0.0874 0.0002264 0.01518 0.002095 0.002879 0.009233 0.03613 0.006398 0.001077 0.03274 0.002545 0.04258 0.004021 0.001591 0.0002929 0.02169 3.304e-06 0.03114 0.0001253 0.000153 0.003177 0.0173 0.5367 0.5367 6.714e-05 9.075e-06 0.007095 0.0003242 0.0007214 0.007615 5.798e-06 0.005275 0.02372 8.057e-05 0.05912 7.328e-05 0.000434 0.006697 0.009228 0.5657 3.665e-05 7.998e-05 1.113e-05 1.996e-05 0.01053 0.5206 0.0001771 0.5722 0.08192 1.362e-05 0.003442 0.01225 0.024 0.0271 0.4163 0.001554 0.001859 0.002402 0.00629 0.005068 0.6063 0.00611 0.00136 0.6123 0.07307 0.4774 0.5874 0.3534 0.1314 0.003906 0.0009897 0.002162 0.1003 0.0005104 0.0183 0.4727 0.00158 0.0005829 2.867e-05 0.0004382 0.0001826 0.002107 4.593e-05 0.0004603 0.5398 0.0002003 0.007221 6.263e-05 0.01168 0.5724 0.02371 0.5744 0.001273 0.001596 0.00809 0.0001174 0.001567 0.01674 1.759e-05 0.04581 0.008456 0.02233 0.008195 1.728e-05 0.4674 0.1257 0.0004955 0.1953 0.004038 0.5323 0.5637 0.01623 0.002764 0.4914 0.002359 0.005723 8.317e-05 0.0001402 0.01042 0.04213 4.796e-05 0.0015 0.0007989 1.419e-05 0.5876 0.002777 0.001109 0.0004266 0.5576 0.002891 0.007352 0.001583 0.002057 0.004178 9.031e-05 0.5748 0.001389 0.5637 0.01559 0.0001968 0.4665 0.0007891 0.005692 0.006051 0.01156 6.442e-05 0.001194 0.002519 0.00177 0.002269 0.04114 0.3227 0.0003332 0.003562 0.002729 0.3302 0.3302 0.0002684 0.5652 0.01592 0.42 0.6055 0.5015 3.783e-05 0.4537 0.409 0.4218 0.04144 0.4805 0.02132 0.5767 0.0007947 0.002312 0.0004633 1.601e-05 0.003829 0.00142 0.001062 0.01069 0.001615 9.983e-05 0.0008585 0.002868 0.004544 0.4602 0.001173 0.1625 0.01274 0.001024 0.01814 0.002856 0.0005198 0.003559 0.002447 0.3834 0.5301 0.007685 0.3267 0.003876 0.004327 0.6138 0.6136 4.653e-05 0.01291 0.002975 4.186e-05 0.003233 0.002652 0.005983 0.001798 0.02534 0.02916 6.637e-05 0.0007782 0.5666 0.0003514 3.291e-05 0.02103 0.4017 0.004229 0.0007129 0.001792 0.373 0.01144 0.001756 0.0005417 0.003404 0.001249 4.072e-06 0.001531 0.0129 0.00895 0.04592 0.0004099 0.1615 0.4344 0.01847 0.5615 0.0009932 0.0007478 8.789e-05 6.276e-05 0.549 0.0004796 0.02358 0.00189 0.008797 0.0001417 0.0141 0.0001245 0.5823 0.0002857 0.00986 0.0005649 0.3789 0.03015 0.2267 0.007627 0.4261 0.001137 5.277e-06 0.003677 6.365e-05 0.01066 0.01155 0.003638 7.742e-05 0.002027 4.397e-05 0.0008959 0.0002933 0.0002192 0.006289 0.006086 0.0001376 0.5306 0.005082 0.03701 0.3014 0.1097 0.01316 5.907e-05 3.175e-05 0.0003081 4.018e-05 0.001842 0.5814 0.1736 2.705e-06 0.004201 0.003878 0.4169 0.0004916 0.1179 0.001756 0.005582 0.4382 0.008721 0.001576 1.316e-05 0.001434 0.006789 0.0003724 0.03583 0.2809 0.00607 0.002331 0.00895 0.003223 0.000482 0.5722 0.494 0.0007259 0.0005742 0.0008354 0.004137 0.001102 0.01891 0.001934 0.001808 0.006714 0.6166 1.279e-05 0.001046 0.0001313 0.002193 0.001716 5.154e-05 0.0001799 0.04803 0.5757 0.03778 0.01879 0.0109 0.001674 4.045e-05 0.001688 1.13e-05 0.001315 0.00223 0.001751 0.0007841 0.0008389 0.007928 0.0008369 0.0001224 1.022e-05 0.005684 0.002532 0.005779 1.172e-05 0.003191 0.002444 0.0001127 6.984e-05 0.002264 6.703e-06 0.1217 0.006838 0.00226 5.072e-05 0.00571 0.001493 0.001363 0.002112 0.001025 0.003123 0.001267 0.006761 2.616e-05 0.0004175 0.003428 0.002168 0.0008103 0.002115 0.004268 0.0345 0.03902 0.005555 0.006376 0.01276 0.003742 1.12e-05 0.1332 0.0002948 0.00102 0.008743 0.5915 0.001716 0.001455 0.001372 0.0009094 6.555e-05 0.004053 0.605 0.4731 0.3555 0.001918 5.486e-05 0.0002349 0.003759 0.5703 0.002445 0.006207 0.03932 0.001177 0.5967 0.001915 0.2337 0.001101 0.5223 0.5387 5.391e-05 0.002178 0.0138 0.0004439 0.02571 0.09545 0.2248 0.004327 0.3729 0.5846 0.0008084 0.003544 0.008897 0.001775 0.002909 0.0001351 0.005859 0.0003681 0.01148 0.001436 0.0002446 0.006262 0.002267 0.0001022 0.001149 0.5774 0.000474 0.008788 0.002295 0.004847 0.0003176 0.0002776 0.5605 0.002488 0.0008887 0.02049 7.115e-05 0.4026 0.08457 0.0004323 0.001542 0.0007878 0.4856 0.0008847 0.0005273 0.07136 0.5295 0.0003842 0.0839 0.03211 0.006312 0.005813 0.569 0.5164 0.001225 0.002849 0.008897 0.41 0.0002413 0.0006832 8.687e-05 0.5843 0.004036 0.004098 0.001862 0.001357 0.4123 0.4101 0.002032 0.4653 0.007577 0.002237 0.001047 0.006513 0.004091 0.0008587 0.0001752 0.01114 0.0004305 0.005649 0.0004253 0.003122 0.3532 0.005414 0.001876 0.5266 0.5873 0.06493 0.004343 0.005778 0.07935 0.005673 3.478e-05 0.006024 0.4695 0.01975 0.003721 0.005037 0.0007226 0.003686 0.01319 0.03251 0.5165 0.00994 4.546e-05 8.637e-05 0.001475 0.03329 0.009169 0.003707 0.6521 2.324e-06 0.4156 0.001541 0.0001376 0.2591 0.0158 0.0001583 0.006202 0.002143 0.3874 8.179e-06 0.5302 0.008015 0.0104 5.215e-06 0.002269 0.0005251 0.000729 0.0008164 0.006496 0.002826 0.005351 0.021 0.01906 0.01117 0.01572 0.01917 0.0002964 0.0002957 0.02358 0.000575 0.003024 0.003436 4.633e-05 0.3911 0.4524 0.01732 0.03435 0.01135 0.04489 0.0168 0.002104 0.002505 0.001171 0.0006376 0.5771 0.005687 0.0006041 0.5188 0.5165 0.0001046 0.0002958 0.0003528 0.001223 7.253e-06 0.5615 0.02646 0.00106 0.002832 0.002921 0.0001088 0.001803 0.0006268 0.5884 0.003308 0.004491 3.462e-06 0.5798 0.00306 0.01348 0.002645 0.0003599 0.0003899 0.06389 6.107e-05 0.008275 0.5733 0.000239 0.03753 0.00467 0.00211 0.002292 0.002939 0.006225 0.03512 0.1251 0.001715 0.01176 0.01463 0.001103 1.566e-05 0.002715 0.0003771 0.0009182 0.001672 0.0008246 0.2665 0.005291 0.0001103 0.2604 1.115e-05 0.002882 0.5608 0.253 0.0005394 0.01057 0.01844 0.001749 0.009566 1.258e-05 0.01102 0.001191 0.01032 0.0001731 0.01247 0.01294 0.5488 0.03104 0.003655 0.002793 0.0002905 0.007857 0.00595 0.003246 0.01632 0.001144 4.265e-06 0.583 0.634 0.3486 0.3804 0.002766 0.0005833 0.002943 0.003232 0.0007286 0.02342 0.001203 0.0004524 0.3578 0.6493 0.2949 0.04664 0.0006486 3.312e-05 0.5845 0.5811 0.4644 0.001235 3.944e-05 0.0001918 0.003041 0.009605 0.00133 0.001789 0.00101 0.3254 0.0003872 0.0146 0.00175 0.6049 0.01304 0.06841 0.000138 0.001133 0.2667 0.001746 0.5774 0.0003625 0.0001816 0.002539 0.001239 0.00593 0.0413 0.03711 0.6515 0.003242 0.0007767 0.05864 0.001009 0.01372 0.3329 0.0134 0.0001022 0.001519 0.006984 0.001915 0.5565 0.01161 0.0009407 0.5854 0.004394 0.001931 0.008808 0.05027 8.21e-05 0.004204 0.001064 0.3097 0.003303 0.002958 0.06536 5.959e-05 0.1445 0.569 0.002328 0.001752 0.01395 0.01789 0.01058 0.0006733 0.001433 0.002241 0.002141 0.01222 0.00051 0.0009461 0.001709 0.0001035 0.003766 0.00527 0.000138 1.016e-05 0.573 0.0001827 0.002043 0.0002364 0.003051 0.005453 1.649e-05 0.01147 0.02798 0.001009 0.001475 0.5574 0.001116 0.5648 0.004076 0.02646 4.882e-05 0.005678 0.004481 0.05235 0.006406 0.0315 0.0009156 0.007546 0.0105 0.004698 0.001231 0.0001585 0.03038 0.001819 0.01671 0.0127 0.0001249 0.0001078 0.001098 0.004993 0.003035 0.4404 0.03605 0.0007865 0.2929 8.629e-06 0.01536 0.008959 0.03679 0.0003593 0.006849 0.03501 0.0005309 0.01493 0.3679 2.913e-05 0.0003935 0.0435 0.0001245 0.01185 0.02009 0.008181 0.006115 0.04445 5.241e-05 0.2893 0.3998 0.002237 0.4561 0.1648 1.295e-05 0.0004053 0.0009243 0.3655 0.001204 6.087e-05 0.0001921 0.007008 0.03398 0.001828 0.5166 0.02011 0.000317 0.5896 0.0001981 0.004487 0.0001329 0.5559 0.002595 0.0005528 0.008587 0.01152 0.0002222 0.001484 0.0002159 0.5623 0.008146 0.5064 9.863e-06 0.002631 0.0001144 0.0005481 0.001024 0.0002916 0.02027 0.003547 0.05008 0.000918 0.0004771 0.01239 0.001393 0.002512 1.029e-05 0.01025 1.301e-05 0.0007802 0.4375 0.0011 0.0001301 0.003878 0.01018 0.0003068 0.0002111 0.0005502 2.349e-05 0.0002411 0.01299 0.005023 0.0005948 0.003324 0.0005318 0.0009159 0.5593 0.5089 0.399 7.405e-05 1.954e-05 0.001298 0.005877 0.003617 0.001902 0.07677 0.003212 0.04456 4.718e-05 0.0001775 0.001856 0.004047 0.01253 0.04454 0.4501 0.006795 0.008794 0.5756 0.09341 0.0001435 2.448e-05 0.002978 0.0003938 0.001716 0.001553 0.006308 0.5911 0.001624 0.00462 0.006242 0.001905 0.451 0.001108 0.008764 0.00185 0.5615 0.0004877 0.01021 9.428e-06 0.04046 0.002073 0.003083 0.005533 0.3897 0.3896 3.003e-05 0.0028 0.00037 0.0008369 0.006147 0.03958 0.5726 0.6081 0.0007132 0.0008578 0.002038 2.181e-05 0.001457 0.334 0.334 0.01415 0.4405 0.5737 0.644 0.5408 0.03355 0.002329 0.005307 0.00189 0.0001824 0.001165 0.3809 0.381 1.267e-05 0.0726 0.000878 0.003767 0.5917 0.001674 0.000192 0.009729 0.3176 0.0002209 0.01669 4.231e-05 0.003179 0.01623 0.01233 0.0006212 0.001165 0.0004764 6.171e-05 0.004639 0.001561 0.001192 0.00437 5.662e-05 0.006135 0.07568 0.4149 0.0008068 0.003651 0.4148 0.509 6.671e-05 0.01957 0.001776 0.5737 0.003409 0.0006487 0.5601 9.85e-05 0.0007722 0.0003182 6.921e-05 0.001558 0.0004396 0.001933 0.0009701 0.5786 0.002813 0.01069 0.03475 0.0004905 0.06795 0.0004647 0.2425 9.35e-05 0.5669 0.001408 0.002032 0.0007003 0.002745 0.5028 0.5745 0.0001395 0.0008553 0.5768 0.05451 0.0005324 0.003927 0.007807 0.0004716 0.0003203 0.0184 3.38e-08 0.0001395 8.036e-05 0.002572 0.002299 0.0001763 0.00043 0.0009097 2.535e-08 0.00332 0.0007334 0.3008 0.000704 0.00238 0.005216 0.5822 0.0015 0.0001433 0.5031 9.788e-06 0.4427 0.0493 6.269e-05 0.003189 6.192e-05 0.0008323 0.001749 0.001264 0.00206 0.5403 0.007063 0.009609 0.03242 0.0003151 0.0002413 0.5102 0.0004585 0.01581 0.004194 0.04766 0.005579 0.001287 0.0001989 0.005629 0.003032 0.007255 4.574e-05 0.0002075 0.07783 0.001597 6.182e-05 0.0001597 0.09506 0.01115 0.5685 0.000921 0.0009968 0.01073 0.4603 0.5659 0.02058 0.01195 0.5831 0.001015 0.008396 0.002327 0.005316 0.008845 1.222e-05 0.243 0.0222 1.63e-05 0.001361 0.0007409 0.005582 0.4581 0.002601 0.01915 0.006593 0.0001185 0.001152 0.009761 0.5703 0.5765 0.003183 0.0493 0.0009026 1.313e-05 0.0002221 0.001153 0.5762 0.001719 0.000883 0.002424 0.002957 0.02576 6.529e-05 0.008511 0.01781 7.057e-05 0.001332 0.002966 0.003545 0.002106 0.003631 0.04 7.646e-06 0.02195 0.005427 0.5794 7.452e-05 0.007848 0.00446 0.001047 0.0008444 0.2823 0.0005811 0.002093 0.01336 0.0001099 0.0003826 1.668e-05 0.00581 0.002486 0.000287 0.003236 0.01 0.008522 0.003617 0.5804 0.5008 0.0004793 0.4411 0.000346 0.01387 0.4836 0.002642 0.0008144 0.004264 0.0006204 2.013e-05 0.0001534 1.653e-05 0.0001475 0.001453 0.5732 0.0003553 0.132 0.004124 0.003671 0.03683 5.71e-05 0.4166 0.0004935 0.00164 0.003737 0.6512 0.0006748 0.002932 0.03917 0.018 0.3394 0.002155 0.0006846 0.5619 0.0007019 0.418 0.4951 0.6656 0.004223 0.002447 0.001992 0.005816 0.01553 0.01274 0.06061 0.001056 0.6226 0.004122 0.0001039 0.5652 0.01566 0.0006157 0.0005866 0.5549 6.788e-06 4.257e-05 0.001172 0.00117 0.005627 0.005641 0.0182 0.001613 0.5706 0.004003 0.0001895 0.002243 0.07571 0.00249 0.5595 0.342 3.145e-05 0.001353 0.5751 0.01249 0.001528 0.01143 0.003374 0.1901 0.01946 0.000926 0.005674 0.009553 0.009218 0.001877 0.008587 0.009469 0.0003532 0.007209 0.0007387 1.407e-05 0.005815 0.002605 0.005318 0.4313 0.003269 0.01023 0.5699 8.489e-06 0.5975 0.003746 0.0001097 0.0004684 0.003357 0.5866 0.0004567 0.002688 0.001241 0.003086 0.0005276 1.653e-05 0.07179 0.5072 0.0006232 0.002101 0.4901 1.9e-05 0.0004301 0.5381 0.5717 0.002204 0.000323 0.01042 0.08667 0.001193 0.03065 0.01347 0.01286 5.656e-05 0.002596 0.006987 0.6638 0.01067 0.03761 0.0009639 0.0007858 1.217e-05 0.001189 0.6134 0.5376 0.247 0.3337 1.245e-05 0.3249 0.1324 0.008281 0.5796 0.0004852 0.008243 0.5745 6.65e-05 0.4121 0.4122 0.09103 0.008212 0.00111 0.0143 0.002003 0.0009527 0.01439 0.01634 0.555 0.005364 5.65e-05 0.03511 0.5933 0.001066 7.29e-07 0.0002021 0.004604 0.0001041 0.01392 0.0002915 0.009074 0.002849 8.892e-06 0.1474 0.0001995 0.3411 0.5822 0.005231 0.3452 0.00164 1.898e-05 0.4359 7.061e-05 0.001642 0.1898 4.131e-05 0.1852 0.0002659 4.198e-05 0.004632 1.003e-05 0.4462 0.4465 0.002242 0.4893 0.001408 0.002274 2.712e-05 5.943e-05 0.006426 0.002534 0.5582 5.513e-05 0.0003362 5.83e-05 0.0008097 0.002298 0.2502 0.5094 0.002874 0.00427 0.002054 0.001932 0.001941 3.261e-05 0.001231 0.3911 7.287e-05 0.001926 0.08009 0.001536 0.5625 0.008363 0.009254 0.000125 3.028e-05 0.004061 0.532 0.5638 0.002691 3.389e-06 0.03609 0.001987 0.6021 0.05437 8.476e-05 0.003045 0.3742 0.06638 3.036e-05 0.0007626 0.03452 2.678e-05 0.003626 0.0001146 0.001593 0.004912 0.002546 0.02305 4.533e-05 0.003165 0.5472 0.07682 0.01319 0.0002607 0.001513 0.003832 8.151e-05 0.004756 0.00217 0.05815 0.005287 0.009919 0.00108 0.008344 0.02053 0.1481 0.006489 0.00162 5.808e-05 0.4025 9.353e-06 0.003746 0.4357 0.0002827 0.001536 6.626e-05 0.001437 0.1309 0.01705 0.001656 0.0005142 0.0005803 0.0003538 0.0013 0.001503 0.009414 0.004823 0.003047 0.01395 0.005126 0.0006609 0.002352 6.829e-06 0.002548 0.01402 0.01299 0.003274 1.269e-05 0.00454 0.1396 1.292e-05 0.0002358 0.4969 1.304e-05 0.0006323 0.003143 0.001367 0.02402 0.008475 4.508e-06 0.00106 0.002555 0.00194 0.2198 0.4044 0.0006021 0.001004 0.002595 0.007887 5.272e-05 0.001416 0.002214 0.3845 0.002657 0.001344 0.0001188 0.02323 0.04277 7.334e-06 0.006293 0.0001018 0.0001207 0.03324 0.002099 0.04452 0.001333 0.001798 0.0002861 0.0001101 0.002483 0.04131 0.595 0.00198 0.008594 0.0005162 2.312e-05 0.1002 0.001275 0.002635 0.0123 0.0008173 0.1732 0.006029 0.001041 0.6319 0.563 0.0003771 6.394e-05 0.398 0.00189 0.001482 0.02377 0.6285 0.006748 0.5987 0.0002223 0.5645 0.000966 0.01225 0.6499 6.566e-05 0.03783 0.006492 0.002667 0.0001929 0.02809 0.3529 0.00302 6.265e-05 0.001518 0.000178 0.01288 0.0003007 0.002597 0.001202 0.2681 0.0112 0.01231 0.0002522 0.01116 0.0051 0.07272 0.5845 0.00107 0.0005822 0.001266 2.418e-05 0.004952 0.3558 0.3663 0.00468 0.002358 0.3998 0.00932 0.005697 0.001177 0.001795 1.043e-05 0.008189 0.002941 0.05795 0.007658 0.01535 0.1388 0.002551 0.0003738 0.001249 0.02861 0.002136 0.0001011 0.001177 0.00165 0.001477 0.4916 0.01609 0.01376 0.4977 0.00537 0.5767 0.0005897 0.004571 0.05079 0.006805 0.0005777 0.003491 0.03471 0.0004687 0.00266 0.001381 0.005773 0.002 0.006968 0.0001182 0.5743 0.001887 0.001949 0.002637 0.001666 9.679e-05 0.008411 0.3608 0.01308 0.4329 0.0006242 0.02535 0.008852 4.938e-05 0.000697 0.0006363 0.004474 0.0004545 0.005186 0.001135 0.007401 0.005775 0.4152 0.02074 0.002886 0.01062 0.004472 0.573 0.01325 0.009093 0.0006651 0.003393 0.6227 0.001558 8.866e-06 0.01638 0.0001621 0.5647 0.008488 0.2274 0.002466 0.02189 2.937e-05 6.016e-05 0.5432 0.3613 0.002576 0.0001279 0.0006517 0.0002757 0.01149 0.003008 0.5872 0.005795 0.0003739 0.002302 0.0003207 0.4471 7.262e-06 0.637 0.0002757 0.0009358 0.0007782 0.0009842 0.0002711 0.003656 0.4926 0.0006233 0.01427 0.00128 0.5928 0.001324 0.01368 0.0007601 0.4976 0.1383 0.2671 1.379e-05 0.01009 0.003505 0.5397 0.03362 0.0004561 0.5789 0.0004652 0.0001086 0.000264 0.0093 0.1458 0.004522 0.001738 0.000586 0.000287 0.009349 0.007865 0.001901 0.01914 0.1378 0.4451 0.00446 0.003112 0.001994 0.002631 5.588e-06 0.01375 0.005644 0.003592 4.234e-05 0.3775 0.03591 0.001239 0.002891 0.5773 0.0006326 0.01787 0.0003852 0.6448 0.0006027 0.007915 0.3292 0.02452 5.707e-06 0.002295 1.285e-05 0.405 0.0003767 9.912e-05 0.1182 0.01727 0.02778 0.0009332 0.00205 0.0003218 0.002909 0.003288 0.007543 0.001326 0.01649 0.03752 0.005688 0.001287 0.003782 0.002422 0.0002292 0.003666 0.0005168 0.002161 0.009182 4.949e-05 0.2065 0.003349 0.001274 0.6061 0.6032 0.02001 0.0005888 6.463e-05 0.006022 0.4088 0.0008544 0.003755 0.0001359 0.001259 0.0003688 4.846e-05 0.01486 0.001589 0.008228 1.031e-05 0.005493 0.01189 0.02111 0.004312 0.4013 0.03354 0.003002 0.003515 0.3096 0.1366 0.0064 0.0249 0.5692 0.002126 0.0001494 0.0001865 0.0004856 0.009851 0.0009368 0.002901 0.004537 0.3682 1.196e-05 0.001154 0.01342 0.009329 0.00037 0.001428 0.359 0.5767 0.0007572 0.01551 0.01099 7.723e-05 0.0006078 0.4795 0.009276 0.0002835 0.001957 0.0005374 0.0005309 0.001003 0.009011 0.001314 0.01605 0.001514 0.001946 0.001191 9.371e-06 0.005311 0.0002618 0.3921 0.03065 0.003499 0.0146 0.003003 0.00522 0.2848 0.006201 0.5542 0.005679 0.0001057 0.5811 0.0001116 0.001235 0.4283 0.001693 0.0003841 0.0006201 0.1897 0.0007443 0.3919 0.008317 0.0004361 0.01112 0.00111 0.09909 0.009018 0.08399 0.006566 4.422e-05 0.005651 0.01028 1.797e-05 0.01367 0.5683 0.3225 0.3895 0.004872 0.04669 0.001862 0.09905 0.6207 0.03166 5.356e-05 6.813e-05 0.004005 0.02844 0.01558 0.6636 0.006296 0.005961 0.5746 0.004275 0.007368 0.001616 0.0004316 0.04094 0.583 0.658 0.0005107 0.0002394 0.008137 0.02459 2.471e-05 0.0001021 0.001383 0.005572 0.0001453 0.3882 7.685e-06 0.4519 0.04332 0.01555 0.1564 5.92e-06 0.0179 0.006774 0.027 0.4772 0.0001391 0.0006024 0.001713 0.08358 0.001615 0.002073 2.056e-05 0.09318 0.08748 0.0002864 0.000873 0.001275 7.02e-06 0.00699 0.0007137 0.06394 0.000528 0.002406 5.078e-05 0.005841 0.01153 0.03341 0.006522 0.0001521 0.002431 0.5022 0.003421 0.002255 0.009752 0.002937 0.4699 0.001305 0.0006812 0.4455 0.003801 0.1001 0.004891 0.006354 4.901e-05 0.0003158 0.001001 0.0005523 0.005802 0.0006961 0.005934 0.5572 0.003581 0.09887 0.0008595 0.0005867 0.008282 5.736e-05 0.00292 0.0005916 0.0001934 0.006135 1.433e-05 0.0002596 5.05e-05 0.01265 0.002249 0.0004539 0.005229 0.004536 0.005546 0.4273 0.0003917 0.04083 0.001292 0.0004329 0.0004238 7.073e-05 8.476e-05 0.002779 0.003059 0.001397 0.2937 0.002076 3.831e-05 0.03211 0.01057 8.013e-06 0.0001064 0.00201 0.3894 6.228e-06 0.0006974 0.6422 0.496 2.394e-05 0.01055 0.008533 4.89e-06 0.0005127 0.353 2.537e-05 0.0007506 0.004082 9.074e-05 0.003878 0.002046 0.04152 0.002882 0.2943 2.615e-05 0.006854 0.008479 0.01748 0.01137 0.004056 0.00507 0.01179 0.001339 0.3423 0.1475 0.005156 0.0009937 0.009415 0.0004321 0.01212 0.001477 0.05754 0.0073 0.0005159 0.002515 0.00857 0.0001158 0.02879 0.006244 0.04834 6.64e-05 4.943e-06 0.2769 0.0004424 0.0008209 0.2218 4.602e-05 7.824e-06 0.00415 0.009592 0.0004048 0.006399 0.09542 0.003192 0.001657 0.1852 0.0001114 0.001595 0.01826 0.01119 0.002081 0.002916 0.0001073 0.0007912 0.001596 0.006592 0.005546 0.002121 0.0006123 0.06521 0.004009 0.002454 0.001367 0.07588 0.003964 0.0005657 0.08562 0.0005977 0.001348 0.00178 0.008207 0.001279 0.00661 0.0001235 0.02317 0.0005867 0.0164 0.251 0.004052 0.5619 0.01286 0.0104 0.0002514 0.5663 0.0009923 3.615e-05 0.02362 0.001318 0.003686 0.005565 0.0001137 0.0001772 0.0008857 0.0007611 0.001537 0.006899 0.4226 0.001986 0.01286 0.001447 0.001996 0.01416 0.02963 0.001457 0.0004403 0.003801 0.5812 0.0001854 0.01506 4.28e-06 0.527 0.3465 0.01355 0.001123 0.03542 0.008178 0.002342 5.309e-05 0.001672 0.001125 0.02557 0.002948 0.5676 0.0009709 0.0002743 0.009776 0.0001196 0.002057 0.001587 0.00433 0.0002295 0.009413 0.1447 0.0008494 0.3128 0.03447 0.01389 0.00631 0.01398 0.3327 0.002267 0.0009479 0.01223 0.002131 0.002326 0.2248 0.002716 0.5692 0.002289 4.974e-05 0.0015 0.005796 0.5682 0.003164 7.759e-05 0.003964 0.00475 0.0001994 0.008853 0.05813 0.002851 0.003745 0.02377 0.002344 0.000669 0.006286 0.007593 0.002116 0.01022 0.007598 5.733e-05 0.6212 0.0008402 0.01255 0.003153 0.2778 0.0005113 0.01651 0.001247 0.004744 0.005721 0.004296 0.002433 0.003205 0.02361 6.543e-05 0.2376 0.04868 0.009 0.002387 0.0006312 0.02669 5.123e-05 0.002696 0.0002834 0.3713 0.003685 0.001139 0.002139 0.00107 0.0005899 4.403e-05 0.01788 0.002212 0.002657 9.783e-06 3.285e-05 0.09957 8.901e-06 0.004202 0.003167 0.003577 0.5801 0.005664 0.3076 4.506e-05 0.009513 0.001161 8.829e-05 0.001556 0.003178 0.02518 0.6074 0.4711 0.01702 0.03714 0.006512 0.000151 0.02161 4.484e-06 0.411 0.0002637 0.2394 0.5075 0.0008055 0.0006165 6.479e-05 0.0004804 1.423e-05 0.02474 0.02439 0.144 0.009882 0.008812 0.000291 0.007612 0.003597 0.5478 8.184e-05 2.24e-05 0.001657 0.0002656 0.004168 0.4514 0.009377 0.0008835 0.5703 0.00128 0.2313 0.1821 0.00019 0.0005776 0.001113 0.001074 0.01909 0.4518 0.001853 0.0007195 8.049e-05 0.0008106 0.0009429 0.01097 0.1323 0.008102 0.002859 0.0001415 0.003293 0.02274 0.0002203 0.008438 0.001379 0.551 0.007182 0.006527 0.004059 0.008163 0.01457 0.1459 0.006538 0.009778 8.951e-06 0.001099 0.0002762 0.004012 0.01137 0.003135 0.001227 3.02e-06 0.2932 0.001572 0.0003089 0.0007528 0.0003835 0.007505 0.001664 0.0007226 0.003894 0.002552 0.2976 0.001221 0.0001038 0.001177 0.5284 0.00155 0.001897 0.00102 0.003692 6.594e-05 0.003471 0.0007104 0.0002333 0.003737 0.01115 0.002709 0.2891 0.09465 0.3712 0.0004029 8.545e-05 1.166e-05 1.631e-05 0.01306 0.0009487 0.005994 0.4093 0.004889 1.741e-05 0.003036 0.037 0.007844 0.001657 0.0001832 0.0002178 0.007735 1.348e-05 0.008295 0.1224 0.5807 9.272e-06 0.0794 1.292e-05 0.005628 0.01998 0.003583 0.1713 0.002744 0.005215 0.168 0.5582 0.001338 0.004015 0.001109 0.003383 0.00298 0.3696 5.715e-05 0.05124 0.5486 0.5125 0.0411 0.002276 0.08765 0.02582 0.008583 0.003822 0.1853 0.004837 0.002956 0.0005633 0.0004029 7.952e-05 0.0851 0.002249 6.592e-05 0.09259 0.5687 0.001148 0.002858 0.002964 0.5166 0.479 0.004157 0.002192 0.01047 0.001777 0.0003651 0.002362 6.061e-05 0.0002491 0.1122 0.001057 0.5345 0.0009425 0.4287 0.005481 0.3455 0.00223 0.2132 0.001271 1.195e-05 0.009391 0.006933 2.559e-05 0.3619 6.81e-05 7.231e-05 0.6393 0.03606 0.0009922 0.05272 0.03923 0.2833 0.0001042 0.5825 0.06435 0.002573 0.01092 0.5726 0.003739 0.002329 0.0001637 0.01091 0.006169 0.05193 0.005838 0.001396 1.489e-05 0.004329 0.0008296 0.01548 0.2867 6.135e-05 0.0002772 0.007382 0.004356 0.5824 0.001823 0.003329 0.0004414 0.006334 0.0001174 0.0007185 0.002598 0.00861 0.0004007 0.0008642 0.0006129 0.0004491 0.00273 0.3567 0.002179 0.02555 0.0004729 0.009578 0.004872 1.291e-05 0.004991 1.041e-05 0.0005243 0.6044 0.03299 0.0002718 0.003608 0.01592 0.0001004 0.0009608 0.00154 0.01339 0.4197 0.005717 0.000634 1.062e-05 7.331e-05 0.0001418 0.00187 0.2597 0.0004104 0.3687 0.0003776 0.003912 1.38e-05 0.2262 5.728e-06 0.0004122 0.001023 0.6061 0.001872 0.5799 0.417 0.0158 0.07129 0.1093 4.755e-05 0.0004008 0.00823 0.0005894 0.0005125 1.749e-05 0.4237 0.001268 0.00664 0.001412 0.00183 0.0005621 0.5792 0.004625 0.3784 0.004655 0.009319 0.01443 0.4101 0.07629 0.004033 0.5617 0.5642 7.006e-05 0.000918 3.384e-05 7.358e-05 0.004534 0.0103 0.003056 0.00382 0.07987 0.03784 0.001622 0.009593 0.0002636 0.001914 0.01254 0.00113 0.5521 0.002321 0.5443 0.5765 0.1479 1.738e-05 0.0005439 2.218e-06 0.6585 0.01104 0.004008 1.397e-05 0.0001077 0.001821 0.002046 0.0003935 0.03545 0.02004 0.03001 0.02206 0.1189 0.003442 0.002127 0.001944 0.04866 0.002383 0.001287 0.05546 0.001808 0.1051 0.001935 0.002319 0.002387 0.001596 0.01203 0.007549 0.4409 0.002867 1.022e-05 0.0003093 0.001351 0.0004635 0.3102 0.006355 0.0006283 0.0157 0.0004449 0.006996 0.05721 0.001341 0.001091 0.6012 1.615e-05 0.06514 0.5711 0.0006456 0.005843 0.01342 0.0005682 0.001922 0.003176 0.004133 0.5807 0.004732 0.002389 0.003695 5.092e-05 0.001875 0.007682 0.002506 0.01075 0.00544 0.03992 0.01312 0.4184 0.0009005 0.06868 0.006017 0.003046 0.00235 0.1628 0.3411 0.5734 0.001264 0.001456 1.459e-05 0.002938 1.735e-05 0.000963 0.00491 0.00011 0.009681 0.5942 0.0002705 0.06541 1.725e-05 0.4309 0.003512 0.001232 0.5604 0.003354 1.169e-05 0.00649 0.001896 0.00628 0.001052 0.003809 0.01485 0.008906 0.4882 0.000315 0.004453 0.009016 0.0002233 0.002232 0.001503 0.06122 0.00462 0.007822 0.0004118 4.143e-06 0.1094 0.000229 0.4765 0.003473 0.0001705 0.0006258 0.5671 0.001207 0.000231 0.002998 0.3701 0.001783 0.0008784 0.004323 0.5782 0.01009 0.009773 0.06062 0.006103 0.2735 0.001188 0.1532 0.001489 0.01913 0.0006532 0.004013 0.5376 0.0001917 2.314e-05 0.1523 5.261e-05 0.0009673 0.3213 0.0002581 8.484e-05 0.02619 0.008443 0.0005907 0.3661 0.06447 0.003115 0.00669 0.002681 0.2424 0.001074 0.08157 0.6187 0.003579 9.16e-05 0.09636 0.00496 2.52e-05 4.381e-05 0.05419 0.009042 1.157e-05 1.476e-05 6.422e-05 0.002712 0.001694 0.005392 0.03833 0.005705 0.5501 0.00158 0.0003084 0.02049 0.003616 0.0007491 0.0004957 0.001668 0.003447 4.928e-05 0.0002318 0.002824 3.352e-05 1.699e-05 3.685e-06 0.003814 1.792e-05 0.006686 0.0001648 1.377e-05 0.02383 0.0001307 4.753e-05 0.002432 0.09885 0.3414 0.06674 0.0004101 0.00131 0.002526 0.07595 0.002675 0.001969 0.005717 0.0006307 0.1619 0.001032 0.01028 0.0006546 0.07614 0.00409 0.0001265 0.001548 0.003219 0.0003011 3.21e-06 0.00193 1.255e-05 0.0002415 0.001291 0.001114 0.004634 0.001275 0.01855 0.0001818 0.008243 0.0004174 0.007972 0.001085 0.0001655 0.002792 1.143e-05 0.3283 0.06925 0.03382 0.04097 0.001507 0.002661 0.001115 0.0002085 0.5531 0.002801 0.01737 0.002691 0.5481 0.0002011 0.4137 0.01849 0.275 0.442 0.0003122 0.01728 0.0006664 2.947e-05 0.005729 0.01922 0.5062 0.02041 0.00137 0.001398 0.007108 0.0004066 0.05194 5.825e-06 0.006474 0.0255 0.008504 0.002765 0.5151 0.002677 0.527 0.0008093 0.02952 0.005332 0.001092 0.002219 0.001647 0.4445 0.532 0.002665 0.003402 0.1009 0.006243 0.0006946 0.003291 0.001067 0.6031 0.004998 0.005006 0.004211 4.468e-05 0.005409 5.578e-05 0.0008594 0.0002529 7.953e-05 0.00299 0.3392 0.03193 0.01002 0.0001398 0.0002545 0.000281 3.087e-05 0.0003765 0.005037 0.0004124 0.0004321 0.0005249 0.001046 0.004083 0.001036 0.5278 6.024e-05 0.0003985 0.1257 0.167 1.235e-05 0.3252 4.301e-05 0.5482 0.0007998 0.005531 5.987e-05 0.001248 0.02972 0.02214 0.5964 0.3486 1.443e-05 0.009018 0.006283 0.001524 0.4116 0.0007034 0.5689 5.002e-05 0.02095 0.3952 0.03838 0.6084 5.755e-05 5.348e-06 0.0001805 0.6546 0.0001656 0.002065 0.001689 0.02096 0.03676 0.003468 0.0002872 9.779e-05 7.623e-05 0.001636 4.731e-05 0.02487 0.0001447 0.0001728 0.03094 1.822e-05 0.428 0.0001819 0.001875 0.01673 0.1197 0.4126 0.4365 0.005534 0.000414 0.002135 0.08573 0.0001273 0.6088 0.005125 0.5564 0.003658 0.002842 0.06697 0.002066 0.0006162 0.00696 1.921e-05 0.002181 0.0001624 0.0002154 8.426e-06 0.03393 0.3784 0.0002141 0.00936 3.763e-05 0.02057 0.03135 0.007016 0.008768 0.04405 0.006548 0.000421 0.599 0.00391 0.609 0.6429 0.003374 0.02616 0.005501 0.001285 0.005342 0.001238 0.0002385 0.0001599 0.009244 0.002248 5.877e-05 0.1548 0.0001319 0.003512 0.003168 0.4456 0.0005124 0.05114 0.3762 0.4019 0.003221 0.002924 0.634 0.02222 0.5756 0.000679 0.0001917 4.523e-05 0.003512 0.0004279 0.1034 0.006271 0.02197 0.3207 0.01838 0.001995 0.01424 0.005123 1.882e-05 0.02145 0.001327 0.4711 0.004856 0.3278 0.002982 0.5852 0.0001111 0.0005877 0.02366 0.0008609 0.004406 0.006422 0.06323 8.023e-05 0.4046 0.0005776 0.01017 0.01187 0.005641 0.4822 0.03715 0.0007749 0.5958 0.003202 0.002862 0.0317 0.382 0.5652 0.0002116 0.01628 0.0163 0.6244 0.0005249 7.087e-05 0.0008829 0.5704 0.001771 0.0001466 0.0002047 0.4854 0.376 0.0007962 5.953e-06 0.000177 0.005133 0.001597 0.0004381 0.3621 0.003211 0.002388 7.444e-05 1.48e-05 0.02989 0.001065 0.004644 0.0002302 0.169 0.003185 0.0305 9.169e-05 0.4125 0.4124 0.05896 0.0001274 8.21e-05 2.135e-05 0.01592 0.0009517 0.004307 0.0003559 8.371e-06 0.3532 0.005528 0.00769 0.4366 0.5721 0.004768 0.3407 0.5621 0.004676 4.766e-05 0.5618 0.002724 0.5515 0.003614 0.3202 0.004546 0.0009191 0.004529 0.001866 0.01259 0.001432 0.005464 0.0153 0.007215 0.004196 5.141e-05 0.02411 0.004467 0.0005667 0.0007304 0.005425 0.4613 0.4612 0.08575 0.2411 0.001912 0.001409 0.0003283 0.008498 0.3644 0.001172 8.711e-05 0.4705 0.0002312 0.008132 0.001149 3.877e-05 0.03552 0.0001351 0.001904 5.728e-06 1.262e-05 1.669e-05 0.0004449 0.006471 0.002622 0.003003 0.00118 0.0005255 0.2242 0.002005 0.003304 3.119e-05 0.5799 0.001965 0.00042 7.862e-05 0.002365 0.004528 0.001695 0.4599 0.0001803 3.072e-05 0.02107 0.5737 0.001564 0.0002318 0.02295 0.0007118 0.01472 3.541e-06 0.0113 0.0001168 8.929e-05 0.5537 0.003568 0.009331 0.3337 0.5427 0.0006301 0.0001022 0.609 0.09484 0.001838 4.787e-05 1.019e-05 0.4925 0.002512 0.03104 8.869e-05 0.0001009 0.001151 0.01254 0.009901 0.001432 0.3584 0.002694 0.5667 0.0001036 0.0002821 0.008004 0.004983 0.4671 0.02159 2.667e-05 0.001294 0.1121 0.0001263 0.002264 0.003042 0.4546 6.366e-05 0.01047 0.004152 0.0003687 0.5593 0.02633 0.007211 0.002155 0.4454 0.5056 0.008435 0.003783 0.001444 0.002875 0.003547 4.624e-05 0.0006517 0.008714 0.006459 0.001901 2.629e-08 0.01018 0.0004486 3.125e-05 0.4734 0.5677 1.924e-05 0.0005727 0.3673 0.0008028 0.0004632 0.002969 0.02551 0.5609 0.004051 0.0009451 0.007109 0.0002149 0.4937 0.5748 0.0004441 7.108e-05 2.787e-06 0.000885 0.0002466 0.002535 0.003006 0.0005906 0.02508 0.005968 0.0001452 0.00296 9.525e-05 0.003043 0.0009339 0.4061 2.66e-05 0.005421 0.3881 0.0001335 0.001567 0.003258 0.0005461 0.3765 0.001384 0.0007157 0.5696 0.001728 8.214e-06 0.002418 4.581e-05 0.002385 0.001079 0.001141 0.005705 0.5395 0.002517 0.002556 0.001215 0.0128 5.068e-06 0.0005076 1.476e-05 0.0004326 0.000152 0.002039 0.01158 0.07224 0.008322 0.0007749 7.214e-05 0.0001105 9.349e-05 0.005027 0.0001367 0.0009154 0.2432 0.002857 0.003836 0.4615 0.0005144 0.002739 0.00238 0.01602 0.5299 0.001642 0.009278 0.01263 0.01947 0.002558 0.001257 0.001193 0.0008412 0.006938 0.0308 0.4158 0.0008563 0.01723 0.003774 0.5685 0.002138 0.0004318 1.301e-05 0.2885 0.0001166 0.04978 0.009323 0.3508 0.3393 0.001524 0.0006216 0.02809 0.5782 0.01433 0.0006428 0.5633 0.04613 1.449e-05 0.0001466 0.0004581 5.782e-05 0.5643 0.002953 0.3063 0.002682 0.0003773 0.0008109 0.0004306 0.3997 0.0002358 0.1144 0.3974 0.5051 0.002454 0.002578 5.681e-05 0.0007206 0.05052 0.6554 0.001475 0.03436 0.01759 0.0005355 0.01126 0.001017 0.0001982 0.0004536 9.665e-05 9.204e-05 0.001106 0.005899 0.001176 0.006914 0.07274 0.5033 0.0162 0.3286 0.0004235 0.001795 0.007252 0.00299 0.005375 4.291e-05 4.311e-05 0.06415 0.0004319 0.001431 0.6175 2.355e-05 0.01216 0.001385 0.0004448 0.00381 0.000224 0.03372 0.0003492 0.002656 3.355e-05 0.5644 0.0005179 0.6478 0.01061 0.09581 0.001417 0.004251 0.0009558 0.0004702 0.001802 0.01014 0.05686 1.117e-05 0.002142 0.004531 0.492 0.0002185 0.5569 0.002535 0.01745 0.005583 0.003318 0.6537 0.4813 0.0301 0.01081 0.002246 0.000538 3.011e-05 0.01063 0.0009862 0.004106 0.001479 0.001369 0.0004071 0.00112 0.2382 0.0004608 0.002186 0.003088 0.002806 0.002502 0.003114 0.006141 0.3124 0.04321 0.0004023 0.008869 0.001208 0.0309 0.009369 0.001747 0.003857 0.003666 0.0002601 0.6495 6.619e-05 0.01751 0.003317 0.006795 0.5572 0.000517 0.001514 0.3412 0.341 0.002573 0.01365 0.02576 8.393e-05 0.4527 0.002813 0.5803 0.001633 0.4147 0.004648 1.348e-05 0.5715 0.002137 7.796e-05 0.569 3.42e-05 0.001681 0.00852 0.0003533 0.0007968 0.04231 1.087e-05 0.3559 0.356 0.005739 0.001696 0.0001197 9.924e-06 0.01245 0.02751 0.0008489 0.0003099 0.5726 0.001169 0.001661 0.004967 3.033e-05 0.001413 6.993e-06 9.21e-06 0.007405 0.2742 0.0002787 0.0008596 0.0003101 0.4986 0.005219 0.008453 0.03646 0.005416 0.007906 0.2257 0.01053 0.003641 0.2168 0.6078 3.082e-05 9.487e-05 0.01043 3.222e-05 0.004946 0.003124 0.3661 7.341e-05 4.481e-06 0.009632 0.001595 0.6265 0.0007757 0.3576 0.3546 0.008102 0.3275 0.3263 9.947e-06 0.00391 0.0002828 0.0002935 0.007179 0.0003586 0.6543 0.552 9.781e-06 3.343e-05 0.001939 5.887e-05 0.4085 0.5736 0.008945 0.002028 0.007379 0.5663 0.5552 0.01308 0.003249 1.633e-05 3.601e-05 0.0002178 0.000295 0.004902 0.008985 0.001999 0.009755 0.5684 0.0116 0.0008056 0.0001329 0.00011 0.002038 1.185e-05 0.01198 0.0001845 0.03843 0.002935 0.00109 0.0044 0.001517 0.02349 0.01048 0.003386 0.6175 1.667e-05 0.0002487 0.0001301 0.0001723 0.3043 0.001085 0.005293 0.002517 0.00016 0.5761 0.4374 0.07992 0.004249 0.03477 0.001476 0.6667 0.01437 0.01035 1.808e-05 0.005556 0.02482 0.009794 0.0001146 0.002152 0.00163 0.009675 0.003333 0.0003053 0.003627 0.0008846 0.3011 0.0008492 0.0001903 0.0006345 0.001421 2.545e-05 0.03101 0.005635 0.0005712 0.0002551 0.3318 0.004711 0.002367 0.1048 0.4096 0.0002716 0.01086 0.002683 0.0003743 0.1795 0.001589 0.5726 0.0867 0.003495 5.619e-05 0.001791 0.02014 3.317e-05 0.0007418 1.303e-05 0.001337 0.5927 0.5879 7.794e-05 0.4863 9.814e-05 0.0004627 0.01201 0.001853 0.3664 0.003623 0.02426 0.004168 0.08259 0.06711 0.002971 0.0006643 3.022e-05 0.5789 0.0329 0.001345 7.123e-05 0.001618 1.122e-05 0.002669 0.005176 0.5368 0.0007929 0.0008791 0.001278 8.942e-05 0.004592 0.001144 0.4674 0.05853 0.3501 0.001501 0.004335 0.004086 0.5021 0.009237 0.1333 0.004635 0.4771 0.005304 5.139e-06 0.0003068 0.007361 0.002003 0.0007437 0.04011 0.008574 0.01129 0.01401 0.00165 2.725e-05 0.5443 0.006603 0.004469 0.01736 0.009438 0.005665 4.481e-06 0.5631 0.001623 0.009033 0.5113 0.01664 0.00273 0.004999 2.997e-05 0.03324 0.0001687 0.00782 0.5852 0.008438 0.0005668 2.809e-05 0.004371 3.741e-05 0.0001161 0.002838 0.01184 0.0001475 0.01537 3.604e-05 0.004033 0.0006385 0.001065 0.002047 8.867e-05 6.426e-05 0.01269 0.008694 0.00996 0.0005823 0.003508 0.0008199 0.5741 3.452e-06 0.4203 0.003517 0.0005778 0.002517 0.003282 0.3933 0.003172 0.0004033 0.668 8.274e-05 0.006755 0.5092 9.142e-05 0.382 0.5374 0.005411 0.003101 0.5732 0.4208 9.792e-05 0.0073 0.002141 5.272e-05 0.001241 0.5183 0.001342 1.436e-05 0.005013 4.515e-05 0.02412 0.003092 1.898e-05 0.004216 0.1899 0.007266 0.0005221 0.01129 0.00469 0.009101 3.885e-05 0.003296 0.005253 0.3167 0.4297 0.0003232 0.02989 0.01185 0.3661 0.5757 0.0001543 0.0006454 0.007627 0.004819 0.001413 0.0001077 0.008511 0.5725 0.02634 0.01324 0.02363 0.4133 0.0004119 0.006877 0.006258 0.5643 7.799e-05 0.03998 5.308e-05 0.001496 0.08084 0.568 0.001426 0.001665 0.001078 0.03278 9.512e-05 0.001316 0.0001815 0.376 0.376 0.008787 0.001212 0.005512 0.000423 0.006482 0.577 0.0008053 0.00425 9.518e-05 0.03104 0.1883 0.009803 0.0009907 0.002803 0.007735 0.0007286 0.003001 0.004183 0.001726 0.01603 8.296e-05 0.001636 0.009657 0.4708 0.1106 0.429 0.0009235 0.1125 0.004734 0.6032 0.004568 0.05291 1.01e-05 0.01585 0.003279 0.0007751 0.03857 0.01063 0.01395 0.143 0.02026 0.007727 0.001575 0.5366 0.0004591 0.0009992 0.01287 0.02558 0.0001734 0.001693 0.0001697 0.0006684 0.006027 0.001597 0.02364 0.001528 0.005889 0.5894 0.004924 6.761e-05 0.0001901 0.005634 0.01096 0.5757 0.002235 5.464e-05 0.006765 0.006069 0.004839 0.002246 0.04346 0.004451 0.0009749 0.003334 2.751e-05 0.01727 3.834e-05 0.002359 0.00245 0.01142 0.4366 0.004652 0.002309 0.002413 0.04951 0.02219 0.02596 0.01989 0.000437 0.001044 0.001092 0.00475 0.05663 0.0653 0.0375 0.6325 0.001248 0.003039 0.003349 0.0005054 0.001509 0.5614 0.00255 0.0001593 5.694e-06 0.0005406 0.006889 0.0003263 0.003196 0.002593 0.009727 0.04478 0.0007293 2.37e-05 8.596e-05 0.0008715 0.02373 0.0006566 0.0002549 0.5563 0.009642 0.00106 0.2108 0.007942 0.004487 0.007651 0.001092 0.1369 0.004602 0.001782 0.0185 0.002804 1.264e-05 0.01021 0.0002834 0.001679 0.0002446 4.642e-05 1.337e-05 0.0003112 9.495e-05 1.622e-05 0.0001128 0.001094 0.04134 0.01332 0.001253 0.0006345 0.003038 0.001439 0.008343 0.4215 0.001201 0.001073 0.007098 0.0003564 0.009094 4.38e-05 0.003488 6.919e-06 9.601e-05 0.0009616 0.000436 0.003535 0.5704 0.0002513 0.005926 0.4921 0.0006898 0.05668 0.004734 0.001531 0.003895 0.02446 0.04143 0.5627 0.5743 0.01008 0.1552 0.3403 0.0005231 7.529e-05 0.0005629 0.01524 0.01398 0.001197 0.005549 0.0005744 0.001486 0.005586 0.0005144 4.193e-05 0.001878 0.0003987 0.001669 0.02308 1.371e-05 1.362e-05 0.04191 0.004638 0.2284 0.0008709 3.253e-05 6.433e-06 0.5606 0.005374 0.02021 0.002212 0.5353 0.0008835 0.0007365 4.079e-05 0.03463 0.006608 0.004583 1.234e-05 0.001211 0.005324 0.07692 0.0239 1.179e-05 0.001454 0.0007898 0.008294 0.005623 2.309e-05 7.388e-05 0.2922 0.0004616 0.2659 0.00138 5.702e-05 0.00161 0.000391 5.995e-06 0.000706 0.003758 3.06e-05 0.004423 0.003333 0.6267 0.01664 0.001428 4.993e-05 9.129e-06 0.3969 0.002049 0.0002451 0.002833 0.0002426 0.0009315 0.002423 1.552e-05 0.3959 0.5675 0.006796 0.012 0.1407 0.01063 0.004254 0.002811 0.0006311 0.004811 0.001096 0.02913 0.002798 3.415e-05 0.03586 0.007559 0.0007937 1.017e-05 0.1248 0.3976 0.006116 0.006826 0.001033 0.0003429 0.0006301 0.1598 0.001453 0.3853 0.0001509 0.02936 0.002568 0.001563 0.257 0.5148 0.006638 0.4974 0.1145 0.4861 0.009457 0.001607 4.316e-05 0.003196 0.01266 6.039e-06 0.001338 0.004745 6.158e-05 0.0009778 0.408 0.002074 0.006323 0.01115 0.05654 0.000984 0.1967 0.0002455 0.007099 0.5633 0.003272 0.001455 0.004121 0.009939 0.4134 0.007584 0.00821 0.0002781 0.0009405 0.001253 0.005798 1.972e-05 0.0009412 0.01591 0.003297 0.2548 0.0006771 0.04735 8.414e-05 0.0839 0.01011 0.06225 0.0001442 0.5617 0.0002002 0.2097 0.004445 0.0005113 0.0004154 0.0219 0.0005311 0.002495 1.76e-05 0.005968 0.0003988 0.003994 0.006319 0.0005879 0.0002571 0.005366 0.005038 0.003341 0.3888 0.01052 0.0001954 0.00384 0.002804 0.000217 4.644e-05 0.0008432 0.006746 0.0001367 0.001466 0.3494 0.005683 0.002765 0.1182 0.009336 0.0007825 0.004211 0.007841 0.2993 0.2211 0.5872 0.0003725 0.0007807 0.002706 0.0001443 0.0002323 0.0008278 0.001513 0.009104 0.05542 0.002733 0.005274 0.3269 0.002259 0.001549 0.03326 0.008296 0.0001504 0.00203 0.5512 0.001138 0.02733 0.00019 0.01235 0.04286 0.004278 0.01125 0.001683 0.005531 0.01677 0.009921 0.001716 0.0191 0.05139 0.00206 0.0001463 2.229e-05 0.0006893 0.002988 0.5631 0.01424 0.001657 0.008535 0.0006421 1.386e-05 0.001829 0.001949 0.645 0.00222 0.5055 0.006744 0.0008827 0.004118 4.229e-05 0.04621 0.0002731 1.065e-05 0.0002191 0.004499 0.04097 0.01279 0.006998 0.003355 0.0003544 0.1123 3.296e-05 0.0005557 0.02429 0.2495 0.4069 0.003182 0.01539 0.006934 0.3622 0.008908 1.331e-05 0.0001322 6.553e-06 0.03691 0.00601 0.03411 0.4185 0.00524 0.4145 0.0001323 0.4146 1.148e-05 0.4439 0.00149 0.6219 0.4197 0.0003638 0.09725 0.000365 0.5814 0.003824 0.0004923 0.01501 0.4004 8.877e-05 0.1762 1.099e-05 6.876e-05 0.5731 0.001584 7.032e-06 0.005545 0.00255 0.01169 0.002448 0.0006685 0.513 0.003801 0.001253 0.0004064 0.007001 0.06899 0.0002051 6.448e-05 0.00636 0.01117 0.0003551 6.918e-05 0.04285 0.0005701 0.008064 0.0003881 1.242e-05 0.4294 0.1293 0.0004963 0.003035 0.00262 0.002385 0.003929 0.002928 0.01063 0.02475 0.000654 0.1683 0.5556 0.004729 9.137e-05 0.001823 0.0001567 0.08126 0.001979 0.003222 0.0001157 0.006665 0.4442 0.564 5.06e-05 0.004906 0.0008934 0.05889 0.01067 0.1257 0.0005278 0.5574 0.0009424 0.00275 6.126e-05 0.1804 0.001794 0.001558 0.001256 0.4744 0.4432 0.0007398 7.064e-05 0.003861 0.000691 0.005249 0.005412 0.03088 0.0001866 0.007729 0.007549 0.3894 0.006079 0.000144 0.006141 0.0001129 0.004614 0.003919 0.08556 0.005287 0.01806 0.002497 0.003882 0.0003268 0.0001936 0.5651 0.01301 8.497e-05 0.006698 0.01012 0.004404 0.05954 1.233e-05 0.001214 0.02917 0.0006568 0.5198 0.01432 0.5701 0.001418 0.002802 0.5714 0.4098 9.186e-06 0.001215 8.415e-05 0.001673 0.02114 0.5596 0.001179 0.02219 0.006741 0.0004639 9.194e-05 0.01007 0.00218 0.000309 6.332e-05 0.001138 0.3023 0.0003169 0.000723 0.007398 0.0007317 0.0006735 0.02668 0.001499 0.002004 0.001001 0.005592 0.002489 0.0003662 0.004347 0.006851 0.002183 0.0004078 0.06058 2.345e-05 0.001298 0.005605 0.002598 0.5724 0.005565 0.003809 0.003773 3.285e-05 0.0005364 0.4793 0.000993 0.002646 0.0008398 0.00663 0.00112 0.02256 0.0221 0.009481 0.4004 7.817e-05 3.077e-05 0.0005853 0.5732 0.281 1.577e-05 0.004706 0.0009249 0.01275 0.003455 0.005769 0.001886 0.0009424 0.0004788 1.258e-05 0.08121 0.002859 0.0001495 0.6224 0.0009055 0.000228 0.004323 1.046e-05 0.0006189 0.01661 0.0237 0.03316 0.4677 0.03105 0.1357 0.008143 0.003715 6.038e-05 1.374e-05 0.5724 0.01368 0.03438 0.0001189 0.006963 0.002254 1.172e-05 0.02264 0.566 0.006995 0.001148 0.0006742 0.0002471 0.2279 7.36e-06 0.01045 0.005005 0.1147 0.002159 0.002973 0.4935 0.0003545 0.002751 0.0036 0.006517 0.0001411 0.008718 8.938e-05 5.205e-05 0.005422 0.004086 0.02051 0.0003844 0.001654 0.01509 0.004339 0.0008826 0.00329 0.001916 0.2531 0.01406 0.0001192 0.00169 0.001059 0.002379 0.001587 0.03515 9.635e-05 0.001412 0.002075 0.002418 0.00455 0.002412 0.0001783 0.001276 0.01563 0.5236 0.006294 0.003407 0.004133 0.0008747 0.002628 0.0001663 0.001255 1.433e-05 0.002935 1.022e-05 0.5468 0.01291 0.0002712 0.4026 0.0004209 1.181e-06 0.0001424 0.0007702 0.5241 9.009e-05 0.0005344 0.003953 0.004594 0.005818 0.001833 0.005087 0.3815 0.654 0.008532 0.0004417 0.0007429 0.005579 0.0003809 0.584 0.01058 0.6498 0.556 0.5433 0.003501 0.4117 0.0004445 0.01277 0.6488 7.659e-05 0.3694 8.062e-05 0.02032 0.01539 0.01041 0.0003999 0.03545 0.3443 0.0005593 0.00435 0.02425 0.003625 0.0007774 0.1225 0.5695 0.006566 0.573 0.001201 0.1869 9.659e-05 0.0005427 1.777e-06 0.001145 8.007e-05 8.546e-06 0.001875 0.0006383 0.005984 0.02932 0.01604 0.6045 0.001668 0.02066 0.02511 0.001879 0.577 8.535e-06 6.643e-05 0.001558 0.0002907 0.001318 0.03208 0.008069 0.5913 0.004338 0.008785 0.5282 6.811e-05 0.001653 0.01768 0.1025 0.009245 0.0002192 0.001068 0.00205 0.4562 0.0006891 0.0007515 0.002952 0.0004633 0.0004614 0.003228 1.497e-05 0.01172 0.0006226 0.003609 0.0006547 0.0001932 0.01745 0.0002292 0.5236 0.5656 0.6572 0.0003769 0.0004587 8.442e-05 0.4178 0.5791 1.457e-05 0.0005967 0.001137 0.004459 0.003333 0.2223 0.007077 0.00164 0.002661 1.41e-05 0.01606 0.0003252 0.001976 0.4014 0.1208 0.0005808 5.901e-05 0.01481 0.0001741 0.1628 0.002999 0.4748 0.001384 0.001897 0.006701 0.01287 0.006378 0.0003282 1.39e-05 0.02258 0.009607 5.906e-05 0.02158 0.00133 9.784e-05 0.003767 0.03674 0.04594 1.14e-05 9.389e-05 0.04243 0.5169 0.000579 5.986e-05 0.01019 0.5765 0.4818 4.788e-05 0.005832 6.423e-05 0.5954 0.002935 0.2584 0.0001495 0.0004045 0.00108 0.005663 0.02128 0.0002892 0.0001343 0.01986 4.645e-05 0.009014 7.76e-05 1.031e-05 0.09535 0.006286 0.08244 0.01051 0.01359 1.42e-05 0.3219 7.031e-05 0.005495 0.5937 0.02387 0.0001172 0.002869 0.008895 0.0111 8.688e-05 0.01291 0.5613 0.03009 0.003493 7.79e-05 0.005491 0.005663 0.5648 8.529e-05 5.194e-05 0.01337 0.000325 0.001916 0.0151 0.0145 0.01202 0.4711 5.217e-05 0.5724 1.137e-05 0.07753 7.992e-06 0.5957 0.001608 0.1692 0.01324 0.5652 0.001728 6.237e-05 0.003819 0.002138 0.002421 0.008708 0.0001623 0.0003745 0.003277 0.5375 1.763e-05 0.001176 0.002455 0.02734 0.0004418 0.02284 0.004079 0.003438 0.001118 1.193e-05 0.001068 0.003028 0.001785 0.0001546 0.4471 0.0003869 0.002632 0.003207 0.02832 0.4111 0.2619 0.01017 2.342e-05 0.007462 0.5759 0.01181 0.0009809 0.0001013 0.0005324 0.006302 0.0003746 0.05485 0.2739 0.4694 7.502e-05 0.0006847 0.04609 0.2149 0.0002977 0.0008988 0.1139 0.4333 0.0003454 0.00129 0.01596 0.003033 0.0002219 0.0006899 0.0126 0.1482 0.000113 1.29e-05 0.5735 8.752e-05 0.009749 0.01109 0.002244 0.01241 2.531e-06 0.001706 0.001391 0.006611 0.03704 0.0006142 0.0001393 0.005988 0.008581 0.0002209 0.01016 0.165 0.0007597 0.007065 0.6591 0.00621 0.001031 7.061e-05 0.5838 0.002092 0.0001136 0.0005481 7.724e-05 0.441 0.04153 0.0001404 0.0009219 0.6461 0.002319 0.0002736 0.004832 0.5423 0.001688 0.5422 0.0009562 1.788e-05 0.4351 0.342 0.008209 0.005575 0.486 0.001998 0.01002 0.06998 0.001284 0.0001296 0.591 0.0001801 0.0004735 0.007331 0.005173 4.852e-05 0.00047 0.5845 0.0006817 0.001001 0.002415 0.3656 0.008175 0.002859 0.01639 0.001344 0.5394 0.0006902 0.0003308 0.6199 0.005836 0.0004867 0.006743 0.004616 0.007378 0.0003245 0.006079 0.01233 0.0003254 0.003005 0.01049 5.914e-05 0.001179 0.0007503 0.009375 0.01044 0.007046 0.0021 0.0008477 0.0002871 0.0008084 0.01339 0.01088 0.005212 0.007816 0.006275 0.002086 0.002932 0.000519 0.5709 0.00384 0.0004381 0.009346 0.0001563 3.026e-05 0.0009265 0.002415 0.003927 0.03021 0.5568 4.749e-05 0.3911 0.6596 0.006823 0.0007197 0.001141 0.00308 0.4602 8.37e-06 0.5632 7.736e-05 0.01486 0.0001483 0.0005285 0.0004794 0.5587 0.0005976 0.001208 0.001774 0.0002468 0.1269 0.0003502 0.004399 0.5784 0.003894 0.003352 2.114e-05 0.000247 9.711e-06 0.00664 0.4207 0.003638 0.003434 0.0003292 0.000701 9.374e-05 0.6075 0.002118 0.02444 0.5326 0.002542 0.5931 0.0002182 0.02229 0.004613 0.09407 0.001972 5.326e-05 0.01812 0.005131 0.001871 0.2378 0.0006524 0.0004881 0.003626 0.5497 0.0004252 0.5698 0.00738 0.0005627 0.08159 0.01054 0.0004638 0.007612 0.01607 0.2527 0.006439 0.001513 0.5774 1.788e-06 0.538 0.001596 0.005814 0.3721 0.6519 0.0005803 0.4004 0.2417 0.3986 3.102e-08 0.005936 0.004479 0.003039 0.007262 0.0005062 0.01262 6.563e-06 4.06e-05 0.1976 0.0006428 0.4129 5.502e-05 0.001056 0.002149 0.007811 0.002521 0.007112 4.009e-05 0.001582 9.78e-05 0.0006205 0.4493 1.185e-05 0.007459 4.927e-05 0.001295 0.0003307 0.001435 0.000135 0.3688 0.0003281 0.0007451 0.005083 0.0001128 2.42e-05 0.6328 0.00158 0.001666 0.001523 0.001029 0.001059 0.0002983 0.01212 0.000199 0.000872 0.5669 0.003698 0.002185 0.036 0.5053 0.002064 9.809e-06 0.5799 0.0005148 0.4849 0.00172 0.001661 0.008901 0.0003865 0.003337 0.1977 0.5507 0.003707 0.005621 6.181e-05 0.5581 0.569 0.001852 0.0004445 0.5722 0.001854 9.405e-05 0.000114 0.0009149 0.346 0.4637 0.0004159 0.5545 0.001187 0.3716 1.345e-05 0.003908 0.0002349 0.0001537 0.4753 0.0001093 1.53e-05 0.0217 0.01026 0.001191 0.000976 0.0006025 6.444e-05 0.004424 0.01972 0.0003433 0.4039 0.004702 0.01344 0.003903 0.003659 0.0103 0.0006975 0.001758 0.007136 2.045e-05 0.004891 3.261e-05 0.004742 0.2543 0.00325 0.5854 0.0449 0.0002653 0.181 0.004293 0.2851 0.001607 0.009189 0.004389 0.003591 0.03423 0.1108 2.028e-05 0.0007475 0.02834 0.002608 0.004188 0.006024 0.004026 8.697e-05 4.809e-05 0.000507 0.3866 0.003238 0.004832 1.037e-05 0.002111 0.05524 0.0001067 2.684e-06 0.002239 0.0002333 0.004268 0.007861 0.007331 0.02039 0.0005162 0.196 0.002156 0.5592 0.6408 0.0008385 0.001152 0.01291 0.001867 0.01012 0.03921 8.226e-05 0.005337 0.5488 0.005785 0.001066 0.000729 0.003523 1.62e-05 0.001303 0.005016 0.00116 0.001746 0.01648 0.001714 0.00217 0.004214 0.4567 0.0137 0.001932 0.002375 0.003466 0.002914 0.002119 0.05869 0.00134 0.003334 3.263e-05 7.218e-05 0.4025 0.4043 0.003962 0.5655 1.797e-05 0.001172 0.0003535 0.005828 0.3884 0.0003572 0.002283 0.002171 0.003276 0.4139 0.4494 0.5704 0.01085 0.411 0.0004217 0.4398 0.004366 0.0002281 0.02453 0.002736 0.0008931 0.0008918 0.0005452 0.01306 0.01095 7.872e-05 0.01746 0.0003851 0.3901 0.009386 0.2736 0.0008093 0.5356 7.438e-06 0.002115 0.008733 0.5529 0.002044 1.513e-05 0.0129 0.0005028 0.4647 0.005415 1.23e-05 0.004316 0.07521 0.0001088 0.0003938 0.4431 6.959e-05 0.0001088 0.004955 0.003896 0.002596 0.6307 0.07706 0.02064 0.001797 0.002145 0.01261 0.003931 0.08212 0.02557 0.001059 0.5741 0.01501 0.03866 0.01645 1.714e-05 0.5698 0.0002068 0.004505 0.001512 0.002462 0.2909 0.001073 0.001517 0.5722 0.004513 0.4177 0.04224 0.1753 0.001512 0.00152 0.03584 0.4596 0.0002639 0.002583 0.3159 7.329e-05 0.0001216 0.003061 1.232e-05 0.002245 0.002845 0.0008724 0.007548 0.000102 0.002186 0.0003359 0.0005317 0.0003261 0.003354 0.09796 0.03398 0.1456 0.07342 4.287e-05 0.561 0.004215 0.001481 0.01087 0.3938 0.00161 0.001865 0.008817 0.09086 0.5703 0.1372 0.002754 0.5347 0.009265 0.004626 0.01498 0.000796 0.005841 0.5953 0.004271 0.0362 0.01984 0.005747 0.001362 0.02026 9.391e-05 0.000191 5.377e-06 0.4292 1.361e-05 0.00679 0.00595 0.007956 0.004134 0.008235 4.192e-05 0.003616 0.1488 0.01457 0.008021 0.002031 0.0003916 0.0004515 0.0013 0.1964 0.03256 4.99e-05 0.001277 0.005777 0.03497 0.00455 0.006776 0.0003976 0.01093 0.001031 0.01831 0.01317 0.007258 0.04801 0.03749 0.2067 0.0001225 0.002611 0.01611 6.309e-05 0.003117 5.529e-05 5.657e-05 0.0002386 1.493e-05 9.323e-05 0.3988 0.004743 0.0001997 0.004697 0.006877 9.923e-07 0.005702 0.585 0.5764 0.0002644 4.934e-05 0.003081 0.003805 0.002604 0.6648 8.227e-05 8.331e-06 3.521e-08 5.899e-05 0.5741 0.001484 0.02684 0.0007528 1.645e-05 2.382e-05 0.0008851 0.01491 0.001138 0.4065 0.001436 1.419e-05 0.003586 0.01297 0.002335 0.2052 0.001949 0.0003602 0.003151 0.004429 0.01524 0.0009807 0.01603 0.0009639 0.008923 0.00114 0.005194 9.741e-05 0.004199 0.007988 9.461e-06 0.001187 0.001033 9.852e-05 0.6569 0.0002813 0.5717 0.5786 0.001215 0.001173 0.03844 0.007015 0.001135 0.002823 0.0242 0.01207 0.008687 0.1333 0.001816 0.008675 0.1786 3.35e-06 0.002144 0.005579 0.006397 0.02857 0.002774 0.007977 0.005018 0.001674 0.0002675 0.009125 0.0006098 0.002504 0.01183 0.002607 0.0002007 5.201e-05 0.008138 0.1476 1.537e-05 9.802e-05 0.0008347 0.001324 0.0004714 0.002997 0.003103 0.0003519 0.005018 0.009271 0.3774 0.00999 0.0001967 0.5362 0.02569 0.003391 0.008406 0.4499 0.001883 0.0009058 0.0001834 0.0083 0.002651 8.987e-06 0.07222 0.0196 1.393e-05 0.004735 0.04222 0.0004413 0.0002227 0.004931 0.0006434 0.0002627 0.5378 0.00606 0.006913 9.242e-05 0.6315 0.004591 0.04441 0.0002673 0.00169 0.07851 0.002698 0.001398 0.01012 6.6e-05 0.001904 1.122e-05 0.02155 0.4588 0.001431 0.0008172 0.0004707 0.01574 0.00465 0.01156 2.644e-06 0.002287 0.0006511 0.002146 0.01493 0.0059 0.0002042 0.02497 1.91e-05 0.002147 1.1e-05 0.6254 0.03968 0.003044 0.001615 0.001611 0.0005918 4.942e-05 0.01019 0.01611 0.0006843 0.0003645 0.03305 0.0006172 0.001371 2.198e-05 0.0053 1.469e-05 0.0004338 7.637e-06 0.5957 0.0004623 0.005195 0.02007 0.003837 0.4652 5.719e-06 0.001093 0.005612 0.01637 0.002541 8.053e-05 0.01962 9.545e-05 0.0003368 0.001552 0.5922 2.128e-05 0.003735 0.007906 0.002777 0.001162 0.6191 0.01831 0.0484 0.3746 0.0149 0.0699 0.1789 6.862e-06 0.008393 0.0001081 0.002353 0.01465 0.3783 0.006106 0.000122 0.5633 6.859e-05 0.04606 0.1658 0.00012 0.0001402 0.3553 0.001091 0.05074 0.0009642 0.02096 0.2114 0.0003236 0.00259 0.0006296 0.5608 0.024 0.0003312 0.009263 8.273e-06 0.6359 0.001728 8.264e-05 0.0001268 4.568e-05 5.894e-05 0.0005934 0.005333 0.0002063 0.0001364 0.003114 0.0007047 0.001567 0.0002914 0.00375 0.004021 0.001158 0.006594 0.001903 0.003164 0.5798 0.06943 0.004868 0.002947 0.001265 0.189 0.0572 0.001917 0.4104 0.6171 0.0001269 0.00745 0.4391 0.01213 0.02869 0.002172 0.000972 0.000478 0.001617 8.107e-05 0.01512 0.0005377 0.1797 0.0008678 0.007737 0.002041 0.004347 0.575 0.0009235 0.001323 0.003019 0.6196 0.0003542 0.005 0.0009796 0.000424 0.008758 0.004024 0.3692 0.03708 0.405 0.3544 0.00487 0.3135 0.0005626 0.0001308 0.0271 0.002809 0.07682 9.568e-06 0.002607 0.5048 1.103e-05 0.001452 0.0009479 1.364e-05 0.02846 0.003101 0.01785 6.786e-06 0.001216 0.02662 0.6355 0.0004376 0.001379 0.001576 0.5677 0.3949 0.5671 0.001004 0.0002017 4.541e-05 0.5712 0.003312 0.004305 0.004308 0.5814 0.1399 7.521e-05 0.3642 0.01104 0.00125 0.08785 0.003644 1.019e-05 0.06513 0.4018 0.0003369 0.5753 8.433e-06 0.0003551 0.2463 0.005523 0.3737 0.0001098 0.4406 0.0009192 0.0017 9.937e-05 0.0007499 7.658e-05 1.04e-06 0.00932 0.5676 8e-06 0.0009716 1.083e-05 0.01071 0.001172 0.001603 0.007556 4.387e-06 0.665 0.002503 0.04236 0.003182 0.002617 0.0002497 4.581e-05 0.4709 0.505 0.01484 0.1269 4.076e-06 0.0003171 0.4314 0.003119 0.001366 0.284 0.5728 0.5474 0.5054 1.384e-05 0.003343 0.0007548 0.001339 0.01208 0.4742 0.5829 0.0003056 9.197e-06 0.0003697 0.0001749 0.4793 0.07119 0.0008887 0.0005423 0.001838 0.009041 5.312e-05 0.0002123 0.536 0.003862 0.005268 0.5725 0.00291 0.0001122 0.5742 5.844e-05 0.007161 0.08406 0.0001014 0.001886 0.03717 0.006884 0.009167 0.0001102 0.01972 0.00843 0.0008884 0.05074 0.001331 0.6187 0.078 0.03064 0.009585 2.726e-06 0.4359 0.5759 0.0001589 0.5526 0.005317 0.001113 0.002057 0.07213 0.0008963 0.0006033 0.1136 0.005362 0.0007028 0.2251 0.002231 0.001505 0.009521 5.963e-05 0.299 0.001447 0.0008812 0.0001565 0.375 0.0001128 0.3147 0.0001175 0.002255 0.5473 0.005104 0.09344 0.004461 0.006458 0.0001889 0.002055 0.01096 0.0002599 0.0003372 0.09802 0.001962 0.004562 0.001422 0.404 0.001085 0.001197 2.531e-05 0.1364 0.02407 0.0002721 0.01301 0.007891 3.896e-05 0.0158 0.0004895 0.0108 1.511e-05 0.01331 0.03626 0.5664 1.554e-05 0.01349 0.002841 0.131 0.01143 0.00282 0.00496 0.1074 0.02635 0.05087 0.001535 0.007241 0.01662 0.01611 0.01763 0.003514 0.005059 0.07273 0.5628 0.4136 0.0005736 1.203e-05 0.001172 0.01421 0.02057 0.02225 0.001112 0.0002043 0.003375 0.003638 3.989e-05 0.002219 0.0005494 0.0008829 3.685e-05 0.0002295 9.28e-06 0.5227 0.02508 0.0001779 0.002189 0.0008033 0.194 7.411e-07 0.4139 0.0002394 0.3193 0.001044 0.4314 0.004563 0.00494 0.0001017 0.0001315 0.003029 0.1674 0.0184 0.1129 0.001497 1.725e-05 0.01132 0.0002154 0.007879 0.5647 0.001273 0.001454 0.005089 0.3954 0.006367 0.0001231 0.0529 0.0006601 0.001057 0.001032 0.00651 0.4958 0.5688 0.0002839 8.747e-05 0.0005938 0.003018 0.5205 0.009758 5.432e-05 0.3814 0.3815 0.01185 0.318 0.001188 0.002497 0.09225 0.00148 0.008442 0.0001177 0.01004 0.004476 0.0008646 0.002287 0.003746 0.1925 0.03658 0.00165 0.0005662 0.008147 0.0001096 0.01286 0.002701 0.6471 0.5675 0.00172 0.02697 0.009971 0.000155 0.007308 5.827e-05 0.6029 0.008172 0.5759 0.3935 0.001523 0.003351 0.002278 0.006871 0.0008325 0.1895 0.00341 0.02818 0.584 0.01047 0.2717 0.2714 0.007805 0.0007001 0.01624 0.5838 3.505e-05 0.001902 0.2522 0.002278 0.001719 3.203e-06 0.002631 0.09537 0.173 0.0009422 0.3564 0.0004936 0.04187 0.003986 0.0189 0.00355 0.004398 0.0001193 0.005418 0.000718 0.000478 0.581 0.003635 0.443 0.00205 0.006941 0.00117 0.553 0.3894 0.002494 0.1568 0.00188 0.4172 0.008968 0.005639 0.06136 0.5427 0.0001658 0.001503 0.0007575 0.0009857 0.00296 0.002137 0.002265 0.00128 0.001028 0.00124 9.441e-05 0.03259 0.5747 0.008312 0.3923 0.005419 0.5732 0.3795 0.002529 0.002027 0.3245 3.64e-05 4.059e-05 0.009699 0.0004156 0.002951 0.5392 0.0002222 0.5679 0.004025 0.005807 7.793e-05 0.5744 0.0005187 0.0002498 0.001261 0.5803 0.0001098 0.0001351 0.004556 0.0009147 0.5448 0.0001753 0.008903 0.5736 0.008375 0.0001119 0.5589 3.328e-05 0.4817 0.0001386 0.0002754 0.383 0.0001073 0.3648 0.0006153 0.001351 6.907e-05 0.004362 0.003637 0.0003072 0.00405 0.02263 0.01997 0.0004076 8.765e-06 0.0001581 0.5721 0.5386 0.03852 0.5366 0.001533 0.001035 0.009865 9.601e-06 0.03213 0.007454 0.0006164 0.0002728 0.06211 0.003616 0.01094 0.0003412 0.01698 0.2833 0.003328 6.229e-05 0.0007811 0.005014 0.004049 0.296 0.2961 9.262e-05 3.401e-05 0.0003229 0.01344 0.01965 0.004325 0.001761 0.0003341 0.002704 0.001612 0.0002738 0.5778 0.002023 0.001253 0.101 1.216e-05 3.886e-05 7.582e-05 0.2845 0.00198 0.04825 0.1038 0.0006244 0.0004888 0.001548 0.005548 0.01572 1.004e-05 0.001521 6.941e-05 0.5942 0.002328 0.002123 0.002936 0.0008411 0.02658 0.003702 0.002335 5.5e-05 0.002804 0.005546 0.0001484 0.02085 0.009769 0.3967 0.01276 0.0001321 0.002522 0.0004453 0.0007113 0.002463 4.999e-06 0.0008063 0.5843 0.002653 6.78e-06 0.5794 0.0001614 0.002555 0.5513 0.6198 0.0007887 0.007162 0.003819 0.001531 0.002514 0.0136 0.538 3.218e-05 0.007331 0.005134 0.006051 0.003366 0.5694 0.0001569 0.5516 0.3722 0.03784 0.0002345 0.002132 0.001148 0.002767 0.01363 0.01223 0.01868 0.0001461 0.006414 0.007258 4.178e-05 0.5817 1.07e-05 0.001473 0.0003642 0.005954 0.005262 0.1704 0.0001787 0.4653 0.4562 0.01208 1.851e-05 0.0003485 0.008583 0.03994 0.5443 0.0008737 0.0001552 0.003743 0.005402 0.00587 0.003032 0.005927 0.0004896 0.5719 0.001139 0.0009072 4.921e-07 0.1667 0.002521 0.4757 1.334e-05 0.003373 0.003617 0.515 0.009816 0.0003454 0.5794 0.07447 0.5714 0.002993 0.02409 0.3411 0.0003544 1.017e-05 0.007681 0.001654 4.937e-05 0.4328 0.5859 0.005339 8.606e-05 0.01716 0.368 0.003222 0.004336 0.4788 0.01149 0.009472 0.002239 0.007025 0.4157 2.053e-05 0.008139 0.0002576 0.006895 0.555 0.00282 0.000685 5.931e-05 0.006149 0.222 0.003935 0.007173 0.004092 0.002788 0.01085 0.001142 0.0002219 0.0001378 0.00212 0.01067 0.5541 0.0007331 0.0003401 6.755e-05 0.01293 0.5529 0.5443 0.08208 0.002252 0.4205 0.0004055 0.0009651 0.05794 0.01026 0.1877 6.247e-05 0.5948 0.01787 0.5851 0.003814 0.583 0.00272 0.0005377 0.43 0.0005425 0.4985 1.462e-05 0.5541 0.000189 0.004043 0.0009954 0.000764 0.02352 0.001038 0.0008557 1.642e-05 0.001148 0.3567 8.04e-05 0.527 0.03293 0.006083 0.001249 0.0004714 0.0003449 0.0001058 0.01545 0.003627 6.327e-05 0.004219 0.0002171 0.4699 9.307e-05 0.003628 0.01961 0.0006394 6.121e-05 0.0101 0.01434 0.0002576 3.47e-08 0.5224 0.0205 0.002795 0.1929 0.3465 0.5952 0.0003251 0.03257 0.007051 0.0001142 0.001087 0.006064 0.0009695 0.4739 0.02133 6.16e-05 0.002091 0.5785 0.00194 0.002007 0.0001127 0.01076 0.05366 0.0004215 0.001645 0.002191 0.04988 0.569 0.002271 0.0009446 0.5721 0.002635 0.0006722 0.1025 2.562e-05 0.001598 0.01184 0.0003279 0.582 0.003263 0.005006 0.001749 0.0002187 0.007945 0.0001043 0.001691 0.002809 0.001325 0.2868 0.0005508 0.002981 0.03886 0.1453 0.005882 0.001864 0.009037 0.06668 0.0005996 0.01102 1.363e-05 0.01267 0.0009993 0.001085 0.0009575 6.371e-05 0.01202 0.5322 0.001601 0.008264 0.01103 0.004499 0.001364 0.007124 0.0019 0.4842 0.1015 0.0006311 0.1256 0.4001 0.6422 0.002818 0.0001795 0.0006248 0.01142 0.03218 5.379e-05 0.0004597 0.02155 0.003549 0.4569 0.001376 0.4532 0.003617 0.003034 9.052e-05 0.007384 0.004222 0.004534 0.0006138 0.0008793 0.0008004 0.0009674 0.2521 0.002677 0.0009904 0.001221 0.5798 3.756e-05 4.88e-05 0.01592 9.28e-05 0.006057 0.0001343 0.08891 0.008798 0.001854 0.001094 0.0006754 0.01032 0.04626 0.004514 0.001679 0.0479 3.304e-05 0.02868 0.6185 0.002481 0.0116 0.02038 0.06063 0.0003941 0.001246 0.1798 0.01794 0.1895 0.001465 0.08119 0.001524 0.3789 0.00141 0.008666 0.005011 0.0003107 0.412 0.3777 0.3225 0.0006159 0.0476 0.537 0.02892 0.5753 0.001091 0.5642 0.003378 0.05988 0.04964 0.01325 4.368e-05 0.1845 0.3329 0.00536 0.0001221 0.001346 6.676e-05 9.686e-05 0.002253 0.02354 0.0001115 9.697e-05 0.01803 9.578e-05 0.003815 4.093e-05 0.3276 0.0003166 0.1899 1.462e-05 9.779e-06 0.02496 0.001197 0.003398 0.004038 0.0004434 0.007766 0.009955 6.348e-05 0.002052 0.0003111 0.0001096 0.0004503 0.008388 0.000567 0.2851 0.5686 0.01202 0.407 0.5421 0.006879 0.4976 0.2745 0.2744 0.004473 0.002798 0.01063 6.257e-05 0.01507 0.008887 0.005364 7.94e-05 0.3869 0.003689 0.01375 0.5699 0.002155 0.006569 1.393e-05 0.003077 0.1358 0.0009774 0.08668 0.005679 0.0003912 3.457e-06 0.004401 0.008412 0.0011 0.0003311 0.09268 0.0005886 0.007307 0.002556 0.000908 0.001157 0.574 0.005146 0.00212 0.003088 1.235e-05 0.001843 0.004692 0.1584 0.0009023 0.007192 0.001947 0.009167 0.0005469 0.02633 0.0008853 0.002203 0.001168 0.003031 0.001344 0.5399 0.5076 1.418e-05 0.001971 0.001877 0.6648 0.002095 0.4753 0.02899 0.007422 0.00207 0.0001048 2.489e-05 0.000151 0.008122 0.0001859 0.003291 0.07929 0.005351 0.001037 0.2831 0.0008257 0.0009231 0.01577 0.006547 0.3034 0.006021 0.0014 0.01866 0.007474 0.0007248 0.0001635 0.003741 0.1101 0.0004638 0.001117 0.3752 0.01089 0.005064 0.004733 3.647e-06 1.13e-05 0.0002881 0.0005662 0.01976 0.1302 0.009705 0.01059 0.0006564 0.2133 0.01955 0.0005801 0.002502 0.01301 0.4712 0.008329 0.03468 0.539 0.0006819 0.005521 0.4614 0.009268 0.001316 3.059e-05 0.003312 2.036e-05 0.005802 0.5901 0.0007415 0.5422 1.935e-05 0.3855 0.00319 0.5762 0.4867 0.0024 0.002224 0.0003551 5.984e-05 0.004651 8.895e-05 0.0009285 0.002202 1.746e-05 0.0006227 0.002659 0.5608 8.818e-05 0.01027 0.5388 0.005135 0.0003389 0.002938 0.0008812 0.001203 0.004486 3.478e-05 0.03118 0.002918 0.5804 0.001839 0.01966 0.002204 0.0004048 0.002947 0.09102 4.366e-05 0.00131 0.00518 0.0001335 0.01512 0.1909 0.007613 0.5677 0.02613 1.29e-05 0.002346 0.02145 0.002352 0.00312 0.001793 0.5822 0.01906 0.0001466 0.005059 0.07513 0.01228 0.0004924 0.00157 0.00258 0.001214 0.5066 0.03034 0.0002052 0.001483 0.008585 0.001277 0.0004306 0.0001324 0.002413 0.004114 0.2416 0.001198 0.004103 1.391e-05 8.229e-06 0.007847 0.008683 0.6127 0.404 0.008997 0.007863 0.01908 1.426e-05 0.0001904 0.008349 0.5411 0.001474 0.01896 5.642e-05 0.01477 0.003445 0.002196 0.001385 0.005306 0.1335 1.115e-05 0.003506 0.002535 0.001899 0.0009319 0.005506 0.001424 0.01226 0.2837 0.4482 1.505e-05 0.005636 3.854e-05 0.005432 0.01073 0.02212 0.007802 0.004156 0.0001044 0.002015 0.001311 0.001012 0.5807 6.921e-05 0.008742 1.572e-05 0.5659 0.08409 0.0327 0.001338 0.0001091 0.4808 0.02865 5.892e-05 0.007453 0.004092 0.002227 0.003703 2.863e-05 0.002822 0.007799 0.002311 0.008629 0.03341 0.005401 0.2904 0.2903 0.004863 0.2073 0.5318 0.4089 0.5909 0.00155 0.01114 0.001552 0.002405 0.002632 0.333 1.847e-05 0.0001658 0.2789 0.009442 0.007365 0.001064 0.004471 0.0007197 0.003406 0.3499 0.01119 0.01484 0.0002904 0.000294 0.003127 0.003163 0.0002591 0.006453 0.0003895 0.001191 0.006326 0.008959 0.01925 0.01083 0.0003517 0.0038 0.007528 0.001238 0.007502 0.001013 0.5477 0.00692 2.933e-05 0.0001687 0.001049 0.005046 0.0746 9.277e-05 0.001141 7.29e-05 0.002993 0.008019 0.0008478 0.0005655 0.001061 0.002787 8.139e-05 0.002419 0.009566 0.01127 5.294e-05 0.00595 0.5702 0.5437 0.5437 0.002258 0.01466 0.0002329 0.001197 0.01981 0.0005913 0.1187 0.0009803 0.00211 0.0001363 0.00017 2.443e-05 0.006939 0.1521 0.2251 0.004088 0.006617 0.146 0.0001152 0.5547 0.000153 0.5858 0.4004 0.0004701 5.592e-06 0.0004621 0.04433 0.001226 0.0008778 3.352e-06 0.3651 0.1578 0.001695 0.001539 0.2213 0.0004658 0.007149 0.002212 0.008114 5.61e-05 0.5701 0.0003524 0.03281 0.4998 0.001269 2.539e-05 0.004265 0.04054 0.001847 0.0006616 0.1875 0.00137 0.02347 1.071e-05 0.007473 0.662 0.02328 0.0008627 0.007546 0.001719 0.002052 0.001547 2.715e-05 0.008718 0.5935 0.4994 0.0003817 0.01035 0.004207 0.000346 1.219e-05 0.02371 0.01371 0.3956 0.00551 0.001738 0.0008613 0.02743 0.001947 0.005401 0.002226 1.399e-05 0.03588 0.0209 0.0001783 0.005464 0.0007168 0.0001146 5.815e-05 0.03898 0.007226 0.3221 0.2835 0.0003539 9.057e-05 0.0004304 0.0172 0.01409 0.046 0.3632 0.007134 0.01417 0.5201 0.4029 0.5825 0.002125 0.006564 0.01273 0.00615 8.05e-06 0.001792 0.0007433 0.5861 0.0177 0.5727 2.974e-05 0.003145 0.007609 0.3838 8.895e-05 0.001271 0.05453 0.0006226 3.134e-05 0.2996 0.0003958 0.0008477 0.002841 0.6673 0.5544 0.1241 0.5697 0.2768 0.001363 0.006295 0.5354 0.001097 0.0008684 0.1354 0.02602 0.001484 0.001159 0.0003288 3.182e-06 0.002156 0.04988 0.0005933 0.3777 0.1016 0.601 5.543e-05 0.355 0.02676 0.0131 0.5747 8.565e-05 0.02124 0.1044 0.009736 0.02151 0.1812 0.09598 0.00345 0.0131 0.002293 7.03e-05 0.3942 0.003288 0.5782 0.4704 0.004366 0.02675 0.003754 0.001116 0.00225 0.007286 0.008828 0.002078 0.004472 0.00201 0.001187 0.2859 0.0005498 0.01733 0.00084 0.0002627 0.5674 0.004414 0.0006664 0.0128 0.002861 0.00215 0.0001033 0.0006766 0.0004873 0.5479 4.266e-05 1.867e-06 0.0001617 0.1105 0.04605 0.0001134 0.002172 1.284e-05 9.23e-06 0.0006124 0.5732 0.009788 0.1818 0.001136 0.0005231 0.001709 0.004774 0.0004705 0.4729 0.01205 2.371e-05 0.006201 0.005866 0.03979 0.000248 6.161e-05 0.6295 0.0001542 0.5724 0.005393 0.454 0.4382 0.022 0.012 0.02458 1.621e-05 0.005098 1.218e-05 0.001328 0.01084 0.00245 0.0005133 0.01921 0.00125 0.0008291 0.01692 0.002196 0.0002292 0.004024 0.0006259 0.01929 0.5447 0.0001479 0.6423 0.5365 0.004505 0.0002434 0.0005526 0.01503 0.002532 0.0002877 3.534e-05 0.005635 6.141e-05 0.0003167 0.0008254 9.711e-05 0.005861 7.953e-05 0.4747 0.01688 9.19e-06 0.001748 6.489e-05 0.01348 0.001228 0.001014 0.03838 0.001719 0.004111 0.0004455 0.07356 0.0003496 0.001596 0.5664 0.0002298 0.003118 0.01241 0.3489 6.524e-05 0.0004332 8.402e-05 0.01521 0.0001241 0.0001571 0.008234 0.001487 0.0007313 0.0008933 0.3621 0.004756 0.0895 0.03912 0.001914 0.0001332 0.443 0.007835 0.05805 0.0006543 0.00837 0.007299 0.0002278 0.003089 0.007066 0.5145 0.0003485 0.0307 0.008533 0.00123 0.002288 0.4715 4.931e-05 2.434e-05 0.002691 0.001866 8.36e-05 0.0002621 0.5934 0.008079 0.001615 2.319e-05 0.2288 0.0002968 0.005316 0.00538 0.001313 0.004124 0.0005755 0.0007437 0.03048 7.667e-06 0.01242 0.001359 0.5734 0.0361 0.001573 0.001059 0.001677 0.3313 1.256e-05 0.001405 0.003742 0.3473 0.006614 8.881e-06 0.005304 0.196 0.00114 0.01028 0.01507 0.01344 0.0001339 9.286e-05 0.00147 0.001061 0.0003537 0.008783 0.006888 0.000766 0.01612 4.019e-05 0.005125 0.0005295 7.363e-05 0.00195 0.0007847 0.0002091 0.4628 0.03696 0.02294 0.5692 0.0008104 0.5575 0.001195 0.5693 0.0004339 0.001493 0.009523 0.02592 4.57e-05 0.04817 0.09218 0.001113 0.002435 0.03333 0.5683 0.001923 0.006292 0.5639 8.445e-06 0.5622 0.1394 0.004267 0.5502 0.002128 0.009838 0.02098 0.05493 0.0002376 0.001084 0.0002295 8.84e-05 0.03704 0.000431 0.001245 0.0004991 0.0004267 0.004276 0.009994 0.007796 1.164e-05 0.002998 4.855e-05 0.0003329 0.02659 0.3939 0.009779 0.002478 0.1165 0.5237 0.001344 0.003201 0.0004289 0.00538 0.007063 4.216e-05 0.002787 0.563 0.001755 9.538e-05 5.952e-05 0.3616 0.0004648 0.003168 0.001704 0.5016 0.5479 7.766e-05 0.003228 0.001168 0.001616 0.0007967 0.008958 0.5343 0.004262 0.4534 0.4534 0.01668 1.427e-05 0.01071 0.01114 0.006265 0.004457 0.02317 0.0004648 0.0001414 0.0001549 0.606 9.637e-05 0.003823 0.01654 7.101e-05 0.0001161 0.002717 0.0004892 3.034e-05 0.0006057 0.5661 4.993e-05 0.006839 0.1008 0.001044 9.662e-05 0.001308 0.0009758 0.3963 0.0002194 0.5871 0.001595 0.004067 0.02598 0.01673 0.3511 0.08061 0.4521 0.0001535 1.661e-05 6.744e-05 0.001016 0.008876 0.04793 0.009505 0.4031 0.6401 4.417e-06 0.5287 0.0002701 0.0001422 0.006557 0.01315 0.009948 0.002482 0.02915 0.1468 0.001718 0.03254 0.02748 0.002015 6.257e-05 0.1719 0.01565 0.0007631 0.3971 0.002355 0.5615 0.005857 2.795e-06 0.009831 0.5476 0.3086 0.005277 1.175e-05 3.593e-05 0.008163 0.0002004 0.006526 0.004644 0.0007649 0.2376 0.5156 0.56 0.000997 0.5653 0.3616 0.001985 0.001926 0.0003583 0.002726 0.01338 0.1637 0.5708 0.602 0.001219 0.0005416 0.0083 0.0001066 0.004942 0.5666 0.006153 0.000256 0.01983 0.000611 0.003321 0.5209 0.0009403 0.00211 0.01326 0.001479 0.04642 0.02778 0.3891 0.5771 0.1967 0.000108 0.0004734 7.252e-06 0.3846 6.689e-06 0.005393 0.0626 0.0025 0.0007981 2.071e-05 0.0002652 0.005259 0.007212 0.002466 0.007973 0.01942 0.3716 0.02389 0.0004225 0.005697 0.0001857 0.008132 0.00257 3.476e-05 0.0006916 1.811e-05 0.5689 0.004585 0.002794 0.2672 0.006391 0.009218 0.005912 0.0006076 0.4934 0.007868 0.6194 0.0141 0.574 0.005428 0.0005824 0.000498 0.6391 0.0003438 0.0006678 0.004787 0.0002966 0.4901 0.004881 0.04869 0.000144 0.004083 1.26e-05 0.002995 0.01029 0.004634 1.678e-05 0.00446 0.01003 0.004602 0.0007266 0.0008902 0.008444 0.00508 0.001444 0.5607 0.354 0.4257 0.5987 0.0009325 0.002627 0.1371 0.003863 0.0001673 0.0002299 0.004479 0.007715 0.5731 0.2061 0.4628 0.005949 8.923e-06 0.001755 0.001789 0.003126 0.004041 0.4787 0.5628 0.001636 0.006107 0.5695 0.005136 0.03991 0.1575 0.0002856 0.004333 0.001077 0.1843 0.008729 1.559e-05 0.004013 0.0009967 0.004103 0.6195 0.002496 0.0004574 0.01756 0.5816 0.00304 3.832e-05 6.64e-05 0.0028 0.006514 0.006736 0.003638 0.0008333 0.5844 2.091e-05 0.01201 0.0004967 0.002661 0.000977 0.0101 0.01225 0.0001222 0.006068 8.119e-06 0.009785 0.0001094 0.2242 0.008711 0.00164 5.457e-05 0.1804 0.4767 3.809e-05 0.5701 0.007812 0.02164 0.001772 0.008636 0.00258 0.00167 0.006292 0.001932 0.5682 0.0003307 0.02769 0.4981 0.005658 0.00308 0.5331 0.001674 0.002983 0.01054 0.01253 0.001742 0.001934 0.002439 0.01316 8.654e-05 0.0007541 0.005609 0.5719 0.01565 0.003221 0.003774 0.001498 0.04361 4.376e-05 0.002863 0.002231 0.001752 0.005831 8.293e-05 0.002076 0.0002695 0.0003058 0.0004451 1.952e-05 1.304e-05 0.00485 1.055e-05 0.0001414 0.009187 8.575e-05 0.0001508 0.5668 0.003165 0.0001256 0.6401 5.19e-05 0.003266 0.01467 9.544e-05 0.0008315 0.001321 0.000879 1.356e-05 0.0004509 1.954e-05 0.0001568 0.0003137 0.004369 9.874e-05 0.001593 0.00109 0.0001205 0.000161 0.01467 1.315e-05 0.01727 0.006833 1.067e-05 0.0001001 0.1337 0.0008314 0.5764 0.03514 1.11e-05 0.006672 0.007541 0.292 0.2918 1.089e-05 0.0001166 0.01938 0.001901 0.001125 0.001743 0.001627 5.533e-05 0.0014 0.009311 0.004454 0.3011 0.008457 0.02812 0.0002977 0.07965 1.402e-05 0.4718 0.001081 0.000336 0.6561 0.000741 0.002115 0.002649 0.006281 0.005505 0.0002698 0.004546 0.002174 5.296e-05 0.2579 0.007453 0.01961 0.05281 0.4912 0.5877 0.00362 0.5439 1.256e-05 0.02701 6.369e-05 0.003142 0.002625 0.0006752 0.0005842 0.001629 0.3899 0.00059 4.901e-05 0.003669 0.01967 0.002664 0.002325 0.006394 0.4363 0.00545 0.008673 0.5066 0.3857 2.225e-05 0.1553 0.0004164 2.158e-05 0.02931 0.0001404 0.4296 0.0008965 3.735e-05 0.01547 0.007646 0.002856 0.5751 0.1487 0.00568 0.4229 0.005708 0.5625 0.05447 0.0004814 0.0007587 0.005301 0.2136 0.00868 8.178e-06 0.000534 0.02054 0.0004278 0.002073 0.00185 0.5833 0.1491 0.009493 0.01518 0.007071 0.0009329 0.002593 0.5701 0.0009103 1.441e-05 9.987e-05 1.242e-05 0.009421 0.5867 0.001331 0.002811 0.01811 0.001017 0.04547 7.157e-06 0.0002923 0.3761 0.0006266 6.244e-05 0.007458 0.4036 0.0001819 0.0008641 0.0002556 0.001058 0.01319 5.154e-05 0.0002694 0.0002776 0.008968 0.5902 0.0009765 0.005427 0.5694 0.3957 6.291e-05 0.002136 0.3775 0.0009521 0.0003314 0.5647 1.732e-05 0.0001573 0.01608 0.07159 0.5516 7.931e-05 0.4614 0.01289 0.005255 0.556 1.141e-05 0.1315 0.003906 0.0001378 0.02554 0.4346 0.06039 0.01945 0.01337 0.003577 0.002747 0.005399 0.008106 0.0009102 0.002247 0.177 0.01848 0.000119 0.4335 0.001741 0.487 0.06857 0.3348 0.0007213 0.01125 0.5957 0.003822 0.0008191 0.00903 0.01246 0.5923 0.006621 9.319e-05 0.002737 0.0001602 0.01412 0.008656 0.0007541 0.5662 0.0002421 4.211e-05 0.0005269 0.0002416 0.0009039 0.5524 0.5715 0.001614 0.003434 0.001691 0.0001119 0.001339 0.4638 0.005243 0.1936 0.004316 0.0006395 3.572e-05 0.004561 0.03121 0.000276 0.001286 0.00702 0.001465 0.04199 0.02978 0.00218 0.0001294 0.0006957 0.001932 8.773e-05 0.001034 0.007317 0.6003 9.786e-05 0.06495 0.01338 0.5757 0.02661 0.0003671 0.4158 3.342e-05 0.0001161 3.569e-05 0.03044 0.001961 0.0006318 0.001659 1.098e-05 0.01878 2.658e-05 3.867e-05 0.005029 0.001877 5.894e-05 0.01396 0.01967 0.01875 0.005295 7.099e-05 0.00252 0.01478 0.0002446 0.005531 9.91e-05 0.01261 0.1053 1.808e-05 0.0008694 0.001989 0.5584 0.00761 0.0009643 0.0007324 0.003819 0.001541 0.0003047 0.0002112 0.0003985 0.5666 4.113e-05 0.02811 0.01597 3.481e-05 0.01435 0.001491 0.5688 0.009447 6.553e-05 0.0631 0.001602 0.2064 0.0002098 0.1904 0.0006379 0.02672 1.271e-05 0.009179 8.261e-05 0.003211 4.066e-05 0.0008939 0.0008871 0.03901 0.001807 0.001806 0.0009569 0.0003629 0.004881 0.0002253 8.704e-05 0.001734 0.001764 0.002271 5.084e-05 0.0002695 0.009035 0.3399 0.3221 0.3812 0.01123 0.01306 0.002386 0.0009145 0.001028 0.6032 0.01052 6.121e-05 0.0008927 7.331e-05 1.27e-05 0.0003099 9.122e-06 0.01545 0.005409 5.207e-05 0.01514 0.003666 0.002017 0.004706 1.718e-05 0.0003232 0.000804 0.003491 0.0006441 6.804e-05 0.01801 7.253e-05 0.0002493 5.834e-05 0.1297 0.00256 0.000136 0.1929 0.0001512 0.001083 0.003367 0.004974 0.001453 0.002377 9.419e-06 0.00184 0.006031 0.001112 7.324e-05 0.002556 0.001887 3.942e-05 0.03284 0.562 0.3202 0.0006444 0.0002717 0.3696 0.0003606 0.0001129 0.02149 3.841e-05 0.07247 0.5663 0.003775 0.01245 0.585 0.01324 0.05077 0.001759 0.00448 0.5608 0.5801 0.001424 0.572 8.022e-05 0.004812 0.5346 0.0496 0.0004436 0.01382 5.66e-06 0.008785 0.005623 4.186e-06 0.08227 0.4488 0.0003681 5.732e-05 0.001802 0.0004679 0.004246 0.005986 0.0001264 0.0002038 0.002361 0.03632 0.05969 0.5644 0.001289 0.0001289 0.0001044 0.003029 0.4644 0.0002549 0.001656 5.057e-05 0.000366 0.5221 0.001239 0.4179 0.001535 0.0003082 0.0008165 0.002956 0.001455 0.0239 0.007319 0.0002767 0.001195 0.008744 0.001294 0.0001752 0.001986 0.0005008 0.005416 0.001427 0.0003397 0.1315 0.0005424 3.232e-05 0.0004583 7.5e-05 0.001229 0.003758 0.04369 0.4504 0.002019 0.03213 0.4944 0.05544 0.01663 0.002237 0.01633 0.000288 0.001541 0.0004989 1.496e-05 0.5622 0.0003349 9.695e-05 0.0001776 0.002312 0.001856 3.891e-05 8.309e-05 0.00726 0.0008331 0.008062 0.003693 0.008826 0.002226 0.0623 0.01307 0.006812 0.0003534 0.005391 0.001828 7.558e-05 0.006438 0.007132 0.5896 9.741e-07 0.0004704 0.1507 0.1162 0.001266 0.002917 0.03468 0.01684 0.199 0.003809 0.00027 0.0001009 0.003915 0.0003719 0.5681 5.833e-05 0.004049 0.00204 0.6488 0.002758 0.004361 0.4366 0.004842 0.0004486 0.001173 0.0007898 0.007651 0.0002629 0.04482 0.0001769 0.0001372 0.0008773 0.1012 0.000758 5.513e-05 3.64e-05 1.256e-06 2.528e-05 0.000129 0.002469 0.03663 0.002572 0.0005755 0.003277 0.0003167 0.005894 0.004149 0.00342 0.02446 0.04957 0.005283 0.007972 8.297e-05 0.003482 0.3417 0.2001 0.000562 0.004619 0.1392 0.01415 0.009288 0.001999 0.0005189 0.003805 0.005332 0.002396 0.0008232 0.006421 0.002417 0.005721 0.002211 0.003338 0.0003235 0.01377 0.02774 0.0003238 0.01779 0.001713 0.01005 0.4726 0.003298 0.0001245 5.278e-05 0.0005566 0.5512 0.02647 0.01143 0.5868 0.0009727 0.002435 0.0058 0.3826 4.137e-05 0.000369 0.4559 0.5546 0.01212 0.04926 0.2861 0.1695 0.0001699 0.01305 0.1486 0.00187 0.00661 0.002753 0.0001952 0.004079 0.06586 0.0001208 0.5618 0.3777 0.02772 0.0006573 0.5668 0.006403 0.0007257 3.423e-08 0.0001203 0.03813 0.5368 0.04976 0.595 0.001608 0.0001818 0.01063 0.3947 0.003758 0.002385 0.008751 8.054e-06 2.505e-05 0.001289 0.005457 0.001495 0.01482 0.005548 0.009397 0.002007 0.002328 0.01799 0.004133 0.000378 0.0005884 0.0001393 0.0001413 0.0002564 0.08625 0.002655 0.5004 0.5002 0.0008782 0.03084 0.002055 0.4429 0.4935 0.0007992 0.003176 0.00494 0.4386 0.0007023 0.0007868 0.0008833 0.00797 0.0008897 0.002292 0.001674 0.2934 0.2934 4.219e-05 0.00185 0.05117 0.0005535 0.6171 0.4145 0.4143 9.605e-05 0.003097 0.0007674 9.856e-06 0.05261 0.003057 0.07992 0.005024 0.08292 0.5712 0.0001962 0.001149 9.758e-06 0.01029 0.1133 5.035e-05 0.002044 1.252e-05 7.841e-05 0.1479 0.007415 0.0007303 0.03455 0.0019 0.005575 8.474e-06 4.102e-05 0.003326 0.0004978 0.3007 0.3005 0.0001011 0.0001452 0.004984 0.5682 0.005123 0.02113 0.0193 0.006035 0.002797 7.931e-05 0.001939 1.702e-05 0.5626 0.09325 0.001128 0.001092 0.05036 2.323e-05 0.003458 0.01301 0.02248 0.002948 0.01678 0.005794 0.03907 0.003134 0.003841 0.005873 0.0002656 0.003819 0.008417 0.001509 0.03459 0.3883 0.4177 5.84e-05 0.0006099 9.187e-06 0.001856 0.2977 0.0001043 0.001487 0.01031 0.0002369 0.007375 0.01138 0.006856 0.003831 0.6465 0.001756 0.02621 0.0004607 4.5e-05 0.001743 2.2e-05 0.001617 0.6003 0.001699 0.5789 0.5242 0.0004052 0.000196 4.545e-05 0.5756 0.05507 0.000208 0.542 0.0001778 0.09078 1.255e-05 0.0001964 8.335e-05 0.0001932 4.166e-05 0.00182 0.02059 0.01085 0.007744 0.007941 0.5712 0.003423 0.02012 0.003805 0.01183 0.006157 0.00104 0.0008637 0.01013 0.4418 0.003817 0.5701 0.02866 0.01046 0.0002986 0.001165 0.01222 0.4647 0.00412 0.003131 0.5687 0.0001169 0.4379 0.003039 0.003274 0.4709 7.538e-06 0.001177 7.342e-05 3.417e-05 0.01221 0.004608 0.0006901 0.3855 9.983e-05 0.03743 0.0009932 0.01431 0.3787 0.08682 5.403e-05 0.1365 0.002828 0.002418 0.0003576 0.003302 0.02862 0.02363 0.001732 0.00134 7.34e-05 0.01085 0.006069 4.045e-05 9.81e-05 0.06139 0.5955 0.007751 0.0008521 0.003709 1.455e-05 0.4797 0.0003317 0.5245 0.2862 0.00184 0.02832 0.000357 0.5877 0.5555 0.07691 0.0004585 0.000559 0.003758 0.02697 0.002963 0.04146 0.002935 0.01014 0.2179 0.001049 0.06034 0.002895 0.007159 0.005828 9.906e-05 0.0006433 1.334e-05 0.0006963 0.0381 1.187e-05 0.0001407 0.002363 0.03373 0.001965 0.001107 0.01 0.0003833 0.0002894 0.6358 4.043e-05 2.377e-06 0.001349 3.086e-05 0.006023 0.0002627 0.003251 0.0005247 0.001036 0.5804 0.003683 0.007025 0.003615 0.02056 4.8e-05 0.002483 0.002204 0.001615 0.1318 0.0007348 0.003132 0.006483 1.06e-05 0.001537 0.0002015 0.01207 0.014 0.4151 0.0199 0.02057 0.002343 6.167e-05 0.5765 0.001202 0.5811 0.3847 0.0005202 1.341e-05 0.009152 0.008631 0.02207 0.007865 0.006001 0.00855 0.008477 0.09744 0.1259 0.0009565 0.5737 0.003323 0.5633 0.005177 9.187e-06 0.004 0.4817 0.5137 0.01092 0.0678 0.00422 0.00507 0.007837 0.5813 0.5014 8.431e-05 0.005147 0.01274 0.002561 0.006105 0.004745 0.1874 0.005496 0.0001976 0.002158 0.003997 0.01932 0.01391 0.000646 0.001277 0.001591 0.5601 6.247e-05 0.0004661 0.0009062 0.00253 0.4654 0.04473 0.02194 0.009331 0.0002443 0.001454 0.009926 0.02446 0.5911 0.1194 0.3667 0.001112 0.008057 0.002719 1.256e-05 0.009579 0.1066 0.00686 0.05577 0.0001453 3.101e-05 0.0005384 0.007232 0.2978 0.03805 0.0003723 0.0002166 0.02867 0.0003417 0.001997 1.239e-05 0.004151 0.005329 0.001696 0.001696 0.5658 0.00693 1.982e-05 0.0002412 0.0007787 0.0003077 0.5133 0.002656 0.0091 0.01083 0.0005978 0.001331 0.06503 0.01075 0.02274 0.4049 0.009227 1.892e-05 0.1383 0.4648 0.04924 0.0164 0.007604 0.0007088 0.001858 0.6117 0.002882 0.01011 0.001151 0.005487 0.003487 0.0008893 0.004557 0.5563 0.01275 0.0002516 0.6155 0.01323 0.00166 0.001259 0.3982 0.01444 6.385e-05 0.001291 0.03552 0.5747 0.000733 0.002834 0.009364 0.6253 0.2506 0.001909 0.01348 1.302e-05 0.0001168 0.001678 0.149 0.2522 8.028e-06 0.0145 0.4447 0.004975 0.01652 0.0005838 0.0006292 0.5725 0.4131 0.3304 0.0006515 0.3623 0.001329 5.16e-05 0.00484 0.009857 0.1399 0.008593 5.563e-06 0.001865 0.01139 0.004999 5.543e-05 0.3751 0.0006193 0.01263 0.004691 0.004306 0.0285 0.004299 0.0009711 0.00182 0.01893 0.04964 0.0001327 0.0006819 0.0004009 0.002723 0.005914 1.858e-05 0.01527 0.006706 0.3329 0.002836 0.002563 7.866e-06 0.000431 0.09295 0.004106 1.641e-05 0.0001078 5.244e-05 0.1334 9.931e-05 0.0006957 7.7e-05 0.004946 1.09e-05 0.005375 1.802e-05 0.002644 0.000658 0.4406 0.0002465 0.003443 5.853e-05 5.11e-06 0.0007095 0.577 0.01619 0.004262 2.276e-06 0.006331 0.000534 0.01182 0.6122 0.01288 0.4783 0.5679 0.002068 0.002273 0.0003785 0.001421 0.01043 7.075e-05 5.004e-05 0.0002919 0.003077 0.001688 0.6344 0.001212 0.5842 0.02083 0.001284 0.001664 0.5631 0.004553 0.1367 4.968e-05 0.0004568 0.00281 0.001582 0.6214 0.001657 0.318 0.006075 0.0002491 0.0003655 0.3319 0.004328 0.005665 0.005839 0.03416 0.002895 0.04836 0.001021 0.06681 0.000657 0.00285 0.001646 0.05851 0.4141 0.002949 0.00639 0.005663 0.0001679 0.02696 0.01269 0.4307 0.008155 0.0081 0.02236 0.001697 0.0009223 0.0002356 0.02809 0.003777 0.03025 0.0005546 0.0008483 0.5687 0.1915 0.002791 0.5597 0.01813 0.001097 0.0001188 4.801e-05 0.01434 0.007801 0.02065 0.5361 2.145e-05 7.836e-05 0.0009561 7.11e-05 0.4452 0.003125 0.3869 0.2464 0.6499 0.0002116 3.429e-06 0.0003754 0.002234 0.0004853 0.0006317 0.002554 0.568 0.006469 0.005382 0.02281 0.5959 2.848e-05 5.688e-05 0.0006696 0.008786 0.000196 0.001144 0.003168 0.003166 5.808e-05 1.762e-05 0.001407 0.002046 0.02014 0.0007632 0.0004352 5.586e-05 0.004915 0.0005962 0.008206 0.3951 0.000419 0.002838 8.371e-05 0.238 0.09156 0.002865 0.004439 0.00152 0.0003792 0.4117 0.0008247 0.001218 0.002253 4.553e-05 0.003809 0.0004744 0.00466 0.2691 0.007959 0.0009558 0.01806 0.004276 0.0003908 0.01769 0.01466 7.152e-06 1.618e-05 9.66e-05 0.5724 0.0001204 9.563e-06 0.001019 0.003241 0.004236 0.0005884 0.4779 0.006833 0.003745 0.3313 0.002954 0.001096 0.5479 0.003376 0.006063 0.3771 0.009952 0.01087 2.939e-05 0.5695 0.001334 0.0533 7.07e-06 0.0003206 7.817e-05 0.1121 0.00829 0.01828 0.3814 0.05183 0.0009918 0.0002456 0.6032 0.0005176 0.1648 0.006099 0.001489 0.005007 0.1123 0.0001441 0.003561 0.3271 0.0003875 0.0004329 1.001e-05 0.0007325 1.903e-05 0.0003458 0.2995 0.2993 0.008566 0.3112 0.007626 0.001034 0.00472 0.0008093 0.0004817 0.0005911 0.0001573 1.899e-05 0.004482 0.5695 0.000139 0.0003779 0.0008061 0.001297 0.004035 0.008092 0.4125 0.0003394 0.002159 0.0008084 0.008149 0.4117 0.008737 0.0008836 0.4113 0.0007173 5.144e-05 0.4068 0.0006217 0.4064 0.5825 0.003764 0.0006224 0.00273 0.4714 0.02004 5.005e-05 0.00768 0.05151 3.916e-07 0.005765 0.0001456 0.4994 0.004042 0.0003373 0.009129 0.5824 0.001157 0.5046 0.00561 0.5602 0.03145 0.07193 0.01504 0.003696 0.005527 7.019e-06 4.899e-05 0.0002992 0.005224 6.751e-06 0.0006575 0.003209 5.757e-05 0.0505 0.003785 0.00101 0.01292 0.004327 0.4676 0.0006888 0.01128 0.001007 0.02898 0.03389 1.276e-05 0.0006208 0.2039 0.0002475 0.0008505 0.01377 0.003748 0.04159 0.001066 0.002244 0.006946 0.005552 0.003542 0.001117 0.003662 0.0006845 0.5661 0.0009513 0.002928 1.878e-05 0.0005285 0.03092 0.3868 0.001866 0.4956 0.0004669 0.5421 0.01597 0.006205 0.004414 0.02962 0.5788 0.003649 0.0005941 1.198e-05 0.001937 0.000351 0.03465 0.004164 0.4168 0.02223 0.001149 0.01239 0.01382 0.002383 0.0003884 0.01004 0.003814 0.1214 0.001016 0.5369 0.006576 0.005214 0.0001549 0.0002117 0.3077 0.002036 1.443e-05 0.07967 2.848e-05 0.004127 0.001074 0.008066 0.001178 0.0003107 0.01071 7.986e-05 0.001351 0.00028 0.0006458 0.5807 0.4373 0.003842 0.3184 0.2796 0.003903 0.5228 0.00221 0.4241 0.6061 8.46e-05 0.01137 0.0003626 4.432e-05 0.001072 0.0002694 0.001454 0.00109 6.09e-05 0.0001579 0.0144 0.009725 0.0006929 0.003742 0.336 0.0009803 0.001275 0.006384 8.739e-05 0.03682 0.05865 0.03199 0.009204 0.003486 0.001493 0.1143 0.1222 5.342e-06 0.0005408 0.003222 0.5772 0.5776 0.003359 0.0001562 0.02434 2.043e-05 0.00117 0.001118 0.002811 0.003668 0.005508 0.004596 0.6054 0.000231 0.0108 0.1452 0.0005006 0.0115 0.00538 0.5721 0.002192 0.000137 0.01951 7.844e-05 0.008264 0.5718 0.05563 0.000269 0.0009162 0.0002319 0.00554 0.001899 9.166e-05 0.05507 0.001012 0.03419 0.007027 0.403 5.272e-05 0.001366 2.387e-05 0.003344 0.07601 0.5743 0.003006 0.0001317 0.5982 0.5236 0.008513 0.2572 0.003644 0.008271 0.3659 0.002237 0.0007469 0.00194 0.1014 1.252e-05 0.001135 0.3809 0.01029 0.01075 0.5776 0.02312 0.5802 0.3406 0.005011 0.02787 0.0003559 0.3785 0.002591 0.07665 4.323e-05 0.0006366 0.002304 4.082e-06 0.01258 0.3133 0.0002282 0.0197 0.2929 0.3678 0.002273 0.002055 0.001154 0.002131 0.01031 0.07553 0.0008776 1.844e-05 0.0001146 5.989e-06 0.185 0.002823 0.001937 0.004431 0.0005102 0.4579 0.00745 0.0002812 0.0001349 0.001396 0.0008643 0.0003585 0.0007328 0.003441 0.02316 0.0001874 0.005169 0.007656 0.000702 0.0003736 0.04073 0.0003477 0.5179 0.5193 0.05777 0.004953 0.003074 0.0004898 0.09054 0.006878 7.957e-05 4.963e-05 0.00064 0.04038 0.4064 0.0002968 0.01557 0.0005266 0.05734 0.02937 0.227 0.5698 2.181e-05 1.521e-05 2.803e-05 0.4079 0.000749 0.002645 0.007312 0.009461 8.399e-05 0.4316 0.02247 0.04582 0.004932 0.4378 0.4095 0.001453 0.003524 0.4102 0.000267 0.1276 0.0001053 7.461e-05 0.005818 0.3856 0.09013 9.596e-05 0.001856 0.002842 0.006163 0.006624 0.0003927 0.01757 0.005058 0.002217 0.1636 0.0007229 0.2263 0.01227 0.5527 0.01729 1.582e-05 0.000459 0.4392 0.0003861 2.253e-05 0.4783 0.009501 0.01122 0.04725 0.0116 5.613e-05 0.0006788 0.5717 0.0001304 0.03634 0.001482 0.05214 5.838e-06 0.001282 0.00237 0.03319 0.009822 0.001847 0.01606 0.05411 0.002622 0.007243 0.3615 0.5714 0.000113 0.3287 0.00414 0.08048 0.001462 0.002488 0.0004246 0.004812 0.0002527 0.2942 6.43e-06 0.002271 0.008993 0.005239 0.002343 0.5149 0.004743 7.408e-05 0.6662 0.003274 0.6618 0.0008137 6.974e-06 0.1416 0.0001988 0.002371 0.5935 1.261e-05 4.168e-05 6.408e-06 0.001111 0.03777 0.001244 0.0001256 0.002477 0.484 0.00725 0.08021 0.001927 0.00495 0.08204 0.001191 0.0001421 0.001518 0.003277 7.871e-05 0.0005266 0.01053 0.0009239 0.001788 0.01167 1.844e-05 0.159 0.01633 0.0002511 0.000194 0.00228 0.001726 0.009072 0.002646 0.00177 0.0006778 9.98e-05 0.007738 0.004903 0.005811 0.03245 0.5573 0.008454 0.4955 0.005169 0.3649 0.02527 0.615 0.009706 0.07043 1.294e-05 0.007305 0.5626 0.009804 0.3945 0.008048 0.002996 0.08201 0.2097 0.01838 1.355e-05 0.0004493 0.003927 0.0001479 0.04917 0.004157 0.001525 0.4935 1.955e-05 0.003397 9.374e-05 5.505e-05 0.001831 0.01052 1.685e-05 0.0002297 0.0006656 0.5023 0.5559 7.038e-05 0.02093 0.001039 0.02894 0.1768 0.009922 0.4164 0.0002077 0.0004273 0.001703 0.008369 0.00117 0.4363 0.0001628 0.02643 0.3722 0.001579 0.4967 0.5813 8.348e-05 2.219e-05 0.0001673 0.006663 1.087e-05 0.4066 0.001371 0.001481 0.3993 0.001109 0.0003803 0.3603 0.0005764 0.0005187 0.004652 2.951e-05 0.01469 0.02481 0.0009826 0.01389 0.3358 0.003612 0.01558 0.00254 0.0007732 0.0105 0.5898 0.00478 0.003536 0.1095 0.0006138 0.005313 0.002349 0.003215 0.001024 0.001373 0.001705 0.5582 0.4239 0.0003646 0.0002501 7.708e-05 0.001047 0.01221 6.062e-06 0.001613 0.02748 0.03408 0.007473 0.02524 0.0009381 0.002379 0.02073 0.02407 0.01279 0.004376 1.956e-05 0.01592 0.001385 0.0008695 0.009308 0.003177 0.5574 0.2958 1.942e-05 0.03821 0.0003337 0.006692 0.0003603 0.491 0.001501 0.003444 0.001944 0.001716 0.002856 0.001168 0.0002968 0.0008064 0.005492 0.001385 0.00114 0.0301 2.894e-05 0.04737 0.008888 0.001588 0.000107 0.004622 0.004348 0.0002343 0.000538 0.008973 0.001316 0.0221 0.007419 0.0001966 0.0004414 5.766e-05 6.88e-05 0.5439 0.5523 0.3224 0.00247 0.001566 0.00494 0.006988 0.007518 0.002202 0.003188 0.005595 0.0001616 0.000602 0.02567 0.001739 7.283e-05 0.0006341 0.5905 0.001514 0.0725 0.009986 0.001363 0.03555 0.5555 9.99e-05 0.001274 0.04669 1.862e-05 0.00176 0.006473 9.244e-06 0.001537 0.002401 0.001711 0.1667 0.2025 0.1219 0.5694 2.259e-05 0.007972 1.98e-05 0.001837 0.01589 0.003539 1.221e-05 0.005416 0.5654 0.5659 0.01607 0.0001233 0.000169 0.002159 0.01309 4.17e-05 0.001184 0.006009 0.303 0.000127 0.005635 0.01207 0.01894 0.0001574 0.0009956 0.000128 0.4797 8.771e-05 0.533 0.0009378 0.002207 4.089e-05 0.002812 0.001425 0.004352 0.1269 0.03893 0.0007069 1.708e-05 0.4213 0.005512 0.004009 0.0002287 7.058e-06 8.738e-05 0.4721 0.0006423 0.4097 8.866e-05 0.0009225 0.62 0.0006725 0.001195 0.001762 0.0004184 0.5776 0.0008688 0.00189 0.02747 0.00216 0.05358 0.6149 0.001102 0.002438 0.0009283 1.261e-05 0.0008742 0.392 0.3918 3.939e-05 0.4146 0.06454 0.1116 0.003082 0.002994 0.4938 3.154e-05 0.475 2.145e-05 0.0006226 0.5658 0.01212 0.01863 0.5582 5.561e-06 0.0007317 0.0001799 6.63e-06 6.647e-05 0.003324 0.4807 0.5915 0.01906 0.436 0.001379 0.00366 0.002135 0.0007132 0.0009485 0.001295 0.2766 0.2773 0.003148 2.764e-05 0.392 4.87e-05 0.001727 0.002609 3.043e-05 0.0004115 0.000506 0.02957 0.005694 0.007629 4.116e-05 0.004292 0.003309 0.01149 0.3304 0.0009853 0.01814 0.01305 0.3952 0.004327 1.525e-05 0.1925 1.4e-05 0.002136 0.006669 0.05988 0.001869 0.01232 0.004268 0.000525 0.001966 0.5779 0.4183 0.0102 0.004834 0.1222 0.5509 0.003668 0.003285 0.01127 0.5634 0.004213 0.000613 0.0008279 0.0001023 0.004622 0.002193 0.0007755 7.376e-06 7.197e-05 0.0155 0.002988 4.309e-06 0.001298 0.0001406 0.0001174 0.007901 0.0964 0.002699 0.0004951 0.05419 0.1441 1.894e-05 0.01087 0.002785 0.002635 0.001155 0.0018 0.4349 0.02569 0.0002098 0.01196 0.0007466 9.391e-05 0.001136 0.01394 0.003679 0.02305 0.000701 0.00212 0.01538 0.000142 0.03023 0.0003203 0.0008408 0.5915 0.1675 0.0003877 0.001556 0.002685 0.0001405 0.008229 0.5766 0.0001132 0.359 0.008178 0.3666 0.0006015 0.009078 0.007185 0.005113 0.5662 0.004628 0.000776 7.232e-05 0.01503 0.01774 7.415e-05 0.003471 0.0007513 0.003327 0.009167 0.00231 0.00263 0.002973 0.532 0.0005747 0.3396 0.08667 0.5751 0.007402 0.004636 0.01049 0.002002 0.01293 0.000945 0.4731 0.006189 0.06436 0.001966 0.2814 0.007829 0.0008804 0.002018 0.01228 0.1384 0.003498 0.3445 0.0004986 0.006375 0.007111 0.001217 8.787e-05 0.003707 0.3042 0.005063 0.001973 0.001101 8.069e-06 0.001299 0.003109 2.602e-05 0.0002059 0.01375 0.0001039 0.0002534 0.3435 0.4125 0.5663 0.01108 0.5545 0.001154 0.00194 1.141e-05 0.004708 0.04159 0.22 0.003756 0.001128 0.0005684 0.0006291 0.001122 0.1041 0.000139 0.009504 0.003119 0.004403 0.4005 0.2714 0.5708 0.02521 0.0001327 0.01421 0.01669 0.0116 0.5496 0.001646 0.04202 0.0001211 0.0001077 0.006052 0.0017 0.000779 0.4246 0.015 0.001145 0.0001116 0.003685 0.5703 0.005144 2.585e-05 0.149 3.004e-05 0.00565 0.0003874 0.001628 0.004604 0.005706 9.394e-06 0.5348 1.191e-05 0.4667 0.03238 0.06034 0.02683 0.005116 0.007248 0.002061 1.61e-05 0.5804 0.0002511 0.0002768 0.004702 0.000159 0.2419 0.5677 0.003555 6.977e-06 0.1104 0.0004373 0.0001228 0.3646 0.02017 0.00323 0.05282 0.007221 0.003838 0.3216 0.2514 0.0321 0.03802 0.01907 0.00888 0.003213 0.2028 0.008025 0.002235 7.95e-05 7.602e-05 0.01394 0.007185 0.002122 0.005165 0.001049 0.01111 1.381e-05 0.0007543 0.002998 0.0004698 0.01076 0.07347 0.5074 0.0005115 0.01451 2.388e-05 0.0001966 0.001266 2.929e-05 0.003705 0.4577 0.001221 3.172e-06 0.01876 2.557e-06 0.006108 0.03097 0.005189 0.5637 0.04691 0.00179 0.09033 0.01652 0.3119 0.003316 0.0006635 0.01211 0.06492 1.065e-05 0.0001033 0.5653 0.0004447 0.5714 0.002565 0.003646 0.01542 0.001588 0.00651 0.01508 0.03617 0.004436 6.439e-05 0.027 0.005475 0.002595 0.001869 0.0002874 0.003688 0.001782 8.974e-05 0.001422 0.0015 0.002762 0.03784 0.5767 0.03528 0.3922 0.554 5.026e-06 0.00113 0.001112 0.001228 0.00812 0.6203 0.004674 0.04123 0.005235 0.4312 0.3701 0.6344 8.736e-05 0.05668 0.0004521 0.002569 0.001276 0.002145 0.08492 0.001406 0.003462 0.007579 2.24e-05 0.0009215 0.08347 0.003195 0.0002216 0.0002228 0.5833 0.5639 0.202 0.0008625 0.0006462 0.002304 0.02017 0.0009115 0.0003716 0.0001205 0.0002071 0.0001238 0.0002208 0.0009708 0.01799 0.3777 0.5783 0.0003023 0.3237 7.157e-05 8.383e-05 0.002379 0.0003775 0.01565 0.0001592 0.5461 0.5832 4.554e-05 0.004453 0.0003954 4.903e-05 0.5111 0.003398 0.002468 0.0001207 0.05296 0.0003665 0.003001 0.4461 0.005116 0.001711 0.006421 0.01001 1.358e-05 0.0001973 1.043e-05 0.0006641 0.003766 0.3793 0.00188 8.519e-05 0.0004412 0.002259 0.08775 0.02285 0.3286 0.002174 0.0009211 7.7e-05 0.152 0.0002875 0.02756 0.01082 0.006098 0.01488 0.0005533 0.0002781 0.01646 0.0003521 0.0001038 4.895e-05 7.092e-08 0.00468 0.0002244 0.5503 0.4153 0.3728 2.7e-05 8.795e-06 0.0001063 0.007806 0.02502 0.005962 0.5192 1.471e-05 0.0001052 0.01023 0.002412 0.001856 0.000248 0.004464 7.091e-06 0.001121 1.541e-05 0.0001585 0.007722 0.009576 0.0002086 0.06721 0.002202 0.382 9.163e-06 0.00294 0.003502 0.005523 0.4576 1.684e-05 0.02585 0.003045 0.0005961 0.0012 0.01021 5.731e-05 0.0003544 0.01031 0.0136 0.0007867 0.001104 0.6546 0.5416 0.000601 1.154e-05 0.002005 0.01201 1.257e-05 0.5698 0.0003193 0.007199 0.5986 6.426e-05 0.006823 0.3043 0.000777 0.02444 0.02099 0.1517 1.84e-05 0.04688 0.0001433 0.002934 0.02878 0.012 0.5156 0.0002706 0.002593 0.0005803 0.5691 0.04884 6.872e-05 0.5695 0.02589 0.005107 0.001413 0.586 0.1828 0.5862 0.0001357 0.02937 0.09483 0.01308 5.867e-05 0.000256 0.0004393 0.002443 0.01291 0.001967 0.0126 0.0007341 0.02677 0.0001174 0.0001443 0.001026 0.6441 0.0008415 0.001189 0.3623 1.217e-05 0.0005626 0.008631 0.0003452 0.0008468 0.008455 0.001415 0.5888 0.01803 0.01821 0.4099 0.02713 0.5699 0.5734 1.462e-05 0.2674 0.002021 0.002316 0.5176 0.0001084 0.001835 0.56 0.006985 0.001389 0.001158 0.0005551 0.02614 0.5533 0.001999 0.0001373 4.672e-05 1.294e-05 0.000251 3.408e-05 0.006161 1.908e-05 0.2848 1.447e-05 0.003846 0.009819 0.007537 0.002159 0.0007967 0.001304 0.001311 0.0003971 0.003989 0.004763 0.0008587 0.003316 1.64e-05 0.0007214 0.004559 0.0001865 0.1507 0.0003314 0.0001019 0.641 4.144e-05 0.001999 0.4459 0.006924 0.5705 0.001386 0.009758 0.05613 0.5276 1.388e-06 0.006136 0.5722 0.02629 0.00415 0.000337 0.1362 0.001598 1.339e-05 8.671e-05 1.266e-05 0.01188 0.5636 0.4685 0.149 0.001848 0.0001227 0.004997 6.733e-05 0.03974 0.000541 0.002687 0.5113 0.002776 0.0006334 0.0001586 0.01723 0.5757 0.02133 0.03274 0.0003284 0.0058 0.4205 0.01769 0.0001195 0.07842 0.001805 0.008181 0.004989 0.0006876 0.04764 0.3895 0.05878 0.05453 0.000544 0.5641 0.3717 0.01471 0.003087 0.0005055 7.669e-06 0.09655 2.024e-05 0.01219 0.0003306 0.001856 0.0005982 0.0005891 0.009113 0.0003481 0.0002168 0.02564 0.01492 0.01042 0.003583 5.374e-05 0.000474 4.212e-05 0.5629 0.002809 0.4918 0.01 0.002024 0.002544 0.0006806 0.0006793 0.5522 0.01257 0.04967 0.0005004 0.00229 0.006626 0.001324 0.6183 5.366e-05 0.0001866 0.003028 0.001049 0.002427 0.5729 0.5781 0.002309 0.5609 6.108e-05 0.03804 0.0003095 0.0002911 0.006254 1.025e-05 0.5174 0.5652 1.597e-05 0.6118 0.0002208 0.00305 0.001665 0.000206 6.711e-05 0.03448 0.0006873 0.003334 3.852e-05 0.002201 0.001635 0.01459 6.611e-05 0.3041 0.003836 0.003899 0.5764 6.649e-05 6.62e-05 0.01618 0.0005217 0.001468 0.1324 0.004968 0.004175 0.0004789 0.002679 0.05089 0.03223 0.0004729 0.3406 0.02467 0.0002148 0.5428 0.006553 8.477e-06 0.0005612 0.001349 0.016 0.004481 0.01994 0.004442 0.0001243 0.4571 0.0007498 0.1882 0.02927 0.004238 0.001675 0.5592 0.0002719 0.07825 0.0001978 0.003504 0.002975 0.0003434 0.001381 0.0183 0.003059 0.006947 0.0004329 0.4551 8.004e-06 3.624e-05 0.000256 4.495e-08 0.0002238 0.003934 0.00035 3.734e-06 0.004383 0.001279 0.01205 0.6116 0.001066 0.0159 0.01167 0.005088 0.435 7.681e-05 0.000297 0.3684 0.0004504 0.002689 0.009076 0.04231 0.01303 0.00857 0.00753 9.034e-05 0.006473 0.3825 0.008293 0.005522 0.000198 0.0008506 0.01601 0.002964 0.04057 9.517e-06 0.0001022 0.2926 8.202e-06 0.01155 0.00287 9.87e-05 0.4707 0.002853 3.694e-06 0.01956 0.003926 0.01145 0.006525 0.0117 0.0001123 0.5834 0.004965 0.001626 0.001122 0.003047 0.001431 0.00215 0.2917 0.5602 0.01565 0.0002957 0.01564 0.3545 0.002064 6.784e-05 0.292 5.817e-05 0.001993 0.571 0.000941 0.6506 0.1724 0.002148 0.1202 0.0008695 0.4824 0.0006079 0.001079 0.004117 0.001486 0.01896 0.01317 0.001809 2.027e-05 0.001282 0.3154 0.3151 0.569 0.009462 0.00712 0.08016 0.02248 1.5e-05 0.003232 0.03273 0.07742 0.006476 0.003745 0.006036 0.002396 0.0002633 0.3147 0.004258 2.023e-05 0.003587 0.01346 0.1603 0.001386 0.02964 0.003525 0.04385 7.34e-06 0.0001138 0.007533 0.6099 0.01324 0.006825 0.001791 0.00233 0.002336 0.008336 0.0001153 0.003356 0.001893 0.002816 0.009958 0.002157 0.5719 1.631e-05 1.811e-05 0.3438 0.5762 0.01865 0.5191 0.004831 0.00657 0.0007874 0.003774 0.02487 0.6502 0.4109 4.002e-05 0.004139 0.008685 0.56 0.5761 0.002243 0.002099 1.897e-05 0.04119 0.02988 0.007782 0.09391 1.736e-05 0.04616 0.001115 0.1097 9.613e-05 0.0001879 0.02004 0.3351 0.0005364 0.001528 0.3769 0.002245 0.0004259 1.054e-05 0.006047 0.02429 0.003657 0.006061 0.01292 0.006615 0.0001561 0.573 0.0003798 0.005602 2.214e-05 0.001333 0.00446 0.0001174 0.0005865 3.636e-06 4.622e-05 6.385e-05 0.4636 1.879e-05 0.5762 0.0015 0.009213 0.0005442 1.596e-05 0.006006 2.088e-05 0.002591 0.001943 0.005612 0.0009995 2.497e-06 3.258e-05 0.005807 0.01328 0.0002111 0.01132 0.0007901 0.0002697 0.000209 0.001278 0.4548 0.0009682 2.995e-05 0.002108 0.0005332 0.004384 0.3835 0.5556 0.008372 0.001628 0.007926 0.1142 0.0005087 0.009744 0.02257 0.005904 0.03368 0.00129 0.001186 0.0003008 0.0007178 0.002143 0.03862 0.002715 0.004917 0.04249 0.004702 0.009008 3.764e-05 3.227e-05 0.5355 0.004007 0.001794 0.004694 0.001496 4.232e-05 0.03365 0.0001532 0.002534 0.003605 0.003757 0.009841 0.004782 0.001113 0.0003287 0.5808 0.6142 0.01157 0.03772 0.009237 0.005174 3.26e-05 0.4747 0.4566 0.002139 0.0003639 0.0002264 0.000329 0.0004821 1.582e-05 2.377e-05 0.002044 0.01838 0.0002442 0.0009794 0.002034 0.001121 0.5772 0.001402 0.007613 0.0002643 0.008409 0.03231 0.0003486 0.004377 0.4415 1.575e-05 0.2186 0.0009441 0.005041 0.01079 0.0004816 4.4e-05 0.002192 0.477 0.001735 0.5306 0.0001079 0.002064 0.01267 0.2429 0.0009308 0.5855 0.005025 0.003134 0.465 0.0008513 0.00511 0.04212 0.001861 0.0001753 5.249e-05 0.008232 1.012e-05 0.001492 0.002314 0.004646 0.00114 0.002636 0.5711 0.3194 0.5565 0.5795 0.5777 0.0132 0.05693 0.008492 0.0001178 0.0001344 0.003383 0.3803 0.002377 0.497 0.02154 0.004911 0.01156 0.5978 0.5026 0.0007941 0.0009646 0.001842 0.01494 0.0002953 0.0008796 0.001743 9.769e-05 2.282e-05 0.001249 0.001173 0.003337 0.001378 0.1201 0.005034 0.427 2.493e-05 0.5141 0.001775 0.002516 0.001317 0.002221 0.0006924 1.923e-05 0.0002666 0.5307 0.4985 0.03019 0.0006866 0.002697 7.78e-05 0.4017 1.262e-05 0.004952 0.003502 0.4851 0.0003907 2.607e-05 0.004558 0.0776 0.001106 0.006341 0.01594 6.392e-05 1.067e-05 0.000354 1.249e-05 0.0002089 0.2826 0.004761 0.0005536 0.001471 0.001417 0.0002187 0.006531 0.006665 0.001297 0.0004951 0.00207 0.0002815 0.002622 0.0001188 0.0008405 0.0009231 0.06974 0.00156 0.001312 0.0009276 0.2921 0.0015 0.4312 4.285e-05 0.004089 0.0009519 0.166 0.007035 0.5666 0.004906 0.00724 6.307e-05 0.003751 0.07659 0.003821 0.4542 0.0008786 0.003041 0.003033 0.00125 0.0005743 0.009807 0.0005185 0.005506 0.001093 0.6468 0.01094 0.0002261 0.01435 0.01394 0.03903 5.621e-05 0.01423 0.009371 0.0001159 0.0005034 0.001064 0.00272 0.07043 0.2871 0.007938 0.0006657 0.001457 0.004538 4.433e-05 0.002217 0.001376 0.301 0.002585 0.01109 0.006728 0.005409 0.003259 0.003972 0.0009062 0.004375 5.2e-05 0.01494 0.004696 0.01935 0.0007277 0.002488 3.223e-05 0.01057 0.0001285 0.003178 0.03486 0.003241 0.0006362 0.002791 0.4462 0.008018 0.2755 0.06632 0.004209 0.001349 0.00367 0.001003 1.554e-05 0.4951 8.373e-05 0.6027 0.003902 0.0009659 0.4603 0.003103 0.003668 0.01649 0.003738 0.4107 7.766e-06 0.004473 0.01107 0.0004437 0.007326 0.009082 0.004844 0.0003026 0.5652 0.4254 0.5743 0.0005142 0.005367 0.5665 0.002051 0.003996 0.07219 0.09106 0.003312 0.001476 0.003387 0.0001764 0.0009955 0.04036 0.01026 0.0002853 0.0008026 8.17e-05 0.1091 0.00304 0.001168 0.002335 0.0003767 0.003039 0.0002101 0.004807 0.00121 0.03432 0.006736 0.003749 0.008093 0.01576 0.002324 0.001015 0.5638 0.001895 0.007101 0.004198 0.3668 0.001384 0.005924 0.3271 0.3271 0.2382 8.335e-05 0.6467 0.006543 0.07788 0.003481 0.05453 0.5447 0.04567 6.818e-05 0.002366 0.02453 9.068e-06 0.0007969 0.001953 5.208e-05 4.016e-06 4.276e-05 0.002516 0.001559 1.361e-05 0.001886 0.04646 0.6622 0.0005533 0.005762 0.002265 0.001589 0.06944 0.0006456 0.001139 0.002922 0.5573 0.0007552 0.00897 0.05377 0.0002139 9.478e-05 0.0007998 0.5724 0.03079 0.01129 0.001192 0.001401 0.0004916 0.001423 0.003475 0.02166 0.1269 0.6098 0.001061 0.002904 0.002169 0.003531 9.353e-06 0.001097 0.001376 7.986e-05 0.0001163 0.001224 0.0002732 0.0005043 0.5718 0.006415 0.0003427 0.003014 0.007256 0.006078 0.007939 0.2735 0.0002033 0.001132 0.1287 0.009655 0.002375 2.202e-05 0.5091 0.008457 1.318e-05 0.6381 1.574e-05 0.001513 0.007681 0.00282 0.0001087 0.000354 0.001936 0.002331 0.0008766 0.0007606 0.07248 0.002658 0.004008 8.605e-06 0.01185 0.2707 0.002134 0.000524 0.002639 0.003341 0.0008726 0.3379 0.000115 0.0004524 0.003079 0.03179 0.0009659 0.5575 0.009769 0.003943 1.272e-05 0.001078 0.009346 0.009416 0.01144 0.4557 8.505e-05 0.02021 0.008602 0.003005 0.004261 0.0107 0.0002199 0.0004008 3.782e-05 0.118 0.009927 0.002345 6.762e-05 0.0001269 0.002214 0.002615 0.05639 6.621e-05 0.005849 0.3418 0.00508 0.02323 0.000432 8.617e-06 0.0004718 0.01534 0.0001153 0.0004493 0.00113 0.002586 0.1002 0.02069 0.01694 0.006162 0.5409 0.5952 0.0007321 0.008285 0.0004083 0.002123 0.0001471 0.008813 0.08922 0.001329 0.002722 0.09202 0.01337 0.00338 0.0002559 0.0009946 1.43e-05 0.01428 0.003141 0.01371 0.0001332 0.002042 0.00371 0.002002 2.146e-05 0.006872 0.004531 0.004224 0.05437 0.008286 1.796e-05 8.782e-06 0.0003916 0.02319 0.000706 0.0004975 3.624e-05 0.5669 0.05373 0.004699 0.01081 0.005562 0.00365 0.001253 0.003917 0.002482 0.002475 0.2847 2.051e-05 0.0009638 0.003037 0.06207 0.006635 0.001045 0.3853 0.02483 0.006539 0.001032 0.2833 0.002492 0.001915 0.4156 0.0005282 0.009465 0.007802 0.001836 0.001631 6.564e-05 4.082e-07 0.01885 0.01535 0.0008237 0.001328 0.01929 0.00123 0.00126 0.5723 0.08977 0.02049 3.485e-05 0.001826 0.4187 0.001423 0.001844 0.0003746 0.0001951 0.0001429 0.001743 0.01358 0.006868 0.0002876 0.009517 5.965e-05 0.5781 0.0002166 4.544e-05 0.0005819 0.002712 0.0002315 0.005165 0.001158 0.003141 8.429e-05 0.001105 0.03974 0.01403 0.0012 0.0006264 3.316e-05 0.5691 0.00223 0.002026 0.01244 0.1321 0.02292 0.006126 0.001244 0.003206 0.01706 0.0006964 0.003437 0.0007835 1.576e-05 0.01914 0.001552 0.00283 0.07807 0.0008062 0.3691 0.0002785 3.784e-05 0.001015 0.00656 0.0001281 0.0006015 1.113e-05 0.0002119 0.6381 0.006885 1.809e-06 0.03405 0.002701 0.6037 2.529e-05 0.0002243 0.07572 0.05343 0.01567 0.5719 0.0006762 5.237e-06 0.01959 0.3649 0.0002226 0.001453 0.000114 0.0006572 0.000128 0.004381 0.004357 2.098e-05 1.319e-05 0.005217 0.00685 0.0004916 0.4704 0.5642 0.006419 4.315e-05 0.001167 0.2543 0.0006525 0.002586 0.001355 0.004342 0.003104 0.002298 1.284e-05 0.001839 0.01257 0.02849 0.03841 0.001526 0.003137 0.02702 0.001934 0.06585 0.06974 9.414e-06 0.0001122 0.01295 0.002963 0.0003038 0.01303 0.03516 0.002578 0.0003087 0.007651 0.002733 0.005111 0.00138 0.00109 0.1619 0.5607 0.1244 0.001375 8.236e-05 0.001403 0.3595 0.0008418 0.006437 0.000171 0.04528 0.002142 0.1802 0.0008513 0.1007 0.006614 0.006959 0.02284 0.0002038 0.0006905 0.5156 0.0002066 0.5794 0.3773 0.0003015 0.5728 0.01424 2.156e-05 0.002494 0.5519 2.365e-05 8.314e-05 0.001263 0.03998 0.02729 0.01437 4.302e-05 0.003245 0.02061 0.6132 0.6017 0.118 0.01756 0.002422 0.3508 0.02197 0.0003768 0.0002089 0.001334 0.0002322 0.5845 0.001403 0.6029 1.035e-06 0.003559 0.01557 0.001893 1.88e-05 0.02645 0.09969 0.007381 0.0001251 0.007048 0.008604 0.01726 0.0001034 0.003172 0.2999 0.0001267 1.915e-05 0.241 0.001785 0.572 0.0007019 1.648e-05 0.007871 1.296e-05 0.0009474 0.6155 6.612e-06 0.4708 0.0001233 0.01206 0.008933 1.522e-05 0.5951 0.003784 7.125e-05 4.908e-05 0.004826 0.003539 0.001535 0.03011 0.002178 9.342e-05 0.008268 0.0002514 0.3753 0.002462 0.001916 0.5617 0.00281 0.0006328 0.009417 0.0003669 0.01113 0.215 0.001687 2.25e-05 8.254e-06 0.01227 0.4003 0.0007734 0.0008419 0.2193 0.2144 0.0007883 0.006401 0.004721 0.0001444 0.07034 0.001529 0.0008758 0.0003444 0.0006435 0.01155 0.002211 4.188e-05 0.001727 0.0001055 0.01946 0.5628 0.001255 0.01143 0.008417 0.5541 0.0009032 0.003105 0.0002853 0.05644 7.445e-05 0.002193 0.005533 0.04486 0.007031 0.007635 0.02545 0.0001201 4.824e-07 0.0004387 0.5628 0.0006781 0.0002912 0.0007161 4.088e-05 0.6175 0.002124 0.001796 0.008862 0.0135 5.785e-05 0.001143 0.5852 0.04114 7.054e-05 5.232e-06 0.002693 0.05261 0.01179 0.1702 0.001693 0.0004151 0.00191 0.0005711 1.467e-05 0.003004 0.00101 0.006717 0.02487 0.0151 0.6138 0.002946 0.0003712 6.826e-05 0.008295 0.07522 0.0001752 0.002997 0.002992 0.113 0.003546 1.933e-05 8.96e-06 0.5728 1.673e-05 0.1251 0.002694 0.0003189 0.001508 0.0006458 0.006703 0.003741 0.03535 0.007181 0.004936 0.005387 0.002907 0.01601 0.4184 0.00295 8.129e-05 0.1076 0.5703 0.0003651 0.01225 0.6392 3.192e-05 0.0007174 0.003312 0.06202 0.5116 9.119e-05 0.008346 0.0007865 0.0009725 0.0006352 0.5221 0.04489 0.3754 0.002609 1.294e-05 0.01172 0.0324 0.4254 0.2284 0.01241 0.006213 0.3035 0.005792 0.02947 0.005227 0.003432 8.466e-05 0.06201 0.0001107 0.4352 0.0206 0.02351 0.001136 0.005768 0.004495 0.0003137 0.0009398 0.0003113 3.829e-07 0.08817 0.001042 0.0003574 0.001854 4.816e-05 0.000573 0.0008634 0.002187 0.08875 0.565 0.5879 0.003848 0.2289 0.5651 0.00754 0.0003226 0.02554 6.96e-05 1.039e-05 0.0005464 0.000176 0.0004119 0.5191 0.02435 1.928e-05 0.4636 0.001519 0.008078 0.0018 0.409 0.002622 9.115e-06 0.007597 0.0173 0.004274 2.528e-05 0.05894 0.003267 0.002701 0.001572 0.5729 0.000767 3.609e-05 0.000955 0.002561 4.317e-05 0.002295 0.01194 0.0001769 0.5781 0.4283 0.006793 0.005951 0.0009486 0.002605 0.1474 8.102e-05 0.01269 5.005e-05 0.002268 2.795e-05 3.837e-05 0.0002099 0.03888 0.0008876 0.5039 0.007814 0.002474 0.001189 0.001539 0.0191 0.5197 0.0005633 0.002507 2.764e-05 0.008677 0.0005773 0.6267 0.0004969 0.00957 0.000126 4.402e-05 0.002096 0.01076 0.001018 0.004636 0.006902 0.01194 5.319e-06 0.0006554 6.969e-05 0.003017 0.004878 0.536 0.004451 0.002582 0.1743 0.0009682 0.008884 0.3182 0.001159 0.001206 0.5794 0.0174 0.004792 0.02107 0.009282 1.834e-05 0.0011 0.01039 0.004717 0.5811 0.002515 7.383e-06 0.5114 0.001656 0.002787 0.01672 0.0009709 0.005445 0.01304 5.711e-06 0.0211 0.009171 0.6673 0.01995 0.525 9.579e-05 0.006199 0.006111 0.5554 1.934e-05 0.5903 0.001809 0.4114 0.001113 0.3173 0.3769 0.00209 0.575 0.583 0.005433 0.0821 8.822e-06 0.0005674 0.0003131 0.001814 0.00811 0.002205 1.295e-05 0.006693 9.4e-06 0.0007477 0.3449 0.0004869 0.0005607 0.562 0.0102 0.3701 0.00147 0.03443 0.003848 0.0001165 0.1164 0.0005843 4.537e-05 2.588e-05 0.008209 0.0006738 0.2429 0.001512 0.01324 0.00657 9.437e-05 0.2646 4.913e-06 0.009966 0.0004947 0.008508 0.003954 0.001159 1.879e-05 0.0009986 0.01224 7.238e-05 0.2618 0.1698 0.315 0.004829 0.0009554 0.007225 0.0006771 0.376 0.06678 1.608e-05 0.5489 0.02745 0.07844 5.395e-05 0.00431 0.02428 0.0001242 0.1497 0.001574 0.2223 0.05157 0.001033 0.002027 0.00658 0.0002781 0.001243 0.003958 0.003685 0.03249 3.325e-05 9.071e-05 0.006296 0.002058 0.0003546 0.004809 0.003553 0.04272 0.002374 0.005415 0.5476 0.4724 0.0006947 0.1295 0.02652 0.002803 0.001113 2.8e-05 0.6112 0.001972 0.0095 0.003792 0.003085 3.641e-05 0.0004428 0.04189 0.003564 0.503 0.005016 0.001713 0.0003019 0.002378 0.0001941 0.007118 0.0007669 0.0009326 0.06349 0.6385 0.003361 0.5171 0.01071 0.01056 0.002103 0.03124 0.0001181 0.001668 0.01042 0.001788 1.478e-05 0.1249 1.981e-05 0.001025 0.3457 0.00666 0.0001667 3.237e-05 0.001931 0.005823 5.901e-05 0.5422 0.002477 0.0169 0.06152 0.008033 1.937e-05 0.6374 0.3759 0.002985 0.01076 0.003793 0.4127 0.003325 0.1719 0.007316 0.007222 0.006875 0.08187 0.0001141 0.0001005 0.02267 0.2348 0.004144 0.00425 0.002975 0.0001823 0.000383 0.0006721 0.001589 1.333e-05 1.472e-05 0.5724 0.004276 0.02222 0.01106 0.567 0.1185 5.785e-05 0.0002539 0.002545 0.3705 0.0004514 0.4611 0.00264 0.0001115 0.02216 0.5627 2.299e-05 0.001402 0.001602 0.2887 0.0001237 5.764e-06 0.009905 0.0005262 0.001209 0.0695 0.02293 0.00286 0.002699 0.006749 0.0001075 0.004738 0.007223 0.006523 0.004532 6.182e-06 0.573 0.004719 0.007733 0.005572 0.006041 0.02481 0.002624 0.0003856 0.01338 0.0006825 0.007943 0.01335 0.0008444 0.002355 0.002567 0.3043 0.00259 0.01978 5.744e-05 0.302 0.002253 0.0009103 0.01524 0.0008019 0.003204 0.3906 0.002111 0.03037 0.01866 0.02474 0.5698 0.001101 0.003357 0.003954 0.0007004 0.001722 0.0002246 1.717e-05 0.004344 0.0009771 0.002278 4.714e-05 0.001601 1.298e-07 0.01187 0.01027 0.003025 0.001389 0.000319 0.01143 0.0004138 0.01465 0.5733 0.1144 0.006736 0.07797 0.009414 0.0105 0.003337 0.0117 0.007382 1.127e-06 1.52e-05 5.552e-05 0.0002794 0.001234 0.001089 0.002751 0.0004116 0.005571 5.889e-06 0.003543 0.009443 0.0005059 0.003444 4.266e-05 0.3716 0.001709 0.02413 7.377e-05 0.00514 0.0546 0.006587 0.0005825 0.005207 0.0001412 0.001093 0.001779 0.000111 0.305 0.3061 4.901e-05 0.5657 0.4681 0.4853 0.0392 0.002797 0.006741 1.08e-05 0.007804 0.001639 0.00016 0.009685 0.02368 0.0009826 1.62e-05 4.574e-05 0.009569 0.07885 0.04483 0.06262 0.6213 2.446e-05 0.003819 2.117e-05 0.01713 7.069e-05 0.002322 0.00771 0.5598 0.008289 0.5648 0.001208 9.785e-05 0.007058 0.0004696 0.3288 0.002401 0.008498 0.005962 1.679e-05 0.008768 0.5738 2.9e-05 0.002162 0.3231 0.0002379 0.0179 0.004226 0.01121 0.0002535 0.007745 0.006736 0.001839 0.0007365 0.5447 0.0004561 0.0003195 0.001264 0.569 6.777e-05 0.0004098 1.848e-05 0.006422 0.02997 0.483 0.005455 0.0004286 7.414e-05 0.009471 0.5502 0.5377 0.0005178 0.0001042 0.008753 0.008512 0.01317 0.5755 0.0007162 0.0003046 3.307e-05 0.001561 0.03933 0.04662 0.2866 0.004195 0.3247 0.004456 0.03548 0.002306 0.005165 0.0001274 0.0001353 0.004348 0.008345 0.000536 0.001911 3.404e-06 0.01561 0.007093 0.004884 0.0001142 0.001192 0.007893 0.003252 0.3872 0.001914 0.001222 0.0001019 0.3423 0.0001153 0.004016 0.5901 0.001111 0.01391 0.003093 0.0001255 0.0178 7.158e-05 0.004964 0.02109 0.01149 0.001164 0.00362 0.001397 0.4286 0.0001253 0.0001122 9.636e-06 0.0002627 0.0001152 0.003838 0.1364 0.5269 0.5851 0.0008714 0.0001377 0.001345 0.4508 0.006967 2.789e-05 6.146e-05 0.008728 0.001078 0.002035 0.5366 0.001715 0.00102 0.00228 0.02386 0.4494 0.001995 0.001193 0.003716 0.006437 1.695e-05 0.0003645 0.01359 0.0004359 0.4971 0.4971 0.0003546 0.003387 0.001085 0.002416 0.5797 4.453e-05 0.00101 0.4456 5.556e-05 0.09962 2.096e-05 0.1416 0.0001543 0.02037 0.002518 0.001229 0.02921 0.0173 0.5661 0.0001076 0.009357 0.006333 0.004691 0.001649 0.0005586 0.5588 0.01661 0.3201 0.0001028 0.009197 0.0002772 0.00281 0.1201 8.912e-05 0.002245 0.002456 0.0003 0.0855 0.0005995 0.002722 0.4618 0.00439 0.0007317 0.001764 0.0005944 0.008577 0.0001216 0.1228 0.002879 0.0002365 0.01436 0.001322 0.002698 0.09596 0.0007482 0.5743 0.0152 0.07286 0.5025 0.0528 0.03604 0.004853 0.004104 0.007925 0.2656 9.955e-05 0.002707 0.3451 3.953e-05 0.0009924 1.461e-05 0.001417 0.002894 0.0001207 0.0002104 1.639e-06 0.08139 0.1984 0.00483 0.0002844 0.6136 0.01801 0.009582 0.002618 0.001972 0.004645 0.001753 0.0008661 0.02889 0.00252 0.5702 0.0006048 0.01175 0.002885 0.2745 0.009224 0.07138 0.05203 0.009141 0.000368 0.00289 0.001276 0.001302 0.0002099 0.006972 0.0006677 0.0006713 0.0004277 0.3473 0.2272 0.003036 0.003209 0.3177 0.002486 0.005681 0.003283 0.005192 8.339e-05 0.01122 0.0003214 0.003423 0.03141 0.001422 0.5658 0.0001083 0.0003414 0.6297 0.005634 0.5586 0.002999 0.00017 0.005409 4.92e-05 0.4075 0.0008766 0.00088 0.2952 0.295 0.0005654 0.009078 0.0001369 0.003616 0.004297 0.009585 1.167e-05 0.008528 0.645 0.0003613 0.002895 0.0005113 0.002106 0.002096 1.306e-05 0.0007337 3.722e-06 0.0001419 0.006081 0.002016 7.312e-05 0.02773 9.217e-05 0.002382 4.509e-05 0.01673 0.002041 0.004194 0.004089 4.527e-05 0.03073 0.005019 0.5681 0.553 0.0005421 0.004103 0.009296 5.254e-05 2.031e-05 0.0009276 0.004909 0.003631 0.004003 0.001681 0.01004 0.5688 0.3856 0.0004211 2.279e-05 0.02105 0.004972 0.1774 8.156e-05 0.002423 0.002622 0.003176 0.003785 0.01288 0.04738 0.0008211 0.2256 0.0002105 0.004152 0.0008198 0.0005739 2.461e-05 0.004478 0.02314 0.0003278 0.1521 0.6142 0.002432 0.4163 0.002824 0.005876 0.005198 0.001268 0.001314 0.1359 0.3571 0.0001118 9.623e-05 0.001583 0.00521 0.006054 0.0007543 0.001837 0.2725 0.2717 0.0001605 0.002304 0.05643 0.0001543 0.5229 0.009784 0.002629 0.264 0.001676 0.5433 0.0008918 0.0003746 0.003125 0.027 6.274e-05 0.004867 0.08544 0.01831 0.0001133 0.5438 0.5431 0.003684 0.5716 0.003115 0.002155 0.00253 0.005213 0.0003991 0.0013 0.0005146 1.375e-05 0.000183 0.5048 0.0001622 0.4939 0.08394 0.578 0.001328 0.0479 0.0003149 0.009736 0.1132 0.04163 0.0003677 0.0316 0.004245 0.0185 0.0333 0.02051 0.2052 0.0006537 0.009717 0.5422 0.002056 9.952e-06 0.594 0.01226 0.003176 0.006316 0.0005545 0.004284 0.003802 0.0313 0.001678 0.0007722 0.01022 0.000989 0.04643 0.0001135 0.002338 0.005551 0.00348 3.239e-05 0.09902 0.00844 0.0004882 0.576 0.003934 0.02039 0.001572 6.147e-05 0.5129 0.0004088 0.001119 0.5733 1.145e-05 0.01047 0.002487 0.00228 0.006539 0.03548 0.4378 0.07452 0.4711 5.276e-05 0.3513 0.004276 0.001293 0.0003024 0.000201 0.5717 0.00376 0.01969 0.0001052 0.0003512 0.004994 0.006346 0.001157 3.595e-05 0.03042 5.601e-06 0.001672 0.5806 8.05e-06 0.01304 1.545e-05 0.01755 0.4303 0.0005533 0.02487 0.001117 0.489 0.01111 0.0009756 0.002589 0.0007544 0.0008803 0.0008037 0.08929 0.003219 0.5718 0.001166 0.009805 0.01936 0.002269 0.007933 0.03101 0.0005797 0.001156 0.0004798 0.4623 2.863e-05 0.01957 0.001964 0.009776 0.01977 0.3334 0.006818 0.001176 0.02454 0.003287 0.007105 0.3932 0.01443 7.289e-05 0.003905 0.01013 0.3925 0.2647 0.0003502 0.0004817 0.01009 4.151e-06 0.4181 0.1656 0.004264 0.2699 0.0001096 0.0001549 0.1081 0.000904 0.5632 0.0003299 0.005823 6.051e-05 0.006497 0.04678 0.001238 0.5246 0.4811 0.01567 0.1054 0.0002413 0.004315 0.02138 0.1271 0.008648 0.47 0.008866 0.00957 0.004468 0.001239 0.001245 5.95e-05 0.0009301 0.004061 0.4001 0.003792 0.01605 1.374e-05 0.0002474 0.3176 9.635e-05 0.006628 0.0103 0.000377 0.001984 0.2009 0.0001601 0.002068 0.5602 0.001342 0.02247 0.0002897 0.01736 0.0007325 0.001314 0.0023 7.187e-05 0.001243 0.0004905 0.001063 0.0001327 0.01492 0.0006685 0.001311 0.000305 0.0002642 1.723e-05 0.0005668 0.575 0.008643 0.001006 0.002107 0.002134 0.001757 0.0001892 0.5667 0.0008486 0.0007407 0.000588 0.3958 0.0006252 0.004098 0.005057 0.003836 7.228e-05 0.01902 0.0005418 1.523e-05 0.2611 0.01358 0.0007873 0.03233 0.002823 0.5562 0.005748 0.0004035 0.5688 0.005946 2.064e-05 0.0001481 0.009191 0.0001722 0.004754 6.951e-06 0.000447 0.563 0.0005935 0.0005433 0.005501 0.00223 0.01269 0.0005679 6.378e-05 0.008574 0.278 0.002867 0.04711 0.000196 0.0001648 2.841e-05 0.001915 0.01023 2.156e-05 0.2031 0.5655 0.03912 0.004762 0.5963 0.5666 0.002272 3.566e-05 0.01674 0.02328 0.3636 0.006281 0.005357 0.0004724 0.001229 0.5666 0.002058 0.00501 0.5702 0.2268 0.01885 0.0001254 0.002687 0.4256 0.00709 0.006032 0.002855 0.575 0.001456 0.002282 0.002154 0.002257 0.07339 6.558e-05 0.487 0.02402 0.4072 0.2777 0.0007443 0.002485 4.454e-05 0.1446 0.4227 0.2163 0.0001847 0.01588 0.0004767 0.02132 8.002e-05 0.001112 0.006517 0.0001203 0.09205 4.914e-05 1.86e-05 1.109e-05 0.002153 2.923e-05 0.6156 0.2952 0.006637 2.481e-05 0.4211 0.001129 0.005322 0.003296 0.000756 7.108e-05 0.0007017 2.906e-05 0.5711 0.2411 4.2e-05 0.1275 0.001351 0.01653 0.03221 0.0001222 0.005457 0.001648 0.3247 6.572e-05 0.0001886 0.002343 0.003699 0.001132 0.008271 0.0002023 0.0003512 0.00281 0.2156 0.00271 0.581 0.02298 0.01079 0.392 0.004839 0.005327 1.645e-05 0.0006947 0.004895 7.734e-05 0.04529 0.0004815 3.948e-05 0.5675 0.01332 0.0001975 0.0003464 0.3213 0.611 0.3619 0.536 0.005183 0.006972 0.00171 0.005466 0.003289 0.478 0.6006 1.516e-05 7.246e-05 0.0005483 0.01356 0.001091 0.007093 1.934e-05 0.001525 0.007159 0.009464 0.5612 0.004484 0.001036 0.0002309 0.001039 9.526e-06 2.344e-05 0.003792 0.0001122 0.005202 0.007604 0.0001224 0.0005101 0.03534 0.02145 0.002044 0.000912 0.5636 0.004009 0.01024 0.006355 4.212e-06 0.01144 0.03227 0.0003018 1.57e-05 0.5824 0.001784 0.0009674 8.857e-05 0.004049 0.009832 0.000726 0.001762 0.1984 0.00907 0.1601 0.6043 0.007119 0.02048 0.5729 0.3941 0.3754 0.01984 0.0005979 0.006695 0.000376 0.02008 0.0008741 0.0002316 0.003396 0.03437 0.0004744 0.003903 0.005327 0.0002002 0.3916 0.001019 0.006004 0.6246 0.00578 0.0002925 0.001925 0.002489 0.5611 9.831e-05 0.0001584 0.001624 7.031e-05 0.002435 4.557e-05 0.003774 0.01227 0.008242 0.004452 0.01478 0.0008907 0.006941 0.005925 0.5562 0.5708 0.001346 0.0006509 0.003979 0.0005956 0.007883 0.003406 0.01571 1.521e-05 0.001112 0.000182 0.5107 6.602e-05 0.0001424 0.003817 4.138e-05 0.001483 0.002153 0.003068 0.01439 0.005517 9.435e-05 0.0003298 0.0351 0.001455 0.00252 0.01072 0.0001298 0.003319 0.0001511 0.01077 0.009189 0.004094 0.008715 0.0002554 0.01024 0.001333 0.006018 0.5474 1.739e-05 0.01313 3.931e-05 4.187e-05 0.3923 0.6284 8.594e-05 0.01538 0.0001698 7.188e-05 0.0006283 0.001384 0.000377 0.003842 8.209e-05 0.00598 0.0158 0.001322 0.01024 0.0003777 0.005946 0.01152 0.5677 0.002756 5.736e-06 0.0002708 0.08064 5.292e-06 6.538e-06 0.1443 0.007875 0.001073 0.5889 0.00718 0.4256 0.003433 1.799e-05 0.01412 0.5654 0.01609 0.1084 0.0001054 0.008054 0.0005666 0.0001898 0.3672 0.0005259 1.652e-05 0.0007054 0.002843 0.00257 0.02618 0.003138 0.0003935 0.03639 0.001756 0.01382 0.0008153 0.000861 1.575e-05 0.003256 0.009246 0.0001411 0.402 0.0001317 0.5469 0.0274 0.0009115 6.61e-05 0.001255 0.0003482 0.001689 0.009245 0.02008 0.01378 0.01051 0.001008 0.0009452 0.004515 0.4636 0.5456 0.01399 0.002294 0.05884 3.034e-05 0.001446 0.0001805 0.001504 0.002238 0.05702 0.0354 0.0004313 0.003016 6.576e-06 0.3588 0.001237 0.003106 0.5462 0.008384 0.00627 0.004919 3.614e-05 2.269e-05 0.004713 0.008511 0.4448 0.3515 0.002009 0.02301 0.003484 0.4205 0.07662 0.0004886 0.002599 0.00264 0.0002706 0.002175 0.00398 0.000528 0.03395 0.3668 0.006505 0.0006389 0.4359 0.115 9.487e-05 1.628e-05 0.001064 0.07034 0.01357 0.002066 0.02322 1.186e-05 0.004256 0.005688 0.4541 0.01908 3.686e-05 0.002584 0.0002166 0.003998 1.938e-05 0.009882 8.159e-05 0.0005312 0.01209 0.003269 0.5704 0.5778 0.001044 0.08827 3.486e-05 0.5703 0.0001004 7.858e-06 0.4639 0.000244 0.0026 0.008604 0.001064 0.052 0.003495 0.5475 0.04351 0.0001325 4.161e-05 0.005781 0.006042 0.002514 6.294e-06 0.009433 0.4863 0.004108 0.004874 0.001016 0.009709 0.002751 0.002312 0.001301 0.002342 9.241e-05 0.0004839 0.001461 0.009144 0.001248 6.262e-05 0.0002929 0.002513 0.003194 0.005032 0.001481 0.00397 0.00327 3.933e-05 0.001156 0.5768 0.01401 0.3414 0.3775 0.001428 8.634e-05 0.008953 0.0008011 0.2383 0.002021 0.0151 0.01146 0.0008732 0.0001185 0.3256 3.237e-06 1.663e-05 0.006689 0.0003742 0.003534 0.001895 0.002186 0.2506 0.01478 0.004599 0.5404 0.05303 0.0004383 0.3829 5.989e-05 0.5991 0.04828 0.0005551 0.001437 0.000608 0.002429 0.00663 0.0006924 0.02701 0.3953 0.001923 0.0001657 0.02396 0.001575 0.05459 9.338e-06 0.003595 1.967e-05 1.71e-05 0.6335 0.5817 0.001335 0.1393 0.01059 0.3804 0.03147 0.005892 0.001556 0.02142 0.003874 0.3232 0.001863 0.005516 0.0001357 0.04801 0.0002808 0.00615 0.2274 0.004573 0.01146 0.001589 0.01004 0.02203 0.003912 0.002101 0.0006598 0.003609 0.5712 0.01615 0.001731 0.5109 0.01628 0.002839 0.001401 0.006116 0.01452 0.0001678 2.457e-05 0.0001023 0.5714 0.5448 3.871e-06 0.004744 0.008514 0.003297 0.0008537 0.002377 0.0002849 0.001042 0.4913 0.0001092 0.4211 0.02361 0.001066 0.005485 0.001263 0.0002111 0.5784 0.00327 0.02798 0.0003808 0.001279 0.006638 7.072e-06 0.00332 0.0005138 3.757e-05 0.00385 0.5557 0.002115 1.174e-05 0.00041 0.001123 0.009104 1.728e-05 0.004938 0.0007099 0.5812 0.4901 0.001356 0.0003255 0.001165 0.00768 0.005937 0.0001816 0.007994 0.2623 0.001207 0.01048 0.003458 0.0009473 0.0005993 0.0001216 0.0002743 0.4972 0.001581 0.5695 0.06915 0.02499 0.0003368 0.1299 0.3989 0.06063 0.008123 0.5875 0.5228 0.0002685 0.009 0.0006138 0.0002192 0.001038 0.4819 0.0007886 0.001141 0.007493 0.07265 0.01488 0.02817 0.0103 1.997e-05 1.689e-05 0.0003464 0.4876 0.01656 0.0008571 0.0005913 0.002458 0.002057 0.0001398 0.01356 0.0007753 0.004236 0.4022 0.0007373 0.001888 0.0002798 0.005374 0.6031 0.5256 0.006116 0.5737 4.301e-05 0.02478 0.1351 0.002101 6.872e-05 0.0002257 0.002397 0.001206 0.008542 0.2911 0.4093 0.0004394 0.2866 0.01408 0.002847 0.0001253 0.003326 9.221e-06 0.004976 0.002033 0.007713 0.007208 0.3959 0.5655 0.0005435 0.003584 0.001934 0.0005515 0.6384 0.001972 0.0001531 0.5354 0.002977 0.01176 0.001174 5.808e-05 0.002354 0.002226 0.001032 0.002676 0.001228 0.00173 0.05942 0.000603 0.00402 0.005876 0.007434 0.0005519 0.001813 0.4686 0.0007573 0.001538 5.925e-06 0.003508 0.0005632 0.5704 0.1918 6.623e-05 0.001134 0.0001282 0.003479 0.477 0.1441 0.006568 0.004936 0.0009223 0.5621 0.0002165 0.003622 0.5633 0.0005642 0.002966 0.001188 5.344e-05 0.1997 0.01378 0.001529 0.000116 0.0001136 3.448e-05 0.01003 0.5992 0.001382 0.02598 0.2272 0.0004196 0.01454 0.003814 0.0225 0.5719 0.002068 0.00326 0.5444 0.005682 0.403 0.4877 0.001481 0.000135 0.5788 1.806e-05 0.308 1.616e-05 0.0639 0.01124 8.473e-06 9.046e-06 0.2096 0.008115 0.0002672 0.5934 0.001116 0.006626 0.01706 1.852e-05 0.573 0.001577 2.825e-05 0.6038 0.4043 0.6281 0.5301 0.3294 0.02081 8.971e-05 0.00241 0.001799 0.00812 0.02116 0.004405 0.007075 0.004372 7.837e-06 0.5891 0.001536 0.0005343 0.4129 8.717e-06 0.003382 0.001105 0.001693 0.02118 0.0009084 0.0014 1.145e-05 0.007647 0.000514 0.5606 0.5545 0.0009559 0.01444 0.001094 0.0008508 4.362e-06 0.002119 0.001085 0.001384 0.0007894 0.001383 0.002615 0.09979 1.197e-05 0.5785 0.5797 4.856e-06 0.006981 0.0002734 0.07306 0.0009426 0.0006471 0.0002036 0.00551 0.0139 0.2467 0.4295 0.0002854 0.4056 0.003104 4.788e-06 0.0002025 0.00221 0.003437 0.004797 0.001066 0.03711 0.03411 0.5578 0.002913 0.009355 0.0003082 0.005368 0.01122 0.0007025 0.000115 0.003972 0.000921 0.0001007 1.984e-05 0.000333 0.0132 0.006844 0.009823 0.01049 0.003126 0.0184 0.003876 0.0006195 0.5319 0.009982 2.925e-05 0.1182 0.457 0.0006004 0.0002149 0.0383 0.04703 0.001333 2.275e-05 0.5515 0.0003684 0.5642 0.3872 0.0004107 0.001537 0.001276 0.4103 0.0001335 0.00205 0.5933 0.0006554 0.003976 0.002165 5.969e-05 3.071e-05 2.419e-05 0.002199 0.005875 1.309e-05 0.02434 0.5617 0.06064 0.004769 0.004672 0.003802 0.004529 0.003344 0.0001223 0.0008837 0.007017 0.0002927 0.05954 0.0007899 0.001356 0.1831 0.02606 0.0002303 0.000786 0.0007147 0.003978 0.008093 0.0004628 0.01138 6.797e-05 0.002079 0.002725 0.004468 0.1132 0.004104 0.008713 0.006521 5.975e-05 7.811e-05 0.009527 0.0006665 4.974e-05 0.006212 0.4384 0.003065 0.00325 0.002989 0.5686 0.002243 4.77e-05 0.01355 0.001271 0.01895 0.004544 0.01765 0.3613 0.00144 0.5319 0.001305 0.5966 0.4129 3.318e-05 0.01773 4.932e-05 0.001525 0.007797 5.267e-05 0.005392 0.01112 0.001208 2.111e-05 0.5661 0.003817 0.4895 0.001353 0.0005769 0.01203 0.002241 0.04034 0.3685 0.5899 0.000706 0.008537 0.377 0.0003556 0.008429 0.0008602 0.5442 0.04379 0.005162 0.002038 0.0002731 0.2046 0.0003618 0.00124 0.00327 0.003912 0.003651 0.001249 1.476e-05 0.001254 0.01797 0.0002834 0.0002498 0.00146 0.008478 0.004479 0.0001855 0.03281 0.005681 0.002966 0.0009485 3.164e-05 8.592e-06 3.193e-05 0.003078 0.02623 9.301e-05 0.009552 0.08286 0.5712 0.004326 0.0001157 0.004676 0.06876 0.004153 0.03284 0.003311 0.001044 0.3245 0.1793 2.765e-05 0.0001512 0.5711 0.01814 0.6019 0.003973 2.896e-05 0.000137 0.02238 0.5843 0.0001612 6.749e-05 0.006025 0.008812 0.0002833 0.0003186 0.003113 0.0007686 0.0002914 0.005299 0.001714 0.006463 0.0007711 0.006149 0.002147 9.792e-05 0.004901 8.108e-05 0.0005765 0.5665 0.008913 0.05802 0.01514 0.05497 1.823e-05 6.616e-05 0.001349 0.005196 0.0213 0.00276 0.0001113 0.005884 0.005506 0.2433 4.163e-05 0.0006424 0.004766 0.002655 0.004547 0.0004623 0.06749 0.5479 0.01118 0.004683 0.04114 8.371e-05 0.009578 0.5583 0.05693 0.3349 0.001174 0.4502 0.0007186 0.0004123 3.249e-05 0.4582 0.0003161 0.4058 0.001445 0.0009537 0.003925 0.1293 2.047e-05 0.0001978 6.126e-06 9.193e-06 0.002462 0.01056 0.002818 1.266e-05 0.000384 0.4926 0.001829 0.0007056 0.01545 0.000214 0.0001557 0.0009306 0.0009516 0.008915 2.739e-05 0.0002761 0.001254 0.0003066 0.002475 0.007115 0.5804 0.6455 0.009782 8.917e-06 0.01047 0.0001398 0.5181 5.429e-05 0.005354 0.0001606 8.905e-05 8.297e-05 0.0009801 0.02634 0.01842 0.00178 0.2611 0.002543 4.527e-05 2.763e-05 1.11e-05 0.0003612 0.6266 0.0001998 0.004917 0.002605 0.07784 0.4805 1.757e-05 0.5956 0.02253 0.03306 0.337 5.849e-05 0.004047 6.892e-05 0.007472 0.4811 0.04909 1.316e-05 0.0007467 0.0007714 0.000108 0.0003571 0.0005805 0.005687 0.0001057 0.001174 0.003549 0.001042 0.5664 0.006044 0.04539 0.001753 0.01518 0.0385 0.112 4.849e-05 0.01497 0.339 3.231e-05 0.05991 0.004559 0.000282 0.004699 0.0004019 0.4345 0.0005762 0.001138 0.0002865 2.083e-05 0.002608 0.00251 0.6047 0.6047 0.003683 1.456e-05 0.002409 0.005758 0.0002484 0.1735 0.04082 0.002263 0.0392 0.003001 0.01899 0.0002651 3.593e-06 0.008293 0.0218 0.002712 0.004532 0.3487 0.4871 0.0001643 0.0006048 0.001399 0.003653 0.1684 0.01535 0.003309 0.002422 0.0004967 0.0009916 0.006283 6.122e-06 0.007201 0.005185 0.003535 0.002351 0.0006189 0.02125 0.001312 0.03187 7.077e-05 0.5653 0.1515 0.0005919 0.006764 1.439e-05 0.004812 0.001143 0.0002406 0.02361 0.5983 0.006357 1.151e-05 0.0001412 0.6262 0.001025 0.006878 0.001031 0.005234 0.0001097 0.003162 0.002667 0.001082 0.0002386 0.0854 0.0001135 0.0007628 4.146e-05 0.001509 0.01463 0.04923 8.441e-05 0.03545 0.007201 4.289e-06 0.0004205 0.001171 0.006775 0.0004936 0.03908 0.001077 0.4161 7.301e-06 0.006533 0.003083 0.0002179 0.001079 0.01431 0.000188 0.001581 0.005463 0.00211 0.01209 0.01109 0.02105 0.003271 0.002318 0.568 0.4484 0.2462 8.893e-05 0.007497 0.005677 0.004263 0.001861 0.001936 0.001391 0.02858 0.0001686 0.01364 0.004486 0.0002405 6.265e-06 4.065e-05 4.488e-06 3.751e-06 0.01979 0.571 1.91e-05 0.01194 0.0004596 0.003232 0.3162 0.001866 0.558 0.0004554 0.02874 0.0009258 0.000108 0.008759 0.5741 6.159e-05 0.4367 6.374e-05 0.001663 0.451 0.002581 0.000901 0.002252 0.3854 0.001364 9.493e-05 0.0002874 0.006747 0.5657 0.006293 0.0001543 0.01829 0.5728 0.0001205 0.003262 0.6409 0.001021 0.0001136 0.009153 0.0024 0.0001356 0.5734 0.007328 0.005949 0.001491 0.0009181 0.01303 1.723e-05 0.006668 0.3659 0.001716 0.5776 0.08554 7.453e-06 0.004207 0.001392 0.0001216 4.189e-05 0.0004151 0.0008229 0.2761 0.02291 0.0006627 0.001712 0.004302 0.03592 0.02969 1.293e-05 0.001312 0.00317 0.0001076 0.03617 0.01175 0.06329 0.002751 0.04376 2.304e-05 0.1156 0.0001557 5.078e-05 0.002459 0.0007703 6.972e-05 0.004129 0.0685 0.05266 0.004767 0.004507 2.045e-05 0.0002849 0.5732 0.001026 0.002876 1.409e-05 0.0049 0.002406 0.5645 0.002555 0.004695 0.576 0.00032 0.0009147 0.0127 0.5914 0.00349 0.008547 0.0001393 1.68e-05 1.004e-05 0.3773 3.577e-06 0.000127 0.01775 0.004235 4.125e-08 0.04349 0.04162 0.001592 0.005344 0.0004981 0.005698 0.007552 0.0005055 0.009823 0.000277 9.842e-05 0.0002549 0.003151 0.0001173 1.178e-05 0.0003045 0.15 0.005189 0.006738 0.0009477 0.0245 1.361e-05 0.005906 5.831e-05 0.2468 0.003665 0.0008705 0.002868 0.0001014 0.009459 0.1164 0.001909 0.05879 0.0002416 0.0004825 0.01747 0.3386 0.007049 0.5126 0.003397 0.03409 0.0007503 0.0001052 0.004991 0.4062 0.002269 6.675e-05 5.685e-05 0.5494 4.097e-05 0.04568 0.3599 0.3599 0.5662 0.02354 0.0005411 0.0006348 0.2647 0.009288 0.281 0.0005021 0.03412 0.0001382 0.001844 0.5937 0.0008136 0.0002045 0.005462 0.00605 0.01233 0.3821 0.01794 0.5551 0.5675 0.5165 0.001055 0.004245 9.063e-05 0.001156 0.01751 0.5799 0.007577 7.305e-05 0.5743 1.201e-05 0.01597 0.009937 0.002217 1.858e-05 0.002446 0.001851 0.5501 0.5585 7.021e-06 0.011 0.02281 0.0276 0.002122 0.003898 0.0003752 0.007213 0.001356 0.0001681 0.004676 0.02003 0.0001396 0.0118 0.003885 0.0007984 0.3719 2.916e-06 0.0007916 0.000402 0.0002205 8.823e-06 0.05016 0.3934 0.3612 0.001068 3.871e-05 0.009759 0.3803 9.096e-06 2.237e-05 0.5864 0.003153 0.02769 0.5585 0.3087 0.007885 0.004074 0.1073 0.009196 0.001719 0.01562 0.00232 0.0009683 0.002924 0.000421 0.0001115 0.0004042 0.5638 0.6238 0.06264 0.01813 0.005983 0.007872 4.964e-05 0.01383 0.1606 0.4909 0.2491 0.04048 0.007051 0.4395 0.5541 0.001399 0.4379 3.642e-05 0.002235 0.003449 0.09872 0.002627 0.0007 0.0005804 0.0001115 0.05235 9.883e-05 0.001111 0.00267 0.01899 0.0245 0.001901 0.001924 0.1631 0.003915 0.003085 0.004718 0.0003087 0.001064 0.002031 0.5798 3.673e-05 0.001049 2.299e-05 0.00316 0.5738 0.00849 0.01023 0.009338 0.001312 0.01846 0.001982 3.097e-05 0.0001095 0.0001084 0.0004662 0.0003194 0.0005391 0.003877 0.003489 0.2618 0.502 0.5986 0.0009484 0.5707 4.479e-06 0.06371 0.0001743 0.002867 0.0134 0.00418 0.0005697 0.0007871 0.3008 0.005144 0.006528 0.003474 0.3358 0.3359 0.01817 0.002918 0.005797 0.002746 0.0003315 0.00856 0.0001755 0.04984 0.0002636 0.4658 0.0001383 0.5985 0.04365 0.001593 0.004113 0.03132 1.315e-05 0.0008321 0.005111 0.0004479 6.185e-05 0.01552 0.004107 0.4641 0.002338 0.0002489 0.01073 0.0011 0.00304 0.00121 0.4793 0.3429 0.008075 8.492e-06 0.5132 0.001941 4.406e-06 0.002159 0.000224 0.2094 0.1413 0.01055 0.3841 0.0001008 0.565 0.00363 0.008187 0.486 0.009191 1.52e-05 0.0003682 1.364e-05 0.006785 0.5707 6.568e-05 0.0003676 0.01332 4.596e-05 0.000224 0.006321 0.1746 3.583e-05 0.0009239 0.0003972 5.627e-05 0.1065 0.4135 3.021e-05 0.4214 0.4202 0.01175 0.0001119 0.0003466 0.02218 1.167e-05 0.0002792 0.3809 0.003399 4.84e-05 0.004892 0.0009975 0.002173 0.0186 0.0009249 0.5812 0.0005301 0.005536 0.001304 0.434 0.4499 6.562e-05 0.007533 0.004559 0.03079 0.0008034 0.04091 0.01132 0.02609 1.187e-05 0.008932 1.548e-05 0.006527 0.4207 0.001007 0.0006657 0.000454 1.045e-06 0.03499 8.664e-05 0.001028 0.01815 1.819e-05 0.0148 0.0001511 0.0003436 0.005853 5.738e-05 0.07529 0.01316 0.0003659 0.01101 0.01014 0.009888 7.258e-05 0.0004229 0.5777 9.937e-05 0.003203 0.0005284 0.03453 0.3326 0.001665 0.001631 0.0001758 1.074e-05 0.0001857 0.0001101 0.003367 0.002348 0.03489 0.5179 0.004664 0.002723 0.01468 0.008901 0.002937 0.002723 0.001939 3.94e-05 0.004122 4.32e-05 0.3433 0.5053 0.6037 0.0008632 5.763e-05 0.001676 7.099e-05 2.003e-05 0.0003864 2.461e-05 0.00285 0.009176 0.00098 0.5424 0.5746 0.0004949 0.595 0.04494 0.008161 0.3358 0.00102 0.002126 0.0005933 0.0004197 0.0008363 0.0008993 0.0007718 0.0004911 0.001117 0.2452 0.001739 0.01427 1.311e-05 0.0006615 0.008771 0.05007 6.637e-05 0.07333 0.6045 0.001188 1.938e-05 0.002142 0.001484 0.001052 0.0003188 0.4728 0.5459 0.01353 0.002107 0.005551 0.0008306 0.003752 0.0297 0.003176 0.01649 0.07394 0.0003492 0.001209 0.005415 0.0008392 0.01058 0.0001781 0.5999 0.02335 0.5847 0.5354 0.0001045 0.001448 0.3921 9.383e-05 1.205e-05 0.0007602 0.002888 0.0427 0.0001097 0.001223 0.02198 0.001504 0.002129 0.03932 0.001311 0.001765 0.009767 0.0001303 0.0002425 0.6246 0.007291 0.001051 0.006618 0.002304 0.02605 0.0002121 0.0003292 0.001027 0.003617 0.0006502 0.08138 0.005719 0.002668 0.0003068 0.0001595 0.002249 0.006412 0.002284 0.5028 0.00258 0.002054 0.00549 0.002844 0.0001232 0.0005094 0.00362 0.004655 8.063e-05 0.00211 4.482e-05 0.003561 0.04216 0.5643 0.02958 0.5015 1.991e-05 1.214e-06 0.009625 0.0266 0.0002968 0.0002554 0.004152 0.03468 0.001894 0.2132 0.007966 2.629e-05 0.004469 2.414e-05 4.362e-05 0.00437 6.7e-05 0.01431 0.3578 0.4734 0.5783 5.307e-05 0.002109 6.819e-05 0.3963 0.5276 0.007454 0.0005029 0.001691 7.006e-05 0.0003324 0.002956 0.000164 0.001289 6.208e-06 2.949e-05 0.0008846 0.005254 4.135e-05 0.3817 3.35e-05 0.0007375 0.001624 0.001206 0.001153 0.0005687 6.955e-06 0.005989 0.1377 0.00402 0.002158 0.005148 2.407e-05 2.897e-05 0.01991 0.0003142 0.007226 0.0012 0.00742 0.000502 0.2896 0.01913 0.002238 0.009393 0.02945 0.4782 0.01247 0.001698 0.006507 0.009904 0.00133 0.002225 0.001475 0.5813 0.2887 0.003545 0.008485 0.0005001 1.41e-07 0.3865 2.025e-06 1.818e-05 0.00231 0.0002057 0.0252 0.0004958 0.002427 0.00313 0.07716 0.0001697 0.01187 0.0013 0.01178 0.0006545 0.001615 0.3299 0.01603 6.002e-05 4.864e-05 0.002195 0.6434 0.5768 0.002145 0.004557 0.0002228 0.000362 0.007839 0.001422 0.001803 0.0002819 0.18 0.1749 0.00298 0.006066 0.6405 0.00535 1.475e-05 0.3426 0.000929 0.01962 0.0006161 4.958e-05 0.0006422 7.441e-05 0.007782 0.3756 0.4873 0.003462 0.0007271 0.0005476 0.001173 0.3811 0.001197 0.0002791 0.0002359 6.902e-05 0.002362 0.01286 4.396e-05 0.5678 0.01154 0.01525 0.0003146 0.006115 0.03908 0.09604 2.618e-05 0.006185 0.004635 0.0604 0.0004125 0.5811 0.1264 0.003337 0.003973 0.001007 0.001331 0.0003386 0.02017 0.09904 0.001451 0.5665 0.5916 0.04024 0.0002291 0.001927 0.00126 7.311e-05 4.073e-05 0.0003455 0.006004 0.005332 0.00618 0.007103 6.011e-05 0.001393 0.0002893 0.574 2.066e-05 1.539e-05 0.4232 0.02758 1.428e-05 0.0005515 0.000201 0.04771 0.0009439 0.001584 0.0004637 0.01105 0.007891 0.008056 1.962e-05 0.001773 0.4787 0.001458 0.003933 0.02566 0.01582 0.4428 9.274e-05 0.002465 0.007224 4.407e-05 0.007389 0.005572 0.002682 0.001963 3.256e-05 0.3036 5.581e-06 0.04461 0.0002666 0.0004642 0.1101 0.01658 0.01322 0.0008825 1.837e-05 0.0175 6.442e-06 0.00538 0.009667 7.815e-05 0.001523 0.02181 0.01875 0.2952 0.0006914 0.0002949 0.00424 0.001252 0.0001416 0.001196 0.003532 0.002819 0.6402 0.0001154 1.392e-05 0.002807 0.0005687 0.000934 0.03491 0.00646 0.00431 4.962e-06 0.6072 0.001331 0.01246 0.001165 0.4085 1.626e-05 0.01068 0.003745 0.0001915 0.003543 0.0323 0.01247 0.5762 0.004366 0.001225 0.001838 0.0007253 0.001891 0.004102 0.01282 0.0007962 2.76e-05 0.0001052 0.005209 0.4663 0.001217 0.5701 0.5865 0.002231 0.0001848 5.164e-06 0.0006241 1.017e-05 0.03626 0.003348 0.0009735 0.007723 0.0001275 0.5778 0.5115 0.002384 0.0006189 0.0001018 0.01596 4.534e-05 0.01057 0.3849 0.003827 6.342e-05 3.545e-05 0.0001108 0.001783 1.593e-05 0.03727 0.0005971 0.0001419 0.1256 0.002699 0.0002628 0.0309 0.03516 0.3456 0.001437 0.01307 0.001268 0.4466 0.01074 0.0001475 0.003103 0.5638 0.01744 1.825e-05 0.3631 0.28 8.455e-06 0.006449 0.000156 0.0002056 0.004517 7.242e-05 0.02497 0.4954 0.5801 2.464e-05 5.51e-06 0.01934 0.0006201 0.5937 0.002477 0.05005 0.001519 0.0103 0.0004229 0.0008664 0.005899 0.001059 0.00311 0.0003873 0.01003 9.486e-05 0.0008048 0.001203 0.001828 0.5827 0.3099 0.6113 0.004581 0.0004976 0.4992 0.3522 0.007584 0.557 0.5289 0.0009411 0.5897 0.004515 0.009762 6.944e-06 0.01915 0.0005642 0.0003619 0.01132 0.03572 0.001635 0.000681 9.673e-06 0.04616 0.003619 0.008957 0.005519 0.004952 0.005517 0.0007557 7.163e-05 0.5677 0.0002328 0.499 0.0005412 0.07407 0.01881 0.0001374 0.554 0.01472 0.007592 0.03196 0.002553 0.001428 0.001453 1.068e-05 0.5752 0.0003671 0.5324 0.0002725 0.004754 4.82e-05 0.5063 0.0736 0.5389 0.5859 0.0121 0.009252 0.001338 0.006715 0.02052 0.02417 0.6174 0.002644 0.008681 0.0001099 0.01114 0.00351 0.4465 4.08e-05 0.3899 0.00109 0.0003773 0.4136 1.5e-05 0.03361 0.3881 0.002821 0.004769 0.02474 0.0001842 0.6088 0.00227 0.005109 0.01123 1.192e-05 0.001805 5.078e-06 0.003359 0.001066 0.00814 0.001621 0.0001874 0.004267 0.5625 0.002125 0.5932 0.003276 7.042e-06 0.4093 5.048e-05 0.009821 0.359 0.09139 0.05426 0.6253 1.58e-05 0.007834 0.02163 0.5141 0.12 0.001223 0.02212 0.0004836 0.03691 0.0005231 7.455e-05 0.00178 0.03324 0.3363 0.0001191 0.001344 0.1479 0.3914 0.008316 0.004734 0.007805 0.005452 0.547 9.857e-05 0.003923 0.0007364 1.796e-05 0.001129 0.001515 1.265e-05 0.001257 0.006272 5.759e-05 8.535e-05 6.719e-05 0.00415 0.0009164 0.4612 0.001334 1.742e-05 0.0001897 0.05956 0.4883 0.0002024 8.901e-05 3.901e-05 0.002732 0.01091 0.0001692 0.0003642 7.675e-05 0.01528 2.826e-05 0.003087 9.778e-06 2.053e-05 0.4803 0.005816 0.01148 0.004042 0.01616 0.002617 0.01853 0.0004728 0.001969 0.02898 0.01737 0.07869 0.001746 0.02141 0.00101 0.007151 0.0005883 0.00176 0.0005234 0.001094 0.007737 0.006953 0.01078 0.009482 0.1451 0.6076 0.008395 0.5058 0.006689 8.484e-05 0.603 0.1255 7.135e-05 0.006693 0.0009753 1.762e-05 0.1376 0.00508 0.001287 0.003215 4.272e-05 0.1091 1.248e-05 0.4123 0.01809 6.038e-05 0.04412 0.0001596 5.305e-06 0.003104 0.004506 0.001833 1.235e-05 0.001562 0.637 0.003582 0.6038 0.005198 6.636e-06 0.1461 0.0008297 0.6066 0.009469 0.003957 6.923e-05 0.5121 0.002515 0.005674 0.07681 0.01901 4.18e-05 0.008664 0.0009234 0.0001747 0.2919 0.002972 0.0001496 0.003373 0.4489 0.0006159 0.1251 0.0005769 7.923e-05 0.0002643 0.02224 0.2676 0.05653 0.003318 3.484e-05 0.0001163 0.004285 0.00361 0.00134 0.02424 0.002995 3.288e-05 0.5604 0.01096 0.001642 0.001661 0.0001822 0.0009046 0.0019 0.0002389 0.005341 0.009602 1.337e-05 0.03517 0.08971 0.5876 0.002036 0.0002588 0.01432 0.1775 0.003474 0.00421 0.3634 1.175e-06 0.4301 0.000678 0.5258 0.03079 0.253 0.0003382 0.003689 0.001868 0.0003621 0.01492 0.002039 0.002809 1.535e-05 0.01022 0.001266 0.0007134 0.01701 9.989e-06 0.02917 0.0186 5.739e-06 0.001492 2.619e-05 3.164e-05 0.0002024 0.03175 0.007574 0.0002295 0.3962 1.356e-05 0.006169 0.532 0.004529 0.3946 3.79e-05 0.006948 0.0001691 0.006907 0.0006932 0.0001072 1.12e-05 0.001332 0.003607 0.001097 0.0001201 8.426e-05 0.0002705 0.001287 0.01298 3.229e-05 0.005459 0.008532 0.003005 0.06023 0.002396 0.01161 2.14e-05 1.215e-05 0.002202 0.00111 0.00578 0.3067 1.451e-05 0.0002998 0.05968 0.004228 0.00331 0.006719 0.001098 0.003145 0.01037 0.5697 0.002483 0.5711 6.185e-05 2.253e-05 6.982e-05 1.652e-05 0.01676 0.5709 0.0745 0.01517 6.486e-05 0.5814 0.004379 0.004121 0.0007343 0.002056 0.00176 0.2733 0.01161 0.5728 0.001718 0.3654 0.0001496 0.1102 0.0005197 0.02623 0.4479 0.5272 0.001722 1.53e-05 0.01021 0.01093 9.051e-05 0.001421 0.007432 9.021e-05 4.206e-05 0.005049 6.932e-06 0.6024 0.02165 0.0001692 0.00458 0.06688 0.575 0.002906 0.0002475 0.4045 7.865e-05 0.0008611 0.5717 0.5587 0.5522 0.02013 0.5542 0.001907 0.4505 0.002099 0.09638 0.002064 0.0001487 0.001176 0.0001159 0.05192 0.5827 0.5732 0.003215 0.004183 0.00264 0.4648 0.009771 0.02219 0.007491 0.01541 4.767e-05 0.003276 0.4331 0.0003287 0.5271 0.0005146 0.0009815 6.195e-05 0.02527 0.001639 8.566e-05 0.006014 0.01475 0.008299 0.001163 0.000887 0.002022 0.004148 0.03513 9.956e-06 0.000232 0.002338 0.00588 0.001759 0.0007287 0.02047 3.148e-05 0.003498 0.0001118 1.598e-05 0.006066 4.232e-05 0.0005058 0.00311 6.506e-05 0.004493 0.005063 0.4234 0.0004743 0.0136 2.099e-05 0.0002064 0.4171 0.001332 0.04574 0.0006676 0.03379 0.003561 0.00127 0.001496 0.000987 0.5622 0.002145 5.34e-05 0.02479 0.1718 0.005628 0.0008485 0.4103 0.5569 0.005572 0.008236 0.003211 0.0001423 0.001892 0.005487 0.009704 0.2679 0.2686 0.007847 0.006176 0.5212 0.0009298 0.1024 0.0213 0.02385 2.686e-05 0.005424 0.3829 0.5211 0.4035 0.000151 0.01273 0.00345 0.0149 0.008869 0.001542 0.4809 0.005806 0.4141 0.003207 0.001052 0.0006228 0.0002409 0.0001001 0.5468 0.006428 0.0006147 0.001216 0.02613 0.0001183 0.00191 0.0002118 0.00352 0.0007125 0.002377 0.002193 0.007077 0.005527 0.5702 0.0003588 0.4092 0.04692 1.975e-05 0.005562 0.08792 0.3852 0.002289 0.0004355 0.01229 0.0002056 0.01204 0.003113 3.274e-05 0.01306 0.0213 1.883e-05 0.001958 0.08422 0.0005426 0.2994 0.6548 0.4218 0.002203 0.03163 0.03378 0.004617 0.002358 0.0001467 0.5782 0.002623 0.009469 0.005813 0.01659 0.004217 0.0003133 0.01074 0.0003593 0.5621 0.003608 0.0002053 0.004219 0.2342 1.109e-05 0.001992 0.002128 2.54e-05 1.748e-05 0.007375 0.0001309 0.001485 0.5397 4.573e-05 0.004937 0.6043 0.005975 1.022e-05 0.0026 0.0001215 0.159 1.538e-05 0.04733 2.002e-05 4.318e-05 0.01688 0.003198 0.0001326 5.798e-05 0.0003479 0.006354 0.03046 0.001361 0.009354 0.003001 0.0001043 0.0004861 0.009351 0.002995 1.532e-05 0.0006211 0.003599 0.004806 0.009437 3.848e-05 1.158e-05 0.03537 0.0001961 0.01354 0.0006717 0.0004733 0.001201 0.002933 0.0005948 0.005173 0.2329 0.002448 0.5183 0.006292 0.0292 0.06067 0.002989 0.0002269 0.00163 0.004302 0.01049 0.005772 0.6251 0.0001268 0.002502 0.4246 0.007868 0.005778 0.0003416 0.001184 0.001261 0.001001 0.003792 0.0005044 0.0008195 0.5352 0.001182 0.482 0.01001 0.0002841 0.00369 0.0132 0.0001926 0.3185 0.0092 0.007383 0.0004862 0.0001749 0.3607 0.0009736 0.5886 0.00818 4.569e-05 0.0014 0.4873 0.01807 0.001012 7.658e-05 0.3621 0.0005067 0.001771 4.543e-05 0.02863 0.3207 0.03172 0.01704 0.0008359 5.564e-05 0.0002038 0.0001468 0.01315 6.519e-05 0.009689 0.001454 0.004723 0.51 0.295 0.09323 0.006972 0.0006201 0.005296 0.02659 0.003453 0.4473 0.001861 0.01406 0.002767 1.831e-05 0.0004735 0.5095 0.006319 0.0008358 0.0004992 0.01124 0.4839 0.000619 0.00322 0.0001075 0.002147 0.0001821 0.006532 0.02494 0.02703 0.001168 0.3893 0.00456 0.0008004 7.161e-06 0.555 0.003099 0.01248 0.02546 0.5204 0.0005142 0.5511 4.087e-05 0.4607 0.0009481 0.0002267 6.941e-06 0.002609 0.0008823 0.0001209 0.02519 0.0002807 0.001636 4.74e-05 0.001969 0.0006012 1.093e-05 0.002295 0.005057 0.4629 0.001114 0.2105 0.001475 0.003647 0.009 0.2175 0.0001572 0.0005432 0.2094 0.0005387 0.0002535 0.03083 0.003883 0.5489 0.000244 0.5288 0.0001193 0.006944 0.1262 0.001561 8.921e-05 0.001982 0.05315 0.0001357 0.0001141 0.001378 0.00383 0.004128 3.813e-05 0.002594 0.0003726 4.265e-05 0.002573 0.424 6.308e-06 0.009496 5.385e-05 0.001395 2.108e-05 0.4404 0.0003487 9.192e-05 0.001039 0.56 0.3929 0.4088 0.001395 0.001145 0.00151 0.4214 0.0001198 0.5674 0.003887 0.002629 0.004172 0.01001 1.16e-05 0.0002089 0.2072 0.002052 9.437e-05 0.3651 5.202e-05 0.001681 0.03566 0.6164 0.3567 0.01414 0.02254 0.008363 0.01569 0.0007864 0.006383 9.684e-05 0.004919 0.02597 0.001094 0.005545 0.0009284 0.0006511 0.006182 0.5102 0.0001293 0.0001208 0.003035 5.732e-05 1.449e-05 0.01379 0.0003928 0.006995 0.007805 0.02093 0.1101 0.0004056 0.007053 0.001715 0.002314 0.002871 0.01047 0.02736 0.006515 6.653e-05 0.01373 0.002272 0.001806 1.72e-05 0.001073 0.006641 0.002712 6.785e-05 0.0005252 0.5525 0.002213 0.002084 0.01449 0.5683 0.000644 0.005083 0.09184 0.414 0.0001333 0.02086 0.04573 0.002157 0.6427 0.004982 0.2586 0.002425 0.01124 0.006361 0.002861 0.001207 0.0001206 4.244e-05 0.3608 0.001259 0.0008569 0.005223 0.004125 0.005353 0.0006688 0.001229 3.068e-05 8.233e-06 0.005455 5.997e-05 6.078e-05 2.273e-05 0.4505 0.003827 0.1245 0.1458 4.755e-05 0.00343 0.3303 0.001409 0.003923 0.02283 0.5702 0.0009554 6.341e-05 0.003963 0.005279 0.0006178 0.006428 5.489e-05 0.00509 0.1978 0.5714 0.5694 0.006338 1.229e-06 0.001343 0.005505 0.4144 0.02526 0.007468 0.001353 0.005615 0.0005741 0.0254 3.609e-05 0.5637 2.013e-05 0.0002079 0.008558 0.000641 0.03379 0.0002765 0.604 2.21e-05 0.02193 0.0008793 0.006091 0.008772 6.764e-05 0.5588 0.0005414 0.3317 0.003226 0.0007944 0.003344 0.1608 0.0001461 2.044e-05 0.0003928 0.00741 0.0007858 0.6125 0.005455 0.00639 0.002415 0.000367 0.005777 0.1094 3.09e-05 0.0423 0.06104 0.0002456 0.4461 0.007239 0.0008556 0.0006937 0.000983 0.03593 7.386e-06 0.01426 0.00312 0.001446 0.005578 0.00212 7.337e-05 0.5454 0.4859 0.006876 7.658e-05 0.0005395 0.002036 0.001783 6.566e-05 0.001677 0.0005194 0.00115 0.0001007 9.541e-05 0.003334 0.01051 0.0003142 0.01409 2.121e-05 9.916e-05 0.00751 0.004798 0.342 0.005501 0.3784 0.0001677 0.008604 0.002265 0.005679 0.3446 0.001221 0.02237 1.163e-05 0.002879 0.0005263 0.5748 0.001188 0.001626 0.3418 0.006975 0.0001869 0.03569 0.0006922 4.877e-05 0.0009055 0.003289 0.0009231 0.002374 0.0009279 0.01136 0.06804 0.007835 0.003152 0.5423 0.4482 0.3569 0.001577 0.000114 5.364e-05 0.07985 0.0006937 0.003301 0.006638 0.0021 0.4766 0.008586 0.3634 0.01544 0.576 0.4259 0.00526 0.1749 0.001449 0.5593 0.001855 0.002808 0.5944 0.04566 0.002978 0.002969 0.0008704 0.003359 0.000257 3.71e-05 0.0001594 0.0001149 0.4864 0.0003729 0.3614 1.424e-05 0.4141 0.006221 0.0008243 0.004011 3.466e-05 8.734e-05 0.01662 0.005526 0.0006533 1.229e-05 0.01733 0.0006915 0.003664 0.003758 0.0004055 0.5836 0.008835 0.02879 0.0008439 0.002751 0.003346 0.0001892 0.001368 0.09086 4.244e-05 0.109 0.1473 0.5632 0.004676 0.5513 0.06433 0.02597 0.0001199 0.3258 0.3193 0.03753 0.09239 0.002565 6.632e-05 0.1131 0.007783 0.5748 4.181e-06 0.002226 0.00577 1.244e-05 0.5399 0.002743 0.569 0.004342 0.003437 0.0001029 0.003059 0.07069 0.01285 0.08487 0.5723 0.2238 0.000794 0.01006 0.00164 0.004788 1.74e-05 7.234e-07 1.21e-05 9.212e-06 0.3622 0.3548 0.002321 0.001386 0.01693 1.284e-05 0.001324 0.006819 9.831e-05 0.001848 0.02142 8.655e-05 0.007889 0.004623 0.007766 6.038e-05 0.004732 0.005028 0.00296 0.5258 0.08446 0.0154 0.002002 0.0009429 8.951e-05 0.0009316 9.306e-05 0.003358 0.002751 0.0002748 0.03266 0.01726 1.188e-05 0.005 0.002361 9.268e-05 7.669e-05 0.0005452 0.000402 0.5466 0.05216 0.003534 0.2016 0.0001551 0.00118 0.0001018 0.001257 0.04898 0.002876 0.004995 1.185e-05 0.003041 0.0001037 0.0005625 0.006075 1.573e-05 0.008091 0.000363 7.858e-05 0.003578 0.3108 0.004547 0.003144 0.001345 0.002904 0.0006494 0.5467 2.119e-05 0.1269 0.005195 0.6467 0.447 0.6185 4.296e-05 0.001625 0.009862 0.5106 0.0007541 0.001543 0.005941 0.0001408 0.0004177 7.951e-05 0.6315 0.004197 0.0006335 5.681e-05 0.5297 0.0005221 0.003184 9.699e-05 0.03637 0.0001488 0.0002708 0.00149 0.003058 0.001145 0.4064 1.537e-05 0.0395 0.002838 0.1298 0.0087 0.0003548 0.009205 0.007673 0.0003288 6.495e-05 0.0003376 0.005055 0.0063 0.4805 0.002862 0.004316 0.002493 0.005398 0.007391 0.001816 0.01084 0.003836 0.612 0.008461 0.000643 0.003535 0.0001708 7.905e-05 0.08284 0.002334 0.02656 0.000746 0.0003469 0.1998 0.008238 0.0003104 0.004884 0.0003998 0.0001872 0.0244 6.398e-05 0.02558 8.954e-05 0.08754 0.0009988 0.003017 0.001163 0.0007744 0.204 0.0004126 0.04926 0.002109 0.0004277 0.1896 0.0002337 0.006439 0.0003007 0.0001091 1.221e-05 0.5637 0.01569 0.559 0.03941 0.0007361 0.003643 5.253e-05 0.003116 0.3775 0.0006637 6.076e-06 0.04977 0.574 0.005743 0.001814 0.002386 8.377e-05 0.5797 0.3353 2.912e-05 0.007793 0.0002166 0.007156 0.0007611 0.004587 0.0001633 6.424e-06 0.01124 2.011e-06 0.005534 0.0001234 0.008807 0.02678 0.0006476 9.175e-06 0.0002977 0.005789 0.004167 0.5097 1.02e-05 0.5872 0.00748 0.0002229 0.001132 6.178e-05 0.0131 0.0173 0.03813 0.2551 0.5268 8.516e-05 0.03622 0.001702 0.0013 0.002785 0.000513 7.057e-05 0.001422 0.07873 0.0008637 0.01304 0.00815 7.566e-06 1.879e-05 0.01252 0.01555 6.89e-06 0.4183 1.586e-05 5.446e-06 0.0008723 0.01176 0.05932 0.4845 0.009442 0.002481 9.764e-05 0.5961 0.001548 0.005571 0.006772 0.0189 0.007156 0.002587 0.006299 0.001075 0.009998 0.005983 0.3225 0.006271 0.0004726 0.4595 0.0007533 1.88e-05 0.01324 0.02795 0.1957 0.00247 0.000154 0.02567 0.01013 0.06701 0.001172 3.439e-05 8.222e-05 0.0001325 0.0002673 3.9e-05 0.02008 7.477e-05 0.4013 0.0002046 0.005529 0.5692 4.808e-05 0.001107 0.004828 0.02187 0.02898 0.0006951 0.00798 0.002242 0.002429 0.002672 0.006783 0.01505 0.004193 0.4046 0.5764 0.001803 0.0008276 0.0006502 0.00055 0.0004681 0.002551 4.708e-05 0.003247 1.054e-05 0.00565 4.728e-06 0.01339 0.3923 0.0003865 0.00133 5.703e-05 0.000626 0.003013 0.01229 3.59e-05 0.0001904 0.0008499 0.0002149 0.01608 0.001145 6.001e-06 0.0003972 6.363e-05 0.001022 0.5773 0.002995 0.004889 0.002756 0.001517 0.02333 0.00208 0.0006505 0.04979 0.01167 0.5734 0.009559 0.0005705 0.0007928 0.4176 0.006867 0.4614 0.4615 7.823e-05 0.01183 0.3931 0.0011 0.001414 0.001157 0.001591 0.0002014 0.002425 0.03707 0.0003057 0.004144 0.0001831 0.0008434 0.5992 8.616e-05 0.0001214 0.004707 0.002451 0.001435 0.5789 0.008973 0.6093 0.00194 0.00145 0.009377 0.009179 0.01816 0.001303 0.02014 0.542 0.001108 6.181e-05 1.244e-05 0.0001111 8.599e-06 0.3474 0.3559 0.347 0.002624 0.5946 4.456e-05 0.001044 0.002236 0.0003164 0.3397 9.049e-06 3.045e-05 0.5381 0.577 0.003223 9.008e-05 0.006045 0.006281 0.001189 0.002451 0.1179 0.03565 0.008203 0.2872 9.213e-05 0.4197 0.02657 0.0004717 0.0001729 6.518e-06 0.005158 0.001981 0.6411 5.065e-06 0.003898 0.008057 0.003519 0.001709 0.004664 0.5324 0.0001027 0.0008363 0.001245 0.01143 0.5918 0.01391 0.08957 0.04302 0.4646 0.5348 0.01561 0.5702 8.704e-05 0.6034 0.003582 0.001065 0.000883 0.0005607 0.003611 0.04106 0.3312 0.0002756 0.0008635 0.4458 0.002024 0.002256 0.2073 0.002373 0.004046 0.00164 0.0002481 2.148e-05 0.002424 0.0005482 0.007579 0.03128 7.173e-05 0.003206 0.0001163 0.0006894 0.0009471 0.007226 0.1074 0.002428 1.28e-05 0.0001196 0.002698 0.5808 0.0004505 0.5774 0.6115 0.4492 0.05669 0.2724 8.615e-06 0.01117 0.007316 0.0001088 0.001967 0.007438 0.0408 0.5941 0.5592 0.5827 1.498e-05 0.007759 0.04387 6.441e-06 0.584 0.0009581 0.006825 0.002123 0.02088 6.53e-05 0.01423 0.6398 0.001803 0.0005057 0.518 0.0001183 6.167e-06 0.003441 0.001802 0.001558 0.01092 0.0009035 0.007445 0.668 0.4514 0.3181 0.0003086 0.002318 0.002903 0.5814 0.07114 0.004961 7.957e-05 0.000162 0.0007128 0.009215 0.0009317 1.416e-05 0.004769 0.3791 0.002169 0.02549 0.0007899 2.486e-05 0.001403 0.002111 0.4013 0.004423 0.01108 0.001408 0.0007834 0.004719 7.127e-05 5.07e-05 1.455e-05 0.001383 0.01026 0.2002 0.002128 0.4543 0.001761 0.001677 0.004553 0.0001166 0.002712 0.0003515 0.5149 2.758e-05 0.004033 0.0002933 0.0006911 0.0004394 0.4653 0.0002582 0.5729 0.0004507 0.000359 0.0003645 0.3926 0.0003915 1.171e-05 0.0002256 0.001998 0.0006139 0.009954 0.008812 0.193 0.03118 0.4632 0.0005567 0.0005913 0.007915 0.02552 0.0008821 0.008145 0.02553 0.5052 0.6322 0.004984 5.179e-05 0.01108 2.762e-05 0.003546 0.005256 0.0004507 0.01194 9.767e-05 0.0001597 0.0008523 0.6113 0.001121 0.000783 0.001353 0.002702 1.193e-05 1.447e-05 5.171e-05 2.734e-06 0.07342 8.132e-06 0.008668 0.003469 0.02165 0.005834 0.3518 0.6051 6.59e-05 3.967e-06 1.299e-06 0.000116 0.006036 0.009581 0.0002209 0.000418 0.3317 0.0007784 0.4003 0.08023 0.001025 0.006532 0.001567 0.001598 0.2251 0.00316 0.005449 0.02432 0.0001156 0.002014 0.007557 0.0004842 0.5389 0.0006041 0.005683 0.001927 0.4785 0.002451 0.01897 0.01645 0.002028 0.0007301 0.0001123 0.0001808 0.01103 6.537e-05 0.5758 0.0008259 0.002955 1.176e-05 0.04387 1.23e-05 0.005749 0.007553 0.002474 0.009759 0.2421 0.4539 0.00894 0.001337 0.0182 0.001586 0.007433 0.002844 4.608e-05 0.003305 0.5542 0.5558 0.6196 0.001903 0.004624 0.0001217 0.009295 0.6058 0.02141 0.002331 0.004586 0.03006 0.01641 0.2095 0.03801 0.02155 0.001031 0.009278 0.01317 0.347 0.01742 0.0001044 0.001671 0.5528 1.707e-05 6.481e-05 0.0163 4.599e-05 0.0007683 0.002812 0.004715 0.4556 0.008058 4.463e-06 1.094e-05 0.6396 0.0002276 0.4642 0.00117 7.485e-05 0.0001015 0.0001052 0.001583 1.599e-05 0.0001259 1.317e-05 0.0002261 0.4146 0.005635 1.337e-05 1.635e-05 4.488e-05 0.001574 3.856e-05 4.7e-06 0.1999 0.0006261 0.000406 0.02521 1.696e-05 0.007689 7.9e-05 0.002617 0.002673 0.0001601 0.0005538 0.004526 0.001688 0.5746 0.002519 0.002097 0.5258 0.4792 0.01124 0.1117 0.003712 0.002948 0.002368 0.0005323 0.01523 0.0001407 0.0328 0.0002142 0.535 0.005353 0.6109 0.07298 0.01218 0.01517 0.001965 0.0007961 0.4062 3.227e-05 0.476 0.01805 0.005363 5.179e-05 0.005101 0.0007987 0.02018 0.0008687 0.00215 0.003244 0.003503 0.006556 0.003179 0.00147 1.69e-05 0.003457 0.04441 0.008966 0.001777 0.01906 0.0721 0.05291 4.98e-05 0.00198 0.007861 0.05033 0.003895 0.009081 0.002583 0.1213 0.007209 0.0005597 0.0064 0.4426 0.002127 0.614 0.003283 0.0117 0.002585 7.625e-06 0.006412 0.005481 0.001294 0.0003646 0.00128 0.5492 0.0002384 0.022 0.3863 0.5032 8.166e-06 0.005311 0.0001451 1.37e-05 0.5853 0.01511 0.4104 0.001842 0.03372 0.06014 0.04909 0.0006218 0.003936 2.194e-05 0.004381 0.008542 0.03619 0.01182 0.4128 0.005368 0.0003828 0.00916 0.04205 2.526e-05 8.139e-05 0.0002637 0.001002 0.0005658 0.000348 7.067e-05 0.3191 4.608e-07 0.05765 0.009712 0.000614 0.0001348 0.001316 1.525e-05 0.4163 0.4163 0.5631 0.0008825 0.009069 0.0008713 0.0007648 0.102 0.004573 6.866e-05 0.008452 0.009799 0.001168 0.000157 0.01671 8.587e-05 0.0003397 0.01154 9.183e-05 4.694e-05 0.0005548 0.09776 0.0007999 0.0001318 0.00272 0.01581 0.0008391 0.04186 0.008922 0.002216 0.01666 0.000101 0.0008864 0.0001146 0.002765 0.002128 0.001199 0.003221 9.684e-05 0.002594 0.006271 8.799e-05 0.5704 0.0001186 0.0008807 0.001587 0.006948 0.354 0.004371 0.231 0.002941 0.002545 0.5216 4.166e-05 0.001575 0.00513 0.2922 0.002457 0.003295 0.000221 0.01342 0.0001264 6.119e-05 0.005722 0.0005396 0.1171 0.1093 0.0003913 8.21e-05 0.002987 7.723e-05 0.009603 0.0004477 0.0001141 3.092e-05 0.00377 0.0004936 0.004728 0.001572 0.01129 9.069e-06 9.914e-05 0.0001941 0.0006067 0.001229 0.001135 0.003984 0.0008853 0.5595 0.01454 0.000291 0.5705 0.03513 0.0006226 7.53e-05 0.000822 0.009136 0.006979 0.009259 0.5976 3.318e-05 0.005238 1.539e-05 0.0004173 0.007419 7.956e-06 0.003556 0.004826 0.0001079 0.06319 0.001565 0.000317 0.00483 0.0172 0.0006698 0.01091 0.4619 0.0009144 0.004914 0.5711 0.5726 0.001645 0.00209 8.995e-05 0.4544 0.0007431 0.01636 0.001697 0.009991 0.0001113 6.586e-06 0.0003427 8.598e-06 0.001071 0.001136 0.2327 0.4844 0.6207 0.0001216 8.197e-05 0.04635 0.01387 0.02059 8.35e-06 0.0002949 0.5652 0.002297 0.01158 0.000102 0.0006391 0.003253 0.0006197 0.001171 0.008579 0.0007726 0.03208 0.5824 0.62 0.0001047 0.0005763 0.1229 0.0005043 0.5248 0.0009946 2.488e-05 0.4007 0.275 0.0133 0.001206 0.0004723 0.0003961 0.0003596 0.002009 0.3793 0.5687 1.311e-05 0.02077 0.03759 0.5742 5.72e-05 0.01083 0.5579 0.00553 0.001148 0.0007665 7.525e-05 8.871e-05 0.002188 7.893e-05 0.001988 0.004422 0.0009304 0.5675 6.277e-05 0.002488 8.349e-05 0.5858 0.0008069 2.889e-05 0.01491 0.3606 0.2724 0.0864 0.00294 0.2134 0.00391 4.3e-05 0.0002402 0.4229 0.008233 4.354e-05 0.009722 0.002265 0.003908 0.0003844 0.3432 0.01831 0.001692 1.423e-05 0.6431 0.01803 0.0001061 0.5312 0.4347 0.00952 0.01454 0.007296 0.01333 1.536e-06 7.005e-05 0.02301 0.1788 0.00394 0.0003677 0.001536 0.004565 0.0008087 0.0002799 4.249e-06 0.0004787 0.212 1.376e-05 0.2388 8.065e-06 0.01212 0.04342 0.01471 0.0009185 2.738e-05 0.0001453 0.5256 0.001897 0.01229 0.007187 1.868e-05 0.004281 0.003625 0.001295 0.009714 0.005818 0.00179 0.0009839 0.001176 0.0003079 0.001803 0.003484 0.1065 0.0009765 0.01566 0.00603 0.6425 0.0007085 0.0215 0.002106 0.001151 0.02825 0.5708 0.001184 0.3645 0.000941 0.001342 0.007708 0.184 0.0006157 1.149e-05 0.0015 0.0001035 0.04415 1.268e-05 0.0001071 0.003598 0.0009932 0.3752 0.008914 0.003186 0.0001925 0.0005744 0.3545 1.13e-05 0.3804 0.01194 0.03189 0.001254 0.00217 0.005645 0.003208 0.002064 0.07475 1.024e-05 0.004513 0.4227 7.438e-06 0.04046 0.00137 0.5911 0.01218 0.604 1.803e-05 0.004513 0.5578 0.1426 1.368e-05 8.42e-05 6.649e-05 0.05195 0.002966 0.001733 0.0004067 0.002892 0.343 0.1132 0.0003815 9.529e-05 0.004692 0.004734 2.495e-05 2.656e-05 0.005728 0.002644 0.002681 0.002824 1.78e-05 0.003674 0.002862 0.3744 0.008235 0.3235 0.008519 0.001516 0.1038 0.003011 5.553e-05 0.0009637 0.03838 0.01472 0.0007467 0.0005006 0.03194 4.136e-05 0.0009939 0.04915 0.00345 0.03979 0.4097 0.001753 0.0003307 0.000102 0.006586 0.002129 5.167e-05 0.1174 3.735e-05 0.0001895 0.4729 0.5417 0.06605 0.006277 0.01469 0.0004982 0.0005594 0.001291 0.002329 0.003609 0.0001247 1.283e-05 0.007605 0.003505 0.598 0.0003504 0.04116 2.443e-05 0.0004669 0.0002054 0.04938 0.1119 0.001905 0.3513 0.004817 0.2792 0.00171 0.01624 7.604e-05 0.2432 0.00126 0.03411 0.02072 8.09e-06 0.005826 0.2946 0.003891 8.801e-05 0.0103 0.00717 0.001548 0.0001157 0.008887 3.987e-05 0.0006366 0.2747 0.05305 3.604e-05 0.001703 0.004669 0.5691 4.312e-05 0.0003404 0.06294 0.002973 7.911e-06 0.0005004 0.5659 0.002432 0.0005549 0.001632 0.0001693 0.0001474 0.003671 0.004891 0.03031 0.0002069 1.639e-05 3.751e-05 0.01073 0.000374 0.006111 0.001947 0.06328 0.002361 0.008326 0.5787 0.006143 0.5683 0.00869 0.4129 0.00703 0.006047 0.00702 9.838e-06 1.048e-05 0.2337 0.5615 0.003583 3.964e-06 0.5551 0.3171 0.0006546 0.01395 0.003178 0.0008365 7.18e-05 0.006307 0.0006509 0.000545 0.0004385 0.4452 0.5429 0.1484 8.563e-05 6.431e-05 0.02488 0.004122 0.0004374 8.827e-05 5.65e-05 0.0003498 0.001261 3.724e-05 0.000456 0.0001566 0.5689 6.67e-06 0.00931 0.2183 0.5087 0.009132 1.41e-05 0.01449 0.002171 0.0002967 0.5242 0.000493 0.0005317 2.214e-06 0.005953 0.006488 0.6645 0.3915 0.004932 9.093e-06 0.553 0.005238 0.5555 0.118 0.003063 3.691e-05 0.01497 0.01557 0.02231 2.899e-05 0.5808 0.0004837 0.00293 0.2878 0.001649 0.2902 0.01438 0.0008931 0.003613 0.008746 0.008583 0.0005206 0.002004 1.661e-05 0.01109 0.0008463 0.0001119 0.002039 3.128e-05 0.0006512 0.003344 4.502e-05 0.000647 0.0005778 0.02629 0.04876 0.0006059 0.000918 0.02216 0.6156 0.002931 0.0002621 0.004127 4.314e-05 0.5685 0.007929 7.644e-05 0.003501 0.5758 0.009621 0.002286 0.0125 0.004383 8.122e-05 0.0002792 0.09193 1.305e-05 0.005807 0.1517 0.2102 0.06324 0.4263 0.0002607 0.04967 0.01744 0.0005944 0.004652 0.001535 6.499e-05 0.01526 0.01232 0.001212 0.003772 5.934e-05 0.0003645 0.6228 0.001354 0.000489 0.0004252 0.0008452 0.1551 4.457e-05 1.27e-05 0.01776 0.004169 0.01757 0.0134 0.0005628 6.999e-06 0.006734 0.4056 0.4973 0.0007385 0.008809 0.0003968 0.0002081 0.01161 0.000637 0.02369 5.499e-05 0.3524 7.133e-05 0.004583 0.5961 0.00113 0.0113 4.592e-05 0.06367 0.003381 0.006099 0.002813 7.304e-05 0.001988 0.06347 0.001396 0.000723 0.0008937 9.883e-05 0.0003479 0.001856 0.001105 0.006064 0.02481 5.155e-05 0.001596 0.05859 0.000499 0.0005634 0.002704 0.004915 0.004863 0.3572 0.003127 0.0007591 0.03907 0.01831 0.4005 0.0008626 0.01588 0.01201 0.004314 0.002327 0.005929 0.005812 0.4729 9.857e-06 0.01072 5.336e-05 6.387e-05 0.0004105 0.0006549 0.001737 0.0003149 0.1668 0.001078 0.004054 6.867e-05 0.003641 1.411e-05 0.001562 0.5595 0.003056 0.0003718 1.263e-05 0.004965 0.007303 0.01283 0.5796 0.001238 0.0005348 9.025e-05 7.175e-05 0.002982 0.001219 0.001232 0.0005077 0.01752 0.01335 0.0006702 0.5296 0.007563 0.0006175 6.132e-05 0.6679 0.001826 0.0489 0.03092 0.01224 0.0004165 0.00585 0.5272 0.01886 0.004089 7.821e-06 0.001346 0.006666 1.143e-05 0.02103 0.002603 0.05813 0.01083 0.002527 0.001415 0.003619 0.03558 0.002477 0.03036 0.003732 0.006221 0.00821 0.0008634 0.0004164 0.001236 0.01785 8.545e-05 3.058e-05 0.1273 0.005307 0.01599 0.006008 0.03295 0.002675 0.0004569 0.02901 3.128e-05 0.004722 0.0001078 0.004091 0.002926 0.005713 0.01209 9.164e-05 0.0004879 0.5771 0.3904 0.000145 0.5735 0.4671 0.00013 1.548e-05 0.005289 0.0001764 0.0008194 0.002543 0.008021 0.001343 0.0006226 0.5832 0.004478 0.0002117 5.22e-06 0.002312 0.0007467 0.2764 4.202e-06 0.03166 0.04808 0.2065 0.0002389 0.0004438 0.005494 8.67e-05 0.003142 0.3076 0.0001496 0.5475 0.007913 0.001146 0.02642 0.0001859 0.01296 8.208e-05 0.5206 4.27e-05 0.00609 0.007639 0.005069 0.0002393 0.01485 8.646e-05 0.0003485 0.613 0.002333 0.5575 0.07759 0.0007727 0.386 0.001664 0.01933 0.009531 0.2996 0.009357 0.2954 0.002653 0.001672 0.006622 2.077e-05 0.5687 0.0003148 0.00453 0.0003356 0.001443 0.006894 6.502e-05 0.003539 0.0005569 0.001566 0.00073 1.329e-05 0.003145 0.001335 0.009844 0.01702 0.01107 0.5918 0.00951 0.002089 9.394e-05 0.004831 0.01157 0.001441 5.802e-05 0.002224 0.01419 0.008503 0.3625 4.749e-05 0.0001057 0.4292 0.06326 0.00024 0.1216 0.000497 0.0009677 0.0003354 0.009367 7.205e-05 0.0009309 0.05365 0.5498 5.454e-05 0.5699 7.852e-05 0.0007093 0.0004974 0.09379 4.424e-05 0.01908 0.01642 0.005219 2.432e-05 0.003426 1.51e-05 5.737e-05 0.001635 0.005189 0.00299 0.1652 0.002588 0.0001223 0.004776 0.0007775 0.002126 0.1058 0.2123 0.003829 0.02819 0.0002772 0.003186 0.001317 0.1799 0.0009488 0.03264 0.0001614 0.003953 0.001346 0.001442 0.271 0.0002758 0.5568 0.002635 0.000119 0.2566 0.0001212 0.00075 3.584e-06 0.0003453 0.1257 0.002175 0.01231 0.1063 0.1567 0.03066 5.939e-05 0.3221 7.885e-05 0.0008673 1.592e-05 0.04633 0.02979 0.004365 6.139e-05 0.003729 0.1972 0.02562 0.01198 0.001813 0.003261 0.6414 0.00597 0.3968 0.002256 0.002628 0.007571 9.954e-05 0.001314 5.125e-06 0.07772 0.0001957 0.0004147 0.001209 0.0001247 0.1988 0.002806 0.001864 0.01963 0.0001182 0.01242 0.006576 0.007638 0.004984 0.0005884 0.5094 0.0003561 0.0008836 0.06036 0.06038 0.001447 0.00528 0.004125 6.437e-06 0.0001431 0.001227 0.002852 0.006706 1.721e-05 0.001809 0.002478 0.5429 4.272e-05 0.02172 0.001964 0.001793 0.5086 0.000612 0.05113 0.0009029 0.6028 0.5076 0.001188 0.03836 0.002669 0.3272 9.515e-05 0.004476 0.001046 0.01038 0.01569 4.999e-05 0.5732 0.0005346 0.0001848 1.721e-05 0.0001249 0.01421 0.007275 0.0005181 0.007801 0.0001159 0.0062 9.933e-06 0.006269 0.0004583 0.5664 0.02054 0.001466 0.005691 0.004167 0.0004278 0.02219 0.0005889 0.5826 6.843e-05 0.0003169 0.3876 0.001834 0.5475 0.002383 0.0008944 0.00987 0.07731 0.02178 0.0001653 4.537e-05 0.0004577 0.001399 0.003603 0.03048 0.021 0.5527 0.01162 0.007292 0.5211 0.001541 0.00189 0.001713 0.00833 0.002322 0.251 1.619e-05 0.0003929 0.5712 0.562 0.01153 0.107 0.002468 0.4054 0.0001339 8.217e-06 0.008609 0.003361 0.0001014 0.004403 0.003914 1.931e-05 0.00401 0.01133 0.0003208 5.821e-05 2.17e-05 0.001517 0.5555 0.004989 3.555e-05 6.982e-05 0.003018 0.0003536 0.0068 5.872e-05 0.3788 6.622e-05 0.02897 0.004748 0.0001561 0.003904 0.0006288 0.001976 0.009097 0.0003892 0.6307 0.009462 0.08097 0.0005796 0.01043 0.4963 3.488e-05 0.2529 0.006977 0.00161 0.001056 0.00158 0.003296 0.00497 0.423 0.4739 0.5862 0.001509 0.004068 0.001026 0.0001462 0.01322 0.0001036 0.0009953 0.002895 0.3274 7.131e-05 0.5779 0.5591 0.006225 0.04448 0.0008234 0.001452 0.0003563 0.01233 0.001227 0.002148 0.006009 0.005078 0.0005455 0.002257 0.001818 0.002394 0.09288 0.01124 0.004025 0.584 0.03698 0.0002783 0.0002964 0.5704 1.305e-05 0.01997 0.4834 5.727e-05 0.00351 0.001738 0.3318 0.0003182 0.002455 0.001079 0.02335 0.008373 4.73e-05 0.00283 0.1774 0.5451 0.0009981 0.5463 0.003221 0.2704 0.005802 0.0007331 0.002975 1.393e-05 0.0007388 0.00345 0.5908 0.004963 0.0002032 0.5684 0.5657 0.1876 0.001546 0.01298 0.5708 0.006337 0.001303 0.4128 0.02466 0.001675 0.000381 0.006077 0.418 0.001169 0.002064 0.0008724 0.002899 0.4047 0.1233 0.01024 0.005515 0.0006165 0.005436 0.001882 0.008178 0.3938 0.6093 0.00858 0.2954 0.0008338 0.003235 0.002893 0.001506 0.01745 0.3884 0.05888 0.002975 0.08101 0.003895 0.000721 0.0001979 1.444e-05 0.5077 0.001673 0.003035 0.00326 0.1052 0.0007445 0.5644 0.00145 0.007897 0.2005 0.007554 5.461e-05 0.0001593 0.001874 0.5036 0.001156 4.713e-05 0.002162 0.001079 0.5656 0.008247 0.001057 4.411e-05 7.342e-05 0.0001321 0.002516 0.0002912 0.005221 0.2925 9.824e-05 0.5396 2.378e-05 0.6403 0.5032 1.083e-05 0.006665 0.02252 0.004364 0.001056 5.941e-05 0.003054 0.5742 0.009732 0.0185 0.0003992 8.867e-06 0.02871 1.494e-05 6.987e-05 0.0001655 0.001201 1.441e-05 0.0001114 0.06169 7.557e-06 1.691e-05 0.002108 1.878e-05 0.1629 9.27e-05 0.009737 7.385e-05 0.001445 0.002044 0.0003155 0.0523 0.002915 0.00363 0.007476 0.0003988 0.00159 0.01614 0.006795 0.001329 0.1454 0.002923 0.005996 0.002473 0.00375 0.0002822 0.005796 0.007144 0.001979 0.09419 0.01257 0.01254 0.0002892 0.002228 3.205e-05 0.004069 0.5142 0.001333 0.0009349 0.04332 3.249e-05 0.0007494 0.0005957 0.004621 0.00115 0.002557 0.004161 0.001458 0.03094 3.856e-05 0.007477 1.048e-05 0.01471 0.01692 0.008802 8.111e-05 0.02801 0.002165 0.001207 0.4046 0.03553 5.279e-05 6.217e-05 0.00125 8.248e-05 0.3774 0.03627 0.5692 0.002247 0.002409 0.0007959 0.01461 0.04791 0.004377 2.394e-05 3.696e-05 0.0005347 0.009845 0.0009724 0.352 1.775e-05 0.002397 0.005521 0.01366 0.0003722 0.02078 0.5693 0.005697 0.005632 3.955e-05 0.002792 0.002082 0.001398 0.5584 0.3672 0.01525 0.0721 0.002776 0.0004595 0.0007196 0.4189 0.01696 0.005077 0.02233 0.1497 0.0006027 8.798e-05 0.001689 0.08595 0.006277 0.002858 0.0001128 5.784e-05 0.001771 0.536 0.0121 0.004429 0.005164 0.0004021 0.00645 1.501e-05 6.042e-05 0.0002715 0.6125 0.03002 1.044e-05 0.405 0.5708 0.008671 0.004765 0.01015 0.08105 0.006431 0.4059 0.07474 0.002481 0.02574 0.0005723 0.00946 0.4498 1.521e-05 5.63e-05 0.002277 0.5706 2.836e-05 0.01377 1.468e-05 0.0003129 1.724e-05 0.00094 0.01925 0.01313 4.611e-05 0.001072 0.5728 0.3523 0.002318 0.5918 0.007545 0.4261 0.4461 0.5294 0.0135 0.003224 0.003616 0.4644 0.5724 0.001241 4.94e-05 0.01183 5.573e-05 0.007722 0.006425 0.03376 0.08915 1.046e-05 0.008902 0.002376 0.001796 0.0004666 0.0003609 0.001238 0.02541 0.0003712 0.001151 0.000557 0.008654 0.01789 1.551e-05 0.0102 0.01516 0.00138 7.845e-06 0.07175 0.005962 0.07516 0.0902 0.0053 0.04607 0.6195 0.414 0.003063 0.0002002 4.981e-05 0.0007325 0.01364 0.08954 0.0008615 0.003704 0.5663 0.003889 0.01278 0.0222 0.004324 0.2194 0.002504 0.0001768 0.008646 6.014e-05 0.000175 0.001072 0.002671 0.05212 0.00217 1.517e-05 0.0001322 8.913e-06 0.004188 0.3621 0.0001201 0.3486 0.005365 0.005736 0.01883 0.2316 0.002 0.5728 1.198e-05 0.01558 0.003386 0.003186 0.007178 0.003919 0.003184 0.0001632 0.002814 0.000151 0.003981 0.01491 1.531e-05 0.0001191 2.925e-05 0.4177 0.002366 0.000479 0.002698 0.007446 0.003885 0.009151 0.0003627 0.009343 0.004001 0.0001837 0.004638 0.02829 0.0005274 0.002228 0.4138 0.04962 0.000102 0.003684 0.0094 0.6487 0.05646 1.396e-07 0.001259 0.01987 0.002334 0.008459 0.003501 0.0005665 0.006098 0.6076 0.008199 2.348e-06 0.003856 0.4116 0.001765 0.005681 0.02408 0.001173 0.005351 0.06441 5.36e-07 0.6645 0.00595 0.5648 0.4197 0.001411 0.0003296 0.004509 0.006809 0.00131 0.003983 0.01149 0.0001815 0.05485 0.3444 0.00294 0.006566 5.943e-05 0.007344 0.00748 0.0001587 5.557e-06 0.00595 0.001326 3.126e-05 1.939e-05 0.0002388 0.001566 1.535e-05 0.001321 0.4665 0.004134 6.324e-05 0.000586 0.002137 0.004755 4.939e-05 1.705e-05 0.005818 0.0014 0.009383 0.0049 0.002817 0.006065 0.07746 0.002805 0.01117 0.0002402 0.004312 0.0183 0.0005159 0.001054 0.001518 0.6025 0.002875 0.002066 0.001447 0.004216 0.009621 0.001346 0.001555 0.0001016 0.4586 0.5326 0.04682 0.0001338 0.0008453 0.003194 0.004724 0.6402 9.284e-05 0.2966 0.004002 0.0003536 0.5589 9.494e-05 0.3098 0.005715 0.0007299 0.005853 0.005229 0.006685 0.08727 0.005351 0.5528 0.001092 1.65e-05 0.002096 0.3142 0.4538 0.02274 0.0005324 0.5808 0.0009234 0.0001765 5.583e-06 0.02007 0.006388 0.003773 0.002384 0.5658 0.004282 0.002015 0.0003902 0.5659 3.362e-05 0.0004953 0.0007708 0.01229 0.3805 0.0001037 0.3393 0.001748 0.002843 0.0004097 0.001178 0.3681 0.001443 1.298e-05 0.001075 0.5834 7.111e-05 0.03845 0.4548 1.325e-05 0.4065 0.3799 5.921e-05 0.000268 0.0538 0.002051 0.0003796 0.006649 0.0007054 0.009154 6.775e-06 0.5107 0.5096 3.378e-05 0.0006893 0.01012 7.626e-05 0.02454 0.001489 0.0001369 0.3998 0.0005934 0.004861 0.0001006 0.0006087 6.887e-06 0.0004629 1.912e-05 0.08708 0.08541 0.0007323 0.03281 0.0003371 0.000358 0.004278 3.802e-05 3.461e-05 0.0006192 0.001838 9.677e-05 0.004488 0.1028 0.000429 0.0002391 0.001449 0.002966 0.001287 0.03281 0.02214 0.009663 0.1141 3.766e-05 1.452e-05 1.984e-05 0.003913 0.006101 0.003749 8.464e-05 1.198e-05 0.577 0.2614 0.0003018 0.4095 8.73e-08 0.0005035 0.00433 0.006765 0.0003479 9.087e-05 0.1151 0.0006714 0.002363 0.0002577 0.2291 0.0009838 0.002139 0.004346 0.5772 0.00643 0.0001072 0.4461 0.00828 0.1476 0.00484 0.0003386 0.5723 0.01888 0.005446 0.07022 0.002249 0.1107 0.003948 0.004147 0.1596 0.003412 0.003981 0.002991 0.09327 0.001347 0.0003629 0.01469 0.0003373 0.003316 0.001859 0.006284 0.0008838 0.001741 0.01163 0.01784 0.00071 0.005617 0.00164 0.02329 3.639e-05 0.01871 0.0004662 5.274e-05 0.001249 0.01459 4.596e-05 0.01565 0.001436 6.598e-06 0.008224 0.5659 0.3053 0.3053 0.01376 0.03483 0.005127 0.001254 0.576 0.229 7.927e-05 0.0008372 0.0004937 1.158e-05 0.0003742 0.001269 7.949e-05 0.007013 0.0001084 0.05871 0.5785 0.5636 0.001293 0.5669 0.0002944 1.33e-05 0.0005796 0.003 0.001307 0.008929 0.001361 0.005718 0.0001715 0.003159 0.001437 0.009088 0.0004845 0.002032 0.0001755 0.000669 1.909e-05 0.0001452 0.009714 0.001638 0.001854 0.002328 0.0004456 0.01901 0.004246 0.01092 0.005019 0.0002147 0.02204 0.008213 0.001985 0.0002479 0.0006932 0.2303 0.3296 0.002674 0.01242 0.01679 0.00816 0.004739 0.0006101 0.005584 0.07585 0.0003824 0.0004478 0.5888 0.05215 0.001724 0.0008054 0.001239 0.0001372 0.000294 0.3496 0.0005948 6.883e-05 0.0003756 0.00158 0.01 7.103e-05 7.06e-05 6.169e-05 0.0001646 1.789e-05 0.004089 0.0001794 0.0008628 0.3587 0.004422 0.01119 0.001278 6.668e-05 7.569e-05 0.0004807 0.003855 0.5114 0.01091 0.0002288 0.0004076 0.001359 8.508e-05 0.01059 0.004463 0.008278 0.006371 0.016 0.0001016 0.0002251 0.5785 0.02139 0.004512 1.146e-05 0.008837 0.1922 0.0001328 0.000335 0.0002823 0.001471 0.008759 0.008384 0.001658 0.04225 0.01173 5.923e-05 0.008902 0.001085 1.106e-05 0.0003386 0.005983 1.254e-05 0.000191 0.004337 0.3458 4.771e-05 9.283e-05 0.5728 0.003561 0.01057 0.002117 0.00112 0.002732 0.1166 0.005908 1.266e-05 0.004752 0.001608 0.002107 0.5247 1.187e-05 0.002065 2.004e-05 0.02487 0.001145 0.385 0.002813 0.002774 0.00131 0.0007768 0.6027 0.006742 0.3256 0.001289 1.841e-05 0.0009363 6.549e-05 0.00673 0.002998 0.003029 0.0001214 3.191e-05 0.004077 0.5592 0.5743 5.08e-05 0.0006537 0.02788 0.001966 0.02289 0.0008095 0.0008 0.08772 0.3513 0.0003357 0.0006166 0.1036 0.00915 0.08407 0.005974 0.00401 0.0002146 0.01431 0.0006497 0.000138 1.982e-05 0.5785 0.004447 0.001181 0.006862 0.002352 0.011 0.0006737 0.4155 0.4153 8.85e-05 0.005838 1.515e-05 0.004839 0.1168 0.001792 0.01458 0.003263 7.934e-05 0.0132 0.3264 0.04127 0.004533 0.0008244 0.0003261 0.0008582 0.004849 5.331e-05 0.002122 0.002571 0.07517 0.003955 0.5265 0.005148 0.002152 0.6139 0.5545 0.001356 0.5592 5.851e-06 0.5671 2.841e-05 3.793e-05 0.1986 0.009553 0.0007129 0.01347 0.003624 0.0006205 0.004491 0.004176 9.172e-05 0.004379 0.004612 0.653 0.00127 0.5457 0.3918 7.73e-05 0.001633 6.656e-05 0.001885 0.008379 0.009752 0.01215 0.008244 0.000239 0.02812 0.5888 0.04182 0.001818 0.00223 0.0003453 4.02e-05 0.006497 5.283e-06 1.697e-05 6.874e-05 1.255e-05 0.06206 0.01492 0.001191 0.002239 0.007931 0.004368 0.001374 0.001009 0.007082 0.1179 1.216e-05 0.6518 0.4202 1.122e-05 0.01833 0.00322 0.004645 9.871e-05 0.003315 0.0001572 0.1545 0.4113 1.374e-05 0.0007019 0.07967 0.4179 1.035e-05 0.0001963 0.0004452 0.003126 0.5918 0.0125 0.00444 0.0003561 0.002014 0.03984 0.585 0.001165 0.3994 0.002206 3.765e-05 0.5247 0.0005305 0.004835 0.002655 0.04133 7.275e-05 0.0001656 0.006561 0.001017 0.03099 0.04919 0.0001444 0.5075 0.009322 0.006722 0.4021 1.396e-05 0.001571 0.00576 0.002201 0.003406 0.034 0.00103 0.5701 0.0001737 0.007092 0.1082 0.001001 0.004922 0.0001298 0.01477 0.0002909 0.5675 0.0002464 0.01853 0.0001258 0.005846 1.754e-05 0.3093 0.3188 7.348e-06 0.003711 1.277e-05 0.003416 0.004315 0.005687 0.00674 2.13e-05 0.0001322 8.281e-05 0.0005615 0.005608 0.006049 6.55e-06 0.3463 0.007539 0.001275 0.002907 0.01768 0.0001087 0.5087 3.461e-05 0.0003033 0.002305 0.04014 8.851e-06 0.002363 7.019e-06 2.973e-05 0.0001536 0.008003 0.0008456 7.958e-05 0.01744 0.0009046 0.006299 0.001431 0.07504 0.07103 0.0002638 0.01043 0.00163 8.882e-06 0.0004702 8.263e-05 0.001588 0.4766 0.307 0.002233 0.002947 0.01891 0.0006023 0.002796 0.3786 0.004306 0.0003739 0.5634 0.001811 0.000276 0.09349 2.705e-06 0.2338 0.00214 0.06018 0.4623 0.08185 0.02351 0.001242 0.003526 0.005643 0.001788 0.562 5.523e-05 0.005019 0.000837 0.0009972 8.957e-06 0.009441 0.001282 0.09555 2.529e-06 0.007791 0.0007989 0.003201 0.0005813 0.3804 0.003801 0.0004054 0.5772 3.664e-06 7.333e-05 0.002689 0.4014 0.01452 0.0006864 0.007359 0.004501 0.001603 0.0002418 0.3687 6.294e-05 0.002544 0.0001048 0.5529 0.5451 0.0001054 6.113e-05 0.001383 0.001284 0.03477 0.04993 0.0002487 0.0007977 0.02067 0.01081 0.007324 0.003551 0.004101 0.0001562 0.01299 0.5563 0.002618 0.004456 0.00084 0.0008517 0.0007585 0.00247 5.878e-05 0.004058 0.0004495 0.0004046 0.0002071 0.003176 0.07248 0.001635 0.003124 0.006915 0.0048 0.00443 0.0005213 0.01068 0.01508 0.5775 0.0039 0.003768 0.5142 0.01175 0.003273 0.0004362 0.03683 0.03496 0.001571 0.0003676 0.01382 0.0005604 0.001288 0.0004863 7.494e-06 0.01079 0.0001116 0.2356 0.4229 0.5763 0.01099 0.001651 0.0003333 1.271e-05 0.001409 1.465e-05 0.07562 0.0009201 0.0009319 7.662e-05 0.403 6.801e-06 0.001162 0.5868 0.0001789 0.009552 0.0003511 0.001573 0.007178 0.6321 0.003924 9.378e-06 0.5518 0.004874 0.008718 0.0002525 0.05996 0.001192 0.01747 0.0004791 0.5648 6.371e-05 0.08494 0.3117 0.002729 0.001624 0.1369 0.0004529 0.6343 0.1484 2.567e-05 0.008324 0.0008321 0.02161 0.008116 0.008439 0.001476 0.1591 0.005599 9.775e-06 0.589 5.789e-05 0.000159 0.03455 8.721e-06 0.006371 0.0006945 0.01903 0.05244 0.0003082 0.005928 0.0002878 0.0002725 4.259e-06 0.001284 0.126 0.3317 0.005894 0.0007417 0.5002 8.442e-05 7.115e-05 0.01782 0.002131 0.2226 0.05575 0.001041 0.2131 0.000502 0.0005655 0.002553 0.0003093 0.04292 0.01378 0.0009337 0.002986 2.401e-05 0.00686 5.91e-05 0.001308 0.01789 0.01469 2.085e-05 7.901e-05 0.0002053 0.006671 6.231e-05 0.6258 0.005011 0.0007576 0.000745 0.5773 0.0002805 0.0002522 0.008076 0.05284 0.5397 0.002959 0.06537 0.004957 0.599 0.0006528 0.0001279 1.923e-05 0.01653 0.5516 0.00928 0.03156 0.0005047 0.0005141 0.3944 0.0008996 0.03207 0.01533 0.02499 0.007661 0.001303 0.01175 0.6396 0.0005032 0.004932 0.6304 0.004158 8.745e-06 0.02067 0.07224 0.001161 5.537e-05 7.571e-05 0.0002286 8.942e-05 0.0001299 0.001478 0.0001039 6.265e-05 0.001614 0.01939 0.001306 0.007078 0.001609 0.002618 0.002811 0.0002458 0.2982 3.397e-05 0.0009912 0.5782 0.2963 0.003 0.001443 0.003154 5.835e-05 0.004309 0.0003748 3.951e-05 0.0004748 0.01945 0.0001352 0.0001393 1.723e-05 0.006156 7.411e-05 0.3607 0.01069 1.665e-05 0.0008691 0.005013 0.4796 0.003249 0.001778 0.001588 0.05023 0.013 0.006064 0.5588 0.001932 0.555 0.148 0.004619 0.0001274 0.002199 0.009713 6.085e-05 0.00614 0.008827 0.01475 0.0008905 0.0002163 0.004384 0.4035 0.003683 0.005197 0.0001258 1.542e-05 0.03242 0.01917 0.168 0.0005929 0.5768 0.00932 0.001034 0.001895 0.0001263 0.0002906 0.001048 0.2295 0.0003501 0.114 6.465e-05 4.224e-05 1.25e-05 8.787e-06 0.5372 3.799e-06 0.03618 0.01553 0.005303 0.008596 0.005889 0.008042 0.0006895 0.000399 0.004107 0.0005577 0.0005912 0.02475 0.0008217 9.182e-05 0.006705 0.0004629 0.0003693 0.000684 0.004182 0.0001506 0.01757 0.001248 0.001103 0.001416 0.5768 7.788e-05 0.57 0.006507 0.0007579 0.0006091 6.85e-08 0.01888 0.4214 0.01127 0.00126 0.007252 0.5627 3.03e-06 0.0006989 0.01147 0.09066 0.01144 0.01513 0.4955 0.1706 0.0001206 6.091e-06 0.001396 0.005733 0.5642 0.04642 2.346e-05 0.5733 0.5452 0.0001008 0.002461 0.3322 0.002414 0.005326 0.001052 0.001615 1.83e-05 0.004859 0.00277 0.001534 0.001514 0.002273 0.0007858 0.008473 0.0408 0.0002103 0.1786 0.009555 0.009136 0.005436 0.6137 0.004506 9.729e-05 0.5646 1.731e-05 0.0007018 0.1456 0.0001435 1.015e-05 0.4409 0.004406 0.02721 0.004004 0.04396 2.293e-06 0.0001184 2.22e-05 0.007061 7.585e-06 0.0006365 0.0006506 0.004009 0.4894 0.5766 0.003653 0.001784 0.001236 0.01139 0.0001991 3.087e-05 0.003206 0.00346 0.0004137 0.02063 0.001485 0.005945 0.02197 0.02741 0.005914 1.508e-05 0.00046 3.399e-06 0.008489 0.0001336 1.696e-05 0.001521 0.1745 0.2587 0.01054 0.001598 0.003913 0.1034 0.01459 0.009121 0.001775 0.0001138 0.008142 0.008549 0.0002151 0.008722 0.3685 0.003198 0.01119 0.001688 0.001103 0.4654 0.00013 0.02852 0.0009085 0.0008073 0.0115 6.044e-05 0.000343 0.001573 0.008212 0.0002913 0.3502 0.3495 0.001988 0.001675 0.00216 0.00292 0.007995 0.002729 0.01517 0.6362 0.001785 0.009815 0.571 0.0002017 0.005574 0.06384 0.06109 0.001713 0.001314 0.0001194 6.289e-05 0.406 0.0001007 0.4814 0.5663 0.06553 0.0203 0.0003987 0.02705 0.009661 1.133e-05 0.007525 0.3367 0.002691 0.002941 0.02312 0.0008376 0.003671 1.383e-05 0.3331 0.01475 9.842e-05 0.5222 8.455e-05 0.5863 0.1276 6.165e-05 0.001248 0.04713 3.274e-05 0.3818 5.713e-06 0.006073 4.475e-06 0.3373 0.0007176 8.094e-05 0.009409 0.4013 0.005893 0.5694 0.0001479 0.0007833 0.0007926 0.01947 0.003651 0.4229 0.4229 0.01163 0.009474 0.0001102 1.673e-05 0.00268 2.236e-05 0.5655 0.001303 9.185e-06 0.3075 0.003237 0.008666 0.004026 0.005656 0.0001329 0.002844 0.001985 0.02163 4.768e-06 0.0002735 0.02891 0.004256 1.626e-05 0.2359 0.0009979 0.003489 0.001494 1.381e-05 0.0001729 0.3718 0.0002424 0.008689 0.00036 0.01752 0.5464 0.001342 0.2861 0.002545 0.002063 0.02064 2.574e-05 0.00184 0.002277 0.6031 0.00318 0.3423 0.009111 0.1249 0.2983 0.008364 0.008153 0.4079 0.5713 0.01295 0.001204 0.000753 0.02977 0.001272 0.1231 0.001642 0.3815 0.0002371 0.0009713 0.5515 0.002732 0.002348 6.506e-05 0.4579 0.6176 0.005178 5.576e-05 0.0001888 0.004342 0.002827 0.002063 0.01512 0.006384 0.00664 0.542 0.00422 0.0005038 3.996e-05 0.0001886 0.1438 0.02887 0.007122 0.005357 0.5677 0.008603 0.002261 0.00202 0.08811 0.005022 3.732e-05 5.598e-05 0.5746 0.0002966 0.009369 3.636e-06 0.006826 0.007068 0.0003468 0.3836 0.0003937 0.002525 0.01642 0.02236 0.0009132 6.132e-06 0.4591 0.00387 0.0004545 0.002558 0.004424 5.64e-05 0.0004253 0.0001765 0.002997 0.5801 0.00439 0.08989 0.0004307 0.2112 0.009454 0.0003158 0.0001108 1.477e-05 0.6143 0.009457 0.002599 0.5456 0.0001772 1.209e-07 0.02952 0.3582 0.01035 0.5656 0.001761 0.001196 0.005885 0.001298 7.366e-05 0.02248 0.0004649 0.5684 0.0006846 0.001064 0.001768 7.097e-05 0.009094 0.001192 0.003998 0.08076 0.001249 0.008783 0.009575 0.006774 0.004054 0.001226 6e-05 0.0001772 0.01697 0.00435 0.0001293 7.139e-05 0.005228 0.02764 0.5158 0.0004598 0.0004543 0.0008907 0.0006755 0.1256 0.2501 0.01022 3.288e-06 0.003106 0.5505 7.949e-05 0.0001036 0.0004449 0.004108 1.153e-05 0.0006715 0.007976 0.0009886 0.01457 0.0008701 1.753e-05 0.007522 0.6111 0.03308 0.004296 0.5305 0.04106 0.001585 0.0003506 0.0118 0.5534 0.02869 0.002078 0.01386 9.313e-05 0.001233 0.05332 1.524e-05 0.005743 0.006913 0.5382 0.0002012 0.003978 0.005461 0.5917 0.0003196 0.0003393 0.01508 0.005687 0.001223 0.04727 0.3818 0.5487 0.002329 0.006727 0.0001697 0.349 0.002692 0.001772 0.009459 0.002244 0.0003264 0.5234 0.00314 0.001094 0.02126 0.00226 0.1542 0.4356 0.5724 0.001294 0.002264 0.5151 0.01479 0.008369 0.01027 1.92e-05 0.001148 0.001186 0.01881 0.001088 0.0005089 1.683e-05 0.0001185 0.005872 0.2962 0.002116 0.005453 0.3284 0.3402 0.003485 0.03132 0.009602 0.5773 0.02984 0.002995 7.72e-05 0.5704 0.09371 0.000729 1.042e-05 0.5282 0.5728 0.00208 0.006307 5.105e-06 0.058 0.5811 4.984e-05 2.184e-05 0.0002218 8.884e-05 0.0009241 0.01328 0.002204 0.002083 0.001329 1.002e-05 0.002043 0.5879 0.001576 0.06115 0.002337 0.0001221 0.0002955 0.000302 0.009499 6.817e-05 7.974e-06 0.1885 0.0002135 0.005415 0.001614 0.2596 1.06e-05 2.103e-05 0.0009276 0.001287 0.0001291 0.002189 0.001825 9.611e-05 0.003354 0.0001221 0.02139 0.0001943 0.5934 7.193e-05 7.09e-05 0.315 0.3488 0.005014 0.002669 0.006016 0.003876 8.467e-06 0.0002928 0.0001881 0.4426 0.03566 0.0151 4.157e-05 0.0004076 0.0002674 0.1283 0.002653 0.0002067 0.0001779 0.00555 0.0159 0.01794 0.0004239 3.064e-05 0.0004362 0.001011 0.004101 0.001236 0.002451 0.00111 0.0007312 0.008099 0.0131 0.0008472 0.01662 0.005953 0.01129 0.01006 0.02543 0.00226 0.02111 0.004515 0.002804 1.017e-05 1.137e-05 0.008472 0.2197 0.0001643 4.852e-05 0.002806 0.001121 2.893e-05 0.003315 0.005656 0.0002239 0.007873 0.03192 0.006072 0.009319 0.001775 0.01272 0.0006717 0.001375 0.03485 0.4012 0.4158 0.001448 0.003432 0.002332 0.002253 0.0001257 0.005009 0.01151 0.0002101 0.004302 0.0006033 0.001357 0.0001069 0.001415 5.429e-05 0.005774 0.02115 0.0001524 0.002025 1.774e-05 0.01143 0.06515 0.002917 0.0004392 0.02466 1.202e-05 0.000882 0.005718 0.0003824 0.001821 0.04041 0.04499 0.003016 0.007971 0.001614 0.004157 0.0009667 0.0001462 0.004255 0.00107 0.4806 0.00118 0.0001099 0.008393 0.572 0.564 0.04449 0.0003619 0.4077 0.000843 0.3574 0.001075 1.939e-05 0.001481 0.007033 0.005752 0.001381 0.03232 9.882e-05 0.339 0.001436 0.0001539 0.0003311 1.334e-05 0.002018 0.0001678 0.5789 6.33e-05 0.002595 0.0001091 0.0005916 0.1972 0.0005709 0.004432 0.0009496 0.02143 0.009612 0.1813 6.026e-06 0.0009631 0.5623 0.5985 0.003362 0.01406 0.004924 0.01395 0.07866 9.887e-05 0.5516 0.01173 5.756e-06 0.002637 0.0009025 0.004473 0.06373 0.5879 0.135 0.4889 8.018e-05 0.3674 6.438e-06 0.009133 1.444e-05 0.006815 0.001987 0.0001209 0.5613 0.003715 0.0003424 0.004526 0.03611 0.0004668 0.1395 0.001703 0.005692 0.05312 0.003561 0.001091 6.481e-05 0.0001166 0.0003584 0.0007806 0.386 0.002409 0.0004295 0.0008655 6.582e-06 0.02708 0.02896 0.006579 0.5732 0.00013 0.0001927 0.001324 0.5606 0.0001072 0.0137 0.3148 0.3148 0.002613 0.4714 0.0004882 0.003175 0.02815 0.00194 0.001007 0.004883 0.01551 4.946e-05 0.008282 0.001538 0.004709 0.006296 0.004777 0.005816 1.701e-05 0.3965 0.0006694 0.004408 8.213e-05 0.0007308 0.01007 0.001222 0.4731 1.89e-05 0.2339 0.04616 0.00504 0.5909 0.00545 0.000183 0.009756 0.2129 0.0006386 5.079e-05 0.003647 0.02127 0.0027 3.631e-06 0.003545 0.0003253 0.0001198 0.0001026 0.4932 0.001811 0.1422 0.061 0.0003926 0.007814 0.01241 0.5858 0.0001622 0.0004205 0.004478 9.71e-05 0.01086 8.473e-05 0.05629 0.003127 0.4578 0.005902 0.0008921 5.849e-06 0.01644 0.002646 0.4543 0.005957 0.0001311 0.0131 0.04128 0.003011 0.01215 1.568e-05 0.03365 0.1243 0.008718 0.0001908 0.01267 0.1103 0.001128 0.0003427 5.908e-05 0.002498 0.2591 0.0007045 0.07709 0.0003653 0.0004734 2.547e-06 0.4143 0.0106 0.0001195 0.5845 4.574e-05 0.342 0.0001122 0.02803 0.02664 0.001085 0.002761 0.0006831 0.01508 0.5725 0.001312 0.4614 0.4597 0.01914 0.005578 0.0159 0.01104 0.3025 0.4068 0.01751 0.004951 2.583e-06 0.00377 0.0001747 0.02416 0.01352 2.029e-05 0.3865 0.009536 0.0003159 0.0002228 0.001068 0.542 0.1491 0.005191 0.001672 0.007813 0.001464 0.0023 1.627e-05 0.002266 0.3636 0.009248 0.0005285 0.007182 0.002432 0.5756 0.0001038 0.01193 0.0129 3.345e-05 0.2145 1.766e-05 0.008951 0.0002969 0.01192 0.03051 0.5713 0.005897 0.002525 0.001229 0.007704 0.0004356 0.0007643 0.001092 0.05903 0.3395 0.001783 0.009203 0.0004648 0.007718 0.0006282 8.013e-06 0.01225 0.003091 0.005631 0.02219 0.0959 2.019e-05 0.001685 0.001682 0.117 0.4726 0.4041 6.292e-05 0.00116 0.526 0.0002693 0.01116 0.1175 0.003673 0.4678 0.006833 0.00206 0.5808 0.1014 0.001331 9.719e-05 0.004515 0.06063 0.2079 0.03838 0.003572 9.858e-06 0.004444 0.04501 0.0007474 0.001857 0.3879 0.003562 0.001342 0.003878 0.571 0.003108 7.472e-05 0.001971 0.07987 4.726e-05 0.002794 0.003431 0.01299 0.0004622 0.006558 0.02756 0.001546 0.5185 0.0002542 0.002043 0.001294 0.01274 0.4869 0.007328 0.001866 0.6241 0.0007139 0.003847 0.0008267 0.001011 0.002037 2.222e-05 0.5719 0.00208 0.0003249 0.00455 0.001866 2.663e-05 0.004266 0.0004625 0.04675 0.4434 0.0007703 0.06503 0.01581 0.000283 0.008738 8.98e-06 0.0002399 0.0004874 0.00695 0.03078 0.06458 1.727e-05 0.5676 0.02195 0.001441 0.03458 1.296e-05 6.716e-05 0.0002057 0.00288 0.001003 0.002152 7.581e-05 0.382 0.3773 0.0001948 0.003287 0.002306 0.296 0.006895 5.163e-06 1.118e-05 0.001095 2.77e-05 0.00257 0.0006633 0.001372 0.01717 0.00016 3.458e-06 0.003239 0.01059 0.000828 0.0008695 0.00302 0.02979 0.01264 0.5017 0.0001273 0.002012 0.01223 0.00163 0.0001252 5.154e-05 5.56e-05 0.6673 0.001465 0.002422 2.925e-05 0.001231 0.01542 5.242e-05 0.03254 0.5248 0.6035 0.573 0.01985 0.01299 5.194e-05 0.004349 0.004192 0.4183 0.0007535 0.01509 0.002863 0.00148 0.000233 0.003525 0.3187 0.6036 0.000202 0.0007885 4.776e-06 0.002319 8.971e-05 0.01356 9.381e-05 0.001473 9.729e-05 0.0004322 0.0007479 0.008022 0.0001823 0.3235 9.326e-06 0.006141 0.0033 0.003058 0.0004384 0.009837 0.00374 0.003153 0.0001291 0.003167 0.001575 1.464e-05 1.003e-05 0.2035 0.004131 0.0001317 0.02128 0.5733 0.0007324 0.004077 1.413e-05 0.001327 0.002885 0.1055 0.009711 0.6002 0.6557 0.008898 5.701e-05 0.001971 0.000943 0.001699 0.3811 0.002907 0.0009025 0.00207 0.005137 0.003104 0.008554 0.2971 0.000102 0.5362 0.0006243 0.4529 0.06766 5.681e-06 0.1079 0.004161 0.05343 0.009671 0.002566 0.03066 0.0008215 0.0001166 0.0001452 0.002337 0.008773 0.01588 0.1966 0.008509 0.01114 0.0115 0.5653 0.003516 0.138 0.002758 0.0001493 3.128e-05 0.00803 0.000856 0.3017 0.2777 0.0002274 0.5891 0.001221 0.01002 0.002348 0.0006487 3.898e-06 0.002977 0.002911 0.001018 0.002127 0.00517 0.001712 0.557 3.693e-05 0.01095 6.671e-05 0.002017 0.006781 1.709e-05 4.905e-06 0.01132 0.6432 0.004279 0.0007433 0.005361 0.3401 0.002124 0.2316 0.4379 0.04354 0.5761 0.001005 0.01608 0.3708 0.001104 0.4132 0.004318 0.286 6.613e-05 7.365e-05 0.003522 0.5875 0.0002498 0.5824 0.5559 4.22e-05 0.0004789 4.428e-05 0.001386 0.002754 0.02397 0.05769 0.5176 0.00261 4.503e-05 0.0001443 4.944e-06 0.0002382 0.4732 0.008699 0.5318 0.01238 9.591e-05 0.5215 0.1184 0.01017 0.5734 0.565 0.001908 0.02773 0.006164 0.01568 0.001236 0.005273 0.001064 0.0002177 0.0005618 9.93e-06 0.4265 0.00255 0.0004874 0.01686 0.02986 0.002472 0.009312 0.1175 0.005757 0.03739 0.004242 1.242e-05 0.001267 0.009565 8.06e-05 6.602e-06 0.2122 0.00417 8.329e-05 0.006546 0.0001406 0.01944 0.002698 0.0002785 0.005673 0.01176 0.5838 0.5667 0.0003679 0.5662 0.004056 1.227e-05 0.0001081 0.001184 0.0006142 0.05294 0.01199 0.5443 0.02784 0.5475 1.451e-05 0.00199 0.2902 0.0009408 0.01438 0.004779 0.4038 0.3734 0.006331 0.001211 0.4416 0.001005 0.001209 0.006786 0.001281 0.0001849 8.076e-06 0.005355 0.0009375 0.00403 4.966e-05 0.0002576 0.1739 0.5703 0.2268 0.01595 1.457e-05 0.008935 0.0008221 0.003261 0.3653 0.006658 0.0006179 0.003759 0.002528 0.5709 0.6684 8.251e-05 0.0007485 0.004778 0.01142 0.001044 0.4139 0.574 0.3935 0.4093 0.0003345 0.0001411 0.0003646 0.001837 0.0111 6.86e-06 0.001444 0.3367 5.776e-05 0.0001649 0.3747 0.0001798 0.0002602 0.4317 0.02758 0.6459 0.01004 0.001662 0.0212 0.001088 0.008775 0.002599 6.936e-05 0.005 0.09472 0.01197 0.003755 0.1323 0.003015 0.0007286 0.117 0.01797 0.002552 0.001784 5.788e-05 0.02627 6.979e-05 0.002777 0.0001404 0.001929 0.0003836 0.004355 0.5761 0.002413 0.009132 0.002216 0.003292 0.0001215 0.4798 5.622e-05 0.1017 0.0002003 0.01422 0.03653 0.003123 0.4843 0.03967 0.001154 0.01062 0.0008014 0.001259 0.5731 0.01171 0.03122 0.000629 0.001205 0.0001111 0.01912 0.007854 4.682e-06 0.0007037 7.375e-05 0.1757 1.012e-05 0.5562 0.0006292 0.003485 1.13e-05 0.002421 0.003165 0.5468 0.5861 0.5539 0.5774 0.3273 0.0004982 0.5659 0.01863 0.523 0.0002675 0.01983 0.000951 0.0001193 1.418e-05 0.1345 0.001381 0.0004661 0.01145 9.456e-05 0.00552 0.000285 0.0005336 0.001434 0.009095 0.0003438 0.001515 0.00148 0.3841 0.1803 0.01623 0.00407 0.01992 0.05267 0.003255 9.432e-06 0.002272 0.0001821 0.000314 0.003273 1.285e-05 8.841e-06 0.007974 0.0009006 0.004169 0.005178 0.004455 0.005636 0.001794 0.001515 0.549 0.0008755 0.0005392 0.0011 0.0004927 0.01149 0.001774 0.02897 0.008112 0.0008495 0.4994 0.019 0.4703 0.0009675 0.0002554 0.004471 0.002321 0.005462 2.101e-05 1.204e-05 0.009384 7.884e-05 0.001662 0.5167 0.03665 0.007161 1.673e-05 6.962e-05 0.01546 9.663e-05 0.07625 0.0002852 0.004234 0.03375 0.003158 0.001112 6.101e-05 0.001493 0.3088 0.5272 3.06e-06 0.02259 0.0798 0.001308 0.0005667 1.285e-05 1.221e-07 0.004965 0.4055 0.4055 0.0003409 0.5695 0.0009547 0.001446 0.5329 0.001019 0.005139 1.712e-05 0.3082 1.463e-05 0.008525 0.4397 0.0005191 0.03407 0.008993 0.0435 0.0001495 2.75e-05 1.292e-05 0.02683 7.704e-05 9.538e-05 1.65e-05 0.0005152 0.0003051 0.006948 0.01402 0.002493 0.005385 0.0126 0.6088 0.6228 0.004026 0.06452 0.0005606 1.074e-05 0.006501 0.0008127 0.000662 0.0004868 0.0003856 0.01399 0.0005851 0.0001893 0.005801 0.00437 0.004052 0.04614 0.001044 0.007242 0.5167 0.01227 0.001204 4.015e-06 0.001438 2.871e-05 0.004809 0.309 0.001257 0.3759 8.929e-05 0.0007379 1.889e-05 0.000357 3.415e-05 0.5468 0.002552 0.01204 0.0008525 0.001675 0.0003487 0.06752 0.5717 0.2162 0.00175 0.218 0.003407 0.000709 0.399 3.522e-05 0.3243 0.001242 0.5775 0.5635 0.0006051 0.4874 0.3463 0.3844 9.997e-05 4.729e-05 0.07442 0.0005514 0.0009177 0.02005 0.005136 0.5386 1.335e-05 0.005172 0.5635 0.4524 0.4524 0.003553 0.006956 0.001149 1.71e-05 0.03481 0.004457 0.3966 0.0003691 0.02217 0.0004349 0.0001711 4.157e-06 0.5981 0.01596 7.277e-05 0.03986 0.001425 0.01115 1.57e-05 0.1168 0.005068 0.0008726 0.0002735 0.3663 0.01433 8.773e-05 1.705e-05 0.00411 0.006526 0.5327 7.2e-05 0.002729 6.909e-05 0.01343 0.5804 0.4356 0.001399 0.02514 0.3542 0.001558 0.01032 0.583 0.03444 0.01283 0.002064 0.006009 0.007994 0.3268 0.003479 0.003639 0.0002822 0.5733 0.003209 0.0001962 0.08238 0.01697 0.004582 4.42e-06 0.003016 9.053e-05 0.002395 0.001225 0.02251 0.003391 0.2661 0.005457 0.0005224 0.004363 0.4041 0.4056 0.0022 0.0008181 0.01243 3.953e-05 0.001605 0.001036 0.3951 0.606 0.003623 0.01139 0.0001246 0.001405 0.1766 0.5001 0.002274 0.000481 0.0008698 0.002353 0.3097 0.1802 0.0006206 0.002065 3.254e-05 0.5767 0.001022 0.1815 0.001411 2.366e-05 0.001043 0.002588 0.0002289 0.003439 0.2777 0.007005 0.0001064 0.0001743 0.002468 7.501e-06 0.1601 0.01142 0.001134 0.03125 0.002427 0.008835 0.006005 0.0002236 0.361 0.001693 0.6433 0.4378 0.001339 0.3445 0.001182 0.005638 0.0005573 0.002673 0.003646 0.0006442 0.003939 0.0001311 0.5741 0.000207 0.0002093 9.478e-05 0.0008829 0.04101 0.4316 0.5233 0.006735 0.0006822 0.007347 0.008842 0.04506 0.002831 0.001033 0.0005309 0.2076 8.056e-06 0.00358 0.03822 0.4399 0.5734 0.1764 0.002286 0.01908 0.001324 0.008851 0.002279 0.01272 0.0009057 9.829e-05 2.353e-05 0.0004461 0.003895 0.001222 0.0001869 3.614e-05 0.08126 0.00823 6.517e-05 1.784e-05 0.00165 0.008019 0.004526 0.002399 8.266e-06 0.01894 0.0009368 0.03008 0.002461 0.000685 0.002818 0.5035 4.192e-06 7.878e-06 0.01774 0.007142 0.01332 0.0001986 0.0008486 0.3235 0.0183 0.00811 0.02147 0.004959 0.5672 0.006927 0.2712 0.008961 0.0007186 0.0126 0.003471 0.009111 0.000459 0.000669 0.2403 0.5901 0.0006138 0.301 0.0002639 0.5401 0.001271 0.001564 0.002379 0.009461 0.0127 0.5657 0.005648 0.005403 0.4842 0.0001232 0.02014 0.08954 0.009302 0.5772 0.000174 0.003251 1.299e-05 0.02012 0.004586 0.5735 0.3952 1.575e-05 0.2398 0.0007593 0.5305 0.0003226 0.0001034 0.002429 0.003059 7.65e-05 0.002814 0.4792 0.002873 1.378e-05 0.002835 0.5261 1.801e-05 0.0007356 0.02912 5.819e-06 0.0004407 0.001304 1.805e-05 0.3015 0.5374 0.03746 0.0001137 0.0004121 0.006899 0.2024 0.01913 0.007661 0.007451 0.003354 0.002612 0.03444 0.001862 5.454e-05 0.5005 0.0009973 0.01466 0.003735 0.0001301 7.604e-05 0.0003441 0.004051 0.00146 0.002159 1.175e-05 7.893e-05 0.0006712 0.000239 0.009506 0.002274 0.004395 0.5594 0.000623 0.0008344 0.005719 0.000845 0.002677 0.005664 0.006977 0.4657 1.119e-05 0.005242 0.004004 1.028e-05 0.0001132 0.003114 0.4311 0.4268 0.004543 0.4211 0.4346 0.0007839 0.0006044 0.2396 0.003152 0.0009279 0.002113 0.00013 0.0002188 0.001037 2.128e-05 0.001475 0.007098 0.006079 2.161e-05 5.993e-06 0.02498 0.005548 1.191e-05 3.931e-05 0.006724 0.006082 0.004304 1.072e-05 8.886e-05 0.1052 0.007907 1.666e-05 0.003056 0.0009473 3.411e-06 0.001893 0.0001007 6.088e-05 0.416 2.057e-05 0.0001929 0.000138 0.003438 0.0008048 0.002711 0.0001083 0.005912 0.0001165 0.007606 0.0006817 0.000129 0.000205 0.01985 0.0002145 1.764e-05 0.5655 5.96e-06 0.002377 2.774e-06 0.0011 0.0001406 0.01509 0.000131 0.000519 0.002564 0.01449 0.0154 0.001948 0.00093 2.73e-05 0.0002731 0.00452 0.01922 0.0001668 2.099e-05 0.009938 0.01182 0.5721 0.03166 0.002554 0.0002899 0.4173 0.002128 0.0001958 0.04253 0.001703 0.5007 0.001069 0.0744 1.463e-05 0.0001766 0.0009465 0.0001064 2.115e-05 0.004255 0.02556 0.000276 0.5772 1.644e-05 0.00149 0.003175 7.504e-06 0.0001185 0.01518 0.0008553 1.161e-05 0.01067 0.006451 4.574e-06 8.473e-05 0.1598 0.0002299 2.532e-08 0.0001783 0.007489 0.1691 0.009487 0.6524 0.01337 1.499e-05 1.397e-05 0.08445 0.0009162 1.46e-05 0.02807 0.007808 0.5836 0.004324 0.00668 0.02263 1.082e-05 0.001291 0.00101 1.247e-05 0.002704 5.795e-05 0.002892 0.002814 0.002118 1.757e-05 0.02531 0.0001034 7.93e-05 4.876e-05 0.4025 0.02209 8.5e-05 0.1555 0.5975 0.002026 0.0003883 0.000268 0.1857 0.1244 0.001949 0.07708 0.001208 0.003505 0.001624 0.5276 0.01092 0.003266 0.0002242 0.5623 0.000763 0.0005373 0.003802 7.358e-05 0.5704 0.01331 0.0001 0.0002756 0.0009761 0.007177 0.022 0.009092 0.0008399 0.01529 0.4721 0.0008362 0.5374 0.04608 0.5742 0.001029 0.0001243 0.001169 0.00387 0.02282 0.007099 0.3844 0.1691 0.5637 0.0005433 0.01611 0.003398 0.5714 0.04836 0.002991 0.02999 0.001299 0.004105 0.5965 0.0003356 0.001277 0.000204 0.009976 0.0004869 0.006221 0.0005499 0.0004011 0.003399 0.0008267 0.4135 0.000132 0.003216 0.001254 0.00028 0.572 0.001257 0.0002835 2.142e-05 0.007395 0.0002142 0.3187 0.002934 0.001299 1.36e-06 0.005953 0.001039 0.007153 0.0004653 0.006882 0.001372 0.0007248 0.0128 0.005367 0.6041 1.223e-05 0.003319 1.931e-05 1.852e-05 0.0001074 0.001692 0.002526 0.03707 0.002588 3.791e-05 0.06419 0.00305 0.01469 3.12e-05 5.35e-06 0.001765 0.03648 0.003475 0.00255 0.01423 0.01659 0.2156 0.5461 0.0002617 0.008115 0.000413 7.944e-05 4.893e-05 0.001838 0.000971 0.006058 0.0005971 6.2e-05 0.002159 9.353e-05 0.001523 0.008276 9.589e-05 0.0005747 0.0001321 0.001893 0.4891 0.0009535 0.00414 0.0009185 0.008204 0.00247 0.07514 0.0007041 0.00141 0.4128 7.091e-06 0.002777 0.02987 7.585e-05 0.01703 0.0007556 0.0007319 0.517 0.02833 0.4159 0.0128 0.001581 0.001287 0.3836 0.00524 0.01122 0.005884 0.003777 0.05105 0.005697 0.001259 0.02353 0.5102 1.074e-05 0.2 1.325e-05 0.00181 0.003519 0.0009808 0.07586 0.0006615 0.4193 0.004006 0.0146 0.0004682 0.5776 0.5886 0.6029 0.001454 0.0004201 0.001582 0.0001786 0.2384 0.0005032 8.825e-05 0.0004694 0.1461 0.001243 0.008296 0.6118 0.6116 1.21e-05 0.001427 0.01024 0.5178 7.698e-06 0.06044 2.394e-05 0.02679 0.0006259 0.002011 0.574 0.005457 0.02088 0.006071 0.4062 0.0006489 0.2213 0.0628 6.176e-06 0.00607 0.01029 0.02761 0.1395 5.992e-05 0.0154 0.004928 0.01486 0.0004965 0.008459 0.0005387 0.007361 0.01067 0.004637 0.02535 0.03675 0.001091 0.004766 0.001829 0.03485 0.0007074 0.001069 0.0006566 0.01289 0.01423 0.2988 0.006207 0.02304 0.001374 0.01102 0.04478 0.0105 0.009958 0.001535 0.0003927 0.07653 0.004996 0.001409 0.004417 0.525 0.02807 0.0203 5.913e-06 0.02176 8.712e-06 0.001326 0.6507 1.411e-05 0.008949 0.01673 0.0003846 0.3064 0.000341 0.003175 0.02447 0.000624 0.01219 0.003794 7.884e-05 0.002084 0.09891 0.001054 0.0004247 0.001341 0.008193 0.0005152 0.002915 0.005666 0.4713 0.0009368 0.002746 0.0001077 0.003435 0.5606 0.0004837 0.0001112 0.01481 1.577e-05 0.0001992 0.002964 0.167 0.0003843 6.902e-06 0.002158 0.0002332 0.001281 0.0004924 0.001818 0.1079 8.584e-05 0.001605 6.79e-06 0.01628 0.0007463 0.004536 0.19 5.259e-05 0.002051 0.0006235 1.381e-05 0.002353 0.5765 0.0005848 0.03199 0.02471 0.0005759 0.3272 0.5637 0.3306 0.3306 0.01974 0.01826 0.002227 0.0007245 9.111e-05 0.01799 0.5552 0.0004863 0.0007673 0.001872 0.008399 0.001465 6.197e-05 0.006786 0.4337 0.0004573 0.2237 0.382 0.0009584 1.539e-05 0.00154 0.001798 0.03207 0.0008597 1.095e-05 8.665e-06 0.5723 0.0001291 0.3377 0.001872 0.002722 0.0008777 0.000618 0.00122 0.004993 0.02016 0.0006399 9.97e-05 0.0005693 0.001152 0.2291 0.000462 0.003718 0.5224 0.5803 0.003474 0.003706 0.002774 0.0003369 8.313e-05 0.000355 0.0001389 0.3697 9.483e-06 0.003121 0.01727 0.002743 0.006438 0.00571 2.357e-05 2.086e-05 0.02919 0.02489 0.5899 0.001125 0.00214 0.01377 0.5573 1.064e-05 0.5723 0.008229 0.0008891 0.4068 0.4108 0.0003188 4.919e-05 4.496e-05 0.0001567 0.0006005 0.001031 0.5817 0.5218 0.07342 0.03611 0.01287 0.557 0.0001836 0.1889 0.002271 0.000382 0.00309 4.802e-05 0.5653 0.01181 0.04508 0.008735 0.5652 0.001277 0.5756 0.5907 0.5811 0.00142 9.203e-05 0.0009278 0.5256 1.967e-05 0.0003387 1.57e-05 0.004229 2.06e-05 0.003616 0.1662 0.0008273 0.001668 0.5671 0.5061 0.0009196 0.5319 0.006342 0.001613 0.4111 0.0007051 0.0001203 0.0002094 0.005228 5.776e-06 2.056e-05 8.857e-05 0.0005773 0.000414 0.2384 0.0265 0.0004766 0.03103 0.000963 0.0003164 1.976e-05 0.0001024 0.04996 0.5721 0.0113 0.0002569 7.201e-05 0.0004752 0.4847 0.0596 0.5646 0.004479 0.0002926 0.0001508 0.01698 9.788e-05 0.1172 0.000105 8.024e-05 1.671e-05 0.0007665 9.677e-05 1.713e-05 0.4222 0.4433 0.0809 0.004074 0.5559 0.003004 0.009868 0.01238 0.001135 0.003884 0.001045 0.005504 0.5721 0.00124 0.06426 0.002387 0.001314 0.0001095 0.005271 0.5707 0.001946 0.001286 0.0007332 1.505e-05 0.0009252 0.002705 0.008127 0.005146 0.01659 0.000133 7.405e-05 0.002265 0.0125 0.02853 0.001108 0.0007776 0.02417 0.05898 0.0001357 0.001376 0.000137 0.005742 0.09633 0.6153 0.006093 0.1335 0.00023 0.007325 0.5139 0.0001159 0.0007468 0.01421 0.05801 6.986e-06 0.0001762 0.0002718 0.3711 0.006185 0.0002363 0.003209 0.006011 0.000332 0.2974 0.05236 0.08811 0.03733 7.607e-06 0.6492 6.237e-05 0.6449 0.00079 2.594e-05 0.0002122 0.002023 5.531e-05 0.0188 0.003103 2.237e-05 0.01343 0.061 0.6561 0.05486 0.0003342 0.004824 0.0001059 0.0003447 0.002086 0.0005172 0.0003389 0.0005916 0.004512 0.001852 0.0001072 0.001607 5.841e-05 0.001995 0.006815 1.57e-05 0.002274 2.444e-05 0.005459 0.0007007 4.178e-05 0.00155 0.00206 0.004034 0.0006059 0.0007854 0.01003 0.002718 0.002716 0.0001913 0.3978 0.01304 0.5438 0.5273 0.0007164 0.0002235 0.3709 0.168 0.6152 0.02773 0.01611 0.0002655 0.02619 0.005296 1.11e-05 0.002452 0.0002071 0.002167 0.1348 0.0004127 0.003388 7.355e-05 0.0005093 0.0001513 0.01771 0.006285 0.0001476 0.004111 0.000116 0.4266 1.65e-05 0.6217 0.0001147 5.826e-05 0.002758 0.3203 1.144e-05 0.00411 0.0005923 0.004745 0.01996 0.00182 0.0002226 5.578e-05 0.2062 0.01187 0.0004679 0.0129 6.207e-08 0.00191 0.003822 0.002749 0.002906 0.0005675 0.1369 0.04523 0.0003044 0.003664 0.001538 3.775e-05 0.01252 0.01931 0.6381 0.5962 0.005493 0.0006689 6.208e-05 0.01298 0.006117 0.0008396 0.2825 0.1456 0.001364 0.003906 0.002207 0.004658 9.194e-06 0.0001362 0.6325 0.00154 0.3243 0.000379 9.547e-06 0.00392 0.3289 7.561e-05 0.007275 1.009e-05 0.0003414 0.01436 0.0007338 0.4643 0.003158 0.0003763 0.001859 0.001313 0.01474 0.01546 0.001356 0.003083 0.008628 0.0001468 0.04712 0.008249 5.832e-06 0.001204 0.004295 0.001622 0.04217 0.009248 0.6072 9.745e-06 0.01396 0.0005551 9.561e-05 0.0002341 0.08556 0.003288 0.003248 0.01732 2.211e-05 0.001902 2.036e-05 0.0005165 0.026 0.001899 0.07421 0.0006639 0.003165 0.0004068 0.003104 0.01222 0.2125 0.02243 0.0003938 0.00226 0.0003464 0.002501 0.0001813 0.6033 0.003813 0.002759 0.001484 0.3311 0.002757 0.001786 0.001831 0.0008773 0.006067 0.005383 0.002104 0.002247 0.1018 0.6243 0.001483 0.01355 0.002534 0.01595 0.5613 0.003665 0.0004721 0.001601 0.1162 0.01466 5.847e-05 0.01321 0.001253 0.02228 0.0125 0.001153 0.5075 0.003683 0.02443 0.002199 0.004072 0.01549 0.003371 0.00505 2.442e-05 0.001253 0.04886 0.01694 0.004184 0.0002594 0.3287 0.005632 0.04773 0.3599 0.003111 0.4844 0.0001303 0.001507 0.0002203 0.0007009 0.4187 0.4913 0.05468 0.001613 2.824e-05 0.181 0.002934 0.01183 0.004599 6.894e-05 0.005783 0.002805 0.0003711 0.001274 0.3874 0.000107 0.005062 0.005863 0.1602 0.0005309 0.009059 0.002238 0.003598 0.002468 1.21e-05 0.0009403 2.615e-05 4.788e-05 0.001304 0.01173 0.002721 0.0002048 0.000577 1.398e-05 0.008044 9.237e-05 0.0001043 0.005791 0.06322 0.4278 0.001481 0.0005677 0.004715 0.1435 0.0008536 0.001095 0.004383 0.01857 0.01597 0.5551 0.009644 0.002959 0.00514 0.001674 8.55e-05 0.002868 0.001033 0.004788 0.4607 0.0005043 0.4725 7.288e-05 0.0001062 0.003075 0.0001253 0.000236 0.4137 0.0001624 0.009013 2.522e-05 0.0004189 0.001958 0.03171 0.0006073 0.003062 0.0006069 0.001458 0.01261 2.034e-06 0.0009648 0.002 0.002842 0.05225 0.02131 0.01322 0.0106 0.0146 0.007637 0.005183 0.0004994 0.000122 0.0005878 0.003812 0.007911 0.006217 0.001492 1.005e-05 0.01336 0.002286 0.005394 0.1919 0.004714 0.5974 4.497e-05 0.01143 0.004038 0.0001431 1.052e-05 0.02491 0.0006167 0.3355 0.0002432 0.5339 0.0001175 0.4593 0.001313 0.0007729 0.0004388 0.02387 0.2506 0.5729 0.3593 0.01346 0.00156 0.0001004 0.001784 0.02951 0.01229 0.01377 0.003729 0.0008324 0.004349 0.01122 0.001381 0.5691 0.0005169 0.001411 0.001782 0.577 5.005e-05 0.5898 0.1046 0.6372 4.889e-06 0.003069 0.02411 0.00814 0.0007524 0.03385 0.0001076 0.001877 0.01675 0.004123 0.001038 0.0004597 0.0002257 0.002854 7.887e-05 0.006725 1.51e-05 8.679e-05 0.005266 0.002597 0.4814 0.0001644 0.0004091 0.001524 0.001942 0.5981 0.001231 0.1282 0.0002591 1.3e-05 0.001353 0.6682 9.872e-05 1.624e-05 0.00344 0.0003912 0.003409 0.0001098 0.007567 0.003169 0.001848 0.57 1.252e-05 0.0487 0.4595 0.0004208 0.1003 0.4046 2.099e-05 1.424e-05 0.001428 0.0001384 0.003525 0.04039 0.004503 0.03693 0.5327 0.08485 0.0002925 0.0007046 0.5275 3.74e-05 0.5173 0.0001228 0.005693 0.2013 0.0006895 0.00719 0.0002302 0.06406 1.538e-05 0.000231 0.1489 0.003974 0.02435 0.01543 0.2139 0.5273 0.0002423 0.01877 2.134e-06 0.001672 0.005839 1.754e-05 0.009568 0.5273 0.0004059 0.000232 0.0006124 0.0009513 0.005223 0.04839 0.00197 0.2909 0.003321 0.02092 0.09441 0.005937 0.0005188 0.5733 0.002742 0.001421 8.929e-05 0.4139 0.01793 0.0554 0.04632 0.001486 0.1294 0.0005746 0.0006174 0.006447 0.006339 0.001491 0.0001144 0.006535 0.01087 8.448e-05 0.5118 0.3202 5.498e-05 0.01031 0.01775 0.005858 0.001313 1.657e-05 1.659e-05 0.01429 0.002042 0.1413 0.5171 0.02753 0.003905 0.01005 0.001227 0.002483 0.006577 0.4783 0.004858 0.001637 0.01589 0.0009958 0.4373 0.001406 0.0002889 1.743e-05 2.242e-08 0.5173 0.002552 0.005571 8.009e-05 0.005662 0.0005991 0.0002839 0.0006638 0.5672 0.005992 0.2194 0.005432 5e-06 0.004789 0.0007545 0.02206 0.005275 0.004329 0.0002996 0.0006758 0.001354 1.116e-05 0.5618 0.5639 0.000143 0.00528 0.0004189 0.0008137 0.0006027 0.0005352 0.00168 0.003217 0.00897 0.02925 0.0001333 2.886e-05 6.977e-05 0.01819 0.003366 0.2507 0.5693 0.0006797 0.0127 0.06063 0.0006029 0.0001412 0.0004109 0.02718 0.301 0.5775 0.01179 0.0001125 0.001705 0.5757 6.37e-05 1.125e-05 1.554e-05 0.01764 0.4528 2.913e-05 0.0009978 0.01472 0.0001492 0.008335 0.0002664 0.002399 0.004063 0.0004617 0.001004 0.001086 0.007262 0.1652 0.01256 0.00273 0.0208 0.002548 0.008717 0.04667 0.003764 0.05826 0.001489 0.000278 0.5836 0.4797 0.009372 0.0307 0.05635 0.3399 0.0007049 1.338e-05 0.004836 0.02184 0.0001103 0.005267 0.003134 0.003227 6.613e-05 0.001308 0.0002366 0.02469 0.003541 0.007836 0.001188 0.4045 0.002994 0.004547 0.03527 0.007254 0.01619 1.248e-05 0.01019 0.03027 0.004526 0.003652 0.009919 0.0271 7.368e-05 0.0004101 0.1239 0.0004507 0.002088 0.001113 0.566 0.005211 0.0002887 0.001865 0.01593 0.0003389 0.002571 0.0009997 0.0123 0.001804 0.5882 1.334e-05 0.004617 0.00945 0.0001014 0.2052 0.00244 0.002635 0.02697 6.134e-05 0.003037 0.006223 9.026e-05 0.007711 0.008438 7.314e-06 0.007756 8.628e-05 0.0008984 0.0002265 0.6033 9.22e-05 0.004358 0.003817 0.0004304 0.007049 0.003786 0.0001677 0.4819 0.002168 0.3911 0.3971 0.000557 0.05006 0.002235 0.01767 0.6411 0.001129 0.002798 0.004557 0.1198 0.003385 0.0002804 0.00498 0.0816 1.611e-05 0.004839 1.263e-05 6.451e-05 0.0008439 0.5784 0.4203 0.0002448 0.008717 0.02121 0.005083 0.0007165 5.768e-05 0.000368 0.4158 0.0006423 0.002697 0.002095 0.01909 0.3488 0.004263 0.001139 1.328e-05 0.5637 0.002757 0.0001121 0.1587 9.671e-05 1.89e-05 0.4651 0.3821 0.2341 0.5586 0.00029 0.02872 0.02604 0.002116 0.01677 0.0008404 0.001283 0.03736 4.842e-05 0.6479 0.0005476 0.01185 0.01158 0.0003777 0.0008058 0.00029 0.005205 8.272e-05 0.005234 0.02391 0.002543 0.00382 0.0001332 8.054e-06 0.09286 0.009046 0.0007585 0.002372 3.33e-05 0.004443 0.006243 0.0001528 0.0009422 0.002869 0.0006081 0.5904 0.5947 0.01785 1.199e-05 0.0007885 0.01668 0.4085 0.008209 0.5728 0.0002474 0.0001254 0.5553 0.001188 0.4872 0.004041 0.00114 0.00179 0.000293 0.000609 8.355e-05 0.3382 0.5654 0.0001058 0.01925 0.00106 0.01246 0.003058 0.5673 0.000495 0.0001699 0.001646 0.0003457 0.5688 0.0005529 0.0003197 0.002342 0.0001493 0.002882 0.001437 0.00463 0.6246 0.0004415 0.001613 0.001093 0.4147 0.002398 0.4951 1.892e-05 0.6142 0.008059 0.001767 0.001128 0.001603 1.163e-05 0.5633 0.009356 0.01679 0.0003278 0.003197 0.004422 4.7e-05 1.311e-05 0.005666 0.06364 0.06435 0.003361 0.5814 0.0005033 0.003459 0.02426 0.0007402 0.03308 0.00163 0.0006377 0.04061 0.006036 5.874e-05 0.4725 0.02067 0.004576 0.004184 0.002352 0.0009737 0.001576 0.001337 0.01202 0.0009971 0.005245 0.01026 0.5794 0.001556 0.0005421 2.648e-05 0.009021 0.1424 0.00915 0.000763 0.002933 0.4258 0.003498 0.01603 0.00488 0.5406 0.006834 0.004807 0.2354 0.00747 0.02236 2.906e-05 0.002632 1.643e-05 0.5464 0.000428 0.01999 0.016 0.00161 0.4232 0.05792 0.0004844 0.566 0.1411 0.003696 7.451e-05 0.005489 0.003011 0.0001025 3.035e-05 0.005648 5.51e-05 3.996e-06 0.000849 0.001326 0.005355 0.005071 0.422 0.5696 0.5897 0.0001597 0.007896 0.02101 0.03141 0.00431 0.007609 0.005618 0.07385 0.2697 0.001877 0.002627 1.637e-05 0.001376 0.2883 0.003974 0.02358 0.0322 0.4605 0.0005905 0.01269 0.004002 0.001855 0.2393 0.003685 0.008003 1.365e-05 0.0007588 0.0003316 0.01977 0.0004709 0.001987 0.4162 0.001944 0.02255 0.0151 0.001074 0.004529 0.003498 0.0005354 0.001464 0.002169 0.0001632 0.008874 0.07914 0.002183 0.005013 0.003786 0.0009107 1.57e-05 0.01801 0.006212 0.02587 0.2618 0.003738 0.0005955 0.000561 0.06854 0.5735 0.0008906 0.004667 0.03893 0.5671 1.062e-05 7.955e-05 0.1236 0.5506 0.0001529 0.004521 0.003761 0.00378 0.001207 6.249e-05 4.774e-06 0.4886 0.001972 0.0004395 4.086e-05 0.006528 0.004721 0.005709 0.4328 0.0002243 0.0004159 0.004313 0.003432 0.001479 0.0002427 0.001201 7.595e-06 0.000334 0.0001448 0.001002 0.01907 0.01721 0.5908 0.559 0.006802 0.03472 0.002407 2.013e-05 0.01382 1.521e-05 4.329e-05 0.0002843 0.1591 0.00615 6.847e-05 0.001417 0.0002077 0.001417 0.0007286 0.001839 1.628e-05 0.01022 0.2093 1.174e-05 0.001425 0.008996 0.01683 5.856e-05 0.0001056 0.0001023 0.009809 1.219e-05 0.002925 0.01276 1.642e-05 0.0001631 0.01086 0.006407 0.5761 0.002382 1.91e-05 1.274e-05 0.05595 0.000472 0.0287 0.5111 2.634e-05 0.005973 0.006257 0.0004975 0.3567 0.007265 0.004736 0.02741 0.5649 0.008924 4.462e-05 0.1824 0.0238 9.512e-05 0.03161 0.0274 0.001024 0.5994 0.001126 0.1485 0.02157 0.0001676 0.017 0.007879 0.000191 0.5525 0.000222 0.1408 0.004828 0.0387 0.0172 0.001116 0.008436 0.0003183 0.004799 0.0002927 0.06308 0.003569 0.001658 0.4084 0.0006398 0.5736 4.1e-06 0.0004385 0.002431 0.001398 0.0008926 0.0007644 1.275e-05 0.5938 0.01196 0.009331 0.001535 0.1977 0.002136 0.004465 0.006941 0.5727 0.007268 4.51e-05 0.003096 0.003763 0.003386 0.002771 3.203e-05 2.614e-05 0.2923 0.01711 2.974e-05 0.0001967 0.1644 0.05423 0.001991 0.4871 0.0004749 0.004457 0.008032 0.01123 0.56 4.174e-05 7.793e-06 0.5673 0.0002243 0.0002259 2.987e-05 0.0007689 8.667e-05 0.5706 1.586e-05 0.006311 0.0002908 3.481e-06 0.00264 0.0121 0.00101 0.5515 0.4117 0.1322 0.00274 0.00199 0.0001628 0.6525 0.003169 0.5373 0.6254 0.004078 0.0002876 0.000172 0.007036 0.4272 0.002114 0.008641 0.4016 0.0001756 0.000874 0.00808 0.5871 0.03395 0.002468 0.003822 8.729e-05 0.05682 0.6013 9.607e-05 0.002319 0.00102 1.343e-05 0.004309 0.00146 0.001023 5.324e-05 0.008844 0.0005561 0.01296 0.01195 0.4398 0.1746 0.0001629 0.0006901 0.00463 0.008106 0.0001935 0.001614 1.762e-05 0.003462 0.006331 0.001369 0.0002885 0.2077 0.0004755 0.006613 0.0008991 0.009975 8.245e-06 9.418e-06 0.06682 0.007266 0.005066 0.003067 0.5216 0.005902 5.407e-05 0.5354 0.001893 0.6124 6.111e-05 7.475e-05 0.0007934 0.01527 0.001372 0.0001889 0.0001291 0.00647 0.497 0.01637 0.007556 0.04673 5.847e-05 0.003813 0.00078 6.554e-06 7.202e-05 0.002377 0.005401 0.003147 0.003189 3.568e-05 6.622e-05 0.4074 0.001367 0.0003581 0.001146 0.001683 0.001955 0.004597 0.03351 0.001171 0.004663 0.0001232 0.5644 0.003917 0.0694 1.284e-05 2.23e-05 0.5927 0.0001033 5.196e-05 0.5737 0.0008114 4.467e-05 0.03242 0.0003194 0.003218 0.0003046 0.007356 0.0015 0.002009 0.001434 0.01518 0.002925 0.003181 0.005175 0.009887 0.1069 0.003246 0.0001105 0.2574 0.009391 2.707e-05 0.001728 0.00695 0.0001292 0.003593 0.002387 0.01158 0.007061 0.021 0.001707 0.0003908 0.02041 0.01628 0.001063 0.001824 0.001244 0.002462 5.607e-05 0.073 0.5706 0.586 0.004713 0.006018 0.00153 0.003227 0.0002365 0.0002228 0.0003362 0.0006976 0.4282 0.5901 0.0008635 0.1303 0.0002376 0.0003501 2.966e-06 5.965e-05 0.001795 0.0001317 0.004846 0.005475 0.00239 0.0005009 0.003223 0.0004689 0.07404 0.002818 0.007373 0.0001051 0.002945 0.0001585 0.01241 0.0003444 0.0003495 0.01375 0.0001595 0.4714 0.0001335 0.0005698 6.825e-05 0.004909 0.5842 0.00103 0.001059 5.66e-07 0.08988 0.02252 0.0002373 0.005765 0.0003269 0.4003 0.5782 0.104 0.0006595 0.002902 0.02601 0.0004128 0.08768 0.01155 0.003731 0.338 0.3684 0.003749 0.04397 0.005032 0.002002 0.01288 0.0001097 0.00731 0.5107 0.0007893 1.646e-05 0.002659 0.000131 0.01075 0.003128 0.1865 0.04162 7.343e-06 0.3816 0.03034 0.002371 0.1791 0.005108 0.004731 0.002145 1.535e-05 0.3056 0.2112 3.309e-05 0.005824 0.002156 0.01496 0.5952 0.0009615 0.0003168 0.0001511 0.4706 0.0017 0.005574 0.5051 0.003136 0.2974 0.3427 0.5568 0.002348 0.3199 0.01289 4.73e-05 0.005411 0.01239 0.00037 0.006488 0.4886 0.00863 0.0001183 0.004206 4.939e-06 0.3273 0.03697 0.008784 0.001718 0.0007282 0.03642 0.5571 5.145e-05 0.6093 0.002589 0.02777 0.03548 0.3973 0.0004636 5.587e-05 2.771e-06 0.0002997 0.002772 0.1077 8.588e-05 0.06036 0.01866 0.009159 0.1312 0.1831 0.001281 0.001745 0.01966 1.479e-05 0.0007374 0.005146 0.0007854 0.002329 1.329e-05 0.005633 0.001134 0.003323 0.001243 0.00246 0.0005476 0.02171 0.04252 0.6424 0.008148 6.338e-05 0.005573 0.0002661 7.958e-06 0.005267 0.0001394 0.002052 0.0002884 0.5697 0.0007387 0.009627 0.04279 0.001437 0.01246 0.4595 0.4629 0.004504 0.4935 0.001965 0.003623 0.001557 0.001621 0.0002741 0.0001332 0.5449 0.0003931 0.01012 0.0001081 0.001504 0.01398 0.001608 0.0003364 0.003607 0.0006599 0.000653 0.0006559 0.006764 0.03108 0.01 0.005909 1.286e-05 0.0003994 0.0001479 0.573 0.002852 0.001443 0.002865 0.008208 0.0009845 0.0005286 0.002247 0.0004159 8.545e-05 0.004344 0.001233 6.632e-05 0.003648 0.4323 0.01677 0.004101 0.0003898 1.49e-05 0.001424 0.02208 2.181e-05 1.867e-05 0.0006262 0.005108 0.00212 0.001204 0.0002156 0.003081 0.008155 0.0002137 8.971e-06 0.01157 0.006571 0.002427 0.001864 0.02655 0.009945 0.001274 8.741e-06 0.06491 0.04794 0.01062 0.004516 0.0008256 7.608e-05 1.693e-05 0.000188 1.602e-05 0.004442 2.79e-05 0.003046 0.001343 0.04352 0.006315 0.01278 0.0004212 8.409e-05 0.3425 0.000896 0.0001779 0.01167 0.5185 0.0007825 8.346e-05 0.01532 5.626e-05 0.001266 0.002566 0.001217 0.356 7.533e-06 0.03229 8.349e-06 0.006256 0.000146 0.6116 0.0007535 1.608e-05 0.00033 0.006012 1.971e-05 0.0027 0.0007889 0.001306 0.007383 0.004051 0.001799 0.02567 0.1223 0.002472 0.02498 0.0001329 0.003183 0.001579 7.341e-05 0.0006268 0.0003257 0.01705 1.511e-05 0.5055 0.6213 0.1399 0.01941 0.01031 0.4357 0.000492 0.4788 0.0008877 0.004197 0.002553 1.307e-05 4.049e-05 0.4264 0.6341 0.0004817 0.05203 8.531e-05 0.0001189 0.03265 0.004559 0.002193 0.0006039 0.0001041 0.0003958 0.002308 0.003017 0.01266 0.004044 1.529e-05 0.003097 0.03027 0.03927 0.0001977 0.001704 1.781e-05 0.009254 0.06503 0.0001016 0.001559 0.01053 0.001038 0.5779 8.771e-05 0.006392 0.003689 0.02218 0.5457 0.001015 1.038e-05 0.5652 0.005337 0.001684 0.4113 0.001854 0.000379 9.705e-06 2.025e-05 0.004017 1.368e-05 0.0001389 9.14e-05 0.007405 0.007763 0.01155 0.003073 0.002334 0.1899 0.00373 0.5965 0.02578 0.0005382 1.935e-05 0.00193 0.3178 0.001559 0.001699 0.01282 0.3246 0.004719 0.07104 0.0001134 0.03391 0.0003328 0.5567 0.0293 0.01345 0.02561 0.006232 0.03001 0.0003432 0.01018 0.01833 0.5649 0.1692 0.002762 0.01387 0.01041 0.0003973 0.003062 0.03539 3.283e-05 0.06239 0.006393 0.006268 0.4225 0.001581 0.02256 0.002196 0.000959 8.842e-05 0.5477 0.5791 0.001042 0.0003743 0.1521 1.766e-05 0.006394 0.0001215 0.0003169 0.0003212 0.002462 0.00321 0.01725 0.00205 0.004301 0.002766 0.3116 6.111e-05 0.001489 0.0005534 0.2164 0.0008176 0.005185 2.072e-05 0.000376 0.01037 0.006369 2.603e-05 0.0002533 0.01609 0.0008119 0.000516 0.0005966 0.000665 0.00357 0.0003483 0.007966 0.375 0.007856 0.000515 0.003496 0.002004 0.5218 0.001475 0.005412 0.2326 0.0008396 0.002638 0.6363 0.1308 0.006874 0.007509 0.0002843 0.004303 0.001978 0.0137 0.003856 0.4037 3.617e-06 0.007399 0.5077 0.4596 0.006752 5.155e-06 0.0009265 0.007613 6.611e-05 0.5538 0.0032 0.001618 0.0002049 0.003965 0.002008 0.0003835 0.002424 0.0007171 0.003387 0.0001923 0.00317 0.6437 0.5631 0.0003349 0.4204 0.00158 0.001203 0.001512 0.0004046 0.6503 0.01927 0.003115 0.008506 8.012e-05 0.003944 0.002263 0.5726 0.001228 0.00452 0.01436 4.754e-05 0.02114 0.01725 0.002509 0.001683 0.009926 1.668e-05 0.0006588 0.5852 0.001046 0.124 2.986e-05 0.002213 0.03403 0.0005193 0.003189 0.001075 0.5434 0.002384 0.00438 0.623 0.0002397 0.002135 0.01467 0.5643 0.000172 0.0005839 0.001199 3.628e-06 1.071e-05 0.4431 1.845e-05 0.01821 5.354e-05 0.01083 0.003975 0.0006702 9.685e-05 0.5808 4.13e-06 0.01502 0.000851 0.0001999 0.001771 0.004871 0.0004794 0.00271 0.3511 0.001852 0.0001014 4.089e-05 7.886e-07 0.01022 0.001488 0.00969 0.008802 0.001453 0.0008193 0.0005258 0.003851 0.00802 0.5144 0.02108 0.0001579 0.001366 0.002788 0.01631 0.005036 0.0003708 0.0009885 1.002e-05 0.0004098 0.3866 0.1577 1.221e-05 0.01169 0.3748 0.01097 0.02034 0.0005904 0.5644 0.002112 0.566 0.0002767 0.005587 0.002127 0.03087 0.0178 0.0009102 0.0001031 1.323e-05 0.002506 0.002521 0.01148 0.007419 0.0006328 0.0006619 0.0001476 0.003659 0.09533 0.1239 0.0008376 0.005986 0.003308 0.0002344 1.741e-05 0.4153 0.6571 0.0001269 0.00382 0.2439 0.0001262 0.001482 0.0002977 8.462e-06 0.0008698 0.004878 0.005953 0.0002203 0.0105 0.004917 0.006291 0.001251 0.003912 1.13e-05 0.005666 0.001741 0.339 7.451e-05 1.962e-05 0.0007945 0.001694 0.001613 0.004737 9.769e-05 0.007464 0.004692 0.0008825 0.003364 0.01294 0.0004606 0.07262 0.4531 0.004819 0.1728 0.0006773 0.3852 0.5511 0.005997 0.001018 0.000853 0.0009877 0.1454 0.6384 0.01374 0.01461 1.752e-05 0.001826 0.654 0.5687 0.003432 1.124e-05 0.003708 0.003007 0.004449 8.264e-05 0.0003677 0.002775 0.01003 0.0002462 0.128 0.003269 0.001134 5.04e-05 0.01151 0.004018 0.004407 0.00269 0.02859 0.004328 0.0002136 0.01323 0.2559 0.006312 0.0005596 0.3846 0.1427 0.000213 7.869e-06 0.08848 0.02088 9.161e-05 0.001477 0.01686 0.001134 0.003437 0.002917 0.002081 0.4271 0.006862 0.0008383 0.01405 0.007234 0.0009857 0.00737 0.001347 0.3286 0.01361 0.001276 0.02696 0.0327 0.5384 0.01096 0.4283 0.6421 0.642 0.0002661 0.04639 0.005932 0.001041 0.001281 0.4148 0.001459 0.007799 0.007512 0.000973 0.0007168 0.00325 8.104e-05 0.04902 0.003553 0.3839 6.76e-06 0.5704 0.001181 0.2653 0.0002366 0.4127 0.0147 0.0131 0.005696 7.216e-05 0.001478 0.0001261 0.000251 0.05874 0.5839 1.358e-05 0.008439 0.01344 7.906e-06 0.002512 0.00417 0.000545 0.394 0.003293 0.1169 0.5344 0.2791 0.008664 0.0009827 0.000233 0.01785 0.0001481 0.5516 0.1408 0.01213 0.003408 1.5e-05 6.939e-06 0.6081 0.00429 0.5902 0.4131 0.4127 0.0003717 0.5566 0.001115 0.01101 0.2229 0.0007072 0.327 1.894e-05 0.5539 0.0008867 0.5672 0.06555 0.002274 0.001541 3.518e-05 0.07077 0.006128 0.006911 0.0003547 0.003586 0.004319 0.003841 0.5068 0.001328 0.007476 0.6038 0.00121 0.005419 0.002241 0.002047 0.000966 0.02008 0.00516 1.934e-05 6.427e-05 0.006495 0.0007348 0.6214 0.6003 0.3013 0.01691 0.003985 9.758e-05 0.0001874 0.04733 8.274e-05 0.000799 0.0006001 0.01011 1.711e-05 0.4662 0.003705 0.006643 0.3314 0.5586 0.002323 0.3699 0.0001773 0.3549 0.0006628 1.888e-08 0.2066 0.001307 1.143e-05 0.00121 0.002178 0.001816 0.1804 0.4279 0.0005231 0.0001135 0.009618 0.0326 0.0005783 0.001816 0.1171 0.0002267 0.5578 0.09453 0.07751 7.528e-05 0.0002676 0.0006687 1.397e-05 0.0007046 0.5083 0.001531 0.01097 9.468e-06 0.0007909 0.5601 8.743e-05 0.01368 0.001128 0.0009023 0.002436 0.0008371 9.053e-07 0.004767 0.00191 0.0003749 0.000298 0.00174 1.274e-05 0.00955 0.5836 0.01789 0.2074 2.067e-05 0.1647 0.0001023 0.0005466 0.001422 1.168e-05 0.009829 0.01442 1.864e-05 0.00205 0.000821 0.296 0.001263 0.005723 0.004838 0.003944 0.0001284 0.0007032 0.0001349 0.0009773 0.0003898 5.921e-06 0.01063 0.3797 0.5732 0.03015 0.001462 0.4047 0.01244 8.559e-06 0.0002481 0.004004 1.514e-05 0.000197 0.0006334 0.001936 0.003395 0.6144 0.233 9.652e-05 8.668e-05 0.0001457 0.0002838 0.0004248 0.2812 0.0006948 0.006827 1.666e-05 1.581e-05 0.3628 0.002526 3.283e-05 0.002525 0.004843 0.0145 0.003594 0.0002727 0.3947 0.001535 0.0006398 0.0004521 0.002311 0.0006343 0.4725 0.001396 0.03607 0.0007565 0.00587 0.003957 0.00204 0.0008059 0.0004614 0.002997 0.0007163 0.003435 0.00132 0.0007435 0.02479 0.01477 0.0009954 5.444e-05 0.63 0.0001438 0.0007029 0.00103 7.479e-05 0.5507 0.003577 1.782e-05 0.01213 0.008374 0.002845 0.0006917 0.003129 0.000116 0.0003158 0.003126 0.0006541 0.5393 0.004983 0.6118 0.001164 0.001451 1.239e-05 0.003425 0.6354 1.757e-05 0.0134 0.008522 0.0001299 0.01417 0.003974 0.3945 0.1833 0.000982 0.005416 0.0007478 0.5511 0.0001121 0.003247 0.1631 0.6285 0.004929 0.006005 0.0003064 0.447 0.001884 0.0005928 0.001007 0.009877 3.627e-05 0.6235 0.0512 3.512e-05 0.01148 0.01413 0.002256 0.1176 9.667e-05 0.003665 0.01867 0.001185 0.3994 0.002139 0.001833 0.01742 0.0002547 0.002917 0.0006368 1.655e-05 0.006391 0.4427 0.001954 0.001401 0.5735 0.007048 0.01759 7.16e-05 0.003397 0.01823 9.15e-05 0.03287 0.002578 1.508e-05 0.003773 0.002331 0.582 0.003048 0.003388 0.001481 0.01149 0.007328 0.5858 0.0002312 0.00105 1.389e-05 0.002052 1.048e-05 0.001702 0.01634 0.5097 0.02154 0.002761 0.003615 0.0004771 0.002912 0.009543 0.005747 9.448e-06 1.296e-06 0.003483 0.002882 0.002315 0.0338 0.5798 0.0004595 0.0007926 0.006089 0.0001121 0.0004232 0.05553 0.0129 1.001e-05 0.5909 0.002025 0.2964 0.0006874 0.0004668 0.002599 0.3732 0.01317 0.01155 0.002105 0.0001461 0.0004246 0.006392 6.122e-05 0.008529 0.001311 0.001534 0.001149 0.0006467 0.0007449 0.009734 0.002377 0.01284 0.5698 0.5938 0.003241 0.004413 0.0006849 0.0898 0.002668 1.301e-05 0.4073 0.003167 0.4073 0.000128 0.0002939 0.0002137 0.00128 3.571e-06 0.0006866 1.232e-05 0.337 0.6266 0.001692 0.00331 0.0123 0.5401 6.552e-06 0.0134 0.008751 0.0001934 0.0003222 0.01615 0.4932 0.001625 0.0002452 0.02861 0.001978 0.0003847 0.0006892 0.5194 1.355e-05 0.6024 0.5191 0.006851 1.635e-05 0.003892 0.4722 0.0009133 0.009207 0.001176 0.1524 0.1329 0.003526 0.00589 0.02141 0.0001583 0.0001286 0.09739 0.0007622 2.316e-05 0.397 0.003962 0.0001587 0.0004144 0.2433 2.028e-05 0.008987 0.0007567 6.836e-05 0.0001967 0.004203 0.6187 0.004972 0.000724 0.001794 0.0004676 0.004416 0.0001134 0.0002744 0.006563 0.003263 0.01039 0.0008159 0.001872 0.3324 0.0007207 0.007047 0.002595 0.00128 0.01932 0.001164 2.075e-05 7.479e-06 0.0001474 0.6204 0.1175 0.001892 0.5626 0.001004 0.4178 0.007038 9.228e-05 2.628e-05 0.4066 0.00139 0.007962 0.003519 0.005617 0.609 0.01113 0.0008329 0.003722 0.0001137 0.0006742 0.002487 0.004949 6.585e-05 0.5719 0.002248 0.00534 0.2158 2.524e-08 0.5748 0.0002793 0.3849 1.953e-05 0.0008083 0.05137 0.5595 0.5264 9.191e-05 0.1488 0.5701 0.6009 0.0008966 1.107e-05 0.001659 0.001666 0.01312 0.01959 0.1864 0.0002527 0.003724 0.0004132 0.002278 0.005584 0.003886 0.004261 0.0001407 0.5325 0.001984 0.2655 8.032e-05 0.0004885 0.0009043 0.0002899 0.0004763 0.004394 0.0004683 0.003537 0.5604 0.59 0.0457 0.01672 0.002675 0.009905 0.01719 0.009167 1.458e-05 0.0001005 0.002631 0.0003559 0.04036 0.2019 0.001662 0.001003 0.003006 0.01461 0.00682 6.529e-06 0.4404 0.3394 0.009432 0.001837 0.3248 0.0158 0.008048 0.003317 0.003042 0.3539 6.559e-05 0.01315 3.526e-05 1.266e-05 0.5804 1.536e-05 6.016e-05 0.005306 0.001217 0.0002108 0.0001004 0.5725 0.004007 0.0003832 0.001809 0.0004195 0.0009004 0.02837 0.006261 0.001878 0.004618 0.01244 0.000498 0.000259 0.009845 0.001315 0.000367 0.03183 0.0002016 0.003081 0.001262 0.02435 5.847e-06 0.0001033 7.37e-05 3.683e-05 0.004555 1.198e-05 0.3472 0.0028 0.06036 0.001968 0.0009445 0.0008283 0.0001521 0.001053 0.0005615 0.5578 0.004437 0.5736 0.061 0.02177 0.006064 0.001566 0.003032 3.361e-05 0.000708 0.005242 0.002257 0.6008 0.004371 0.001906 0.05005 0.003665 0.3944 0.002722 5.254e-05 0.001966 0.03158 0.3543 0.0243 0.0194 0.0007076 0.0008205 0.00513 6.398e-05 0.001155 0.3452 0.01204 6.841e-05 0.0006219 0.2927 0.0009846 0.0003356 0.008117 0.4854 0.009321 0.02052 0.003894 0.0002067 9.598e-06 0.02273 0.01019 3.426e-05 0.07367 0.4071 0.002999 0.2204 0.000402 1.918e-05 0.5524 0.003217 1.535e-05 0.4255 0.5491 0.576 3.338e-05 0.5955 0.02554 9.546e-05 0.002836 0.04185 0.1071 0.066 0.003069 0.03183 0.002315 0.001437 0.0001007 0.05414 0.0007694 0.00157 0.3877 0.004554 0.1549 0.003063 6.642e-05 0.006186 0.02118 0.006793 0.09114 0.0009803 0.0129 0.03476 7.762e-05 4.262e-05 0.1293 0.4796 0.002065 0.002251 0.003024 0.0001917 0.03259 0.007693 0.00362 0.0006749 0.005314 0.00445 1.592e-05 0.0022 7.192e-06 0.009319 0.006907 0.005758 0.03021 0.02372 0.008859 0.0002203 0.5568 0.009625 0.0001419 0.374 0.01215 0.0006525 0.02474 0.00361 0.0002045 7.329e-05 0.004392 9.831e-05 5.786e-05 0.0004781 0.005698 0.009044 0.5783 0.0001642 0.003579 0.5508 9.727e-06 0.0002075 0.482 0.4385 0.0009182 0.5303 0.0001631 0.1799 0.5829 0.001074 0.5434 0.5434 0.0005859 0.001704 0.4767 0.000212 0.5722 0.0001512 0.0001906 6.163e-06 0.001076 0.001123 0.001727 0.0006406 0.0008213 0.01106 0.001013 0.3572 0.001748 0.0005849 0.1809 3.825e-06 0.6398 0.6398 0.003453 0.05146 0.1725 0.02492 5.581e-05 0.002269 0.002666 4.996e-05 0.003375 0.001837 0.01796 0.002955 0.006121 0.01253 0.005908 0.4944 0.003473 0.00235 0.001053 0.6035 0.02027 9.24e-05 0.000771 0.3318 0.5139 0.0005487 0.572 0.09888 0.4995 0.0003408 0.001462 0.4936 0.004124 0.0009987 0.01337 0.0005798 0.003563 1.27e-05 0.005762 0.001428 0.00115 0.006912 0.0005253 0.4855 0.4853 0.0004 0.3603 0.005141 0.5651 0.0347 0.0003255 0.000833 0.01344 1.346e-05 0.05352 0.004108 0.01083 0.5177 0.008675 0.006901 0.001788 0.0164 0.004238 0.0002898 0.4094 0.5661 0.2696 0.0006809 0.0001195 0.01444 0.02833 0.0109 0.6417 0.0005894 0.04441 0.3788 0.0002908 0.002376 0.004428 0.00146 0.01776 3.866e-06 0.1992 0.009405 0.5878 0.006685 0.002659 0.01664 0.3776 0.5625 0.0002898 0.001165 0.4504 0.04733 0.002453 0.0001782 0.000129 0.5692 0.006744 1.331e-05 0.01757 2.464e-05 0.5713 1.77e-05 1.466e-05 0.1909 0.0005844 0.06055 0.008748 0.2792 0.00788 0.01326 0.0002505 0.0008986 0.02701 0.008156 0.004949 0.003908 0.002835 0.1377 2.964e-05 0.0001585 0.000103 0.03238 0.005288 0.00677 0.00409 0.004898 0.0009832 0.01156 0.5154 0.3096 0.0004599 0.5693 0.002367 6.401e-05 0.003792 1.863e-05 9.772e-05 0.3493 0.008701 0.001559 0.3283 0.0003862 0.01767 0.006477 0.0002931 0.2496 0.01515 0.001174 0.02568 0.5618 0.01421 0.5427 6.114e-05 0.004354 2.624e-05 0.0002373 0.003608 0.005592 0.004404 0.007106 0.007356 7.908e-05 0.01184 0.01008 7.523e-05 0.0005979 0.004517 0.002177 0.06881 0.01025 0.6115 4.283e-05 0.5251 0.01912 0.0005823 0.0003398 7.483e-05 0.4146 0.5637 0.514 0.002506 0.05595 0.08847 0.2973 0.5393 0.0001971 0.001636 0.0009346 0.001484 6.496e-05 0.006864 0.0002019 0.002401 0.0002333 0.3968 5.129e-05 0.08903 0.0001087 0.003686 0.4049 0.02006 0.0009782 1.637e-05 0.5529 1.307e-05 0.001234 1.029e-05 0.03887 0.001379 0.02867 0.0001285 0.5003 0.06596 0.006784 0.214 0.5732 0.5746 6.759e-05 0.008866 0.05434 0.0002696 0.002343 0.01741 0.597 0.0007316 0.002677 7.162e-06 0.04304 0.003647 0.0004954 0.0006137 0.09111 0.001231 0.002799 0.0008333 0.005287 0.0007175 0.002769 0.1515 0.001263 0.0002069 0.08778 2.409e-05 0.5813 3.147e-05 0.001138 0.2725 0.5967 0.005691 0.0001302 6.556e-05 0.03073 0.001904 0.005386 6.316e-06 0.004172 8.82e-06 0.5786 0.6382 0.0001271 0.009562 9.937e-05 0.01539 0.001567 0.0001371 9.514e-05 0.003128 1.623e-05 0.001347 0.0004403 0.002096 0.0004586 3.436e-06 0.01225 0.002978 0.002395 0.00113 0.02901 0.01346 0.6124 0.5779 0.02725 0.0004359 0.5433 1.715e-05 1.592e-05 1.805e-06 5.542e-05 0.009716 0.002659 0.0144 0.0001067 0.5663 9.539e-05 0.0002963 0.003458 0.1056 8.972e-05 0.002771 0.003204 0.001186 0.3817 0.007394 0.563 0.003287 1.726e-05 0.006365 0.01115 0.000294 0.0001217 0.0009416 0.006524 0.007321 0.0004973 0.004146 1.303e-05 0.3139 0.003523 0.0006563 0.0305 0.0007881 0.003775 0.000446 0.001776 0.001054 0.5716 0.5673 0.07318 0.00067 0.002202 0.001097 0.00256 0.4998 0.001644 0.2347 5.794e-05 0.2348 0.002868 1.422e-05 0.002883 0.04328 0.5733 0.006379 0.02597 0.001824 0.0001694 0.008273 0.001522 0.003235 0.4599 0.0006109 0.001263 7.593e-06 0.01972 0.02472 0.01346 0.004707 0.0004312 0.2747 0.001774 0.01656 0.08587 0.005611 0.00128 0.005723 0.0009592 0.02202 0.00698 0.006181 0.3986 0.006156 0.00046 0.0003273 1.298e-05 0.005255 0.3924 0.0002932 0.0001091 0.0001193 0.0004799 0.001123 0.005895 0.5482 0.001177 0.002586 0.00203 0.1439 0.02794 0.008258 0.001755 0.003685 1.265e-06 0.00206 0.0004752 0.5764 0.008933 0.0001356 0.001117 7.107e-05 0.001618 0.0001336 0.001537 7.885e-06 8.914e-05 0.001807 0.002422 0.006375 0.4198 0.0005543 0.001109 0.001486 0.4043 0.00146 0.02054 0.0008463 0.02727 0.002129 0.1796 0.0004957 0.001761 0.0005509 9.564e-05 4.953e-05 0.008479 0.005341 0.6651 2.134e-05 0.001555 8.797e-05 0.003958 0.000292 0.006785 0.0001691 0.01028 0.0005637 0.0042 0.3731 0.008618 0.005295 0.0141 0.0004254 0.5738 0.04979 0.001228 0.01597 0.5868 0.4052 1.138e-05 0.004454 0.005873 0.3573 0.03151 8.954e-06 0.0007715 0.05217 0.001194 0.007123 0.1862 9.182e-05 7.456e-06 0.2363 0.002009 0.0001348 0.0009929 0.01542 0.0001053 0.578 0.0007825 0.0228 0.001489 0.008347 0.008044 0.00617 0.04461 0.03568 0.007838 0.02493 0.00115 4.905e-05 0.0009061 8.004e-05 1.757e-05 0.0001237 0.001378 0.03909 0.59 0.00311 0.0008182 0.004093 0.3099 0.000187 0.01168 0.0004934 0.5681 0.2781 5.732e-05 0.003578 0.01607 0.0001659 0.4619 0.0001871 0.02 0.5474 0.0008163 0.001737 0.006532 0.0007741 0.001784 1.866e-05 0.0001151 0.01963 0.02441 1.18e-05 0.00185 0.0006697 0.005739 1.302e-05 0.001706 0.0002364 0.00325 5.24e-06 9.913e-06 0.003949 0.001414 0.0002204 0.3679 0.000428 0.06686 0.001896 0.001408 7.731e-05 0.00458 0.5104 0.0287 2.49e-05 8.475e-05 0.6472 0.003235 0.0001334 0.004616 0.156 0.003643 0.006737 0.00653 0.005654 0.008713 0.01986 0.0005854 0.0006881 0.001305 0.0003521 0.2915 0.01126 0.0116 0.005457 0.005701 0.0003162 0.003566 0.001007 0.009384 0.4887 0.001863 0.01287 0.005527 0.001582 8.431e-05 0.008223 0.01517 0.00616 0.0003983 0.03543 0.001952 0.0003951 0.009506 0.6501 0.5714 0.000888 0.002131 0.01021 0.003873 0.004868 0.0007226 2.109e-05 0.537 5.308e-05 0.0002151 0.0003297 0.0004895 5.628e-05 0.002613 0.01111 0.03555 0.003931 0.2876 0.0002405 0.004189 0.02068 0.006642 0.00285 0.0002535 0.001912 4.508e-05 3.357e-05 6.209e-05 0.002097 0.5356 0.004207 0.04087 0.0001243 8.596e-06 0.006076 5.301e-05 1.342e-05 6.811e-05 0.006336 0.4083 0.0002339 0.01726 0.0009049 0.004234 0.1029 8.054e-05 0.1451 0.01119 1.076e-05 0.001662 0.3789 0.3811 0.003565 0.0003019 0.2767 0.5305 0.0007969 1.167e-05 9.005e-05 0.0001177 0.4308 0.00901 2.085e-05 0.0005446 0.004175 0.005436 0.0004802 0.001368 0.02363 0.000124 0.004168 0.01099 0.0009707 0.0001097 0.2669 0.4668 0.002213 0.0002665 0.0001166 0.2534 0.00277 3.068e-05 0.4393 0.02895 0.009647 0.0003303 0.01286 0.3035 0.01149 0.0006791 0.0003401 0.05836 0.02384 0.005723 0.04197 0.06549 0.0003966 0.006965 0.3797 0.005009 0.000677 0.001811 0.05644 0.00212 0.002328 0.003563 0.005975 0.001013 5.655e-05 0.001824 0.0004686 0.001313 0.02616 0.0005304 8e-05 0.06211 0.001477 0.009819 0.005328 0.1045 0.01884 0.002552 0.001041 0.0002176 0.1296 0.0007343 0.1398 0.5126 0.3385 0.004087 0.0005131 0.0001197 0.6075 0.003518 0.0002496 0.0001685 1.052e-05 0.01724 0.002754 0.001675 0.004679 0.3887 0.001219 0.00052 0.004567 0.01744 0.00386 0.0005451 0.001852 0.0003579 0.0005981 0.2849 0.003098 1.724e-05 0.0004113 0.0001763 0.5872 0.4553 0.0001673 0.007298 0.005547 0.333 0.03143 0.002943 0.0009688 0.000642 0.009971 0.5225 8.838e-05 0.6151 0.000544 7.098e-05 0.005128 0.006464 1.645e-05 0.003021 0.1496 0.2879 8.999e-05 0.001864 0.004211 0.5684 0.001151 0.001675 0.01759 0.0248 0.5539 0.01296 0.06626 0.01087 0.5675 0.5585 0.001329 0.02283 0.00156 0.004361 0.03417 0.08172 0.002539 0.00157 0.002473 0.402 7.616e-05 0.002065 0.002813 0.002073 0.002855 0.008923 0.0003735 0.001278 0.001049 0.2099 0.005136 0.3993 0.001409 0.004587 0.01092 0.4649 0.007561 0.4058 0.5348 0.00148 0.02659 0.0002307 0.002089 1.058e-05 0.4544 0.0007705 0.0001245 0.001935 0.002223 0.000157 0.004086 0.001626 0.0624 0.0001012 0.002879 0.006105 0.002893 3.86e-05 6.739e-05 9.424e-06 0.0006016 0.002799 0.0006192 0.291 0.002866 0.1331 0.00442 0.572 0.004712 0.004219 0.001651 0.5894 0.01013 0.5694 0.5596 0.001996 0.002222 0.001118 6.654e-05 0.001095 0.0002926 0.0119 0.001243 0.002205 0.1285 0.01036 0.104 0.1791 0.002121 0.0008409 5.353e-05 0.00537 0.6143 6.614e-06 7.875e-05 0.003411 0.004011 0.001336 0.02821 0.005043 0.0009862 0.0001834 0.03247 0.006167 0.02645 0.0004088 0.01571 0.5983 0.002858 0.0001981 0.1978 0.07324 0.004416 0.008548 0.0006604 0.003073 0.0001426 0.001491 0.003243 0.02037 0.01569 0.003269 2.889e-05 8.45e-05 0.0001836 0.03948 1.574e-05 0.02664 1.042e-05 5.46e-05 0.001126 0.3354 0.01033 0.1455 0.006809 0.0001515 0.0009195 0.2848 0.07138 0.4503 0.0003155 5.095e-05 0.01253 0.0003801 0.02183 0.02981 0.01862 7.43e-06 0.0008421 0.008399 0.578 0.004751 0.003134 0.01202 0.01661 0.0005984 6.762e-05 0.0009343 0.008079 0.02671 0.0007249 0.01255 0.0005139 0.01164 0.4199 0.3328 0.01764 6.926e-05 0.3966 0.00874 0.4862 0.2625 0.02076 0.0001022 0.001763 0.0002038 0.3365 4.286e-08 0.001641 0.3907 0.4387 0.01966 0.5742 0.0007575 7.658e-05 0.5677 0.0001795 0.3987 0.00814 0.4976 0.001805 0.002836 0.003317 0.007676 0.001974 0.111 0.5755 0.0005817 0.0002364 0.4394 0.003256 0.0003548 1.143e-05 0.007463 0.01933 0.02619 0.003341 0.005163 0.0003323 0.001184 0.2577 0.5585 0.002519 0.0001008 0.002063 0.2921 0.0001458 0.009676 0.04285 0.01115 0.0003518 0.003884 0.003068 0.005266 0.0007275 0.004638 0.002869 0.0002646 0.3927 0.0003257 0.0005278 0.0009932 0.0007206 0.07816 0.001226 0.001445 0.00173 0.000893 5.904e-05 0.001927 0.0007639 1.576e-05 0.006183 0.003961 0.03363 0.01174 0.005909 0.01671 0.0001427 0.2777 0.00041 0.002461 8.404e-05 0.004911 0.007552 0.0121 0.5485 0.002751 0.004972 0.002452 0.005295 0.01255 0.0007178 0.00128 0.005146 1.341e-05 0.006369 0.0001429 0.5856 0.0008242 0.00263 0.006473 0.5706 9.232e-05 0.3045 0.02023 0.004945 0.0009617 0.001585 0.0247 0.003391 0.003515 0.1862 0.6252 0.006125 0.3815 5.024e-05 0.001386 0.00995 0.001356 0.0009646 0.1147 0.0008583 0.001145 0.0004653 0.4076 0.01935 0.01045 1.661e-05 0.000253 0.0004844 0.02244 0.00837 0.0004467 0.0194 0.01464 0.002286 0.6042 0.5825 0.002541 5.686e-05 0.0009362 0.002716 0.4122 0.01137 0.0008781 2.077e-05 0.0003751 0.02367 0.0007472 0.005167 9.594e-05 9.829e-05 0.5765 0.3606 0.0003504 0.002164 0.1753 1.059e-05 0.0001357 5.093e-05 2.257e-06 0.00338 0.0001341 0.002758 1.544e-05 0.0006191 0.004204 0.07213 0.004432 0.001106 0.008293 0.003868 8.514e-05 0.004955 0.001102 0.008638 0.01159 0.005305 0.5744 0.3753 0.3582 3.685e-05 0.0001441 0.0006341 0.5393 0.2394 0.5572 0.002905 0.4541 0.5671 0.0006169 0.0007803 0.002543 0.0006763 0.5667 0.5595 0.2919 0.5499 0.1422 0.1965 0.0005471 0.01987 0.004555 0.005215 0.001888 0.5756 1.685e-05 0.000128 0.4527 0.002894 0.00775 0.4516 0.04159 0.0009612 0.5234 0.5212 0.003025 4.207e-06 0.004324 0.000245 0.0004022 0.000137 0.4205 0.00168 0.09573 0.001416 0.001686 0.0007246 0.0001664 0.01147 0.002041 0.01569 0.0002991 0.0009615 0.5358 0.001402 0.0004627 0.06194 0.034 0.04221 7.327e-06 4.48e-05 0.0001366 0.005806 0.0004862 0.006332 0.008599 0.4473 0.003481 0.0004474 0.0002806 0.5163 1.509e-05 0.00246 0.5692 0.0002188 0.0009242 0.00366 0.003085 0.5752 0.5655 0.03278 0.006813 0.01595 0.0179 0.02425 1.389e-05 6.477e-06 0.001081 0.07405 0.002462 0.0002417 0.5758 1.2e-05 0.06033 0.001215 9.959e-06 0.0001883 3.695e-05 0.0006005 0.4121 0.00162 0.0129 0.004335 0.002356 3.455e-05 0.0004975 0.005441 0.4056 0.5616 0.2993 0.0001673 0.002391 0.5506 0.0003886 0.008739 0.5637 0.0002034 0.001106 0.0001791 0.5157 0.09066 0.001099 0.09046 0.002312 0.00143 0.002164 0.00923 0.002999 0.04348 0.1636 0.002515 0.02943 0.1144 0.0008197 0.005609 0.01243 0.0002004 0.03059 0.001522 0.002933 0.002463 0.0007014 0.004747 0.3975 0.01486 0.5287 8.007e-05 0.006804 0.578 0.0004051 0.002332 0.000239 0.00168 0.0004157 0.5746 0.001456 0.01031 0.005248 0.004231 0.5684 0.001264 0.4123 0.005463 0.003311 0.004566 0.00569 1.376e-05 0.0344 0.02007 8.29e-05 0.0001022 0.0001408 0.008086 4.502e-05 0.3452 0.4311 0.01126 0.002181 0.001316 0.004318 0.002895 0.0001567 0.5162 0.06981 0.4075 0.0001633 0.0004514 0.5955 0.2774 0.575 0.484 0.2326 0.0003181 0.00263 0.5336 0.0002953 0.6229 0.002587 0.0001669 0.01259 0.02965 0.0008577 0.005967 0.0001884 0.004365 0.004095 0.0006499 0.003703 0.0001017 0.01036 0.5151 0.5041 0.002722 0.419 0.0005177 0.4094 0.5757 1.429e-05 0.0006131 0.009888 0.0003202 0.006176 0.003125 0.0001467 0.003209 7.891e-05 0.01079 9.137e-06 0.0008202 0.002378 0.0001116 0.3815 0.00081 0.009524 0.3625 0.00717 0.0002183 0.003307 0.0003254 0.00726 0.00544 0.004285 0.0004785 7.799e-05 0.002324 0.3912 0.5723 0.4252 0.007783 7.38e-06 0.2005 0.001506 0.02684 0.005452 0.0002529 0.003742 0.6187 0.004087 0.001738 0.0002098 0.003009 0.0001453 0.01576 8.344e-06 0.5293 0.0009787 0.007863 0.5641 0.1464 0.000117 6.452e-05 0.001957 0.03304 0.0001221 0.0002683 0.0005014 0.003809 0.004884 0.001129 0.007148 0.0001901 0.01917 0.007398 0.412 0.06553 0.5327 0.05632 0.0002338 0.5226 0.0001748 0.0001125 4.78e-05 0.0006704 0.002351 0.003878 0.008357 0.01093 0.006123 0.001917 0.001522 0.002499 0.001908 0.5733 0.005103 0.00111 0.5259 0.0006224 1.737e-05 0.167 0.003884 0.001787 0.004018 0.2864 0.002702 0.002435 0.0495 0.0009377 0.5587 1.695e-05 0.01491 0.003351 0.000706 0.006874 0.003629 6.317e-05 0.03351 0.5754 0.00951 0.001087 0.5902 0.001915 0.005069 0.004037 0.01122 0.4812 0.007584 0.542 0.007602 0.0005182 0.5747 0.007328 0.5712 0.002322 0.0001905 0.0003445 0.001515 0.007191 0.007839 4.346e-05 0.1615 0.001954 0.000288 0.0004606 0.01252 4.043e-06 0.00195 0.008005 0.007398 0.0003892 0.02429 0.05127 0.01341 0.00177 0.005239 0.5926 0.0006313 0.0008758 3.969e-05 0.06185 0.02698 0.0004011 0.002835 0.0004754 0.001314 0.002463 0.003167 0.0001123 7.59e-05 0.00219 5.841e-06 6.093e-05 0.0007818 0.2534 0.4351 0.2414 0.04852 0.000972 0.003318 0.00174 1.289e-05 0.001552 0.01836 0.0001885 0.5706 0.0001426 0.0004575 9.913e-05 0.4658 0.5448 0.00108 0.0008317 0.0004755 3.695e-05 0.0002661 0.000916 0.0003864 0.001289 0.5264 0.0003759 0.01404 0.0009291 0.0001718 0.006195 0.0007997 1.037e-05 0.3539 8.287e-05 0.0007934 0.01257 0.000475 0.008228 0.01052 0.004022 0.003185 0.0001073 0.03171 0.5765 0.00195 0.2746 0.0001607 0.0001382 0.04742 0.02567 0.6276 0.0002021 0.5893 1.816e-05 0.003249 3.664e-05 0.01917 0.0001653 0.001945 0.0002745 1.939e-05 0.005671 0.004085 0.5935 0.001678 0.05032 0.003204 0.1042 0.00166 4.011e-05 0.0002641 0.004053 0.006479 0.006457 0.0003127 0.5619 6.427e-05 0.3648 0.006671 0.002213 0.006118 0.4913 0.003338 0.006302 0.001134 0.0001162 0.0004298 0.001489 1.795e-05 2.615e-05 0.0005086 0.002095 0.004301 0.0007705 0.153 0.000665 0.04009 7.991e-05 0.1996 0.0001237 9.602e-05 0.01554 0.4366 0.001225 0.004716 0.0001246 0.003703 0.0009333 0.0004938 0.0002648 0.473 9.582e-06 0.02043 0.001024 0.02366 0.2276 0.004332 4.078e-05 0.624 0.0007343 6.046e-05 0.001212 0.0001019 0.000422 6.091e-05 0.1107 0.02702 0.003277 1.282e-05 0.0003908 1.889e-05 0.01161 0.002185 0.000297 0.001291 0.0003029 0.004878 0.0002352 2.138e-06 0.579 0.0001192 0.005569 0.007489 0.002743 0.002749 0.0001231 0.03718 0.00346 0.0006377 0.01061 0.004889 0.5564 9.246e-06 0.02701 0.01158 9.391e-05 0.5068 0.00277 0.2134 0.001698 0.002079 0.003241 0.0004186 0.001198 0.003705 0.0002095 0.003826 0.002417 0.001312 0.0004986 0.01685 0.01551 0.007783 0.0001877 9.649e-06 0.2516 0.003119 0.02197 0.001833 0.003942 0.5184 0.6339 0.00166 0.007493 0.004331 0.5682 0.003725 0.5082 0.0009076 9.632e-05 1.295e-05 0.004552 0.5698 0.00137 0.00457 0.004032 0.002271 0.002179 1.413e-05 0.003655 0.004703 0.0009606 0.003984 5.677e-05 0.0001997 0.001043 0.008256 0.005824 0.01526 1.689e-05 1.695e-05 0.0008749 0.01062 0.1251 1.995e-05 0.0012 2.772e-05 0.008364 0.09932 9.385e-05 0.0004131 0.001304 0.002587 1.42e-05 0.0003807 0.002859 7.314e-05 0.004753 0.0007818 0.007163 0.005154 0.5566 1.158e-05 7.964e-05 0.496 6.44e-05 0.008014 0.002507 0.002288 0.02028 0.005484 0.001361 0.3815 0.00259 0.0001556 0.00249 7.44e-05 0.01631 0.5598 0.004934 0.5492 0.003474 0.0001148 0.002918 0.00514 1.576e-05 0.001449 0.0009716 0.003043 0.003107 0.0002286 0.02961 0.06344 0.0004032 0.4383 0.07136 0.4595 0.001375 0.000468 0.6018 0.004147 0.0001128 0.0009308 0.001017 0.5829 0.001839 0.0002997 0.3588 0.5667 8.464e-05 0.0131 0.003874 0.02528 0.01076 0.001725 1.013e-05 0.1504 0.0002373 1.772e-05 0.2141 0.000275 0.0268 0.02743 0.04788 0.007015 0.003254 0.02835 0.01057 0.0002687 0.0001489 0.05636 0.3894 0.004076 0.008766 0.0002091 5.56e-05 0.0001171 0.0001941 0.01467 0.0002495 0.003399 0.0004632 0.001592 0.4453 0.0007973 0.0001613 0.0001584 0.5815 7.658e-05 0.05079 1.546e-05 7.186e-05 1.628e-05 0.5462 2.031e-05 0.01984 0.008447 9.57e-06 0.003856 0.000379 3.855e-05 0.005734 0.563 3.384e-05 4.924e-06 1.628e-05 0.002261 0.08501 0.001074 0.002208 0.05988 0.0001951 0.0008027 0.05534 0.02897 0.0001531 0.0003344 0.2366 0.0005436 0.6039 0.164 7.66e-05 0.5697 0.001284 0.0013 0.0001075 0.5037 0.4948 0.5187 0.001553 0.004193 0.1368 0.01116 8.49e-06 0.0001333 0.4819 0.0002517 0.004128 0.001459 0.004669 0.002354 0.01024 0.051 0.3987 0.1048 0.02804 0.007917 0.0005756 0.002871 0.005891 0.5722 0.002181 0.00399 0.0464 0.5764 0.09278 0.01919 0.005301 0.0001131 0.4057 0.4045 0.001875 0.02794 0.0001119 0.005013 1.599e-05 3.806e-05 0.03357 0.005133 0.002661 0.4358 0.0006443 0.007881 0.2938 7.349e-06 0.008969 1.703e-05 0.0004437 1.513e-05 0.02003 0.4743 0.003925 4.624e-05 0.4074 0.0002371 0.001869 2.788e-05 0.006809 0.6056 1.483e-05 0.0003373 0.0006251 0.02957 0.5925 0.0003283 0.5724 0.0004551 0.01014 0.0007771 4.732e-05 0.03548 0.4644 0.05332 0.004347 0.0003574 0.0005167 0.001269 0.009046 0.001365 0.006119 0.01465 9.577e-06 0.002243 0.001295 0.4125 0.002155 0.002563 0.01171 0.03726 0.001617 5.62e-05 0.0005788 0.4787 0.0008428 0.556 9.777e-06 0.02049 0.0002646 0.00442 1.709e-05 0.542 6.492e-05 7.63e-06 0.007196 0.5651 0.4895 0.01732 0.03071 0.001251 0.0001434 0.005341 0.005892 0.5759 0.001672 0.0009465 0.5746 0.505 0.03093 0.0001867 0.6146 0.0135 0.01138 0.003006 0.005078 0.0002615 0.0002594 0.0005353 7.649e-05 0.0005892 0.124 0.002916 0.007017 0.009383 0.01145 0.000161 0.2204 0.005694 0.001483 1.389e-05 0.0001 0.5277 0.3818 0.0009413 0.003583 0.0007829 0.00172 0.005144 0.001356 0.0001253 0.001661 2.022e-05 0.0001289 0.004594 0.002136 0.5685 0.00587 0.0003143 0.03153 1.18e-05 0.002763 0.571 0.001312 0.3852 9.599e-05 0.5038 0.01251 0.02194 1.441e-05 0.5232 0.003801 0.004006 0.4238 0.552 0.365 0.001455 0.02232 8.305e-05 0.4958 0.0009911 0.5804 0.003383 0.6061 0.001799 0.000841 0.0004488 0.01984 0.6071 0.5768 0.0001015 0.004142 7.948e-06 0.02542 0.003614 0.0005327 0.3843 0.0005622 0.02397 0.001065 6.543e-05 0.005293 0.001622 0.0001748 4.167e-06 0.007477 0.01161 0.004107 0.0008804 0.04159 0.4888 0.01814 0.000235 0.0001177 0.0269 0.01255 0.1362 0.2545 0.5272 6.381e-05 0.01197 0.004479 0.5726 0.000218 1.571e-05 0.005393 0.001832 0.008701 0.005217 9.665e-06 0.004431 0.0008141 0.003335 0.0008513 0.03733 0.006863 0.001838 0.006799 7.172e-05 6.229e-05 0.04064 0.002581 0.001797 0.002058 0.00018 0.0001123 0.5772 5.866e-05 0.0008246 1.374e-05 0.01586 0.001186 0.002327 0.003147 9.434e-05 0.0001864 4.458e-05 8.509e-05 6.875e-06 0.5548 0.000231 0.003598 0.004115 0.002211 0.5775 0.0003234 0.5815 0.1288 0.001857 0.02178 9.08e-05 0.002424 0.02195 0.001709 0.03581 1.15e-05 0.09141 0.04156 0.02953 0.008942 0.006022 0.006643 0.5123 0.0001027 0.008425 7.283e-05 0.003581 0.308 0.001814 2.905e-05 0.4482 0.001328 0.03719 0.464 1.897e-05 0.00211 0.0001961 0.00219 0.06112 9.125e-05 0.0005923 0.01806 0.001704 0.5536 0.004454 0.0001244 0.0006437 0.01383 0.009299 0.001925 0.01401 0.0003373 0.001358 0.0003613 0.000279 0.001514 7.522e-05 0.000325 0.06664 0.006334 0.002288 0.0001008 0.0003341 0.0258 0.005027 1.028e-06 0.4718 0.0003551 0.3866 0.01159 0.002175 0.007032 0.57 0.3553 0.01959 0.001966 0.02176 0.01605 0.0002211 0.4787 0.5725 0.001948 0.0002446 0.001575 0.0006662 0.008807 0.0002475 0.006699 0.5141 0.5285 0.003246 0.005277 0.006257 4.713e-05 0.007215 0.001806 0.0008426 0.4072 0.002233 0.003604 0.5723 0.002037 0.5832 0.009674 0.0009346 0.01372 0.003333 0.0001257 5.255e-05 0.001908 0.0006888 0.01076 0.000552 0.002252 0.3818 6.535e-06 0.02125 5.356e-05 0.0003173 0.000232 6.595e-05 0.007484 1.737e-05 0.0001453 0.2646 0.0799 0.5801 0.0009395 0.003703 0.01712 0.001785 0.0003672 0.01221 3.359e-06 0.3332 0.001767 8.339e-05 2.307e-05 0.000647 0.005561 0.004083 0.00259 0.002719 0.003655 1.514e-05 0.3288 0.4173 0.4985 0.5998 0.4117 0.09333 0.1258 0.1796 0.09461 4.85e-05 1.929e-05 0.5609 0.001438 0.01159 4.745e-06 0.0009793 0.001671 0.0006299 0.3156 0.01254 0.001793 0.556 0.00991 0.005559 0.0001462 0.5374 0.0006248 0.004548 0.0005609 0.004343 5.117e-05 0.000686 0.002628 0.0001756 0.552 0.06997 0.0009678 0.0001294 5.946e-05 0.003499 0.007774 6.176e-05 0.08448 0.0001998 0.008525 0.001298 0.002798 0.01464 0.005749 0.000509 0.0001419 4.909e-06 0.08734 0.002319 6.304e-05 0.005354 0.05144 0.002814 0.001015 0.0003252 0.006708 0.3598 0.5301 0.001239 0.001158 0.06543 0.001991 0.001984 0.6105 7.986e-05 0.0003713 0.06927 0.001214 0.5804 4.805e-05 0.00755 0.001842 0.001831 0.001865 0.002823 0.00339 0.004525 0.002169 0.0004489 0.09052 0.00666 0.0009779 9.273e-05 0.0001934 0.001772 0.002811 0.002219 0.000113 0.0001157 9.523e-05 0.001819 0.0007552 0.01309 0.004086 0.02712 0.304 0.0004556 0.0007172 0.556 0.002008 0.108 0.0003859 0.001202 0.0004689 0.0009734 0.0001894 3.296e-05 0.005217 2.683e-05 0.001199 0.008791 0.001223 0.0001022 0.006173 0.00453 0.01734 0.3264 0.0004717 0.005584 0.0001823 0.0006363 0.0001184 7.354e-05 0.008403 9.933e-05 0.6174 0.0001136 1.277e-05 0.5734 2.122e-05 2.955e-05 6.869e-05 0.0005563 0.01873 0.01271 0.005459 5.867e-06 0.003216 0.0002388 0.0004305 0.5529 0.02062 6.803e-05 0.007515 0.0005888 0.01021 1.983e-05 1.583e-05 0.003966 0.005024 0.6186 2.293e-05 0.4424 0.5674 0.002846 0.001423 0.02436 0.001381 0.014 0.001253 1.278e-05 0.0002913 0.0007139 0.07465 0.009396 0.3201 5.671e-05 0.02159 0.3282 0.003388 0.0002014 0.001296 0.05524 0.01103 2.623e-05 0.0006862 0.009534 7.927e-05 0.001452 0.005228 0.5651 0.5802 0.0002134 0.3437 0.0005703 0.003397 0.2984 0.002541 0.01207 0.5423 0.0003145 0.494 0.5893 0.0007715 6.026e-06 0.5663 0.479 0.003412 3.31e-08 0.0143 0.5582 0.00359 0.09477 0.002178 0.001797 0.0001715 0.002442 0.5239 0.3962 0.2989 8.508e-06 0.0006678 0.3465 0.003318 0.01061 0.0006688 0.5708 3.315e-05 0.0009048 0.002339 0.01015 0.568 0.00137 0.008029 0.02683 0.01297 0.1029 0.02487 0.008274 1.098e-05 0.5843 0.0006285 0.003786 0.3243 0.02312 0.005628 0.02202 3.082e-05 0.001145 0.001195 0.3807 0.558 0.001386 0.001114 0.005447 0.0007109 0.001416 0.0006407 0.5595 0.01097 0.00181 0.001516 0.3755 0.0002323 0.5731 2.742e-05 0.0003659 0.0006682 0.0004046 0.001719 0.004833 0.004963 0.006802 0.01297 0.1182 0.0002199 0.1078 7.33e-06 0.0008349 1.172e-06 0.005962 0.003972 0.4187 0.006658 0.01438 0.003518 0.0003277 0.002404 0.003999 0.0123 0.0001209 0.0008978 0.002389 0.004991 0.4891 0.0001022 0.002769 0.01774 0.0001562 0.000112 0.01089 0.003519 1.031e-05 0.5686 0.005322 0.0002213 0.006529 0.03638 0.005421 0.02316 0.5735 0.0006063 0.002479 0.01254 0.0008252 0.01133 0.01481 0.002213 0.2005 1.607e-05 8.246e-05 0.01549 0.06691 0.5448 0.01099 0.00189 0.0007024 4.146e-06 0.01062 0.0008224 0.001126 0.0002462 0.0004328 0.00929 0.5939 0.002872 0.04838 0.01108 0.000304 0.01452 0.3921 0.0005191 7.385e-06 0.004662 0.0001063 0.001428 1.009e-05 0.002046 7.93e-06 0.02551 0.6019 8.563e-06 0.5742 0.01813 0.382 0.002288 1.467e-05 0.03713 0.06083 0.006714 0.001873 0.5841 0.6082 0.6194 0.405 0.517 0.004658 0.00619 0.008673 0.0001063 0.006801 3.053e-05 0.005522 0.002682 0.0008735 2.299e-05 0.008818 2.573e-05 0.012 0.03292 0.006527 0.005872 0.0001894 0.0007972 8.426e-06 4.857e-05 2.125e-05 0.0001575 0.00135 0.0001103 0.00229 0.0161 0.003888 0.004233 0.0007307 0.002627 0.0001672 0.000881 0.07606 0.005194 0.004688 0.007294 0.007338 0.002519 0.05818 0.005532 0.01785 3.365e-06 0.02497 0.5383 0.0001173 9.395e-06 0.6183 2.124e-05 0.0004279 6.982e-05 0.0007016 0.0522 0.3677 0.006264 0.009209 0.003219 0.0038 0.0008829 0.0002208 0.1995 0.0007936 7.37e-05 0.01283 0.006351 0.03254 0.07203 0.001827 0.2544 0.3044 0.467 0.0009704 0.00187 0.06083 0.0007375 0.3833 0.00055 0.00425 0.0001262 1.638e-05 0.1482 0.002232 0.002572 0.0002354 0.04571 0.0006813 0.02569 3.116e-05 0.557 0.002333 0.0004437 0.0003186 0.0004901 0.2386 0.001273 0.002911 0.001307 0.001413 0.01099 4.674e-06 0.0003478 0.37 0.01316 0.01163 0.04541 0.1172 0.002337 0.001929 0.05762 0.001727 0.001864 0.02047 1.596e-05 0.001776 0.003525 0.0002129 0.6185 0.03456 4.376e-05 0.4393 0.00079 0.2676 0.004936 0.4016 0.01024 0.003475 0.002358 0.521 0.2285 0.02377 1.862e-05 0.0007566 0.01166 0.07483 0.003105 0.004978 0.1706 0.009543 0.001798 0.000245 0.6004 0.001659 0.02924 0.001435 0.04899 0.1083 0.1632 0.6178 0.001006 0.0007143 1.039e-05 0.004191 0.007903 0.00128 0.001736 0.0002429 0.001013 0.0004842 0.00209 0.0001312 0.002384 0.3727 0.002224 0.41 0.1385 0.4811 0.002244 0.003252 0.01711 0.002686 0.001392 0.1384 0.4837 0.0001217 0.002203 0.003498 0.009883 0.02596 0.00528 9.546e-05 0.00252 0.4315 9.149e-05 0.008406 0.02579 0.005326 0.002337 0.4444 0.004769 0.1842 0.003062 0.000782 0.0007178 0.001141 0.001963 0.03002 0.005066 0.002435 0.0446 0.5179 0.001111 0.005752 0.4552 0.006604 0.03729 1.604e-05 0.0003826 0.07047 0.5267 0.004292 0.5253 0.06345 0.003867 0.005111 0.0007471 0.006155 0.0006484 0.0009211 3.524e-05 0.004422 0.01071 0.2264 0.06792 0.0003325 0.003814 0.001667 5.137e-05 8.337e-05 0.004152 0.01785 0.5682 0.0003903 0.03501 0.4594 0.000171 0.5761 1.61e-05 0.009103 0.6112 0.002577 0.02097 0.007036 0.6002 0.567 0.5845 0.03801 0.01324 0.02429 0.0842 0.5385 0.0006341 0.001055 0.0005229 0.008434 0.004437 0.0007219 0.04458 6.473e-05 0.6637 0.0001893 0.001485 0.0001431 0.07972 0.005295 0.0647 6.137e-05 0.005893 0.001199 0.0009937 0.5703 0.06945 0.4847 0.0001385 6.987e-06 0.002414 0.03574 0.5883 0.5744 0.0003548 0.1478 0.4249 0.002458 0.000396 0.0006817 0.005912 0.004412 0.0008912 0.08882 0.005756 0.1895 0.5817 0.574 0.00253 0.002287 0.03075 0.003153 0.003854 0.0003822 0.003288 0.0006874 0.01457 1.175e-05 9.705e-05 0.01527 0.002845 0.002692 1.395e-05 0.236 0.1607 0.003993 0.001799 0.003135 0.002183 0.003112 0.0003011 0.007748 0.2459 0.001313 0.005663 0.001306 8.588e-05 0.004949 0.5796 0.003014 0.005431 0.000387 0.01712 0.5538 0.0009032 0.00229 0.0399 0.01239 0.002639 9.108e-05 0.1313 0.0004486 0.002207 0.008736 0.3438 0.002732 0.5629 0.01015 0.003156 0.004183 0.001664 0.003156 0.0227 0.0009661 0.002138 0.004299 0.005063 0.05352 0.005044 0.003326 0.002962 0.004994 0.01796 0.001493 0.5745 0.003641 0.0008889 9.618e-05 0.03898 7.424e-06 0.0008573 0.006616 0.003401 0.001557 0.00313 0.4146 0.004942 0.002472 0.008958 0.004814 0.0003613 0.0001237 0.0008921 0.007063 0.009454 0.0001209 0.5288 0.5016 0.3715 0.007799 0.04842 0.002993 0.0008695 0.01361 0.01134 0.00413 9.817e-05 0.003132 0.001184 0.5603 0.007692 0.02073 0.4737 0.008927 0.00176 0.003138 0.0008468 0.01007 0.5667 0.0001806 2.353e-05 0.003846 0.0007688 0.002921 0.003184 0.0007724 0.01307 0.0003612 0.009406 0.08428 9.022e-05 0.6184 7.595e-05 0.03059 0.001466 0.001086 0.0001775 0.0003222 0.002702 9.185e-05 0.6391 0.0001179 0.009067 0.5841 0.0001009 0.0008958 0.0002713 3.667e-06 0.5511 0.001959 0.03966 0.0003379 0.01325 6.993e-06 0.02155 0.5718 0.00637 0.02501 0.003368 0.0004496 0.0006553 1.032e-05 6.241e-05 0.3417 0.3542 0.01265 0.04398 0.4346 0.6261 0.0007283 0.01139 0.002133 0.0007795 0.6083 0.0008676 0.0006589 0.02605 0.5735 0.0006804 0.3785 0.000664 0.0009058 0.00606 0.579 0.03676 0.0001927 0.5658 0.5706 0.01327 0.0002329 1.542e-05 0.0009468 0.5504 0.5273 0.002818 0.004799 0.5119 0.02175 0.1516 0.003789 0.0103 1.309e-05 0.0004519 0.006128 0.3081 0.02696 0.002141 4.221e-05 0.0006955 0.001334 0.0008123 0.002056 0.2614 0.04257 0.01153 0.5874 0.0008158 0.3975 0.003356 0.003575 0.01395 0.003081 0.002302 2.69e-05 0.0008639 0.01426 0.001813 0.0004084 0.0003012 0.07218 0.02756 0.6262 0.001614 0.009563 0.0005185 1.028e-05 2.886e-05 0.005655 0.02803 0.1984 0.02211 0.01048 9.284e-05 0.002742 0.001876 0.5416 0.0002429 0.0008909 0.009631 0.006686 0.003744 1.068e-05 3.329e-05 0.4577 0.001493 0.5865 0.0009616 0.02314 2.862e-05 0.0006555 0.006984 0.008589 0.0001419 0.0002607 0.00879 0.573 0.004505 0.542 2.578e-05 0.02194 0.0002345 0.004259 0.003017 0.0393 0.007863 0.0004653 0.00024 0.5653 0.001101 0.6105 0.5976 0.001168 0.00118 0.006602 0.0009338 0.4582 0.5761 6.295e-05 0.002177 0.001791 0.0003626 0.0001777 0.1733 0.01244 4.21e-05 0.005033 0.09109 4.746e-06 0.000711 0.002134 0.001705 0.007399 0.5818 0.00128 0.0001095 0.0003147 0.009024 0.3155 0.3165 0.001657 1.038e-05 0.002519 0.002346 0.000105 0.003099 0.0001949 0.008396 0.0002781 0.5752 7.942e-05 0.1371 0.0001083 0.0008129 0.09801 0.5802 0.0007044 0.002523 0.0003084 5.295e-05 0.0185 2.102e-05 0.002861 0.0001 0.0006431 0.02234 0.00308 0.014 0.5507 0.002681 0.3536 0.0001439 0.001591 0.5673 0.004966 1.276e-05 4.548e-05 0.002222 0.02388 0.04874 9.32e-05 0.5101 0.5711 9.97e-06 0.001773 0.0004032 0.001837 0.007319 0.108 0.009057 0.08192 0.5186 2.055e-05 0.0006663 0.01107 0.001177 0.003307 0.06866 0.0004329 0.0008943 0.4854 0.07566 0.007766 4.554e-05 0.005995 0.3644 0.02857 5.082e-05 1.918e-05 0.5727 0.006464 0.262 2.941e-05 0.4497 0.0001659 0.4185 0.0007482 0.006111 0.0004395 0.0001801 0.3178 0.0005465 0.0001142 0.002234 0.2064 0.04351 2.62e-05 0.587 0.005148 0.01086 0.007078 0.03823 0.01125 0.004264 0.08611 0.003602 0.05405 0.001021 0.5721 0.0001713 0.5744 0.005402 0.006341 0.001519 0.003183 0.04524 1.624e-05 0.05284 0.003013 0.4465 0.0008295 0.001259 3.26e-06 6.691e-05 0.5506 0.00495 0.002814 6.87e-05 0.001326 0.01456 0.0357 0.002391 0.0004727 0.001156 0.006316 0.00713 0.0001031 0.594 0.1771 0.03992 0.0007018 0.0007397 2.468e-05 0.0003062 0.53 0.01818 0.003373 7.407e-05 0.0193 0.01909 0.002505 0.006234 0.01742 0.001472 0.004851 0.3271 0.002762 3.777e-05 0.01561 0.01392 0.02835 0.1975 0.0001307 2.134e-05 0.007435 5.589e-05 0.001218 5.809e-05 0.09495 2.94e-05 8.428e-05 0.3482 0.008551 0.03635 0.001127 0.00114 0.5891 1.223e-05 0.001009 0.002103 6.643e-05 0.0002568 0.01925 0.01952 0.006104 0.4482 7.638e-05 0.0004489 0.0007942 0.0005316 0.01577 0.01024 0.3556 0.3598 0.4415 0.00983 0.00378 9.827e-06 0.001159 0.000232 0.0001791 0.0006646 8.606e-05 0.004812 0.5671 0.002539 0.002875 0.1182 0.1036 0.004523 0.002443 0.4683 0.02836 0.009194 0.005502 0.001464 0.3424 0.493 0.001231 0.000349 0.0008924 0.002577 0.01422 0.04828 0.0001877 0.006155 0.001092 0.002911 2.356e-05 2.052e-05 0.00452 0.00188 0.01109 0.167 0.3212 0.02177 0.5565 0.002315 0.007163 0.0003285 0.0008812 0.001784 0.01103 0.003613 0.5949 0.002026 0.001782 1.379e-05 0.003131 4.071e-05 0.0007669 1.31e-05 0.5052 0.00149 0.2794 0.002232 0.0007333 0.0004445 0.01912 0.001506 0.005064 0.001474 0.001402 0.000122 0.003153 0.001563 1.007e-05 0.005508 0.0002486 0.0009362 0.004652 0.002948 0.007444 0.4002 0.05643 9.864e-06 0.001611 0.003479 0.1631 0.001326 0.0151 0.002665 2.775e-05 0.0006683 2.526e-06 0.5306 0.0004197 0.01348 0.06292 0.003321 6.088e-05 0.002202 0.001669 0.5613 0.001295 0.3267 0.003109 0.003734 0.0005023 0.0022 0.0008379 0.001946 0.004423 0.01143 0.002267 0.523 0.526 0.0007088 0.01906 0.004323 0.003952 0.01048 0.00043 3.986e-06 0.001425 0.008003 0.0001045 1.281e-05 0.02188 4.604e-05 1.197e-06 0.5593 1.331e-05 0.0002925 0.00615 0.01172 0.002116 0.6511 0.002501 9.837e-05 0.3713 0.005688 0.003861 0.0001875 0.0001054 0.0008219 0.004397 0.5738 2.355e-06 0.5295 0.4139 0.009121 0.001769 0.004491 0.0491 0.5496 0.5545 0.03311 1.736e-05 0.002123 0.008578 0.3447 0.007943 0.2773 0.0004317 0.0002368 0.06595 0.5441 1.99e-05 0.2181 7.523e-05 0.002292 0.03176 0.002323 0.0004251 0.0007971 0.001364 0.05817 2.501e-05 0.0002754 0.0006882 0.003518 9.672e-08 0.02073 0.02674 0.004832 0.0001455 0.0002769 0.005896 0.0001042 0.0001314 0.006379 0.3675 0.5689 0.0003705 0.002423 0.644 0.0005596 0.0001429 0.000315 0.001833 0.0002369 0.0005545 6.522e-05 4.367e-05 0.003947 0.002409 0.03681 1.101e-05 0.0002531 0.4194 0.004439 0.6118 0.01405 7.928e-05 0.09453 0.006737 0.5619 0.004118 0.001168 0.008687 0.000408 0.005533 0.5523 0.5733 0.005772 0.1357 0.0004141 0.002466 0.0002689 0.01841 0.01367 0.0008666 6.27e-05 0.0001858 0.0004914 0.08813 0.001235 0.0005522 0.3281 0.02414 0.0001817 0.005463 4.614e-05 0.6083 4.943e-05 0.2322 0.003731 0.01611 0.0008358 1.724e-05 0.5721 0.5724 0.006648 0.06382 0.0003782 0.3911 0.0008089 0.0001044 0.01455 0.0007637 0.003774 0.003671 6.211e-05 0.002345 0.001568 0.000869 0.008506 0.003217 0.01158 0.002362 0.01441 0.02302 0.5191 0.0001416 0.5678 0.006637 0.4511 0.01628 0.4375 0.005913 0.0006443 0.000181 0.001144 0.571 0.002308 0.01596 0.2186 0.5821 0.02244 0.002999 0.01923 0.01975 5.602e-05 0.004167 0.5597 0.005835 0.006918 0.2609 0.001122 0.5739 0.0001303 1.432e-05 0.4368 0.002862 0.0002039 6.019e-06 0.01455 1.092e-05 0.01797 0.0002436 0.004741 0.122 0.001855 0.5755 0.0157 0.002188 0.002649 0.007457 0.000362 5.96e-05 0.4606 0.001218 0.001604 0.01499 0.00159 0.4171 4.811e-05 0.004509 0.0005402 0.0001919 0.4451 6.542e-05 2.563e-06 7.724e-05 0.00143 0.5219 0.0029 0.1874 0.001761 0.0004485 0.4112 3.423e-05 0.003047 0.000541 0.5855 0.0002155 0.00715 0.5692 0.0001244 0.6045 0.003213 0.01413 4.932e-06 0.005328 0.00351 0.00247 1.372e-05 0.0003081 0.0007692 0.0006696 0.006342 0.03694 0.001183 0.003758 0.001867 0.0006317 0.004257 0.01847 1.951e-05 0.001059 1.486e-05 4.909e-05 0.001969 0.002625 9.666e-05 0.0007086 0.004728 0.01185 0.009703 0.004386 0.001138 5.785e-05 0.0006644 0.02399 0.005262 0.01305 0.003785 0.006353 0.02701 0.0248 0.003336 0.0008462 0.006653 2.532e-05 0.02043 0.0004034 0.0001599 0.002831 0.002771 0.02304 0.002487 0.003698 0.0008173 0.001217 0.5339 0.005604 0.0006359 0.002761 0.02768 0.003523 3.847e-05 0.006334 0.001508 0.0003242 0.01293 6.583e-06 0.0002452 7.786e-05 0.001823 0.08676 0.007555 0.003198 0.03924 0.002479 0.5882 0.001555 0.5326 0.0009783 0.2764 0.647 0.0007679 0.0006633 0.04848 0.1322 0.02663 9.643e-05 0.0002018 0.2881 3.597e-05 0.002691 0.004284 0.06718 0.01279 0.0003822 0.05801 0.5645 0.08889 0.4598 0.5779 0.007236 0.0001155 0.3587 0.0001091 0.002967 0.0004062 0.0002267 0.01105 0.004482 6.437e-05 0.004739 0.001975 0.001159 0.0007172 0.5917 0.007845 0.415 5.42e-05 0.2152 0.008671 0.4112 0.02293 0.03157 0.0709 0.03585 0.001704 0.01575 0.002049 0.009635 0.0001305 0.004887 0.5613 1.044e-05 0.5771 6.189e-05 0.04859 0.003702 0.003485 0.4847 0.0008734 0.0001208 0.0005182 0.0006325 0.00184 0.2317 0.003373 0.5286 0.337 0.006758 0.3191 0.04269 0.001408 8.831e-05 0.00295 0.4703 0.5878 0.4926 0.5767 1.762e-05 0.00349 0.6011 0.001087 0.003097 0.00357 0.0001849 0.0004036 0.4727 0.003395 4.774e-06 0.0768 0.0001391 0.0001019 0.0001814 0.03132 0.00374 0.1139 0.3904 0.02257 0.4577 0.6049 0.004247 0.1749 0.01801 0.01559 0.002237 0.004014 0.4687 0.05804 0.0001908 5.712e-05 0.009675 0.003332 0.002189 0.01057 0.003441 0.5266 1.152e-05 0.1583 0.04054 0.003487 0.001314 0.0006958 0.4163 0.2696 0.001845 0.009051 0.03231 0.003942 5.058e-06 0.001614 0.4562 0.001022 0.007382 0.006817 0.6114 0.009475 0.02004 0.001295 0.0001486 0.001701 0.4953 7.869e-05 0.3137 0.0006646 0.005898 0.0002439 3.07e-05 0.0001617 0.0002061 0.5791 0.002756 0.002108 0.008917 0.01136 0.0009353 0.0001478 0.3458 0.00476 0.0001785 0.001032 0.001074 0.001018 0.01081 0.5727 0.576 0.004077 0.0004966 0.0001272 0.003559 0.004452 0.0003356 0.6115 0.5766 1.604e-05 0.002409 0.004401 0.00118 0.0003947 0.003851 0.0001189 0.505 0.3146 0.00299 0.001437 0.0005644 0.1625 0.01318 0.001744 0.001534 0.001392 0.01066 0.01408 0.003673 1.205e-05 0.189 0.0005284 0.1018 0.01723 0.04422 0.001364 0.01047 0.03482 0.4062 0.1937 0.03015 0.0168 0.001926 0.5885 0.4873 0.002447 0.004863 0.0001181 0.4404 0.01895 0.005643 0.0003957 0.0002173 5.842e-05 0.0005207 0.002391 0.5676 0.4677 0.0004986 0.5662 0.01092 0.0167 8.82e-05 0.0007225 0.0002216 0.0001246 0.06792 0.001505 0.05461 0.06272 0.002771 3.122e-06 1.653e-05 0.0008908 0.0001057 0.0008659 0.007294 0.6411 0.0001741 0.0005973 0.002537 0.5725 0.005339 0.02194 0.0005994 0.002507 0.315 0.01302 0.01121 6.736e-05 6.222e-05 0.6097 0.5479 0.06255 0.0005163 0.00101 0.1324 0.007431 0.008017 0.04709 0.0001707 1.381e-08 0.0001149 0.0001288 0.2158 0.009279 0.0003666 0.3233 0.321 0.5452 0.0002123 0.01368 0.002046 0.392 0.461 0.01568 0.006388 0.01203 5.563e-05 0.005898 0.001309 0.002925 0.001258 0.004344 0.3364 0.01355 0.04451 0.55 0.0002768 0.4435 0.4436 0.0003363 0.000755 0.008265 0.002815 0.004042 0.001344 6.98e-05 0.0002334 0.01114 0.0004255 0.002218 0.0002544 0.0006453 0.01307 0.5727 0.0006619 0.0002437 0.0004367 0.05618 0.006032 0.00529 0.0009643 0.01858 0.0002824 4.077e-05 0.0004975 0.007807 0.004695 1.897e-05 0.00104 0.001976 0.5662 0.004851 0.00446 0.001262 0.002674 0.04731 0.5312 0.0006331 9.985e-05 0.004821 0.002685 5.124e-05 0.001717 0.002533 0.4746 6.636e-05 4.654e-05 1.887e-05 0.5653 0.0001153 0.002092 6.219e-05 0.0004661 0.00381 0.003773 0.002604 0.004282 0.01365 0.1408 0.612 0.04233 0.003043 0.003828 0.02256 6.52e-06 0.0003643 0.002775 0.001289 0.003097 0.002956 0.009215 0.00229 0.03548 0.004107 0.6078 0.009207 0.001407 0.3552 0.5691 0.0009913 0.0143 0.5913 0.5903 0.002517 0.04923 0.002149 0.1091 0.5838 0.01691 0.0001331 1.008e-05 0.5729 0.003446 0.06833 0.0002146 0.4885 0.0001628 0.008029 0.03338 0.001108 0.0006472 0.001469 0.5763 0.01309 0.007634 0.01563 0.6148 0.003023 0.0005784 4.777e-05 0.003549 0.0002287 0.04667 0.002231 0.003777 0.0001684 0.0144 0.0001249 0.0009172 0.02202 4.082e-05 0.07954 0.003633 0.003912 0.00406 7.961e-05 0.001106 0.0004142 0.002928 0.0004659 0.01387 0.3914 0.003393 4.557e-06 0.4105 0.5664 0.0001073 0.0003815 0.03228 0.002862 0.5185 0.002174 0.008618 0.03383 0.005322 0.4049 0.002591 0.01553 0.0005941 0.0002886 0.4582 0.0002154 0.00697 0.006746 0.005475 0.1713 0.001231 0.0407 0.4572 0.5199 0.02814 0.01704 0.008316 0.004404 0.00109 0.0004917 0.00084 0.0003781 9.677e-05 7.351e-05 0.572 0.5731 0.011 0.01995 0.0004599 0.5884 0.0001258 7.579e-05 0.008764 0.168 0.342 0.009526 0.568 0.0001765 4.722e-05 0.0002534 5.216e-05 0.0008014 0.0001629 0.0001271 0.3528 4.917e-05 0.0009306 0.01288 0.002093 0.002527 0.002271 0.007449 0.0001026 8.027e-05 0.0001427 0.01208 0.0009934 4.788e-05 0.03247 0.001438 0.0004709 0.0003568 0.001832 0.00223 0.4771 0.004719 0.6116 0.0006598 0.5464 0.002829 0.0001139 0.0008197 0.589 0.001202 0.1686 0.0007465 0.4894 0.0002363 0.005253 4.571e-05 0.006962 0.00195 0.0008648 0.004374 0.08701 1.086e-05 0.002585 0.6077 0.5274 0.002744 0.006334 0.001145 0.001933 0.6537 0.0001719 0.004197 0.001023 0.4024 0.003237 0.004038 0.0006079 4.508e-05 0.02418 0.0004783 0.0002056 0.3368 0.005814 0.0001353 0.004155 0.003031 0.01654 0.0002415 0.003626 0.0004849 0.0001387 0.003445 0.01559 0.0001121 0.003039 0.002363 0.3804 0.3714 0.0005112 0.001191 0.0001503 0.07295 0.002124 0.3816 0.0001157 0.005348 0.001661 0.4751 0.01726 0.5866 0.5712 0.007527 0.0005504 0.0003633 0.001646 0.01095 0.002499 0.001316 0.0008229 0.02876 0.0001194 0.001238 0.00178 0.001136 0.4664 0.002284 0.002215 0.002187 0.005402 0.01514 0.001838 0.005705 0.0009955 0.0007141 0.0001285 0.0001168 2.155e-05 0.03653 0.001067 0.0004743 7.596e-05 8.051e-06 0.0002411 0.0004973 0.03964 0.003452 0.0336 0.00108 0.01843 0.0124 0.007638 3.223e-05 0.000387 0.002383 0.4018 0.006299 0.00422 2.52e-05 0.0004686 0.07688 0.01593 0.02383 3.107e-05 0.009207 0.00123 0.0009347 0.5141 0.001731 0.008769 0.07156 0.01502 0.0002575 0.4341 0.0004382 0.001488 0.0008531 0.1575 0.006911 0.004156 0.00276 0.01365 0.02082 0.01024 0.002606 0.003237 0.01267 0.004755 0.001309 6.948e-05 0.009276 0.002886 0.0005428 0.0007569 0.4064 0.004011 0.008481 0.0009199 0.01959 0.5717 0.01093 0.0004944 0.0006369 0.09679 0.002288 0.2217 0.0003163 0.008198 0.005885 0.06684 0.01547 0.0003107 0.5803 0.0009743 0.0466 0.4084 0.01454 1.721e-05 0.006934 0.001218 0.1776 0.000813 0.0005344 0.005063 0.0006829 0.2681 0.00593 0.001077 0.0203 0.02011 0.5808 0.007488 0.0003877 0.0003336 0.0002533 0.565 0.000107 0.004263 6.295e-05 0.002466 0.0005181 0.007574 0.00579 0.0002372 7.811e-05 0.005552 0.0007641 0.005949 0.003135 0.0001179 0.5823 0.0003284 0.006381 0.3386 0.0007642 0.004147 0.0001952 0.2389 0.01803 0.0003506 0.005201 2.301e-05 0.005554 0.000427 0.00921 0.002517 0.002334 0.0107 0.002001 0.001129 0.07729 0.0004805 0.0003607 0.0001069 0.00835 0.05702 0.003208 0.002676 8.732e-06 0.2418 0.001116 0.0005876 0.5601 0.002226 0.0004024 6.42e-05 0.004288 0.003464 0.04873 0.01731 0.06445 0.03904 0.5118 0.3864 0.001377 0.003259 1.663e-05 0.4857 0.3265 0.05482 0.001895 7.399e-05 0.001298 0.5412 0.00404 7.406e-05 0.0001644 5.766e-06 0.001148 9.555e-05 0.00381 0.1074 0.0001042 0.002341 7.298e-05 4.473e-05 0.002676 0.01124 7.64e-05 0.006692 0.005824 0.5674 0.006906 0.002388 0.003492 0.5833 0.0001808 0.09694 0.001201 0.5053 0.002714 0.02079 0.006675 0.3943 1.455e-05 0.5675 0.001255 0.004985 0.0012 0.007006 0.3602 0.5408 0.001521 0.0001415 0.001889 0.001299 0.0002416 0.002152 0.001537 0.0004075 0.005733 0.01855 0.6061 0.6482 0.01538 0.000144 0.5904 4.104e-05 0.0003579 0.003568 1.712e-05 1.474e-05 0.3702 0.0004971 4.801e-05 0.4139 0.01979 0.03425 0.002774 0.003837 0.001429 0.007051 0.001132 1.84e-05 0.0001417 0.07403 0.0002016 0.002578 0.02695 1.886e-05 1.732e-05 0.5616 0.003161 0.09257 0.01672 0.03806 0.008178 0.003554 0.006665 0.002604 0.003779 0.0001958 0.0008119 7.843e-05 0.003424 0.00474 0.5899 0.009771 0.005328 0.004177 0.0007553 0.02382 2.015e-05 0.001611 1.497e-05 0.5708 0.09947 0.0008017 0.01185 0.1655 0.00268 0.005717 1.147e-05 0.00102 0.01807 0.01698 0.0001034 7.78e-05 0.006762 0.000138 5.049e-05 0.003642 0.007974 6.375e-05 0.516 0.5881 0.3181 0.007668 0.003804 0.0003363 0.01692 0.3505 0.0007895 0.04872 0.002081 0.003991 1.616e-05 0.0008918 5.823e-05 0.5719 3.092e-05 0.005574 0.000436 0.00294 0.5086 0.001755 0.005592 0.0009882 0.0001277 0.393 0.5439 0.00575 0.03199 0.05403 0.003374 0.00298 0.009244 0.001278 0.01096 0.001332 0.00091 0.003974 0.002291 0.003874 0.007482 0.002448 0.0002792 0.1746 0.002062 0.0002535 0.0005685 0.0004435 0.000208 2.059e-05 0.03822 0.04199 5.183e-06 0.001172 0.001039 0.002196 0.003344 0.4205 0.001093 1.772e-06 0.001768 0.0001192 0.00862 0.000119 0.0007924 0.000141 0.03262 0.000164 0.02913 0.1589 0.0001194 0.3729 0.0135 0.01522 0.01484 0.5676 0.001374 0.002073 0.05634 0.001456 0.001991 0.000127 0.5841 0.5411 0.4142 5.089e-06 0.004519 0.3563 1.361e-05 0.5063 0.003785 0.001531 0.3949 0.00489 0.6275 0.5917 0.007282 0.003502 0.05337 0.004854 0.1165 0.006394 0.000679 0.0002278 0.0006288 0.02351 0.5255 0.0001373 0.4066 8.114e-05 0.01002 0.0221 0.001978 0.006196 0.01138 0.5542 8.07e-06 0.002862 0.04133 0.01023 0.09975 0.003753 5.635e-06 0.0003886 0.002756 0.001403 0.0001556 0.003181 0.0002845 0.2472 0.002394 9.095e-06 0.0008784 0.4037 0.0003578 1.559e-05 0.001104 4.069e-05 0.0005746 9.618e-05 0.01963 0.01698 0.3607 9.493e-06 0.000138 0.001642 0.6032 5.931e-05 7.458e-06 0.0001902 0.0001359 0.1308 6.907e-05 0.02718 0.001249 0.004752 0.02757 0.002861 0.001228 0.002572 0.008542 0.0206 5.94e-05 0.02622 0.01952 0.08645 0.0005095 0.07136 0.008841 0.001288 0.4622 0.03051 1.845e-05 0.002575 0.03057 0.0001244 0.002574 0.008553 0.002434 0.002421 3.102e-05 0.0002798 0.003046 0.01013 0.6128 2.024e-05 0.003353 0.0002292 0.002886 0.002036 0.001905 0.001426 0.001332 0.005142 0.5897 0.0002269 0.002947 0.009861 0.5792 0.002467 0.02263 0.0005098 0.0007345 0.00467 0.0001974 1.077e-05 3.803e-05 0.003414 0.004484 0.001995 0.000866 1.01e-05 0.01096 0.001552 0.367 1.019e-05 0.04425 4.936e-05 0.09674 0.5428 0.548 0.002297 2.984e-05 0.008937 0.0003993 0.005691 0.572 0.0109 0.007935 0.0006594 0.0001824 4.324e-05 0.01525 0.01266 0.1467 0.00566 0.04545 0.5934 0.0005547 0.002427 0.004971 0.004086 0.002359 0.01464 0.001593 5.887e-05 0.0009009 0.004336 0.0001119 0.02817 0.0005047 0.5797 0.0001874 0.001493 0.008755 0.1866 0.005626 0.04954 0.4523 0.01064 1.073e-05 5.164e-05 0.00807 0.006987 0.0227 0.03702 5.198e-06 6.498e-05 0.09252 0.0009195 0.004515 0.0005281 0.000873 0.002249 0.003747 0.568 0.0003024 0.001047 1.373e-05 0.0001508 0.06675 0.008045 0.0006518 0.448 9.229e-05 0.3118 0.001046 0.03343 0.03752 0.5792 0.001469 0.002193 0.008424 0.0001569 6.04e-05 0.001502 0.01883 0.0006405 5.173e-06 1.24e-05 0.03041 0.0002758 3.151e-05 0.006136 0.002659 0.561 0.3212 0.04236 0.0008052 0.005427 0.000327 0.02982 0.4156 0.02389 0.01034 0.4477 2.105e-05 6.382e-05 0.001255 0.6496 0.00634 0.0114 3.617e-05 0.002728 0.001186 0.00162 0.6552 0.0001207 0.008557 0.0009744 0.0004739 0.002761 0.00146 0.006697 0.5849 1.438e-05 0.000245 9.362e-05 0.0002233 0.0001279 0.002371 0.002032 0.001475 0.001159 0.5724 0.3649 0.07648 0.0005008 5.863e-05 0.00253 0.2096 0.04552 0.0008298 0.004266 0.009307 0.01052 0.009203 0.009218 4.552e-05 3.695e-05 0.6112 2.149e-05 0.005926 0.01182 0.0001975 0.3467 0.0002455 0.008505 0.000132 0.003147 0.0426 0.007428 0.01507 0.6472 0.009156 4.474e-06 3.646e-05 0.01768 0.1263 1.739e-05 5.205e-05 0.002733 0.001701 0.0005954 0.06438 0.0006684 0.0001624 0.02071 0.003318 0.0002737 0.000756 0.001198 0.0003236 7.345e-05 0.0005958 0.000297 0.008026 0.002317 0.09483 0.007274 1.049e-05 0.000913 0.02253 0.00263 0.007005 0.4597 1.56e-05 0.0005093 0.0001364 0.001507 0.001998 0.02842 0.5895 0.002431 0.001145 0.001796 0.0007655 0.006013 0.01046 0.4641 0.007543 0.0006452 0.0003043 0.01289 0.1536 1.366e-05 0.001979 0.009254 0.01081 1.824e-05 0.008337 0.518 0.0001031 4.761e-05 0.003146 0.007122 0.2119 0.009944 0.003448 1.655e-05 0.007591 0.01634 0.006549 0.003466 2.128e-05 0.4824 0.0002943 0.0005064 0.5745 0.0006462 0.008605 0.01244 0.002045 0.01125 0.00801 0.0007518 0.002594 0.5636 4.006e-05 0.3197 0.4229 0.001367 0.003222 0.0006176 0.0007262 0.001249 0.01183 0.0007482 0.0002167 0.006705 0.00705 0.557 0.01446 0.009084 0.000881 0.003629 0.007959 0.2654 0.09577 0.02674 0.00357 6.365e-05 0.5563 0.00248 0.5692 1.515e-05 0.405 1.211e-05 0.003619 0.01002 0.004388 3.869e-05 0.0009918 0.0001863 0.01009 0.0656 0.5654 0.0009293 8.913e-05 0.02036 0.0001811 0.0003596 0.01374 2.448e-06 0.002655 1.087e-05 0.06052 0.000706 0.005761 0.0002745 0.02067 0.004658 0.003239 0.2584 2.333e-05 0.002676 0.3184 0.001246 0.001112 0.03116 0.175 0.002 0.001302 0.0001757 0.003101 9.598e-06 0.001094 0.1133 0.5613 0.0001288 0.000103 0.5152 0.001691 0.0006488 0.004779 0.00647 0.01709 0.0006672 0.03451 0.001438 0.003578 0.2909 0.004211 0.367 0.0001051 0.1324 0.08397 0.004044 0.0002474 0.0002271 0.0003075 0.003626 0.4007 2.052e-05 0.001895 5.319e-06 0.4362 2.279e-05 0.02659 0.0008744 0.000854 0.6406 0.008895 0.01629 0.1375 1.973e-05 0.004547 0.02284 3.509e-05 0.00261 0.00555 0.000569 0.587 5.823e-05 1.988e-05 0.003776 0.002132 0.1314 1.736e-05 0.02794 0.01075 0.001396 0.3944 0.004902 0.007991 0.001333 2.118e-05 0.01673 0.0006543 0.6676 0.0008888 0.176 0.005501 0.000274 0.001879 8.313e-06 0.006313 0.0003275 0.06291 0.005923 0.0007398 0.008292 0.007028 0.005573 0.002161 0.03805 0.009934 0.656 0.001027 0.0007847 0.0528 0.0257 0.005778 0.005208 0.0002663 0.0009688 0.4246 0.1518 0.0001405 0.0005809 0.566 0.00218 1.154e-05 0.002231 7.523e-06 0.002111 0.001421 9.555e-06 8.981e-05 0.0001075 0.001284 0.3329 0.0005359 0.5956 4.261e-06 0.001473 0.003312 0.007461 0.0001427 0.005728 0.0002974 0.006168 0.0001682 0.00229 0.0004219 0.01037 0.5517 0.001953 0.01178 0.002114 0.3873 0.01012 0.001828 0.2841 0.0004266 0.5311 0.008431 0.0003547 0.006667 1.672e-05 0.5741 0.01251 0.3305 7.147e-05 0.3075 0.0001415 4.554e-06 0.001397 0.0008138 0.01912 0.0005951 0.5831 0.003315 0.00806 0.002893 4.807e-05 0.0005593 0.0002241 0.3502 5.703e-05 0.001819 0.002764 0.003016 0.1979 3.048e-05 0.000219 0.001211 0.004506 0.003051 0.005986 0.003036 0.007178 0.05796 0.3992 0.0001537 8.752e-05 0.5656 0.2986 0.0004074 0.003287 0.001615 0.0007948 0.004058 0.01565 0.001071 0.001536 0.0001306 0.0004527 0.002819 0.009251 0.01404 6.952e-06 0.00341 0.007774 0.07257 0.008758 0.0008406 0.002671 0.000468 0.1244 0.003013 8.402e-05 0.0003698 0.000578 0.003402 7.888e-06 1.998e-05 0.0003593 0.02347 0.3602 0.006551 0.0006103 0.3641 8.405e-05 0.57 0.01768 1.525e-05 0.4473 0.01027 9.065e-05 0.003822 8.009e-05 0.0002253 0.004731 0.4582 0.01988 0.5773 0.0006444 0.004107 0.01482 0.003701 0.0006122 3.301e-06 9.277e-05 0.0005185 0.3594 0.0006015 0.001753 0.5788 0.004637 0.0009091 0.001053 8.041e-05 2.772e-05 0.02679 0.0001465 3.054e-05 0.001062 0.004102 0.01875 0.003195 0.01904 0.01454 0.00021 0.5836 0.01525 0.0008334 0.0008776 0.5698 0.0146 1.26e-05 0.0004786 0.00189 0.569 4.057e-05 0.5884 0.0004661 0.0002317 0.006256 0.0001013 0.3908 0.1919 0.002239 0.4619 0.1955 6.293e-05 0.009902 0.001262 0.007686 0.0008362 0.002693 0.000101 0.001382 1.787e-05 0.5748 0.4297 0.006997 0.001957 0.0004053 0.2263 0.2848 0.002956 0.01841 0.002184 0.005311 0.515 0.001166 0.0009302 0.3232 0.001371 0.002749 4.902e-06 0.00233 0.01431 0.002191 0.009164 0.007141 0.001417 0.5731 0.03703 0.5707 0.004082 5.416e-05 2.884e-05 0.001903 0.002883 0.0005076 0.03394 1.382e-06 2.264e-05 8.759e-05 0.0002895 0.01471 0.004565 0.5768 0.002554 0.1447 0.006035 0.001937 0.01258 0.003485 0.02036 0.0003265 0.4356 0.0005501 0.002813 0.04548 0.0002327 1.729e-05 0.0008152 0.01515 0.02048 0.004746 0.006564 0.5136 4.933e-05 0.002883 0.002502 0.003932 0.4622 0.5706 0.3891 0.007431 0.02838 0.002682 0.001057 0.01634 0.01062 5.201e-05 0.0088 0.0002755 0.003724 0.1397 0.006556 6.761e-05 0.001672 0.004641 5.905e-05 0.1548 0.0002117 0.01718 0.0004308 0.006685 0.002674 0.0151 0.0007511 0.0001226 1.595e-05 7.882e-06 0.03526 5.088e-05 0.001366 0.007279 0.003616 0.004249 0.0007062 0.535 0.0003937 0.5665 0.0009185 0.0004843 0.004265 0.002048 0.02575 6.776e-05 0.001031 0.007595 0.01394 0.008134 0.007003 0.5602 0.0001066 0.009545 0.0218 0.009052 0.0004374 0.06865 0.08115 0.001276 0.003581 0.296 0.6331 0.001968 0.001001 0.001511 0.001213 0.0008453 2.883e-06 2.184e-05 0.00607 0.0007802 4.794e-05 0.0009796 0.3689 0.001343 0.2685 0.2681 1.041e-05 0.000865 6.945e-05 0.562 0.00119 4.104e-05 0.001361 0.001162 0.00432 0.04645 0.1682 0.0002407 0.001353 0.01454 0.03176 0.01491 0.000139 0.001192 0.001049 0.2679 0.00685 0.001404 0.0005986 0.0009006 0.01772 0.001215 0.0001989 0.5735 0.004266 0.004985 0.002305 0.004911 0.004245 0.17 1.941e-05 6.133e-05 0.003906 0.002484 0.0001067 0.003931 0.0002664 0.06142 0.005616 0.002351 0.0002811 0.0004962 5.03e-05 0.001704 0.5508 0.0001173 0.002191 0.0001691 0.001973 0.007109 0.002192 0.0001145 0.5456 0.01664 0.09373 1.61e-05 0.00163 0.0002544 0.6675 0.1968 0.00637 0.4156 0.03398 0.00739 0.006142 0.00755 0.02203 0.008199 0.00423 0.4327 1.984e-05 0.002687 0.002518 1.223e-05 0.003642 0.006774 0.0001441 0.0004656 6.181e-05 0.0017 0.000914 0.0007072 0.348 0.03843 0.001332 0.3602 0.004506 0.000802 0.4952 0.004102 0.002821 8.818e-05 0.005207 1.296e-05 0.1648 0.0001051 0.004052 0.5851 0.009768 0.01117 0.424 0.006479 0.0007674 0.001481 0.0003054 0.003493 0.0004937 0.007711 0.0003505 0.001089 0.008232 0.3276 0.006999 0.001314 0.02551 0.002765 0.1283 0.001249 0.003376 0.02157 6.204e-05 0.005301 7.597e-05 0.4181 0.001374 0.08355 0.42 1.67e-05 0.5804 9.248e-06 0.5132 0.00846 0.007577 0.00672 0.02547 0.571 0.002195 0.0005461 0.4926 0.001961 0.0001264 0.002949 6.006e-06 0.5735 0.6127 0.5675 0.5565 0.001964 1.728e-05 0.0002194 7.433e-05 0.4302 0.0003232 0.533 0.009754 2.168e-05 0.001336 0.5714 0.474 2.772e-05 0.0005587 0.003476 0.0009237 7.343e-05 0.01904 0.000323 0.5464 0.0001361 0.5596 0.0005976 0.01216 0.01163 4.37e-05 0.007249 3.147e-05 0.0155 0.0006432 0.004542 9.134e-06 0.01474 0.0002594 0.0008875 0.002058 0.006223 0.003702 0.001328 0.5739 0.003132 0.4405 0.3945 0.00243 0.0002276 0.002957 0.006061 0.01984 0.003168 0.3817 0.0002947 0.01042 0.002282 0.5785 0.2828 1.032e-05 0.5682 1.148e-05 6.095e-05 0.0001054 0.003493 0.1559 0.002349 0.2065 0.005129 0.0002368 2.598e-06 0.001856 0.007386 0.0003084 3.192e-05 0.002067 0.004082 0.001318 0.009829 2.575e-05 5.545e-05 0.002101 0.07624 0.002284 0.0005219 0.5424 0.007681 0.0153 0.0008833 8.553e-05 0.0196 0.002287 0.02058 0.007149 0.03614 0.0002895 0.0236 1.26e-05 0.001056 0.06444 0.5039 0.1584 0.4614 0.009457 0.006416 3.757e-05 0.0006579 0.008027 0.5986 0.6069 1.04e-05 0.01101 0.005984 0.002764 0.00271 0.4851 0.003471 0.04359 0.0002579 0.001479 0.003039 7.926e-05 0.5034 0.3164 6.119e-05 5.195e-06 0.0009689 0.5502 0.6096 0.4237 1.077e-05 0.0001576 0.0009605 0.001487 1.268e-05 0.002132 0.002913 0.4079 0.04394 0.01739 0.0001677 0.004929 0.4038 2.043e-05 0.0001876 0.02268 0.1825 5.511e-05 0.006981 7.043e-05 0.03392 0.0001248 0.5037 5.239e-05 0.0002 0.4697 0.007193 0.006423 0.3251 0.1805 0.000136 0.01122 0.6684 0.003047 0.0159 0.005976 0.02895 0.005532 0.00376 0.01494 0.0005645 0.00165 0.0904 0.003765 0.5585 0.008789 0.003692 0.01103 1.182e-05 0.01039 5.609e-05 0.0001781 0.01583 0.000582 0.437 0.00667 7.376e-05 0.01925 0.0004684 0.00251 0.002322 0.0001983 3.469e-05 0.0001843 0.00185 0.002651 3.565e-05 0.0009653 0.0006865 0.001026 0.5567 0.0235 0.09852 0.05821 0.08782 0.1074 0.001071 0.0001366 0.001292 0.5701 0.04241 0.003898 3.327e-05 6.99e-05 3.215e-06 0.02454 0.01257 0.4184 0.1704 1.901e-05 0.0005054 0.0004296 0.0005389 0.005625 0.02013 0.01033 0.00323 0.001471 4.216e-05 0.003413 0.0003319 0.1739 0.004323 0.004412 0.001419 0.006076 0.004598 0.004427 9.609e-05 0.004072 1.446e-05 0.5399 8.872e-05 0.0003202 0.001136 0.01008 0.0002879 0.02133 0.0008955 0.0003082 0.6592 8.342e-06 0.07043 0.000117 0.0006322 0.016 0.4034 0.00461 0.002141 0.01075 0.002767 0.07539 0.001494 5.796e-05 0.06915 0.01536 0.001959 0.08945 0.3149 0.1216 0.0525 0.07266 0.007987 0.02634 0.002442 0.0001136 0.0001048 0.1108 0.01025 0.0002035 0.00968 0.006616 9.861e-05 0.005655 0.009667 0.0002405 0.00692 8.418e-05 0.0004943 0.5538 5.307e-05 0.02377 0.03325 0.5486 3.499e-05 0.002054 0.006659 0.0001495 0.0004734 0.138 0.0004254 0.006222 0.5696 0.01062 0.00192 0.0001173 0.0003526 0.007204 0.0001108 0.002096 0.3254 0.0004298 0.4962 0.4555 0.4016 0.06924 0.4497 0.008551 7.786e-05 0.1336 0.01356 0.0001415 0.003683 3.053e-05 0.0006476 0.001087 0.3838 0.009634 0.3816 0.045 0.0516 0.0006977 0.0006228 0.4031 0.4617 0.0002504 0.000821 0.09819 0.00635 0.02509 0.0008333 0.03807 0.003159 0.009629 0.2785 0.0009415 0.4454 0.001149 0.3164 0.03602 0.0009306 1.959e-05 0.5738 0.0005903 0.001166 0.4628 0.0004368 0.0008919 0.003879 0.006079 6.052e-05 3.852e-05 0.09407 0.003819 0.001359 0.0001254 0.0002337 0.515 0.0003149 0.5027 0.003698 0.03195 0.0008012 0.5283 0.003446 0.5722 0.004152 0.007851 0.5808 0.00194 0.0001936 0.09182 0.005003 0.0008325 0.005401 0.3849 0.007662 0.02246 0.001442 0.3802 0.002936 0.01492 0.0001181 0.001603 0.01304 0.003137 0.4421 0.006098 0.4932 0.006943 0.001423 0.0008857 0.003546 0.003093 0.0003517 0.002431 0.0004338 2.695e-05 0.001012 0.0001094 5.581e-06 0.002055 3.99e-05 0.001891 0.01085 1.165e-05 0.00222 0.0809 0.0009282 5.839e-05 0.05002 7.105e-06 0.01415 0.0007517 0.5783 0.4135 0.4257 0.01045 0.001409 6.237e-06 0.002466 7.338e-05 0.001251 0.0007702 0.001661 0.001085 0.5592 0.0004416 0.006778 0.001517 0.00461 0.01035 0.02747 0.01603 0.0001905 0.06214 0.4302 0.1084 0.5723 0.001492 0.0001216 0.01016 0.0002548 0.005567 0.01834 0.02925 0.4486 0.001883 0.01237 0.001229 0.013 0.003885 0.001263 0.004769 0.0003171 0.001944 0.0005769 0.00541 0.004499 0.05207 0.005151 0.01524 5.05e-05 0.002308 0.02626 0.006374 1.418e-05 0.114 0.004017 0.000282 0.5523 0.003006 0.003294 0.001204 2.054e-05 0.1878 0.002518 0.0001109 0.5717 0.000459 0.0009059 0.0006431 0.02613 0.01078 7.438e-05 0.02559 0.0009048 0.0008453 0.009518 0.0009109 0.0002831 1.648e-05 0.001363 0.00456 0.001763 0.0009116 0.5699 0.003231 0.0001283 0.0003745 0.5564 0.009507 0.0001029 0.2039 5.118e-05 0.001274 0.5978 0.3509 0.001081 0.4573 0.0002034 0.5689 0.0003468 0.0009227 0.01097 0.002898 6.498e-05 2.23e-05 0.01371 0.002001 0.6226 0.01306 1.596e-05 1.514e-05 0.0001091 0.01006 0.1415 0.006452 0.01199 0.5722 0.03809 0.01667 0.004326 6.248e-05 1.031e-05 0.007765 1.703e-05 5.158e-06 0.00752 0.00637 0.005923 0.003298 0.004417 0.1105 0.0001051 0.002376 0.3685 0.0001267 0.00448 0.0007026 0.01433 5.544e-05 2.109e-05 0.565 0.002144 0.04707 0.02302 0.001014 0.0004245 0.001118 0.005826 0.005008 0.01074 0.03206 0.01335 0.01802 0.0003063 0.007226 0.01327 0.004124 0.00136 0.007525 0.002457 0.006213 0.007028 0.009789 0.5813 0.0004373 0.00013 0.00169 0.001245 1.958e-06 0.0002758 0.001859 0.04576 7.573e-05 0.5743 0.006948 0.008732 8.333e-05 0.01073 7.495e-05 0.005608 0.01265 4.037e-05 0.5798 0.001215 5.963e-05 0.01065 0.1647 0.005646 0.004545 0.5741 0.01444 0.01114 0.007438 7.765e-05 0.547 0.0002085 0.001633 0.5721 0.004669 0.003905 0.004061 0.02137 0.3531 3.948e-05 3.451e-05 0.5762 0.2933 6.036e-05 0.5137 0.0025 0.004556 0.001614 0.4495 0.4705 0.007758 0.01292 1.344e-05 0.001033 0.003539 0.00312 0.5627 0.002112 0.4525 0.6083 0.6647 0.00233 0.005332 0.001021 5.747e-05 7.069e-05 0.06451 0.003279 0.003867 9.275e-05 0.4491 0.0443 0.0003525 0.005139 0.1838 0.01127 8.076e-05 0.001349 0.4323 0.004479 0.583 0.5704 0.001335 0.4144 0.002188 4.635e-05 4.374e-05 0.003121 0.002384 0.003424 8.866e-05 0.0007428 0.01178 0.006953 0.5397 0.001112 0.007424 7.399e-05 7.132e-05 0.5744 0.5298 0.008483 0.06188 0.3294 0.0006723 0.00313 0.5797 0.001134 0.003049 0.01085 0.04632 0.001322 0.5897 0.0001578 0.0003537 0.06432 0.006347 0.5551 0.0006835 0.1745 0.004488 0.001384 0.004947 0.0002075 0.006096 0.0004588 8.844e-05 0.0005103 1.626e-05 0.009831 0.0006933 0.0007043 1.113e-05 0.001411 8.633e-05 0.02054 0.004031 0.334 0.002202 0.002589 2.791e-05 0.451 0.0003031 1.343e-05 0.0002743 0.007605 5.844e-05 0.001557 0.4725 0.002535 0.006376 7.597e-05 0.004258 0.00229 0.01011 0.0006757 0.4118 0.0006907 0.0007119 0.02151 0.06239 0.005222 0.001424 0.002129 0.02662 0.01808 0.04077 0.01525 0.5061 0.001157 0.4771 0.00826 0.04125 0.5811 0.001001 0.05531 0.01283 6.311e-05 0.5549 0.002899 0.01389 0.02306 0.5179 0.02005 0.002153 0.02442 5.898e-05 0.009152 0.0002674 0.01159 0.08904 0.001323 2.124e-05 0.445 0.001476 0.001412 0.6566 0.3769 0.000503 0.003972 0.0004757 0.5646 0.008315 0.0001413 0.0006632 0.001852 0.0008089 0.0005995 0.01861 0.0005451 0.001703 0.0002636 0.0003228 0.397 1.151e-05 0.5849 0.003011 0.0001218 0.04875 0.001041 0.5733 0.07274 0.563 0.0002218 0.000278 0.001043 0.01361 2.039e-05 0.05062 0.0001082 0.002175 0.00124 6.215e-05 2.161e-05 0.0007718 0.01257 0.001708 0.02072 9.175e-05 0.5176 1.57e-05 0.006781 0.003699 0.001438 0.008766 0.002802 0.0006747 0.0008229 0.008464 0.001303 0.001149 0.002979 0.4958 0.001107 0.003701 0.007733 0.008387 0.01139 0.0005236 0.0001995 4.227e-05 0.611 0.0003894 0.001478 0.0005288 0.02271 6.492e-05 0.002247 0.004294 0.03502 0.001799 0.0008141 0.004756 0.009476 0.009594 0.002452 0.003416 0.01107 0.00591 0.003886 0.0009891 0.003121 0.02486 0.3686 0.0001535 0.001164 1.285e-05 0.0009401 0.03451 0.001645 0.0009796 1.453e-05 0.0007278 0.008525 0.5698 0.0002175 0.001389 0.02401 0.0007958 0.0004337 2.475e-05 0.6043 0.433 0.002713 0.002985 0.009611 0.005222 0.3916 0.007098 0.003826 0.002266 3.343e-06 0.46 0.005026 0.001121 0.0006093 0.0005233 0.0002944 0.0006042 0.01276 0.007354 0.002605 0.0003159 9.611e-06 0.02098 0.01274 0.001939 0.004174 9.298e-06 0.001721 0.0007589 0.06247 0.008268 0.01798 0.4948 0.3685 0.001002 0.03524 5.417e-05 0.04485 3.883e-06 0.000872 0.00202 0.003646 0.3233 0.5356 0.0003363 0.001101 0.1088 0.007959 0.008151 0.01835 6.114e-05 0.199 0.002297 0.005329 0.001408 0.001603 0.001444 0.03836 2.218e-05 0.002954 0.002475 9.504e-05 0.0002878 0.0004407 0.008216 0.002246 0.004294 0.00203 0.5751 0.01427 0.003447 0.01435 0.001123 0.003808 0.001216 8.008e-06 0.4197 0.001297 0.01922 0.007314 0.003471 0.0002996 0.0239 0.0006038 0.00375 0.001562 0.1341 1.572e-05 0.02167 0.004712 0.0001718 0.006401 0.5788 0.0003341 0.007206 0.01777 0.008511 0.0005493 0.01865 0.02146 0.0007237 0.5882 0.006099 0.01237 0.01515 0.005973 0.002018 0.0001737 0.002286 0.0001045 0.001977 0.0001748 0.02121 0.0005026 0.009039 0.2116 0.002129 0.0002803 0.005775 0.001543 0.5184 0.3748 0.004216 0.02886 0.6142 0.01236 0.00215 0.0009633 0.002293 0.001001 0.4025 0.002026 0.5525 0.01404 0.004775 0.002647 0.002707 0.5204 0.006881 0.5709 0.0009521 0.00118 0.4456 0.004687 0.0009475 3.582e-06 0.001649 9.894e-06 0.0008099 0.1467 0.03728 4.819e-05 0.0002361 0.00124 0.0002075 4.174e-05 0.5886 0.01185 0.453 0.453 0.5967 0.001558 0.0001997 0.4356 0.03173 0.0001009 0.05885 0.02241 0.05126 0.006389 0.001138 0.0003251 0.009003 0.0002834 0.002141 0.006091 0.382 0.008963 0.02683 0.02233 0.001357 0.00133 0.004599 0.00115 0.002089 0.0007063 0.5776 0.001294 0.001152 0.003998 3.711e-06 0.0006435 0.0003787 0.4474 0.0143 1.271e-05 0.5386 0.06056 0.05565 0.001468 0.0006493 0.00455 0.001028 0.0006477 0.001722 8.485e-06 0.007058 9.835e-05 0.02334 0.003386 0.00106 0.02669 0.01695 0.001286 0.411 0.005277 0.0187 0.0001039 0.006521 0.01081 0.5741 0.6137 0.0002909 0.01597 0.003798 0.002886 0.1406 0.002384 0.5767 0.0005816 0.001655 0.02541 0.0001108 0.4313 0.0004561 0.00838 0.01331 0.001114 0.0007612 0.001028 2.113e-05 1.119e-05 9.265e-06 0.00308 0.0003523 0.5681 0.3192 0.008207 0.04282 0.005653 0.01594 0.1739 0.0003431 0.005582 0.003013 0.000444 0.6298 0.003218 0.005582 0.01184 0.0007587 0.0005167 0.001127 0.002484 0.575 0.0001023 0.005093 0.009297 0.0006844 0.3538 0.0002542 0.0003848 4.728e-06 0.008643 0.08166 0.002762 0.003667 0.01007 0.003478 0.004275 0.08186 0.006044 0.0005186 0.00402 0.008077 0.06001 0.0001294 0.002496 0.002414 0.02249 0.03404 0.4937 0.4372 0.02802 1.211e-06 0.00411 0.00196 6.571e-05 0.0001077 0.006744 0.0003628 0.0005 0.0006659 0.0003644 0.001835 0.5695 7.816e-05 0.006769 0.0003319 0.0003923 0.6059 0.002588 0.008788 0.003141 6.772e-06 0.004675 0.001057 9.017e-05 0.1427 0.6273 0.0001386 0.01678 0.00447 0.03102 0.00945 0.3786 0.0001341 9.109e-05 0.05251 0.002808 0.01546 0.01452 0.0005275 0.5849 0.5909 0.0005206 0.01553 0.0886 0.009724 0.0004728 0.5281 0.0003077 0.05207 0.1875 0.001726 0.5177 0.08606 5.802e-06 0.0007667 0.007744 0.1129 0.002536 0.03239 0.561 7.869e-05 0.0004549 0.004472 0.01927 7.479e-05 0.006875 0.02079 0.0009706 0.001283 0.0009771 0.1373 0.01247 5.51e-06 0.001055 0.0001184 0.007325 0.0009685 0.2469 0.0001296 4.991e-05 0.6681 0.001459 0.001814 9.971e-05 0.06944 0.002821 1.631e-05 0.002282 0.004976 0.005271 0.001644 0.0001192 0.06172 0.0007332 7.285e-06 0.001057 0.08794 0.0001675 0.001208 0.004303 4.507e-05 0.02072 0.0008412 0.001241 0.00194 0.001251 0.0003662 7.435e-05 0.0003692 0.003422 0.07306 0.005096 0.001402 0.003049 8.911e-06 0.00102 0.002664 0.009479 8.805e-05 0.5312 0.0002408 0.0007904 1.977e-05 0.001658 0.001019 1.531e-05 0.00147 0.001463 0.003251 0.006717 1.642e-05 7.247e-05 0.003297 0.03418 6.916e-05 0.0008834 0.001283 0.0002347 0.04848 0.2924 0.001269 0.01741 0.004933 0.0018 0.004069 0.01591 0.004562 0.0006637 3.674e-05 0.001678 0.02696 0.002 4.872e-06 0.02154 0.5647 0.00942 0.003302 0.2267 6.497e-06 0.004406 0.0002456 1.494e-05 5.332e-05 0.001304 0.002157 0.4868 0.001493 0.002455 0.00164 0.006901 0.0007958 0.0002259 6.359e-05 0.01899 0.004873 0.003711 6.423e-05 0.0001733 0.0004565 0.07363 0.002488 0.0009442 0.003587 3.298e-05 0.003322 0.01709 0.001381 0.006693 0.0009142 0.3601 0.00173 0.0003579 0.004631 0.005754 0.0005872 0.03113 1.6e-05 0.005287 0.0004254 0.00379 0.3333 0.0006596 7.773e-06 0.00358 1.486e-05 0.003407 0.0003157 0.00112 0.0007532 0.001007 0.003499 2.445e-05 0.003195 0.00382 0.01429 0.06152 0.004291 0.04719 0.0006013 0.004309 0.1288 0.001261 0.5646 0.003539 0.0007254 0.06128 4.109e-05 0.004077 9.333e-05 0.001548 1.954e-05 0.4664 0.00308 0.00934 0.004026 5.48e-05 0.002211 0.0001058 0.003557 0.0169 0.00279 1.735e-05 0.0001508 8.179e-05 0.006332 0.007625 0.0134 0.007398 0.03263 0.4245 9.017e-06 0.0003678 0.005393 0.4661 0.002855 0.0009931 0.002156 0.00632 0.0003523 5.618e-05 0.5572 0.5721 0.3913 0.4578 0.0003104 0.01074 0.00145 0.001871 5.713e-05 0.0002766 0.0007674 1.336e-05 0.001712 0.02234 0.002797 0.001411 0.2825 0.5445 0.00449 0.004863 0.001966 0.2214 8.65e-05 0.0001328 0.007504 0.07916 0.06033 9.355e-05 0.2207 0.0009134 0.0002634 0.003027 0.0003577 0.0007204 0.0002716 0.009149 0.002932 0.002103 0.1822 0.003161 0.006389 0.009351 0.01558 0.004415 0.002123 0.00875 0.05227 0.4157 0.001116 0.00657 0.0006889 0.4912 0.004324 0.000202 9.262e-06 0.009035 0.57 0.0002982 0.003506 0.009 0.5864 0.001714 0.004461 0.05692 0.01031 3.614e-05 0.003533 7.121e-05 2.809e-05 0.0002282 0.008645 0.0002781 0.0007421 0.02265 0.01956 0.003686 9.013e-06 0.0002144 0.5003 0.005311 0.0005095 4.111e-06 0.09189 0.0001869 0.1101 0.2696 7.401e-05 0.3648 0.02014 0.01261 0.003807 0.001106 0.002819 0.01231 0.000114 0.0005581 1.776e-05 0.001934 0.07674 0.003328 0.0353 0.0346 0.004027 0.0169 0.0002608 0.02529 0.001319 0.00623 0.002144 0.0222 0.01828 0.5728 0.003698 0.0002622 0.0002538 0.001283 0.0002055 0.0029 0.457 0.0559 0.002424 0.008036 0.0003861 0.008299 0.0002272 0.0004703 0.004499 0.002358 0.0005061 0.002679 0.1412 0.02907 0.3287 0.009769 0.002578 0.009291 0.01672 0.001243 0.008081 0.003317 3.158e-05 0.002363 0.02114 0.001153 0.004658 1.675e-05 0.002882 4.17e-05 0.0007937 0.05825 0.2791 0.2777 0.1977 0.001786 0.0006022 0.01672 0.002112 0.008932 7.799e-05 0.003799 0.001288 0.001321 0.002157 2.194e-05 0.5649 0.00104 2.375e-05 0.04696 0.0005455 0.6376 0.006724 9.87e-05 0.0004214 0.00113 0.003295 0.01281 7.921e-06 0.003297 0.0001358 0.01715 0.002466 0.453 0.001826 0.0001223 0.0006919 0.0004176 0.001904 0.0007347 0.003288 0.003208 0.5678 0.001489 8.723e-05 5.001e-05 5.549e-05 0.0004146 1.011e-06 0.02349 0.5832 0.000139 0.1391 0.004805 0.5716 0.0004171 0.009873 0.006421 0.5335 0.005618 4.775e-05 0.01405 0.6014 0.2146 0.0001744 0.0005652 0.001459 0.0001757 0.177 7.313e-05 0.0002026 0.001036 0.2138 0.02949 7.371e-05 0.03027 0.4635 0.02831 0.003072 0.5665 0.005157 0.005861 9.268e-05 0.0001973 0.0003754 0.01251 0.01327 0.003964 0.002687 6.129e-05 0.01166 0.02595 0.001241 0.04283 0.4013 2.286e-05 0.09209 0.0002039 0.000187 0.01114 0.01228 0.007879 0.004214 0.0004033 0.3563 0.04592 0.00287 0.0005596 0.5865 0.4705 0.0174 0.004303 0.0002934 0.004334 0.002721 0.0002886 2.263e-06 0.01001 3.94e-05 0.01392 0.002754 1.032e-05 0.0001769 6.283e-06 0.0006186 0.0003744 0.0002453 0.5833 1.331e-05 0.01136 0.3147 0.002413 0.2391 0.219 1.988e-05 0.0822 0.4988 0.006296 0.002799 9.984e-05 0.4842 0.01061 0.0005107 0.00166 0.03755 0.002694 0.5989 0.002135 0.003762 0.002345 0.01447 0.0006017 0.0004702 0.002368 0.01209 0.00286 0.001386 0.5821 0.008079 0.01652 0.0003536 0.4287 0.002749 0.002848 0.07459 9.554e-05 0.0001018 0.001966 0.3126 0.003465 1.556e-05 0.001599 0.0003572 0.01109 0.1059 0.0002608 0.009198 0.006619 0.003753 0.0005795 0.0008037 0.000193 0.002206 0.002664 0.000248 0.1763 0.004879 0.01943 0.01255 0.004816 8.746e-05 0.001523 0.006764 0.00288 0.002547 0.003033 0.5597 0.4079 0.0003517 0.01063 0.0001635 0.00272 0.002071 1.863e-05 0.01026 0.004192 0.01913 7.81e-06 0.02742 0.003261 0.1881 0.0005778 0.0005506 0.0002149 0.02553 0.0002816 0.428 0.0007815 0.0003465 0.04546 0.001252 0.02131 0.009049 0.06955 0.05763 0.5814 0.0008837 0.5655 0.004334 0.02362 0.0005576 0.001517 3.779e-05 4.161e-05 0.0001235 0.002028 0.005644 0.4923 0.573 0.01397 0.4089 0.001156 0.001436 0.007377 0.4092 7.254e-05 0.007099 0.01933 0.0002746 5.729e-05 4.482e-05 0.02179 0.001191 0.0001153 0.0003981 0.001475 0.002351 0.0001026 0.01248 0.002674 0.00247 0.001602 0.01144 0.2451 0.002851 0.001318 0.01078 0.00908 0.0811 0.004119 0.5043 1.3e-05 0.0005765 0.002131 4.803e-05 0.00216 0.004458 0.02771 0.0004297 8.856e-06 0.002423 0.003088 0.003071 1.104e-05 0.001497 0.001844 0.3116 0.311 0.00475 0.02064 0.0008547 0.02023 0.007263 0.01383 0.02814 0.0005245 4.8e-05 0.0006155 0.004139 0.0004535 0.006533 0.04684 0.004822 0.1138 0.06718 0.00167 0.0005388 1.307e-05 0.4272 0.01276 0.009102 8.542e-05 0.001399 0.0004038 0.005618 0.007646 0.5539 0.004858 0.3693 0.004829 0.3477 0.0004313 0.3781 0.1723 0.02517 0.0003965 0.001811 0.002449 0.0004419 0.00257 1.21e-05 0.112 0.000104 5.525e-05 0.5848 0.002147 0.001856 0.02538 1.451e-05 0.0009163 0.004532 0.03293 0.00086 0.01123 0.3307 0.5801 1.406e-05 0.613 0.001697 5.366e-07 0.09195 7.327e-05 0.035 0.001214 0.01057 0.311 0.0004475 0.0001152 0.01439 1.056e-06 0.4545 0.4541 8.67e-05 0.02507 0.0108 3.244e-06 0.0003256 0.4124 0.06316 0.0003041 0.001166 0.01024 0.00345 0.005379 0.0008104 0.002056 0.002785 0.001905 0.002901 0.4487 6.034e-05 0.0001928 0.001198 9.316e-05 0.000562 0.03059 0.003326 0.01963 0.3341 0.03708 0.009122 0.5984 0.0003134 0.0008561 0.001834 0.001496 0.001557 0.001342 0.02003 0.03035 1.015e-05 8.644e-05 2.551e-05 0.02624 0.4831 0.0009527 0.0007362 0.0006235 0.001666 0.0002193 0.07215 0.00141 0.003085 7.122e-05 0.0001939 0.01078 8.492e-05 0.3494 0.01125 0.002001 6.903e-05 0.01319 0.0005069 0.2518 0.0003057 0.009843 0.0004988 0.002312 0.001315 0.0008958 0.0005897 0.01265 0.571 7.779e-05 0.05519 0.0007185 0.0006702 0.000558 0.001344 0.002887 0.0006803 0.6175 0.4103 0.00292 0.0004645 0.0004591 0.527 0.1404 0.01828 0.001103 0.009992 0.001302 0.1326 0.01321 0.1216 0.4128 0.0001126 0.02873 0.0001851 0.002892 0.004281 0.3278 0.02026 0.6642 0.0003279 0.003033 0.5739 0.03217 0.0007567 0.01028 0.005084 0.001859 0.0002181 0.0001788 0.5882 0.000764 0.0004214 0.006374 0.0003888 0.01554 0.005652 0.001711 0.08281 0.0008387 0.02425 0.02395 0.009985 0.3175 0.03321 0.6131 0.009153 0.001212 0.00759 0.0002965 0.01873 0.2834 0.005554 0.0007958 0.004764 0.0007374 7.498e-06 0.00258 0.08279 6.123e-05 0.5442 0.005843 0.0002257 0.01756 0.001081 0.0009918 0.0005678 0.001805 0.4157 1.651e-05 0.0003669 0.0001019 0.001909 0.001661 0.5779 0.424 9.203e-06 0.008392 0.001719 0.0002784 5.783e-05 0.5799 0.001655 0.002053 0.1897 0.01659 0.01131 0.1492 0.0001259 0.002121 0.0004282 0.0002268 0.004774 0.4089 8.431e-06 0.01727 0.0001462 0.001463 0.07081 0.00027 0.3986 0.001798 0.0003713 0.3067 9.528e-06 0.00576 0.0005168 5.37e-05 0.3772 0.1024 3.445e-05 0.0004292 0.2146 0.01599 0.008394 0.001601 0.005239 0.04192 0.006459 0.4716 0.1334 0.001051 0.00181 8.099e-05 0.05401 0.004995 0.0002055 0.004427 6.384e-06 0.01033 0.5785 0.008746 0.413 0.01128 0.0006999 0.6346 0.0001244 5.386e-07 0.0004741 0.5749 0.5062 0.5678 0.0001138 0.002545 0.0002876 0.0001717 0.0001086 0.001556 0.1457 0.007667 0.001748 0.005767 0.001597 0.4631 0.02074 0.007883 0.02683 0.01205 0.000761 0.0012 3.733e-05 0.004391 4.774e-05 0.0004974 0.008202 0.01357 9.96e-06 0.000398 0.002463 0.6072 1.482e-05 0.01177 9.84e-06 0.001671 0.004991 0.01681 0.01909 0.002557 0.001593 0.6249 0.04664 0.01645 3.803e-05 0.008196 0.0245 0.001611 0.0005489 0.0003904 0.5707 0.03525 0.006184 4.114e-05 9.35e-06 0.01609 0.3197 0.01371 0.02093 0.0001189 0.5929 0.001979 0.1414 0.4552 0.03244 2.441e-05 0.0001327 0.2955 0.0009633 3.071e-05 0.453 0.01806 0.00232 0.004656 0.4113 0.4102 0.007899 4.504e-06 0.0003994 6.565e-05 3.51e-05 0.5607 5.87e-05 0.5729 0.0003191 0.009572 0.005782 0.001488 5.325e-06 0.0002218 0.005366 1.019e-05 6.462e-05 0.0009256 0.1986 0.01437 0.04569 0.005747 0.275 1.11e-05 8.521e-06 0.00315 0.0005581 0.01997 0.003471 0.0002737 1.354e-05 0.000485 0.5388 0.001099 0.007542 0.00299 0.005946 0.005428 0.01899 0.09643 0.002422 0.002719 0.000125 0.5018 8.907e-06 0.004284 0.003142 0.004971 0.00641 0.0002279 0.002427 2.098e-05 1.811e-05 0.00122 4.776e-05 0.5516 0.008948 0.0006064 0.0003226 0.01604 6.218e-06 0.001463 0.001034 0.001018 0.05774 0.00125 8.118e-05 0.000322 0.004682 0.000234 0.008799 0.002404 0.5445 0.000453 0.001589 0.5232 0.5746 0.5673 0.3028 8.992e-05 0.5692 0.003168 0.004701 0.01154 0.0008432 0.0005908 0.007243 0.001278 0.009539 6.037e-06 0.5747 0.02392 0.01392 0.0001613 0.0009438 0.01742 0.005617 0.5241 0.00683 0.004214 0.007219 0.4701 0.0005597 0.2276 0.005284 0.00246 0.00857 0.000228 0.002057 0.357 0.3361 0.009846 0.004195 0.009221 0.00689 0.001248 0.02603 0.009516 0.001101 0.003408 0.01566 0.02505 0.5521 0.01004 0.0001333 0.006907 0.006581 0.01646 0.006961 0.003918 0.144 0.3341 0.001136 0.00188 0.007422 0.0007931 9.037e-05 0.0002252 0.03742 0.000944 0.3062 0.2973 0.0004598 0.01961 8.131e-06 0.01784 0.01516 0.003267 0.0001047 0.004722 0.002547 1.12e-05 0.001964 0.001388 0.5645 0.0006081 0.0005335 0.001018 6.42e-06 0.01682 0.002501 0.001028 0.0006704 0.0004253 1.372e-05 0.00912 0.002119 0.002312 0.001098 0.02801 0.0006889 0.001333 0.02567 1.476e-05 0.3388 0.000784 0.0009858 0.02292 0.2244 1.113e-06 0.03305 0.4716 0.001691 0.001274 0.001904 0.4367 0.003814 0.005914 0.2244 0.003621 0.001035 0.0004787 0.003744 0.002352 0.005033 0.01968 0.0001722 0.0207 0.005409 0.001085 0.3748 0.005431 0.003647 3.128e-05 0.0004498 0.008757 0.009633 0.04761 0.6121 0.005447 0.0003387 4.915e-05 0.001015 0.007188 0.00125 0.004007 0.01501 0.0006815 0.002569 5.342e-05 0.005558 0.002238 0.000743 0.0001944 0.0001423 0.007958 0.002171 0.4328 0.5696 0.009636 0.0003483 4.394e-05 0.0664 0.01059 0.5465 0.5767 7.723e-06 0.4789 0.00723 0.1798 0.364 0.0001034 0.006088 0.005059 0.0001456 0.2787 0.03741 6.425e-05 0.2079 0.003158 1.412e-05 0.001429 0.001097 0.3932 0.01755 0.001941 0.002695 3.481e-06 0.01344 0.0001162 0.001279 0.001283 0.001317 0.03564 0.2847 0.002197 0.001952 0.005015 0.0009101 0.03375 0.001518 9.014e-05 0.02531 9.002e-05 0.003387 1.187e-05 1.058e-05 0.0009652 0.0003418 4.331e-05 0.008675 0.005267 0.5322 0.04052 0.004689 0.002189 0.3862 0.5589 0.4745 1.723e-05 0.00162 0.01521 0.000617 0.0002259 0.0004432 0.05834 0.0008877 0.003261 0.0002533 6.034e-05 0.5726 0.003901 9.706e-05 3.441e-06 0.005637 0.002529 0.3379 0.001243 0.001896 0.0004614 0.5723 0.1637 0.0005439 0.002379 0.5662 0.00617 2.817e-06 0.0007465 0.0009685 1.709e-05 9.234e-05 0.00602 0.001444 0.001543 0.01359 0.08035 0.5901 0.01065 0.6577 0.001899 0.0009942 0.001545 0.009541 0.0001473 0.0003803 0.01717 0.3797 0.006259 0.001558 0.004724 1.166e-05 0.4024 0.000953 0.01053 0.0083 0.0005543 0.00166 0.5867 0.002269 0.00217 0.001634 0.3532 0.001106 0.0001123 0.3768 5.992e-07 0.0155 0.0008047 0.005412 0.002702 0.0001231 0.004019 0.0009315 0.003392 0.0003944 0.5375 0.01088 0.0009918 0.0002522 0.004459 0.002731 0.006036 5.821e-05 0.3613 0.02706 0.5684 0.02851 0.01041 5.38e-06 0.61 0.002405 0.02046 0.0105 0.5731 0.001942 6.746e-05 0.4952 0.07027 1.854e-05 4.414e-06 0.0001238 0.008067 0.0001283 0.06258 0.2239 0.5897 5.304e-05 0.4796 0.5646 0.003954 0.0001809 0.4391 2.248e-05 0.5248 0.00306 0.001559 0.1694 0.5765 0.3843 0.01367 0.007389 0.5669 0.008053 0.01056 0.004037 0.5791 0.00512 0.00345 0.007421 0.01238 0.5189 0.008345 1.006e-06 0.01535 0.001693 0.006109 0.001062 0.002113 0.001945 0.001007 0.004834 0.6435 0.09238 0.0006173 6.581e-05 9.963e-05 0.002588 0.00468 0.0008696 0.003248 0.0005653 0.0001375 0.4958 0.04034 0.0005632 9.055e-05 0.00136 0.0002945 0.009688 0.003328 0.0002334 0.0001199 3.325e-07 0.007607 0.01919 0.01703 0.0003344 0.01556 0.01309 0.002408 0.001302 0.001103 0.0002931 2.766e-05 0.01004 0.000159 0.0007119 0.005064 0.001256 0.002453 2.72e-05 0.00161 0.001944 0.0002431 0.01238 0.00228 0.00544 0.003549 0.0006484 0.002346 3.408e-06 9.22e-05 0.0002887 0.2397 0.000444 0.001737 0.009474 1.937e-05 0.006669 0.5252 0.0001174 0.493 0.1051 0.07829 1.41e-06 0.5899 0.2965 0.008412 0.0009414 0.0001024 0.01879 0.001003 0.003981 0.4099 0.001834 0.007718 0.5524 0.001862 0.001983 0.3966 0.0005365 0.004987 0.0001567 0.001611 0.5642 0.001682 0.00827 0.5699 1.61e-05 0.00199 0.03223 1.782e-05 0.0004634 0.3581 0.0001681 0.4708 9.311e-05 0.01107 0.573 0.02498 0.00382 0.002885 0.001422 4.158e-05 0.0002981 0.1103 0.004486 0.0003939 0.003768 0.576 0.03236 0.5402 0.0003245 0.2404 0.000703 0.06108 0.5736 4.215e-05 0.0002491 0.0002045 0.4597 6.174e-05 0.2573 0.05463 0.3344 0.003777 2.563e-05 0.00572 0.587 0.003988 0.0001074 0.001094 0.5618 0.0001093 0.002399 0.0009907 0.0006032 0.0089 0.01323 0.007702 0.5001 0.002437 8.101e-05 0.004283 0.005171 0.0003354 0.5361 0.5727 0.00219 0.4101 0.00664 0.04137 0.00156 0.00145 6.462e-05 0.005332 0.009225 0.001618 0.01367 0.0006061 0.0001141 0.00187 0.6228 0.2858 0.002902 0.3562 0.00375 0.1765 0.003083 0.004063 0.0001704 0.003857 0.003116 0.002852 0.4894 0.001238 0.5749 0.0001727 0.006847 5.435e-05 0.02095 0.301 8.325e-05 0.001483 0.008647 0.04127 3.069e-06 0.5536 0.0001691 1.327e-05 0.000549 6.479e-05 6.306e-06 0.008061 0.01605 0.009671 0.005029 0.001276 0.001122 0.001372 0.5862 0.000276 0.06157 0.00667 0.01586 0.002803 0.03086 0.004837 0.03253 0.003556 0.0001057 0.5671 0.005564 0.1063 9.286e-05 9.883e-06 0.0008715 0.02373 0.0007568 0.001287 0.0009872 0.0003791 0.15 0.1414 8.003e-05 0.01512 4.712e-06 0.001199 0.007277 0.003872 0.1739 0.01036 0.1426 0.0016 0.002018 0.0002503 0.4292 0.02125 0.007289 1.99e-08 0.000373 0.6196 0.01094 0.002154 0.5741 0.0004239 0.02267 0.006075 0.004293 0.001567 0.01671 6.382e-05 0.001886 0.001599 0.01221 0.0003544 0.002507 0.0002942 0.01899 0.01378 0.00719 0.006582 0.06807 0.02336 0.001892 0.0006427 0.008283 0.004206 0.006818 0.005509 0.01627 0.01684 0.3014 0.0003834 0.01184 0.03706 0.001443 0.02129 0.0003961 0.001221 5.27e-06 7.184e-06 9.764e-05 0.08342 3.598e-05 0.002279 0.0005418 0.001989 0.002502 0.0009156 0.005989 0.001103 0.4075 0.01007 0.0005269 0.001718 0.0005951 0.003608 0.0001545 0.005203 0.002054 0.0002763 0.4503 0.001369 0.0005569 0.05332 0.2522 0.003426 0.001881 6.139e-05 0.005056 0.0006374 0.012 0.003634 0.04331 0.004901 0.004189 0.009858 0.004022 0.007724 0.02397 0.002651 0.5595 0.0107 0.0001044 0.008657 0.006442 0.6045 0.003163 0.000743 0.0001852 0.02856 0.000115 0.5725 0.5267 0.00455 0.00883 4.337e-05 0.004761 0.01456 0.01028 0.0007371 6.93e-05 0.3912 1.082e-05 0.0009407 0.003602 0.01257 0.0006937 0.008535 0.009767 0.0004335 0.001248 0.0002313 0.0008105 4.043e-05 0.0002549 0.001038 0.002972 0.003296 3.603e-06 0.03282 0.0009734 0.002718 0.000216 0.565 0.0007942 0.0003375 4.614e-05 0.003141 0.0003307 0.003016 0.002768 0.0002942 0.01011 0.00011 1.223e-05 0.001435 0.001921 0.0002179 0.01088 0.001235 0.001312 0.0006172 0.01114 0.004632 0.001902 0.004508 9.374e-05 0.004943 0.005793 1.448e-05 0.01846 0.6097 0.2279 8.433e-05 0.2697 0.1 0.5814 0.0002711 0.008155 0.05893 0.008231 0.4539 0.0447 0.0002223 0.1366 0.0009493 0.002707 0.001268 0.02173 0.001109 0.0002026 8.089e-05 0.003871 0.00341 0.2344 0.0007108 0.0001442 0.0001149 0.001517 0.002322 0.002463 0.4122 0.006128 0.003786 0.007083 0.00272 0.002577 1.839e-05 0.003303 0.0006506 0.009237 1.559e-05 0.04569 7.548e-05 0.006948 0.007543 0.5709 0.003696 0.004355 0.00291 0.000274 0.4349 0.001117 0.003951 0.4077 0.0001631 0.3623 0.0005992 0.003353 0.3681 0.6151 0.04043 1.093e-05 0.03188 6.736e-06 0.001402 0.001672 0.00087 0.6442 0.001934 0.001372 0.0005341 0.3901 0.0194 0.6064 0.0001843 0.04053 0.002686 4.216e-06 0.006082 0.004688 0.0006407 0.0002648 0.04357 0.008509 0.01231 0.006363 0.001799 0.01117 0.003251 0.001033 0.01032 0.006141 0.001825 0.2825 0.003507 7.032e-05 0.001946 0.001133 0.002432 0.0007171 0.004806 0.08431 0.01004 0.002561 0.01758 0.5784 8.231e-05 0.0677 0.0006769 0.0001074 0.001548 0.02173 0.00389 0.00333 0.001075 7.718e-05 0.5255 0.001811 0.0002112 0.3613 1.555e-05 0.003005 0.0001206 0.0111 0.0002636 0.0001108 0.001268 0.0003278 0.457 0.004025 0.002263 0.001224 7.329e-05 0.5731 0.0003211 0.1251 0.0027 0.002531 1.681e-05 0.008387 0.0001188 0.06215 0.002917 1.17e-05 0.0001812 0.01388 7.021e-05 0.002836 0.0001517 0.006272 0.03211 0.0005491 0.01279 0.00353 0.0004937 0.002339 6.862e-05 0.4734 0.5658 0.003427 0.00062 0.002921 0.002362 1.102e-05 0.0006395 0.001099 0.005129 0.4174 0.001109 0.00178 2.71e-05 0.05318 0.2794 0.008584 0.0004091 0.003232 0.5815 0.002104 0.01552 0.1748 6.57e-06 0.005603 0.004556 0.5498 2.51e-05 0.02737 0.0007139 0.00601 0.3798 0.000457 0.0001195 0.0027 0.001056 6.006e-05 0.003138 0.5848 0.007798 0.0108 0.0001222 0.008447 0.0007373 0.5782 0.02216 0.5604 0.2593 0.001703 0.01258 0.01007 0.005436 0.2338 0.001039 0.01198 0.0009122 0.0001015 0.0387 0.01534 6.173e-05 1.072e-05 0.005797 0.003567 5.908e-05 0.554 8.228e-06 0.004307 0.007264 0.0002663 2.356e-05 0.08058 0.05204 0.001543 0.01496 0.007227 0.0005969 0.008326 0.0007252 0.001021 0.003998 0.00259 0.002622 0.579 0.5789 0.0006136 7.16e-05 1.638e-05 0.005053 0.01104 0.0013 0.001416 0.004663 0.002036 0.01199 0.3305 0.002614 0.002736 6.565e-05 0.000111 2.101e-06 0.002546 0.005704 0.304 0.006456 0.003226 0.0003632 0.001675 0.3814 0.006466 0.001136 0.0005172 0.006683 0.0003354 2.304e-05 0.001836 0.004233 0.2927 0.3234 2.036e-05 0.003002 0.005524 0.0009773 0.01236 2.301e-08 0.3293 4.533e-05 0.0006907 0.0001012 0.5638 0.003435 0.0001767 0.5519 0.0009392 4.09e-06 0.008567 0.5768 0.00735 0.00027 4.916e-05 0.001646 0.0005787 0.0002373 0.0009277 0.02409 0.009105 0.6223 0.0005634 1.659e-05 0.1843 0.5855 0.000101 0.003749 0.4631 0.4632 0.08052 0.005315 0.004229 0.04066 0.4282 0.00674 0.02393 0.000556 0.022 0.3565 0.000398 0.03389 0.0001415 0.0006627 0.004999 0.1786 0.3881 0.5003 0.003592 0.001378 0.0006761 0.6223 0.4 0.0008293 0.0001258 0.0001172 0.01366 0.0006113 0.01195 0.108 0.003179 0.004466 0.5596 0.005071 0.5704 0.001034 0.001097 9.584e-06 0.004241 0.06227 3.429e-05 0.002053 0.05902 0.4049 0.01417 2.468e-06 0.1421 0.06749 0.0009185 7.834e-07 0.003056 0.0001559 0.4173 0.02244 0.589 0.03288 8.17e-05 0.0002141 0.001645 0.003152 0.001424 0.3617 0.0001176 0.02358 0.002452 0.001032 0.5742 0.0002167 0.04553 0.2289 0.4306 1.338e-05 0.001115 0.005105 0.00271 0.561 0.005507 0.5717 0.005123 0.5011 0.000314 0.0008194 0.001387 0.2596 0.009405 0.5724 0.5133 0.0002527 0.5564 0.5541 0.5717 6.081e-05 0.6102 0.03107 0.5735 0.3783 0.0002444 0.02911 0.001422 0.005446 0.001693 0.001172 0.01147 0.0001522 0.0001628 0.008448 0.001408 0.004625 0.0002478 0.0009643 0.001262 0.00188 0.0001593 0.002941 0.6532 0.6201 0.01073 0.6242 0.001743 0.007228 0.004955 0.0009486 0.005965 0.001199 2.536e-06 0.00143 0.06206 0.01087 0.0004617 0.0005298 0.0004059 0.001 0.01537 0.01449 0.4683 0.01183 0.4102 0.0005391 0.6681 0.007195 0.0008672 0.009778 0.57 0.004255 0.002226 0.00339 1.663e-05 0.004931 0.00761 0.5672 0.0001017 0.007505 0.001775 0.01465 0.5813 0.005961 0.001114 2.991e-05 0.001245 0.007341 0.3961 0.0001346 0.003164 0.05772 0.001674 0.003686 1.985e-05 0.005159 0.007553 0.4042 0.1988 0.3941 0.3205 0.002256 0.5745 0.00102 4.229e-05 0.0002664 3.197e-05 0.005825 0.02405 0.0002798 8.036e-05 0.07684 0.003409 0.003949 0.0001135 0.0006551 3.298e-05 0.002932 0.001309 0.001101 0.5644 0.0006759 0.01033 0.004503 6.303e-05 8.841e-05 0.0003831 0.2955 0.007206 0.06103 0.5614 0.002478 0.001995 0.001526 0.007089 0.003221 0.00537 0.0009392 0.3998 0.3193 0.0001199 0.002423 0.003028 0.005339 0.004635 6.599e-05 0.004173 0.0007389 0.005496 0.0409 0.3712 0.0033 0.001156 0.007098 0.003201 0.0002018 0.0001185 0.007613 0.001964 0.00525 1.671e-05 0.008458 0.004515 0.05287 0.006605 0.0001423 0.002788 0.001068 0.02186 0.002745 0.007989 0.000716 0.0001457 2.664e-06 0.3943 0.01601 7.531e-05 0.002389 0.0003544 0.004867 0.001515 0.000889 0.0006822 0.1437 0.00149 1.039e-05 0.0002955 0.0008446 0.0001769 0.0001833 0.001694 0.01497 0.009041 0.02168 0.01862 0.0003714 0.00516 0.0005594 0.007036 0.001062 2.283e-05 0.0004927 7.477e-05 0.001337 0.0001676 0.0008595 0.5526 0.005172 0.0004746 0.001585 0.3201 0.007789 0.5604 0.4544 0.002317 5.13e-06 0.009312 0.002178 3.424e-06 0.0002409 0.001493 0.001835 0.01483 0.001538 0.00385 0.06549 0.0001253 0.0004489 0.5653 0.03001 0.002879 8.406e-06 0.2239 0.0002267 0.002103 0.007346 0.00568 0.4021 0.005881 0.0002506 3.966e-05 0.002495 0.004889 0.01836 0.0005907 0.574 8.056e-05 0.2026 0.003236 0.5661 6.401e-05 0.1689 0.0002209 4.061e-05 0.003967 0.3765 0.01682 0.6685 0.001841 5.988e-05 0.0001472 0.008143 0.001322 0.06211 0.002343 0.0015 0.0004034 0.01361 0.007044 0.007823 0.001831 0.008873 0.5666 0.002108 0.001912 0.008547 0.0008749 0.0004525 0.5016 0.001938 5.727e-05 0.008962 0.2159 0.2608 0.001623 0.0006251 0.0002051 0.0003893 0.001078 0.01258 0.01353 0.004913 0.01765 0.3047 0.003536 0.002262 0.0004293 9.669e-06 0.0001274 0.0005024 0.5653 0.005337 2.87e-05 0.01944 0.003082 0.07337 0.002048 6.666e-06 0.07716 0.01155 0.001017 0.005352 0.3525 1.222e-05 0.0008665 0.003261 0.002824 0.0007431 0.004834 6.018e-05 0.001237 2.228e-05 0.0002849 0.3958 0.001991 0.006155 8.084e-06 0.01023 0.0002342 0.00363 0.001845 0.01557 7.459e-05 0.007436 0.006359 0.01229 0.04221 0.01273 0.003591 0.01922 0.001355 0.01366 0.05548 0.007463 0.07526 0.004183 0.001371 0.5784 0.00329 0.008262 0.0125 0.0004178 0.5673 0.4041 0.005713 1.711e-05 0.004954 0.00365 0.5863 0.001344 0.02823 0.0008665 0.001318 0.5844 0.005201 6.508e-05 0.2346 0.002658 0.0394 8.711e-05 0.02549 1.251e-05 0.5692 0.01016 0.6109 0.0008309 0.004484 0.0005769 0.000523 0.03449 0.4345 0.0007411 0.0003169 3.962e-06 0.001199 0.004192 0.002527 0.5787 0.001258 0.5553 0.001588 7.489e-05 0.5734 0.5513 0.0348 0.06776 0.425 0.001527 0.1005 4.331e-05 0.002606 0.001152 8.639e-06 0.5312 0.5256 0.0009214 0.000165 0.6073 0.0003219 0.0006574 0.0263 0.00235 0.0007402 0.003422 0.003265 4.486e-06 0.001929 0.007657 0.5786 0.001226 0.001631 0.006239 0.005309 0.001313 2.469e-05 0.00236 3.934e-06 0.03509 0.003501 0.04587 9.379e-05 0.001497 0.002739 0.001763 0.000102 0.0004564 0.00506 0.208 0.00852 0.0155 0.008284 0.004905 0.0003066 0.5719 0.5835 0.0002937 0.002166 0.001734 0.5773 0.00015 0.001729 0.0002565 0.0003193 0.002677 0.0001622 0.007689 0.0002726 0.001687 0.01521 0.004489 0.4123 0.0009104 0.003444 0.0005845 0.0001198 0.002792 0.003306 1.103e-05 0.000358 0.002075 9.807e-06 0.007945 4.137e-05 0.2462 0.001248 0.01128 0.01417 3.583e-06 0.002157 0.006569 0.001969 0.04424 0.001101 0.5106 0.004161 0.0004026 0.003436 0.003451 0.001488 0.009509 0.0007616 0.3575 0.0002702 0.004391 0.0002858 0.00118 0.0085 0.3517 0.001283 0.3053 9.444e-05 0.5583 0.0005749 0.005897 0.006674 0.006712 0.001558 0.0001037 8.903e-06 0.001984 0.001503 0.0001379 0.5142 0.0006554 1.782e-05 0.4266 0.0007311 0.0001026 0.5742 0.04091 0.004 0.00239 0.159 0.004181 0.01216 0.0002375 0.01375 0.008395 0.017 0.4072 0.3059 0.0009144 0.001124 0.0002627 0.008822 0.0002237 0.008941 0.003011 0.1645 0.0009745 0.02907 0.001811 0.0006094 0.0005182 0.0005387 0.4986 0.0004494 0.01006 0.001208 0.001092 0.0007006 0.0001395 0.006088 0.006511 0.5515 0.004738 0.0004939 8.824e-05 0.00898 0.0008609 0.001215 0.4301 0.001779 0.0004209 0.002425 0.001913 0.0001515 0.2762 0.0009098 8.217e-06 0.4625 0.006239 0.6113 0.2599 0.0005865 0.005323 0.0001819 0.0003066 1.686e-05 0.0001036 5.155e-05 0.0001392 0.0006265 0.5768 0.0004559 7.372e-06 0.01692 0.0005243 0.01176 0.007942 0.00127 0.004154 0.007468 0.0008305 0.2583 0.000624 0.0001572 0.003057 0.0295 0.0008795 0.07696 0.5752 0.0002174 0.00611 0.002547 7.821e-05 0.06339 0.0002643 0.1977 0.0007487 0.001698 0.01589 1.514e-05 0.03412 0.0003976 0.0006702 8.072e-06 0.0164 0.002476 0.00152 0.5666 0.000763 0.0004101 0.3762 0.003223 0.0004042 0.001054 0.007705 9.483e-05 0.007814 0.5574 5.804e-06 0.2609 0.00383 0.001161 0.004099 0.5104 0.0009067 0.009847 0.01216 0.001702 0.4561 0.0002801 0.001279 3.112e-05 0.0001995 0.0001468 0.00118 0.009006 0.01609 0.002625 0.04373 0.002371 0.4096 0.002567 0.0008583 8.615e-06 1.915e-05 0.02375 0.001621 8.016e-05 0.00678 0.01419 0.0004453 0.5708 0.0008194 0.01797 0.0004613 0.0006776 0.000558 0.5999 0.0005702 0.0005999 0.002125 5.481e-05 0.003064 0.003536 0.0005347 0.0003778 0.0004919 0.0006533 0.01245 0.00719 0.00054 0.005734 0.000596 0.00325 0.5836 0.0001787 0.005362 0.3862 0.05748 1.005e-05 0.001056 0.01313 0.0002867 0.01032 0.0009835 0.0006037 0.5377 0.05432 0.001964 0.004496 0.004029 0.003372 0.002633 0.005726 0.618 0.4341 0.008213 0.2555 0.007348 1.983e-05 0.004842 0.006371 0.005954 0.002509 0.07904 0.003556 0.01952 0.001563 0.01583 0.6449 0.001644 0.001802 0.001293 0.007391 0.3539 0.01298 0.04355 0.01534 0.003676 0.4199 0.02769 0.003483 0.002303 0.01382 0.01884 0.3542 0.001215 0.002315 0.00214 0.006551 0.01855 0.009286 0.001057 0.02311 0.02647 0.0007704 0.4153 0.0001885 0.0004322 0.00363 5.856e-05 0.00234 0.3932 0.365 7.21e-05 0.0004315 0.003624 0.001242 1.853e-05 0.002999 0.02422 0.0007086 0.005352 0.004111 0.0001914 0.09874 0.001228 0.002098 0.01141 0.02287 0.0001146 0.0003958 0.01284 0.001348 0.00127 0.0813 5.499e-06 0.01624 0.01188 0.0002225 0.004457 0.00328 0.0001821 0.007356 0.00663 0.002461 0.01069 0.3696 3.753e-06 0.0004415 0.000147 0.01628 0.001699 0.001158 0.337 0.491 0.001685 0.07648 0.594 0.594 0.003753 0.004154 0.002264 0.0007758 0.009063 2.739e-05 0.00138 0.396 0.0001319 8.943e-06 0.003522 0.01231 0.3893 0.001686 0.001881 0.01237 7.827e-05 0.001363 0.001004 0.004068 0.01007 0.0001666 0.01163 0.005179 0.0007758 0.1257 0.0003813 0.002246 1.108e-05 0.09796 0.0001101 0.5598 0.001317 0.03921 0.3468 0.0007475 0.1205 0.004338 1.25e-05 0.0006087 0.002127 0.0009881 0.001149 0.4265 0.006707 0.396 0.001065 7.308e-05 0.007608 0.008419 0.03231 0.0003018 6.986e-05 2.187e-05 0.1645 0.0001745 2.209e-05 0.007203 0.0004655 0.0008935 0.1467 0.569 9.195e-05 0.0001066 1.736e-05 0.005445 0.01688 0.001114 0.002293 0.002202 0.357 0.004818 0.001223 4.971e-05 0.0002351 0.5688 0.02551 0.148 0.001996 0.001305 0.006994 0.0003474 0.4862 6.527e-05 0.007957 0.3377 1.341e-05 0.0004502 0.001076 0.003079 0.0001656 0.0282 0.3861 0.3266 0.00327 0.3959 8.384e-05 1.426e-06 0.0004936 0.5482 0.002846 0.3696 0.02853 0.00133 0.005458 0.008224 0.007898 0.0006487 0.3218 0.0003885 0.0008059 0.003431 0.526 0.003739 0.001468 0.5736 0.5551 7.076e-06 0.0008961 0.004052 0.5755 0.0003751 0.0002999 0.5599 0.03638 9.793e-06 6.669e-06 0.1413 0.0008465 0.009326 0.001225 0.5789 0.0007866 3.989e-05 0.00367 0.01135 0.0614 0.003372 6.459e-05 0.03756 0.0009533 0.002549 9.27e-06 0.004237 0.002977 0.003817 2.114e-05 5.002e-05 0.4334 0.3953 4.263e-06 0.002432 0.5853 0.05849 0.006666 0.001335 0.001546 0.5683 0.002095 0.008007 0.002232 0.0001523 0.001079 0.0001142 0.5678 7.601e-06 0.4519 0.002223 0.0002192 0.005763 1.741e-06 1.374e-05 1.499e-05 0.0003133 0.0006196 0.02064 0.0001255 0.5814 5.93e-05 1.242e-05 0.5669 0.00134 0.008478 0.4387 0.000993 0.001307 0.0004386 0.0001122 0.5524 0.008441 0.002008 0.00133 0.0002053 0.005928 0.0007797 0.005632 0.00233 0.0005374 0.2363 0.005746 0.5647 0.0001539 1.186e-05 0.04638 0.0002031 0.0009016 0.001757 0.01633 0.00441 0.001274 0.5599 1.096e-05 0.572 0.0002879 0.007038 0.01654 6.867e-06 0.3383 0.008669 0.001152 7.99e-05 0.02035 0.5267 0.1265 0.0009711 0.02051 0.0006065 0.01462 0.3563 0.006398 0.0006764 0.006906 0.00305 0.0002192 0.001245 2.37e-05 4.614e-05 0.006332 5.025e-05 0.01038 9.219e-05 0.002101 2.631e-05 0.2223 0.001861 0.0001302 0.004458 0.001196 0.002172 0.07821 0.4118 0.4188 2.055e-05 0.003426 1.226e-05 0.00013 3.708e-05 4.236e-05 0.4226 0.4888 0.02499 0.07108 0.001458 0.002269 0.003397 0.3267 0.002891 0.00119 0.001134 0.0002922 0.004654 0.003213 0.004171 0.0492 0.4344 0.001936 0.4012 0.003875 1.782e-05 0.02166 0.001731 0.5396 0.0005585 0.002941 0.001048 0.002951 0.001313 0.4176 0.0003479 1.099e-05 0.003678 0.5705 0.03659 0.0007917 0.0363 0.009994 0.3626 0.0008013 0.006772 2.331e-05 0.001368 0.4585 0.006531 0.005727 0.001995 0.6043 0.006459 0.0003597 0.001439 0.000745 0.0007306 0.03614 0.001811 0.5655 0.001701 0.08183 0.3593 0.01079 1.661e-05 0.002733 0.5183 0.0292 0.003837 8.84e-06 0.004446 0.0002918 0.01255 0.03144 1.489e-05 0.0205 0.001591 0.00618 0.01157 0.0001475 0.005208 0.005293 0.01925 0.006006 0.003247 0.000722 0.5339 0.05058 0.007172 0.04458 0.001965 0.512 0.005728 0.000108 0.3907 0.6178 0.002002 0.000408 0.3591 0.6018 0.0002775 1.774e-05 3.611e-06 3.831e-06 0.4708 0.0172 0.0246 0.0002733 0.5437 1.663e-05 1.635e-05 0.005935 0.009003 0.004234 0.4193 0.102 0.006002 0.2691 0.269 3.298e-05 7.005e-05 0.0005843 0.06331 2.357e-05 0.1458 3.49e-05 0.0005986 0.00135 0.001921 0.003567 0.0002522 0.03386 0.01499 0.5737 0.01262 0.4072 0.005242 0.06617 0.008782 0.5724 2.366e-05 0.0006763 0.000202 0.009109 0.001151 0.0006626 0.007034 0.02069 4.411e-05 0.06814 0.4056 0.0005637 5.664e-05 0.002488 0.008044 0.000106 0.000103 0.02249 0.1302 0.003718 0.028 0.01696 0.0001875 0.002784 0.0024 0.002598 0.002117 0.001732 6.428e-05 0.01264 0.0073 0.001999 0.0002433 0.02097 0.1146 6.802e-05 5.202e-06 0.002353 0.01132 2.84e-06 0.00583 0.00523 0.003049 5.701e-06 0.004706 0.5537 0.4689 0.007158 0.0008884 0.008517 0.0009198 0.0114 0.0025 0.5381 0.03324 0.008912 0.03334 0.00104 0.001258 0.01107 0.0006878 7.683e-06 0.001447 0.5699 1.008e-06 0.01686 0.0006089 0.0002074 7.333e-06 0.00718 9.602e-06 0.08148 0.0006268 0.003335 0.02846 0.3348 0.332 0.05521 0.05111 0.006389 0.0007218 0.0001836 0.01283 0.02509 7.095e-06 0.00093 9.602e-05 0.000111 0.001981 0.0008888 0.2537 0.3093 9.631e-05 0.04459 0.003871 0.00092 0.001323 0.01201 0.003127 7.81e-06 0.002874 0.5858 0.01644 0.002964 0.01431 0.07963 0.01147 0.001278 0.6111 0.1613 0.06925 0.5677 0.005765 0.003489 0.1269 0.4258 0.002441 0.005333 0.001824 0.0004534 0.001998 0.5729 0.001404 0.02924 0.09022 0.08211 0.002338 0.00449 8.81e-06 0.2481 0.1426 0.001326 4.359e-05 9.191e-06 0.0003164 4.225e-05 0.3543 0.0002074 0.0004746 4.303e-06 2.069e-05 0.0001203 0.001022 0.0162 0.3618 0.01082 0.00194 0.00377 0.000836 0.0005994 0.005214 0.07194 0.02517 0.394 0.004209 0.0003841 0.1512 0.003003 0.001759 0.008226 6.524e-06 0.001129 1.173e-06 0.0001058 0.0006156 1.009e-06 7.891e-05 0.07074 7.001e-05 0.002395 0.006891 0.002384 0.2217 0.009654 0.007693 6.966e-05 0.2346 0.0006709 0.003417 0.00132 0.008176 0.0009312 0.01703 0.0001591 0.001564 0.2036 0.5845 0.006669 0.5733 0.0002092 0.001289 8.271e-06 4.087e-05 8.545e-05 0.03288 0.0003414 0.0009955 0.0002461 0.0002784 0.007623 8.056e-05 0.4651 0.003228 4.433e-05 0.004892 0.4403 0.0002594 0.001318 0.0005913 0.01561 0.5645 0.001853 4.91e-05 9.369e-06 0.004453 0.0003954 4.939e-05 0.003259 0.001787 0.001391 0.0007158 0.2649 0.0004611 0.009804 0.0008094 0.0002709 0.6037 0.01466 0.1594 0.6164 0.003971 9.339e-05 6.549e-06 0.005331 0.5328 0.5282 7.327e-05 0.5704 6.8e-05 0.01049 0.006457 0.0003838 0.0005553 0.001859 0.0008544 0.5735 8.79e-06 0.007618 0.0679 0.002658 7.27e-06 0.01895 0.01238 0.5621 1.026e-05 0.0002871 0.0001244 0.002671 0.001496 0.01386 0.0001881 7.039e-05 0.002559 7.576e-05 6.917e-06 0.0002007 0.003376 0.003448 0.01375 1.818e-06 0.004289 0.006218 0.0001336 0.5981 0.01266 0.002228 5.717e-06 0.001084 9.574e-06 0.004041 0.001584 0.04663 0.0001187 0.005114 0.5627 2.7e-06 0.000893 6.819e-06 0.5447 0.2337 0.0004208 0.003415 0.04333 0.01031 0.0004172 0.002343 0.00415 0.0002669 0.001571 0.0001033 0.001558 0.002405 0.01085 0.006724 0.003507 0.5593 0.004592 0.0002216 0.0001162 0.00392 0.03086 0.000281 0.04445 0.007092 0.001349 0.0005412 0.6566 0.05169 0.004616 0.04054 0.547 0.0009606 0.0005488 0.5695 0.002048 0.07963 0.0004715 0.1572 2.203e-08 0.3497 0.0008285 0.01274 0.0001947 0.1997 0.01171 9.698e-06 0.001233 0.4823 0.0007349 1.023e-05 0.01191 0.3063 0.0005819 0.002977 0.0008791 0.0009203 0.471 0.0007174 0.01799 0.0006978 1.947e-05 0.001744 0.0001881 0.0001368 0.09049 0.0006609 0.01354 0.00195 0.01178 0.003503 0.005847 0.6472 0.0003465 0.004092 0.0271 0.6017 0.0001716 0.00637 0.2685 0.5728 0.5489 0.005676 0.004228 0.00576 0.02524 0.0002324 0.5834 0.001019 0.5776 6.054e-06 0.0007549 0.04071 0.04968 8.206e-06 0.0143 0.1085 0.5637 0.1036 0.003146 0.5866 0.006753 8.058e-05 0.0009271 0.01314 0.007424 0.004385 0.002025 0.03313 0.001478 0.008851 1.47e-05 0.001321 0.0002482 0.6212 0.5736 0.00161 0.01767 0.2741 0.0003617 0.0005977 0.00349 0.008458 0.03807 0.5729 5.288e-05 0.5593 8.295e-05 0.5698 0.5216 0.2476 2.048e-05 5.336e-05 0.01213 0.003408 2.574e-05 0.01088 0.005193 0.003097 0.003053 0.03601 0.4437 0.0001202 0.5451 0.4033 0.0117 0.001575 0.0162 4.928e-07 0.0004328 8.572e-05 0.02652 8.188e-06 0.02075 0.0008874 0.03595 0.4736 0.0002145 8.267e-05 0.01892 0.002643 2.072e-05 0.0003444 0.00949 0.000896 0.0003495 0.001597 3.217e-06 3.354e-06 0.001115 0.01926 0.02359 0.0001182 0.0002462 0.01107 0.01226 0.00287 7.043e-06 8.281e-06 7.026e-05 0.002577 7.961e-06 0.0004743 8.059e-06 0.00229 0.0001466 0.06898 0.0001518 0.0008126 0.0003425 0.06381 0.0001247 0.277 2.257e-05 9.622e-06 0.0001345 0.004024 7.715e-05 0.562 0.0002294 5.877e-05 0.02088 0.1862 0.001242 0.005065 7.586e-06 0.004255 1.079e-05 0.03538 5.565e-09 0.002659 0.0004968 0.369 3.684e-06 0.006127 0.0005441 0.0009341 1.212e-05 0.5962 0.004083 0.01035 5.758e-07 0.0001167 0.000233 0.1378 1.014e-05 5.762e-06 0.3685 0.006555 0.4552 1.257e-06 0.0007958 0.0007842 0.3794 0.01704 0.006834 7.412e-06 0.000597 0.01882 0.4881 5.189e-06 0.0005515 0.01151 0.002515 0.009703 0.4572 0.02241 1.16e-06 0.02851 0.004809 0.004117 0.001435 0.4969 4.507e-06 0.001695 0.001461 0.0003953 3.623e-06 0.002294 0.002054 0.03176 0.003454 0.1171 3.131e-05 0.003493 0.0113 0.0001728 0.0001455 0.00703 0.01031 0.0002948 0.003176 0.001243 0.003672 0.006818 0.04741 0.0008983 0.004349 0.002437 2.546e-06 0.02064 0.01241 0.000202 0.0006199 0.379 0.000224 0.002748 8.906e-06 0.01151 0.004975 0.006516 0.5639 0.00198 0.01361 9.287e-06 4.334e-05 0.009475 0.000895 0.01647 0.0001969 0.004663 0.008409 0.4926 0.06207 0.01131 0.003828 0.02879 0.0007267 0.003977 0.5683 0.01594 0.008964 0.04017 0.0002125 8.903e-05 0.006187 0.01337 0.01724 9.997e-05 0.003546 0.03532 0.03894 0.0001258 0.0001804 0.0001668 0.001058 0.6391 0.01373 0.0374 1.404e-05 0.4188 0.001023 0.0005757 3.167e-05 8.576e-06 0.0008866 0.0009487 0.0001947 0.0004392 0.0001273 0.002568 0.004041 0.01144 0.007339 0.488 0.002016 0.003042 0.0008833 0.002421 0.00167 2.512e-05 0.00137 0.0006599 0.0004987 0.003478 0.01181 0.5764 0.0001397 0.004106 0.3525 0.001776 0.003546 0.003466 0.001024 0.002693 0.0004236 0.0003014 0.001135 0.004031 0.008645 0.001604 0.0224 1.036e-05 3.846e-05 0.002365 0.00549 0.0015 0.000152 0.3774 1.137e-05 0.01777 0.0002477 0.3733 0.3757 7.836e-05 4.211e-06 0.4585 0.0006142 0.001313 2.557e-05 0.009433 0.002244 0.002491 0.01106 0.008551 1.02e-05 0.001077 0.0007799 0.0003731 0.007552 0.003839 0.007799 0.4948 0.0002953 0.008316 0.0001456 0.004961 0.0004303 0.0309 0.001674 0.03349 0.07052 0.0001126 7.885e-05 0.0004937 0.0003936 0.0001627 3.337e-06 0.0004774 0.1586 1.81e-05 6.024e-05 2.033e-05 0.001849 0.003571 0.0004904 8.521e-05 0.5697 0.004603 0.0009786 0.4635 2.952e-06 9.951e-06 0.6447 0.0091 0.004406 0.477 0.2188 0.1032 0.0001159 9.15e-06 0.4133 1.591e-05 0.2647 0.009174 0.005491 0.1194 0.004667 0.5136 0.02259 0.02423 0.0007464 0.007187 0.001188 0.006345 0.004646 0.03778 0.3063 0.002361 0.009582 0.002236 0.5246 0.0001623 0.006304 0.04337 0.0003391 0.4784 0.0001338 0.001086 0.01115 0.000989 9.319e-06 0.5619 8.884e-06 0.0003718 0.0001685 8.401e-06 0.5693 0.0007869 0.286 0.2853 0.009804 8.826e-05 0.001137 0.0005515 0.004625 0.0005819 0.02543 0.0005959 0.002132 0.03557 0.02929 0.0003569 0.001251 0.002818 0.001177 0.6458 0.002729 0.02476 0.002562 0.007874 0.02484 1.894e-05 1.642e-05 0.001164 0.02961 0.0002265 9.014e-05 0.004425 0.3744 0.0001383 0.0005792 0.02791 0.01198 0.0004981 0.5864 8.979e-06 0.0009226 0.001215 0.0002636 0.001793 0.3008 7.393e-06 0.1313 0.628 0.001598 0.002609 0.000379 0.001811 9.115e-06 0.000207 0.001757 0.002794 8.89e-06 0.01149 0.002474 0.0004874 0.0005178 0.007378 0.003058 8.76e-05 0.004746 0.0008543 0.01314 0.0003633 0.01499 0.001367 0.3022 8.063e-05 4.643e-05 0.001414 0.0002989 3.801e-05 0.6521 0.001003 0.0026 0.1094 3.461e-05 0.01247 0.0008735 0.007855 0.5022 0.5684 0.006507 6.701e-05 1.741e-05 0.08628 0.002211 0.0004618 0.001588 3.273e-06 0.003166 0.0002065 0.5795 0.009789 0.3991 8.984e-06 0.5627 0.04349 1.146e-05 0.004052 0.002177 0.004212 0.0008524 0.007758 0.006279 0.02558 0.0003291 0.006304 0.001224 0.02348 0.0009497 9.504e-06 0.0005326 0.0002991 0.598 0.0003663 0.01327 0.00085 0.002774 0.002087 0.01175 0.0007474 0.001398 0.1844 0.0004113 0.003817 0.0007481 0.002706 6.859e-05 1.584e-05 0.5263 2.434e-05 0.5712 0.4224 0.007371 0.001502 0.001531 0.02116 9.875e-06 0.00297 1.224e-05 4.182e-07 2.408e-05 0.3524 0.0001414 9.503e-06 8.569e-06 0.04378 0.00649 9.687e-05 0.0006632 0.1296 0.03464 7.138e-06 0.3809 0.01057 9.405e-05 0.001041 0.57 0.02966 2.613e-05 0.0005696 0.3903 0.003896 0.05246 6.069e-07 0.0001195 0.01182 0.002724 0.001683 0.00336 0.0008005 0.0001335 0.002736 0.002851 0.003214 0.6251 0.5797 0.3331 0.003125 3.316e-05 6.466e-06 0.1097 0.4088 0.5768 0.0009152 0.001303 0.0463 0.0003775 0.001607 0.6357 0.008118 0.0009496 0.003636 0.4672 8.718e-06 0.01258 0.001327 0.001042 0.00573 0.001272 0.001512 0.0001815 0.0001471 0.0122 0.5662 0.3995 0.0001608 0.006064 6.01e-05 8.671e-05 0.008045 0.01847 7.613e-08 0.01106 0.0001998 0.00741 0.6437 0.01008 9.773e-05 0.0001876 0.001848 0.0003642 1.213e-05 0.02364 0.0007021 9.932e-06 0.1404 0.009255 0.0005543 0.01508 0.5805 0.0001705 0.5029 0.01179 0.01497 0.0008234 6.09e-05 0.001694 1.41e-05 0.001574 1.023e-05 0.003129 0.002053 0.004048 0.4673 0.001113 2.994e-06 0.0001343 0.001223 0.005297 2.856e-06 0.002015 0.004678 0.009392 0.001826 0.001135 0.003101 0.001483 0.0001314 4.926e-05 0.004222 0.0008732 0.001231 0.07964 0.04121 7.691e-06 0.0002464 0.5635 0.05536 5.277e-06 0.01297 0.0007848 0.0002988 0.6437 0.0002701 1.532e-05 0.006013 0.002565 0.0001089 0.0002407 0.003206 0.3051 0.002499 0.002097 1.081e-05 0.003935 0.03384 0.5829 0.00834 0.001472 3.04e-05 0.04288 5.982e-06 0.00216 0.0001806 0.00916 0.003163 0.006682 0.5656 1.554e-05 0.0161 0.4024 0.1743 0.007039 0.000121 0.02843 0.000669 0.4387 8.806e-06 0.003651 5.81e-06 0.3226 0.04678 0.0003242 0.01199 0.001458 0.003204 0.0001725 0.002291 0.162 0.6601 0.004932 7.64e-06 1.542e-05 0.0001202 0.33 0.4086 0.001103 0.5744 0.0002112 1.059e-05 0.004222 0.0002362 0.00157 1.137e-05 0.0004025 0.4215 0.002557 8.309e-05 0.01675 0.002433 1.105e-05 0.002471 0.01827 0.5459 7.672e-06 0.008514 0.5364 3.732e-05 8.627e-05 0.0009108 0.001327 0.0009045 0.0002696 0.003206 0.0008536 0.1694 7.987e-06 0.5492 0.02346 1.342e-06 0.002245 0.004573 0.3556 0.02229 1.499e-05 0.6144 0.01073 5.596e-05 0.0009044 0.002299 0.00407 0.02764 0.2111 0.004741 0.005692 0.002352 0.002955 0.09107 0.0018 0.008901 0.0008852 0.002156 0.0003955 0.001255 0.0009573 0.002082 0.01153 0.0009579 0.5507 0.004452 0.0001519 0.004316 0.01647 0.5916 0.0009434 0.5741 0.01183 0.002676 0.004513 0.0008971 0.001406 0.0007352 0.002274 0.0008045 0.009115 0.3158 0.3158 0.002742 7.144e-06 0.3358 0.0004094 0.06278 0.1883 1.107e-05 3.426e-05 0.01232 0.5882 1.036e-05 0.0002946 4.911e-06 0.0001069 7.599e-06 6.539e-05 0.01929 0.002009 0.0009974 0.5648 0.6117 0.008403 0.1941 5.098e-06 0.002775 0.009335 0.001414 0.005607 0.01213 0.0009521 0.00455 0.005574 0.4841 9.813e-06 0.4241 0.02848 6.321e-05 2.931e-06 9.54e-05 6.836e-05 0.006618 0.0004465 5.188e-06 0.6075 0.003675 0.004095 0.002916 0.0002203 0.5811 0.0001185 0.0004745 0.003359 6.313e-05 0.4704 0.3663 0.004661 0.003028 0.003539 0.002668 0.4038 0.0001192 0.003113 0.0008584 0.0644 0.001822 0.1008 0.004382 0.00883 0.005147 9.628e-06 0.05422 0.005439 0.0004898 1.482e-05 7.422e-06 0.002414 4.262e-06 0.004195 0.5467 0.009232 0.5986 0.0003757 0.001521 0.02027 0.4666 0.001691 1.803e-05 0.6139 0.5527 0.00358 5.662e-05 0.01959 0.571 0.02546 0.3957 0.001251 0.02041 0.00801 0.0005535 0.004283 0.5781 4.446e-05 0.0431 0.003469 1.331e-05 0.0002353 4.67e-06 8.775e-06 0.001898 0.07742 3.205e-05 0.004018 0.0436 0.0002222 0.006159 0.03581 0.001015 0.003923 0.007954 0.0001185 0.007825 0.004356 0.0001411 0.001024 0.08809 0.519 0.5982 0.006026 0.002271 0.003593 0.06831 0.03148 2.237e-05 0.004795 0.001722 1.198e-05 0.3129 0.002528 0.0002237 3.151e-08 4.579e-06 0.07937 0.5837 7.56e-06 0.008534 0.0005231 9.281e-06 7.911e-05 0.01429 0.0006147 0.0004947 0.003529 0.02349 0.003623 9.361e-05 0.1542 0.02409 0.0359 1.454e-05 0.1458 0.02126 0.001315 0.1175 0.0001164 0.2306 0.189 0.6036 0.1774 0.002157 1.429e-05 0.007559 0.0003999 0.002685 0.0001785 0.0001321 0.004903 0.004657 0.3201 0.4274 0.04454 0.007893 0.0371 0.005109 0.003463 0.01295 0.001005 0.5726 0.4809 1.79e-05 0.02542 0.001415 7.482e-06 0.2749 0.001696 1.098e-05 0.001727 0.001315 0.3815 0.381 0.1971 0.5595 0.005987 0.01034 0.635 0.004577 0.5334 0.0009561 0.01149 0.0008839 0.01093 0.08229 0.00554 0.001332 0.0006464 0.105 0.005342 0.0002466 0.5739 4.51e-05 0.0009121 0.002495 0.005411 0.5786 0.0005086 0.0002334 0.0002638 0.006179 0.0006469 0.5764 6.416e-05 0.0009541 0.00184 2.54e-05 0.004061 0.0002923 0.0007654 1.104e-06 0.0003591 0.4732 0.0004031 0.2687 0.0003341 0.09036 0.00207 0.003249 0.06594 0.00986 0.01523 0.001356 0.001498 9.053e-05 1.066e-05 0.01133 0.00524 0.001496 2.208e-05 0.008291 0.003707 0.002251 0.04508 0.009292 0.4066 0.3781 0.002971 0.001206 0.00369 1.77e-05 0.0004519 5.299e-05 0.001991 0.00567 0.001239 0.01194 0.002595 6.457e-05 0.0001502 0.009564 0.0006939 0.001658 0.4317 9.974e-06 0.0001309 0.0006266 0.0003148 0.01011 0.5717 0.0003255 1.024e-05 0.0005422 0.0002158 0.6428 5.746e-05 0.02762 0.3048 0.002163 0.0003786 0.6119 0.04842 0.0006104 0.3821 0.3821 0.02268 0.0778 0.0008916 0.008511 0.001721 1.089e-05 8.617e-05 0.001646 0.4942 0.004072 0.01018 0.0001731 8.131e-05 0.0005253 0.01888 0.5738 0.000423 0.003274 5.623e-06 5.662e-05 1.176e-05 0.01651 1.109e-05 9.075e-06 0.5713 0.01546 0.0004286 0.0002832 0.001015 0.0248 9.257e-05 0.003107 0.0008242 0.0008693 0.2005 0.002343 0.0119 2.052e-05 0.002055 0.0004081 0.01927 6.723e-06 0.005458 0.5694 0.0001821 0.0003544 0.0001082 0.0003351 0.0006617 0.0004257 0.01455 0.01263 0.0194 0.005764 0.1045 0.0001314 0.0007553 3.17e-05 0.1221 0.005265 0.001124 1.178e-05 0.001347 0.1174 0.001759 0.001722 0.05239 0.003542 0.3875 0.004095 0.002641 5.931e-05 0.003158 0.4344 1.998e-05 0.5435 0.005019 0.0001155 0.002255 0.0002112 0.007654 0.0009125 0.5602 0.001709 0.5725 0.002428 0.0008241 0.009166 0.001493 3.063e-05 0.001863 0.2298 0.0001781 0.4576 2.566e-05 1.449e-05 0.0001192 0.4938 0.0001049 0.0007808 1.008e-05 0.0001468 0.07466 0.2576 0.1202 1.209e-05 0.0003723 0.00493 0.000332 0.583 0.001572 0.1537 0.0009874 0.0008662 0.3006 0.000416 0.2924 9.332e-06 0.001258 0.001409 0.58 0.009582 0.5849 6.359e-05 0.0001082 0.04358 0.0006991 0.009176 5.984e-05 0.4317 0.4998 0.4018 0.1354 0.08231 0.0261 0.00442 7.55e-06 0.0002005 0.005583 0.004263 0.411 4.779e-05 0.0002504 0.003421 0.0002189 0.002744 0.001931 0.001512 0.000158 0.000273 0.0001884 0.0045 0.0318 2.518e-06 0.001576 0.00042 0.0001213 0.0001001 1.544e-05 0.001528 0.4124 0.5684 0.003578 3.887e-05 0.5803 0.0009411 0.007386 0.006367 2.714e-05 0.5274 0.01311 0.001134 0.03034 0.003075 0.0004375 1.401e-05 0.001083 0.005813 0.5746 0.001143 0.375 0.0006381 0.002517 0.0002446 0.005135 0.008814 0.0007 0.01705 1.17e-05 0.005454 0.0002055 0.185 0.001181 0.5704 0.0003608 0.06356 0.5723 0.03702 3.13e-06 9.412e-05 0.005702 0.001839 0.0009246 0.0008326 0.01528 0.0001005 0.03325 0.07464 5.836e-05 0.5732 0.002942 0.02205 8.199e-05 0.2507 0.0005913 0.001244 9.457e-05 5.978e-05 0.0001888 0.0011 0.001334 0.0001022 0.004322 0.001816 0.06763 0.0004914 0.0008806 0.00176 0.01091 0.004244 0.000473 8.998e-06 0.003774 8.1e-05 0.003498 0.0005289 0.0003816 0.0001208 0.5738 0.0007846 0.0009044 0.01212 0.008557 0.002413 0.003057 0.00382 0.05072 0.008357 0.0006382 1.458e-05 0.004209 7.747e-06 0.01582 0.01097 1.267e-05 0.0005435 0.0002865 0.007523 0.0004218 0.4489 0.00014 0.0006277 0.002929 0.0008236 0.004026 0.04925 0.4949 0.009565 0.001885 0.002971 0.006111 0.128 0.001825 0.0009545 0.002025 0.00267 0.3155 0.00465 0.00126 4.73e-05 0.0006689 0.0859 0.01191 9.414e-05 0.0002559 0.001582 0.0008616 0.003657 0.001412 0.002947 0.004198 0.0006672 0.009893 0.0008382 0.02793 0.001407 0.5624 0.009237 0.2563 0.6314 3.691e-05 0.003825 0.0002613 1.067e-05 0.002281 0.002165 0.0007475 0.005949 0.1322 0.003766 0.002022 0.003311 0.08732 0.00127 0.0001601 0.003798 0.01249 0.001934 0.002063 0.0001413 0.007958 0.04256 0.002436 0.002203 0.009706 0.0002279 0.5763 0.06064 1.372e-06 0.002413 0.0001263 0.005745 0.002117 0.002655 0.01747 0.01968 0.02189 0.5659 8.761e-05 0.5739 7.729e-05 0.001249 0.5768 0.0358 0.0001578 0.001205 0.002535 1.961e-05 0.003003 0.4105 0.000259 0.002692 1.444e-05 0.006813 1.168e-05 0.002799 0.005695 0.2624 0.4294 0.007694 0.008481 0.6427 0.007856 0.01793 0.003091 0.06652 0.0148 1.22e-05 0.02745 0.01283 0.09146 0.02145 0.0001324 0.6443 0.6442 0.001994 9.906e-06 0.004433 0.01948 0.000306 0.01527 0.0001722 5.069e-05 1.168e-05 0.0073 1.703e-05 7.291e-05 0.0002915 8.609e-05 0.0003521 0.005519 0.01206 0.007796 1.291e-05 0.0004598 5.873e-05 0.3805 4.883e-06 5.103e-06 0.006534 0.009387 0.005658 0.009654 0.003478 0.3621 0.0003021 0.02954 0.2305 0.0004362 0.0006696 0.005134 0.1011 0.002709 0.002316 0.2031 0.0007324 0.0001008 0.002243 1.801e-05 0.01106 0.008973 0.0241 0.3331 0.0001889 0.00709 0.003152 4.61e-06 0.005885 0.2394 0.005161 0.07042 0.005003 0.6209 5.06e-05 0.002045 0.3939 1.211e-05 0.0002317 0.00396 0.01564 0.02918 0.02787 0.0002561 0.001443 0.009068 0.4233 2.056e-05 0.001282 0.623 0.002621 0.5704 0.01465 0.437 0.0001664 0.02804 0.0005126 0.5492 0.0006374 0.002298 0.003328 0.03446 0.00111 0.001525 0.002073 0.08494 0.1662 0.4313 0.002146 0.0001316 0.003108 0.001825 0.002016 0.003696 0.003148 1.257e-05 0.001474 1.157e-05 0.01634 0.001212 0.000144 0.02055 0.0007114 0.00403 0.005754 0.0005741 0.5667 0.09161 0.3346 0.0004998 0.1544 0.0001491 0.003712 0.5736 0.002982 0.009345 0.006432 0.001967 0.004411 0.0002592 0.0001464 0.0006356 0.003536 0.001634 0.0001273 0.0104 0.04269 0.01621 0.0005091 0.006368 0.004212 0.0007946 0.2109 0.002519 0.000922 1.858e-05 0.5455 0.002695 6.948e-05 0.1032 1.77e-05 0.0122 0.007376 0.05005 0.01109 0.001368 0.00739 0.001085 0.0001286 0.2912 0.2923 0.001479 0.00648 0.001482 0.3539 0.2782 0.2769 1.125e-05 0.0004067 0.003744 1.021e-05 0.01427 0.001725 1.922e-06 0.03348 1.027e-05 0.0006516 0.1537 0.5751 0.0004431 0.001953 0.3965 0.003838 8.515e-05 0.002867 0.002191 0.0006958 0.001154 0.003521 0.042 0.000514 0.01128 0.001007 0.1006 6.551e-05 0.0006614 1.002e-05 0.001809 0.003784 0.0004135 0.02775 0.001691 0.000533 0.0007208 0.3077 0.346 0.1723 0.0005031 2.085e-05 0.001981 0.4602 5.587e-06 0.643 0.08847 0.01328 0.0004363 7.223e-05 0.0155 0.001639 0.005781 0.006195 0.001111 7.222e-06 1.383e-05 0.1002 0.003375 0.004483 0.00565 0.2101 0.0006771 0.0002113 0.006771 0.0009676 0.0004242 0.001024 0.005874 0.0001181 0.01165 0.008438 6.985e-05 0.005241 6.468e-06 0.0106 0.4349 0.578 1.039e-05 0.1935 5.805e-05 0.01634 0.006785 0.0001128 6.034e-05 0.003249 0.006699 0.002078 0.002647 0.00479 0.0004011 0.00162 0.009431 0.0004582 7.746e-05 0.1014 1.767e-05 0.005396 0.003021 0.3945 0.4295 1.634e-05 0.004316 0.002956 0.00163 1.575e-05 7.871e-05 1.345e-05 0.000643 0.002474 0.001775 0.00278 0.5663 0.31 0.002951 0.001081 5.661e-05 0.5599 0.001937 0.008513 0.1906 0.0006987 0.01797 0.006199 0.01575 0.02086 0.000276 0.007103 0.2476 0.001371 0.0005727 0.0003474 0.000266 0.01117 1.376e-05 0.01363 4.446e-05 0.03937 0.00141 0.02326 0.0006821 0.2874 0.007792 0.002914 0.5486 0.5664 0.3138 0.002944 0.01441 0.007092 0.542 0.0008474 9.116e-05 0.002235 0.002312 0.0003327 0.005451 0.006127 0.0006219 0.01238 0.0004721 0.0009079 0.0003982 7.429e-06 0.0001718 0.002593 0.0002502 0.001117 0.002184 0.0009354 0.01132 0.000126 0.0002097 0.000127 0.005071 0.01493 0.0003855 1.596e-05 0.04832 0.0007698 0.007369 0.003664 0.0004705 1.132e-05 0.009665 0.01012 0.0002759 0.002496 0.6116 0.4844 0.0004643 0.007123 0.004545 0.47 0.000617 0.5695 0.007708 0.002049 0.004677 0.3491 8.272e-06 0.0008097 0.1429 0.199 0.0443 0.0002021 6.475e-06 0.5634 0.006755 0.002551 0.0005521 0.0009115 0.0004127 0.0001599 0.005661 0.5757 0.5069 0.002771 0.5801 7.967e-05 0.5237 0.002212 0.207 0.001234 0.5197 0.002464 1.057e-05 0.003213 0.002592 0.004039 0.001438 0.002546 0.003609 0.003909 0.5753 0.1399 0.007028 0.007764 8.306e-05 0.0001534 0.4143 0.5887 0.06458 6.7e-05 0.002874 0.3057 0.5371 0.002436 0.003547 0.000119 0.001623 0.6424 2.125e-05 0.007263 0.001105 0.002538 0.0004989 0.01895 0.03124 3.096e-05 0.01503 0.002576 0.002312 0.006483 0.00122 0.2945 0.007111 0.0001403 1.299e-05 1.987e-05 0.00413 0.002224 8.653e-05 0.006055 0.0003737 0.001347 9.423e-06 7.077e-05 0.01316 0.0003989 0.004181 0.001212 9.094e-06 0.001829 0.001456 0.01557 0.01181 0.01696 0.002197 0.008377 0.0002239 0.0007757 0.0001587 0.00752 0.5624 0.002219 0.0004835 0.0007148 6.037e-06 1.369e-05 0.03973 0.5401 0.002338 0.002647 0.003247 0.007262 0.2916 0.002227 0.01669 0.05943 0.5718 0.01413 0.3455 0.022 0.544 0.0008052 0.0007742 0.01522 0.004214 0.0003505 0.5697 0.001619 0.0002136 0.0001177 0.002848 0.006005 7.157e-05 0.002654 4.591e-05 0.006326 0.01255 0.003002 0.00367 0.008809 0.0007125 0.001614 0.4331 0.02967 0.5695 0.004153 0.000651 0.04868 0.003451 8.676e-05 0.006811 4.962e-05 0.5271 0.003707 0.0004699 0.2904 0.0001187 7.123e-06 0.00249 0.008202 0.5602 0.0007553 0.2522 0.01764 0.003074 0.008084 1.738e-05 0.000288 0.3691 0.004052 8.237e-06 0.0003115 0.3788 0.001525 0.0003487 0.00406 0.005816 0.0005392 0.03755 0.06155 8.737e-05 8.346e-05 0.0003008 0.001001 0.394 0.001507 0.0001379 0.00236 0.000233 0.006364 0.406 0.001049 0.4432 0.0006841 0.005665 0.0001644 0.00689 0.01555 0.0008147 9.378e-06 8.802e-05 0.005041 0.001749 0.003202 0.004087 0.01225 0.5689 0.5728 0.001627 0.002579 0.3995 0.0005595 0.4051 0.00301 0.002241 0.08523 0.5296 0.4907 9.822e-06 0.0001366 0.001005 0.0009969 0.3388 0.5721 0.1121 0.01647 0.001187 0.0006914 0.001909 0.009259 9.718e-06 8.684e-06 6.584e-06 0.01247 1.374e-05 0.0001174 0.003181 1.1e-05 1.784e-05 0.0004379 0.003598 0.001313 9.294e-05 0.002351 0.6103 0.0007846 0.04613 0.479 0.002914 0.116 0.003729 0.008069 0.03559 0.5331 0.5515 8.807e-06 0.0004212 0.1298 0.006558 0.0001208 0.4457 0.4127 0.5662 9.66e-06 0.00297 0.0008465 0.005672 0.001009 8.668e-05 0.0001118 0.00308 0.0001364 0.0003689 0.004042 0.003588 0.511 0.0004204 0.6003 0.0004093 4.776e-06 0.3251 2.977e-05 0.0006667 0.001726 0.0008051 0.001434 0.0006406 0.01288 0.003083 6.218e-06 0.001057 0.005133 0.006532 0.00508 8.051e-06 0.000439 0.1745 0.1696 0.0006593 0.001226 0.3247 0.003029 0.5838 0.3583 0.007863 0.001958 7.953e-06 0.004532 0.0007997 0.06554 0.003155 0.002787 0.0001464 0.00121 4.361e-06 0.000423 0.000318 0.3136 0.4546 0.02052 0.008439 9.656e-05 0.001216 0.0004396 0.5674 0.002832 0.1028 0.03077 8.191e-06 1.478e-05 7.086e-06 1.319e-07 0.03386 0.5716 0.000203 6.865e-06 0.006171 0.6222 0.0005199 2.066e-05 8.427e-05 6.776e-05 0.4492 0.001184 0.0008282 0.5584 0.009426 0.003341 9.548e-05 0.0007682 0.2724 0.0001949 6.037e-05 0.0001863 0.008826 0.003373 0.00373 0.3827 0.01122 0.0002553 0.0153 0.013 0.5648 0.01246 0.0003048 0.0001358 0.002176 0.000506 0.006671 0.0006894 0.005277 3.545e-05 9.681e-06 0.3448 0.1148 1.196e-05 0.0005159 0.598 0.001051 0.003148 0.5662 0.008693 0.5678 0.0003858 0.004701 0.002671 0.001314 0.003038 0.0002479 0.0007782 0.003062 0.0002355 0.0004739 0.003647 0.1028 0.003298 0.4535 0.0001353 1.08e-05 0.003487 0.002091 4.089e-05 0.3666 0.002103 0.0003049 7.066e-05 0.2572 0.00129 0.5406 0.0002618 7.105e-06 0.00308 0.0005151 0.005609 7.4e-05 1.035e-05 0.0001504 0.0002789 0.002167 0.008401 0.01152 4.667e-06 0.5866 1.392e-05 0.001046 0.0008461 0.008852 0.3492 0.001003 0.6419 0.001248 0.07385 0.004533 0.1571 0.02379 0.002106 0.001997 0.2203 8.044e-06 0.001412 0.007924 0.5251 6.982e-05 0.01269 8.386e-05 0.0005751 7.36e-05 0.0006354 1.007e-05 0.0007886 0.007422 0.415 0.002486 0.003267 0.000255 0.003002 0.5811 0.009477 0.003893 0.06381 0.01126 0.6438 0.0003135 8.053e-05 0.5936 0.4095 0.06635 7.633e-06 0.007185 8.704e-07 0.001158 0.004741 6.138e-05 0.002271 0.004026 0.00699 0.5572 4.645e-06 0.001207 0.5724 0.0002069 0.001586 0.005572 0.008209 0.001168 0.1252 9.221e-05 0.0001654 8.121e-05 0.02812 0.001194 0.0005643 0.009046 8.165e-06 0.0004642 0.2385 0.009531 0.0008285 0.5678 0.02528 0.4162 0.006658 0.002115 0.001944 7.604e-05 0.0004046 7.484e-06 0.3928 8.672e-05 0.001225 1.21e-05 0.007125 0.0001095 0.001316 0.5557 0.1051 0.004303 0.001962 0.0006484 0.003397 0.004097 0.0008192 0.001647 0.0003542 7.819e-05 1.466e-05 0.0002496 0.009004 0.0003073 0.004802 9.435e-06 0.6432 0.0002578 0.5238 0.004522 0.05955 0.002452 0.005977 0.01038 0.004336 0.01856 0.006799 0.000518 0.001019 0.147 0.02261 0.5536 0.07861 0.002582 0.007719 0.0035 0.001047 0.0009373 0.5698 0.0001343 0.572 0.0003654 0.1117 0.02219 2.251e-05 0.002368 0.003069 0.001706 0.455 0.0008872 0.3839 0.002628 0.003387 0.5554 0.006031 0.004394 0.03657 0.003225 0.1443 0.008587 8.335e-06 0.0008126 0.0002943 0.004842 0.0239 0.4771 0.002947 0.1905 0.6364 0.09592 0.5732 0.02623 0.001547 0.005079 0.001215 0.09141 0.004438 0.01029 0.6098 0.006397 0.01852 0.01042 0.5716 1.021e-05 0.002314 0.0002613 5.057e-05 0.00259 1.299e-05 0.5702 0.003561 0.06916 0.5653 8.496e-05 0.002842 0.002872 0.0004435 0.2498 3.563e-05 0.008484 8.02e-06 1.52e-05 2.878e-06 0.2014 0.001063 0.5886 6.92e-05 0.5735 0.001092 0.0004689 0.002066 0.0001165 1.002e-05 0.008295 0.0276 0.532 0.002402 0.02015 5.171e-06 0.4092 4.077e-05 0.05028 0.004546 0.001223 0.0001096 0.001488 0.3618 0.001945 0.01296 0.1311 0.004102 0.0009158 5.598e-06 0.003529 0.01985 0.002206 0.0008904 0.0001112 0.0001466 0.0007409 0.0229 0.00122 0.003374 0.003475 0.09045 1.118e-05 0.002508 0.002143 0.0001927 0.5969 0.4204 9.656e-05 9.72e-05 1.776e-05 0.002222 0.007909 0.0001327 0.00141 0.004228 0.001357 0.000164 1.86e-05 0.001127 0.6116 0.5699 0.009192 0.0001646 0.001255 0.0001094 0.03744 0.0001792 0.01607 0.00172 0.2402 0.006104 0.001391 0.005064 0.000441 0.05165 0.0158 5.068e-06 0.4095 0.4541 0.007679 0.381 0.0002024 0.001209 0.008388 0.0002364 9.339e-06 0.6069 0.0004923 0.001829 1.262e-05 0.002967 0.0001058 0.005225 0.005308 8.65e-05 0.03006 0.5571 0.3807 2.289e-05 0.0375 0.03049 0.003736 7.555e-05 0.001477 0.01976 0.001801 0.009043 0.0005467 0.002525 0.343 0.001295 1.439e-05 0.0004444 0.0001684 0.002948 0.0001088 0.003282 0.03391 0.002582 0.001912 0.0009034 0.002856 0.4495 0.03278 5.25e-05 2.452e-06 0.5985 0.001504 0.0007406 0.001264 0.0122 0.00353 0.2093 0.002582 0.005058 0.001738 0.009586 0.2717 4.148e-06 0.361 0.002842 0.01715 4.824e-05 0.1734 4.587e-05 0.0006727 1.502e-05 0.03762 0.0008939 0.009999 0.002562 0.06703 5.66e-05 8.926e-06 0.003963 0.01189 0.4412 0.4635 0.001151 0.1847 0.006386 6.855e-06 5.636e-05 0.001516 1.206e-05 0.001295 0.0167 6.106e-06 0.1171 0.0008042 0.0006644 7.046e-06 0.009497 0.001167 0.01001 0.006309 0.008617 0.3413 0.0002528 0.001065 0.01895 0.4143 1.077e-06 0.001483 0.0001201 5.46e-05 0.02014 0.001304 0.408 9.458e-06 0.0005138 0.0166 1.47e-05 0.001746 0.002462 0.0005851 0.003018 0.0001694 0.04965 0.0003932 0.006229 0.0006705 0.0002158 1.049e-05 5.487e-06 0.4846 0.01897 0.4046 0.01487 0.0005714 4.715e-06 2.919e-05 4.653e-05 0.0003498 0.5255 0.0002991 7.976e-05 0.008863 7.803e-05 0.0005131 0.33 0.002262 0.001259 0.1603 0.008757 1.274e-05 0.0001436 0.008311 0.0001216 0.002557 0.00405 0.003762 0.0008823 0.02265 0.07404 0.001983 0.02589 0.001531 9.439e-06 0.06611 0.5423 0.01304 2.618e-05 0.374 0.006916 0.002687 0.0003582 5.754e-06 0.3494 1.117e-05 0.002663 0.08001 0.001803 0.001384 0.0006186 0.2463 0.001213 0.004542 0.001735 8.306e-06 0.000405 0.0003565 0.01154 0.004177 0.1025 5.814e-05 0.001581 0.0002373 0.03097 0.02244 8.429e-05 0.005483 0.03298 0.00245 0.001683 0.002278 0.001134 5.931e-05 0.0002698 1.292e-05 2.357e-05 0.0001327 0.003837 9.158e-06 0.002089 0.000177 0.02584 0.576 0.005886 0.004043 0.5922 1.047e-05 0.0003253 0.0002449 0.572 0.001638 0.006917 0.00287 0.5298 0.003285 0.01662 0.0006872 0.4236 0.008644 0.0004836 0.01393 0.001372 0.0006337 0.06964 0.002793 0.01483 0.001504 0.5787 0.01046 0.01127 0.01449 0.008862 0.0006929 0.001345 0.0003609 0.003133 0.0001861 0.5708 3.553e-05 0.003974 0.006072 0.5794 0.01105 0.5656 0.0002268 5.416e-05 0.02259 0.01316 0.3068 0.0004922 9.359e-06 0.03536 0.001848 0.1519 0.0002943 8.184e-05 0.4481 0.01056 6.385e-05 0.0007504 3.256e-05 0.001459 0.0009691 0.287 0.00184 0.04279 0.001505 0.003839 0.0002421 0.002418 0.000632 0.001102 0.5335 0.2737 0.01084 0.001368 0.003732 0.00558 0.002249 3.25e-06 3.472e-06 8.105e-06 0.002871 5.479e-06 0.002008 2.422e-06 0.1317 0.004363 0.6165 0.006692 0.01412 0.0157 0.6422 0.4389 0.01844 0.009144 0.0013 0.008116 0.01631 0.01139 2.332e-05 0.002357 0.01542 0.0001042 0.00913 0.001548 0.0005807 0.001197 0.001349 0.0002616 0.5683 0.4475 0.0004243 0.0007671 0.07586 0.0425 6.062e-05 0.002408 0.4391 0.001384 0.02792 1.986e-05 0.514 5.74e-05 1.066e-05 0.0004717 0.002553 0.1271 0.006415 0.003807 0.004068 0.02854 0.004102 9.646e-06 0.001128 0.004784 0.0004921 0.408 0.3081 0.0009592 0.03029 0.0003058 0.0003146 0.1199 0.05365 9.93e-05 0.0001012 0.005921 0.0003212 0.51 0.006368 0.001801 0.0002781 1.387e-05 0.466 0.003402 0.001483 0.01069 0.0002247 0.5675 0.4104 7.79e-06 0.002609 0.3093 3.914e-05 0.3393 0.0005975 0.0005116 0.0006733 0.003063 2.144e-05 6.999e-05 0.0001472 0.009506 0.000138 0.006436 0.005376 0.005853 0.0002957 0.3683 0.003173 0.02923 0.4637 0.001438 7.383e-05 0.004692 0.4523 0.004944 0.08241 0.0002944 7.514e-06 0.01212 0.5416 0.07855 0.0006689 0.001144 0.0002684 0.4513 0.0002263 0.0007434 0.0002736 0.4561 0.1865 0.04991 1.358e-05 0.4754 0.0008735 2.866e-05 0.004286 0.000543 0.001314 0.01998 0.001369 0.005947 0.0002174 0.3734 1.367e-05 0.0002045 0.004212 0.0001256 0.002638 0.001021 0.0004714 0.04246 0.006889 0.001706 0.01239 0.09091 0.001567 0.0006621 0.003674 0.5575 0.5727 0.01974 1.072e-05 0.5679 0.001788 0.005488 0.01727 0.0001239 0.0007293 0.00154 0.007384 0.04027 0.02394 0.0177 3.498e-05 0.5522 0.001006 1.861e-05 0.002092 0.002018 6.166e-06 0.001223 0.6106 0.01078 0.01723 0.003758 0.5442 6.816e-05 0.0007362 0.007808 0.001366 0.001006 0.003298 0.002589 0.0001166 0.4325 0.008121 0.002475 0.003772 0.001742 0.002178 0.05516 0.0001864 0.003528 8.454e-06 0.01722 0.1181 0.4368 5.736e-06 4.199e-06 0.4289 0.2573 0.002632 0.0002747 0.015 0.1367 0.3504 0.009504 0.005243 0.0428 0.0007454 0.0183 0.0001557 0.5205 8.154e-06 0.005154 0.003381 0.1961 0.0002106 0.5349 0.00324 0.003663 0.005454 0.0008951 0.03137 0.02809 8.854e-05 0.0008214 0.4105 0.01146 0.6653 0.0005487 0.005339 0.01578 9.336e-06 0.5591 0.3148 0.3463 0.005152 0.005533 5.226e-06 0.0009116 0.01177 0.0009122 0.3069 0.478 0.01434 8.026e-05 0.0001145 0.5183 0.009385 0.03031 1.74e-05 0.01004 0.004456 0.003004 0.0005753 0.0002128 0.0007954 0.0007632 0.3182 0.3311 9.142e-06 0.009854 0.004756 0.0002083 0.0002204 0.00542 0.0003851 0.0005673 0.09238 0.0008473 0.005418 0.01517 0.000814 0.5181 0.5956 0.00206 0.0005644 0.000231 6.759e-05 0.038 0.06469 0.3483 0.0008027 0.6173 0.0001352 0.01643 0.09524 0.007995 8.812e-05 0.008945 0.0004676 0.0002908 0.0002972 0.009298 0.01594 0.0948 0.003152 1.748e-05 0.000328 0.001 0.0007929 0.01248 0.0002201 0.5727 0.5583 0.03476 0.00122 0.001735 0.001121 9.77e-05 0.01564 0.0002982 0.0001207 0.4631 3.784e-05 0.4367 9.016e-06 0.002774 0.002939 0.003227 0.1022 0.003316 0.0001128 0.08891 9.369e-06 0.3343 0.4445 0.002544 0.5281 0.001207 0.001815 0.01218 0.05487 0.01103 0.3687 0.5004 0.0003439 0.6393 7.479e-05 0.596 0.006128 0.002266 0.002735 0.08208 0.02869 0.0002692 0.003697 0.1913 0.01698 0.002103 0.009262 1.337e-05 1.284e-05 0.003544 0.4906 0.0001503 0.04094 0.5432 0.001986 0.005426 0.0004957 0.009375 0.3112 0.1943 0.0004053 0.04224 0.006294 0.04749 8.005e-05 0.01395 0.5001 0.001774 0.4361 0.1018 0.3295 0.01051 0.0004913 0.007168 0.001663 0.001627 2.962e-05 0.0001015 0.0007714 0.0005484 0.005454 0.009388 0.007873 0.00927 0.003653 0.00367 0.001413 0.03232 0.0004856 0.001171 0.4516 0.0001153 0.2051 0.01047 0.4447 6.43e-06 0.006689 0.01127 0.001284 0.001368 0.03228 0.0006529 0.57 0.03538 0.004994 0.0001688 0.03709 0.0001453 7.571e-06 0.0004284 0.001298 0.002821 0.07972 0.001841 0.006077 2.589e-05 0.001953 0.5857 0.4026 0.03278 0.00313 0.008064 0.0003555 2.823e-05 0.6363 0.1132 0.3825 0.006719 0.4075 1.121e-05 0.018 0.05847 0.5183 0.001369 0.001134 0.2614 0.000925 0.02625 0.01405 0.01446 0.01426 5.453e-05 0.0001966 0.004277 0.04176 0.0008409 0.3028 0.01934 0.003237 0.002893 0.01096 0.0001474 0.001581 2.022e-05 0.002812 0.0037 0.0009611 0.6216 0.04346 0.5488 0.009945 4.581e-06 0.0003329 0.02512 0.006414 0.0009731 0.616 0.009071 0.3529 0.002209 0.001235 0.0003329 1.314e-05 0.3499 0.002725 4.999e-06 0.000882 0.4433 1.132e-05 9.811e-06 0.0008997 0.01522 0.002281 0.00304 0.006528 4.074e-05 1.637e-05 0.00368 0.02154 9.991e-06 1.136e-05 0.0004521 1.032e-05 0.4155 0.0261 0.0005125 0.001222 0.0001047 0.02833 0.0005432 0.001281 0.007065 0.583 0.002503 0.4561 0.003401 0.002423 0.001478 0.01377 7.316e-05 0.01198 1.971e-05 0.0004014 0.5717 0.002474 0.5646 5.425e-06 0.0004496 0.007053 0.0009573 0.5604 0.001315 0.01144 0.01519 0.001002 0.00345 0.4119 0.0001862 0.0094 0.01267 0.4184 0.001703 0.1335 5.899e-05 0.07906 0.005822 1.053e-05 0.3722 0.4031 0.00459 3.62e-05 0.0004857 0.009149 0.5425 0.0006188 0.004472 0.08526 0.00119 0.3886 0.01329 0.001687 0.002272 0.0002033 0.0951 0.0007721 0.0003136 0.5667 0.2084 1.573e-05 0.002122 0.01031 0.4216 0.1701 0.003046 0.0002682 0.00499 0.0003898 0.0001002 0.4984 0.000666 0.01966 8.785e-05 0.6036 0.001992 0.2984 7.465e-06 0.03204 0.002109 3.131e-05 0.007634 0.5366 1.375e-06 0.00029 0.004261 0.3589 0.001059 0.4316 0.002871 0.009061 0.001064 0.0004281 0.0005988 0.0001861 0.01212 0.0007254 0.00016 0.01535 0.002002 0.00952 0.075 0.05041 8.686e-06 0.03238 0.03198 0.0003992 0.1013 0.004767 0.4028 0.0001998 8.06e-06 0.001076 4.728e-05 0.3806 0.0002934 2.578e-06 0.02422 0.06046 0.01171 0.03402 0.003311 0.006634 1.691e-05 0.4548 0.002921 0.2578 0.4818 0.001867 0.0021 0.02321 0.008799 0.004993 0.5798 2.856e-05 0.0004551 0.000764 0.002154 0.004935 6.473e-06 0.0002396 0.5027 0.01124 0.5503 0.003256 0.4904 0.004319 0.5889 0.0007366 1.513e-05 0.00986 0.01085 0.0001232 0.001285 0.003098 0.0001666 0.01334 0.005197 0.001874 6.291e-06 0.0005742 5.113e-05 0.0001929 0.002812 0.00141 0.03881 0.0002837 1.115e-05 0.009045 0.008934 0.000271 0.0007345 0.001925 2.122e-05 0.3998 0.003916 0.001533 0.001629 0.00247 4.562e-05 6.636e-06 0.0147 0.001571 0.4254 0.002338 0.01356 0.01468 0.01205 0.0852 0.0001907 0.007431 0.0004754 0.04112 0.00768 0.0001799 0.3038 0.005697 0.0002096 0.002473 0.006853 0.04969 0.004278 8.891e-06 0.01062 0.003105 0.5656 0.01515 9.397e-06 0.2699 0.001757 0.009365 6.233e-05 0.3236 0.0007338 0.4831 0.01492 0.01529 3.541e-05 0.001261 0.001507 0.02883 0.0002455 0.5572 0.0009644 3.958e-07 0.0007466 0.005401 0.002937 0.0002331 0.0008021 0.01005 0.0005237 0.565 4.556e-05 0.0008446 0.3708 0.5768 1.17e-05 0.0002154 0.002953 8.055e-05 0.01467 0.01237 0.0006717 0.000912 0.004369 0.0004721 0.01758 0.004377 0.01022 0.002172 0.00018 0.002931 0.0003505 0.3663 0.3989 0.008439 7.727e-05 8.375e-05 0.02002 0.4027 0.00294 0.0002246 0.0009807 0.002894 0.0002134 0.01043 7.195e-05 2.793e-05 0.3082 0.5761 0.002601 0.04419 0.0002789 0.0009103 0.429 2.131e-05 0.006162 0.007359 0.001149 0.0008027 0.508 0.02633 0.003208 0.01114 0.001376 0.008356 0.4594 0.6075 0.0007173 0.3924 0.003045 0.01108 0.000195 0.002336 0.433 0.1198 0.3019 0.001014 0.009242 0.01334 0.008067 0.0009223 0.03533 0.001677 0.0007912 0.0009576 0.4078 0.0107 0.002574 0.003539 1.265e-05 6.954e-06 0.001548 0.002736 0.02201 0.02486 0.5729 0.03473 7.75e-06 0.2798 8.596e-06 0.006062 0.0005263 0.008634 0.4256 0.000721 0.001783 0.005049 0.08048 0.007291 0.0003243 0.006866 7.803e-06 0.002288 0.004824 0.0006296 0.0005612 0.02473 0.01609 0.00152 0.002159 0.571 0.001332 0.008903 0.01921 0.05565 0.003325 0.0001316 3.579e-05 0.01041 0.5745 0.002857 0.01578 0.009063 0.0007467 4.736e-06 0.0001029 0.422 0.002228 0.003206 1.17e-07 0.1976 0.003543 0.6031 0.0003469 0.003306 6.749e-06 0.002071 0.02715 0.00212 0.0004469 0.00337 0.07021 0.005176 0.5906 0.3838 0.0006661 0.001319 0.007005 6.376e-05 0.0001501 0.0132 7.659e-05 0.0004178 0.0028 0.0001143 0.003272 0.02863 0.04116 0.0001113 0.008808 0.005202 0.01055 0.07872 0.4081 0.4594 0.005236 0.0006107 0.007366 0.001994 7.841e-06 0.0006044 0.0007006 0.0002769 0.0004825 0.5077 0.5131 0.5803 0.0002837 0.007475 0.007872 0.0004866 0.0006245 0.0006632 0.006796 0.001671 1.773e-05 0.002473 0.002659 3.13e-05 0.0002175 0.3967 0.0001652 0.0004264 0.01542 0.1901 0.0001608 0.001859 0.001755 0.001154 0.02118 0.08167 9.056e-06 0.0007144 0.0001016 0.005833 0.001857 0.4943 0.07227 0.009625 0.001011 0.4215 0.002608 0.03606 0.02793 0.5213 0.3834 0.001671 0.003193 0.03673 0.008906 0.00153 0.0002243 0.003353 9.893e-06 0.004737 0.08815 0.02719 5.622e-05 3.666e-05 0.0006177 0.008376 0.003794 0.02003 0.004882 0.001654 0.5722 0.000707 0.002916 0.001721 0.0002753 8.745e-09 0.05556 0.004632 0.0005289 0.02955 0.5832 2.759e-05 6.978e-05 0.02485 0.02819 0.3992 0.5773 0.02878 0.0001912 0.0001133 0.01023 0.002503 9.485e-05 0.01979 0.5346 1.99e-05 0.06314 3.348e-05 0.001084 0.002181 0.0004841 0.01101 0.0002321 0.004571 0.0003609 0.003913 0.0004038 0.1847 0.06929 0.0005766 0.000203 0.3955 0.5673 0.009029 0.001013 0.0005619 0.0001505 0.002204 0.0003098 0.4262 0.00187 0.3741 3.678e-05 0.0003317 0.5696 0.002581 0.06674 0.003219 0.002885 0.01261 0.0864 0.001291 0.0002109 0.0169 0.003654 0.01906 0.001425 6.859e-06 0.007461 0.003881 7.026e-05 0.001304 0.5251 0.01921 0.3996 0.002535 0.0004798 0.0123 0.003791 0.003422 0.004106 0.5699 0.0006405 0.00069 0.0006601 0.06772 0.0001053 0.00199 0.001613 0.003709 1.307e-05 0.0106 6.719e-05 0.0009232 0.005415 0.009878 0.012 0.003713 0.08893 0.0001283 0.03847 0.0006635 0.006184 0.006255 1.404e-05 0.005959 0.0005466 0.2014 0.4961 5.735e-05 0.6081 0.6081 4.466e-05 0.3492 0.6685 0.004278 4.704e-05 0.0008275 0.003251 0.01029 0.5717 0.002721 0.374 0.0001957 0.1785 0.01078 0.001863 0.2998 0.01299 0.0001561 0.001729 0.01323 0.05849 0.004711 6.169e-06 0.009006 0.002444 0.0007753 0.1011 0.001045 0.1906 0.0453 0.0004981 0.002702 0.002148 0.001896 0.0005727 8.382e-05 0.0002053 0.008642 0.002545 0.0004233 5.424e-06 0.0004761 0.01916 0.01118 0.6081 0.000121 0.02153 0.02209 0.001374 0.01429 0.5755 0.003115 0.006706 9.222e-06 9.322e-05 0.004519 7.867e-05 0.004326 0.3181 0.02094 0.0002913 0.3656 0.05991 0.5035 0.0002568 0.5698 0.1174 0.00107 4.404e-05 0.3547 0.2718 0.2706 0.3003 3.539e-05 0.06483 0.0006567 3.769e-05 0.3122 0.309 0.4514 0.004278 0.0007797 0.0008122 2.797e-06 0.005792 0.003401 4.095e-06 0.00014 0.001588 0.003419 0.005377 0.1267 0.565 0.001672 0.003121 5.082e-06 0.0009068 0.0001642 0.001095 0.0002096 5.669e-06 7.087e-05 0.5782 0.01059 5.744e-05 0.0239 0.004011 0.01066 0.512 0.0007998 0.001633 0.01407 0.5716 0.0008666 0.006603 8.897e-05 0.1271 0.001738 0.6032 0.0009367 0.03151 0.01988 0.000362 0.001523 0.004404 0.0002654 0.0142 0.02506 0.0005758 0.0002666 0.03597 0.3035 0.002881 0.3899 0.01694 0.02987 0.001518 0.0116 0.008127 5.257e-05 0.007578 0.000685 4.117e-06 0.0001893 0.0142 0.01153 0.656 0.5228 0.08451 0.0002466 0.004775 2.181e-05 0.0008314 7.114e-05 0.2304 0.003404 0.0003284 0.001846 0.0004225 0.3354 0.00064 0.002083 0.001264 0.07216 0.0002741 0.0008723 0.004351 0.0004821 0.002645 0.0004338 0.5797 0.004873 0.06481 0.07723 0.0003353 0.003635 0.008358 0.002589 0.06508 0.0005387 0.01106 0.08633 0.01164 6.668e-06 0.0001084 0.5501 0.001134 0.3524 0.03082 0.00284 7.908e-05 0.0005439 0.5835 0.004194 0.0006516 0.579 0.5638 7.125e-06 0.0003739 0.001075 5.612e-05 0.0001618 0.00089 0.01295 0.5816 0.0001447 0.002943 0.0001757 0.001001 0.525 0.0003308 0.5071 0.0001732 0.0003812 0.006629 0.007285 0.02826 0.575 0.00892 0.005597 0.000218 7.416e-06 0.5843 7.53e-06 0.4484 0.001014 7.115e-05 0.4132 0.0006978 0.0002345 8.858e-05 0.0001197 0.0004972 3.726e-05 0.1431 0.0001854 0.000827 0.001574 8.583e-06 0.005505 0.001382 0.0005371 0.01327 0.001728 0.006642 0.3815 0.01641 0.04422 0.008661 0.003156 0.002925 0.002129 0.0002293 2.731e-05 1.135e-05 0.01344 0.007469 0.4383 0.003909 0.06976 2.069e-05 0.1957 0.006983 0.00468 3.22e-05 0.01517 0.00265 0.5507 0.0009106 0.002974 0.0003097 9.068e-05 0.004117 0.00869 0.002086 0.006732 0.01393 0.0002437 0.003615 0.5811 3.409e-05 0.008797 0.00597 0.007576 0.008329 0.0002278 0.0002761 0.01145 0.5759 1.371e-05 0.416 0.0005812 9.685e-07 0.001422 0.5703 0.000337 0.002372 0.5906 0.08015 0.002628 0.5712 0.002096 4.521e-05 0.005667 0.3276 0.001184 0.001712 9.038e-05 0.001108 0.01817 0.003847 0.001279 0.1651 0.2542 1.27e-05 0.001974 3.788e-06 9.321e-05 0.01203 0.0003269 0.001491 0.006964 0.0002123 0.003565 0.008114 1.963e-05 5.003e-05 3.347e-05 0.001796 0.006254 0.001133 0.001337 0.003411 0.3785 0.001573 0.2966 0.002205 0.0467 0.0007209 0.006207 0.002458 4.873e-05 0.01457 0.0007467 0.2504 0.00074 0.0001005 1.766e-05 0.008587 0.0004192 0.002184 0.004885 0.01329 0.0006312 0.3707 0.0179 2.518e-06 0.0005112 0.002093 3.722e-06 0.02244 0.00795 0.0001925 0.4208 3.966e-05 0.5132 0.006475 0.001374 0.01744 0.5143 0.0007538 0.001175 0.007493 0.0008843 1.436e-05 1.136e-05 0.0005557 0.007446 0.0182 0.00149 0.56 0.001734 1.591e-05 0.01731 8.264e-05 0.0004534 0.3972 0.3959 0.0004131 0.02752 0.02969 0.0007741 0.0004103 0.6022 0.00254 0.002447 4.201e-06 0.002616 7.687e-06 0.4139 0.001412 3.561e-05 0.0001791 0.007243 0.002002 0.2464 0.5547 0.001804 0.5724 0.006079 0.01348 2.418e-06 8.205e-05 0.01793 1.124e-05 0.3736 0.01101 0.0005396 0.01303 0.0001739 0.0002147 0.008278 0.000647 0.0002504 0.001509 0.00206 0.001147 0.02301 4.078e-05 0.0004384 0.0208 0.0004721 0.002574 0.6414 0.6414 1.035e-05 0.5951 0.01179 0.0001377 0.007164 0.0003999 0.003069 0.03838 0.0008977 0.0001675 0.5443 0.5765 0.02407 0.569 0.00213 0.01199 0.0006988 0.01135 0.0001137 0.003568 7.768e-05 0.0001277 0.01083 0.4111 0.0008328 0.004175 0.0001619 0.001202 0.0004256 0.02495 0.005939 0.01129 0.01068 0.003958 5.345e-05 0.001241 4.898e-05 0.001183 3.214e-05 0.003213 1.849e-05 3.227e-05 0.574 0.02609 0.007549 3.825e-06 0.0008581 0.1642 0.01064 0.009565 6.616e-05 0.001283 0.0014 0.002201 0.01781 2.626e-05 0.00644 5.372e-05 0.0003044 1.014e-05 0.3367 6.87e-05 4.903e-05 0.1318 3.658e-06 2.406e-05 0.0003583 0.09795 7.993e-05 0.4384 0.04846 0.143 0.002809 0.0003564 0.06883 5.371e-05 0.01199 0.0009948 0.0001504 5.3e-05 0.4104 1.592e-05 0.03222 0.03014 0.006706 0.0202 0.0002118 0.001035 0.001716 0.0006155 0.6338 1.049e-05 0.01374 0.004502 0.0002779 1.394e-05 0.001748 0.4144 0.006266 0.01678 0.0008712 0.0157 0.1083 0.004003 0.006188 0.009089 0.04373 0.01095 0.003789 0.002434 0.02291 0.008154 0.001358 0.0004598 0.6067 0.004952 0.6186 0.5667 0.0003189 0.001537 0.0006621 0.002237 0.0009099 1.138e-05 0.0001699 0.0005751 0.5853 0.5911 0.000429 0.01412 0.0005512 0.0006079 0.01021 0.002045 0.00156 0.002733 0.0006602 0.003876 0.01119 0.003492 0.006076 0.001584 0.04438 1.3e-05 0.001623 0.0149 0.0003044 0.0003692 0.0002801 0.0007377 0.001081 0.01577 0.0002404 0.2996 0.0003896 0.005848 0.001228 0.5635 0.006579 0.4746 0.05955 0.07652 0.04043 0.000185 0.1953 0.001664 0.0008822 7.105e-05 6.523e-05 0.328 0.3822 0.003306 0.002282 0.00683 0.008949 0.07412 6.881e-05 0.002362 1.372e-05 0.002752 0.001847 0.001355 0.464 0.08126 0.0005469 0.0002395 5.447e-05 0.006952 0.004078 0.0003197 0.0003418 0.3351 4.107e-05 0.1224 0.5954 0.0002257 0.00456 0.004912 0.0002408 1.359e-05 0.001759 0.3521 7.117e-06 0.003432 0.0006799 0.007503 0.002215 0.0001978 5.407e-05 0.5418 0.5674 0.4777 0.007252 0.6344 0.00578 0.419 7.728e-05 0.005469 0.3558 0.458 0.000102 0.3375 0.0008754 0.003086 0.00239 0.3035 0.001067 0.01131 0.0003096 0.4774 0.008896 0.5655 0.2371 0.00604 0.5646 0.002874 0.01753 0.004162 0.4131 0.009304 3.404e-05 0.001168 0.5888 0.0007481 0.001202 0.003592 0.009676 0.0152 0.05695 0.002624 0.01064 1.176e-05 0.0005949 0.007712 0.00182 0.2051 0.0001403 0.002213 8.58e-05 0.003011 0.002052 0.0008092 0.0006923 0.4274 0.5823 9.132e-05 0.001955 0.009533 0.006205 9.653e-06 0.006165 0.002709 0.1191 3.617e-05 0.001152 1.758e-05 0.004083 0.5645 0.001198 0.002032 0.0003064 0.5087 0.0004443 0.004546 7.219e-05 0.001233 0.005793 0.0001948 8.332e-06 0.007306 0.0003881 4.197e-05 0.0002114 0.009607 0.1134 3.748e-06 0.5584 0.01179 0.0001426 0.002173 0.02613 0.1789 0.001258 0.003233 0.5639 0.4912 0.003821 0.0003924 0.0005567 0.2443 0.01578 0.0008894 0.3102 0.0003886 0.00166 0.001012 0.001698 1.027e-05 0.0007472 0.003041 0.0003054 2.122e-05 0.5644 0.6183 0.001639 0.0006552 4.594e-06 0.0711 0.001911 0.0009038 0.003244 1.766e-05 0.6445 1.096e-05 0.0001069 0.6203 0.002239 0.6161 0.002329 0.008286 0.5519 0.00247 9.769e-05 0.004672 2.941e-05 0.008446 4.551e-05 0.5591 0.005056 0.4859 0.0014 0.009956 0.0002876 1.016e-05 0.1162 6.883e-05 0.006055 0.0001017 0.008187 0.4922 0.002499 0.0017 0.0196 0.0004114 0.0004577 0.336 0.001396 0.0007463 0.0006008 0.06599 0.0001177 0.01439 6.194e-05 0.002088 0.4514 0.2296 0.0006779 0.397 0.5739 0.5513 0.5771 0.005609 0.0007927 0.5701 0.00614 0.01195 5.619e-05 0.001254 0.005594 0.0005715 0.5495 9.243e-06 0.001711 0.4535 0.006372 0.000609 0.5283 0.005113 0.001093 4.193e-06 0.001744 0.0001202 0.03424 7.1e-05 0.01636 0.0003181 0.0008944 0.5749 0.1132 1.554e-05 0.001198 0.008644 0.0009045 1.196e-05 0.007414 0.003515 0.0001804 0.0001042 0.0006369 0.0108 0.3884 0.01199 0.000358 0.6071 0.0007486 0.001819 1.31e-05 0.003382 0.0002943 0.003137 7.994e-05 0.4072 0.008201 0.002397 0.0001438 0.001693 0.5094 1.469e-05 0.000413 0.01378 0.1819 0.005318 0.0001196 0.005428 0.002053 0.01008 0.2598 0.0132 0.3257 0.0001093 1.192e-05 0.001465 0.01039 0.0001026 0.5499 0.002023 0.00155 0.01701 0.0003442 1.097e-05 0.4593 0.0003442 0.003435 0.0001173 1.103e-05 0.006787 0.000255 0.5745 0.002654 0.09066 2.465e-05 0.5781 0.0001871 0.1932 0.001927 0.006213 0.0003079 0.001187 0.003821 0.00157 0.4164 0.002963 0.001935 0.0001239 0.5801 7.665e-06 0.001145 0.0004125 2.196e-06 0.0002077 0.01701 0.001315 0.0003297 0.0007511 8.704e-05 0.0002405 0.004479 0.0002369 0.3873 0.0001666 0.09141 0.0002133 0.0008224 0.007206 0.004396 0.02476 0.008147 0.005194 0.0003696 0.001742 0.001299 4.441e-06 0.002898 0.565 5.964e-06 0.556 0.0005083 4.815e-05 0.4192 0.0003569 0.5806 0.002554 0.001096 0.0003018 0.0009074 0.0002814 0.001922 0.6421 0.001052 0.007686 0.0006457 0.003713 0.5663 0.1877 0.0003269 2.002e-06 0.007996 0.001255 0.0146 0.0002166 0.002188 0.0005975 0.003738 0.01325 0.002495 0.005006 0.009535 0.002614 0.3655 0.001016 0.3668 0.0001986 0.6063 0.003943 8.635e-06 0.6062 0.5911 0.001013 0.6327 0.0006014 0.006006 0.001948 0.02527 0.3829 0.1429 0.003077 4.723e-06 0.001742 0.2246 0.0004273 4.381e-06 0.001807 0.006294 4.071e-06 0.0004969 0.002962 0.0002523 0.001707 0.06758 0.005291 0.5743 0.02235 0.0005098 0.001397 0.0004576 0.01923 0.006681 0.003052 0.566 0.6124 0.0006027 0.001503 0.003603 0.5289 0.004837 0.0001221 0.0003054 0.4639 0.002825 0.00127 0.03328 0.00214 0.02978 0.001625 0.0003411 0.0002243 0.001812 0.001771 0.002177 0.01611 0.02447 0.5726 0.001254 0.002402 0.6554 0.0003363 0.0001411 0.0002611 0.001238 0.01899 0.5758 1.704e-05 0.0008032 0.001038 0.01698 0.001355 0.000799 0.4044 0.3685 0.3686 0.005661 0.000168 0.0004304 0.001419 0.5815 0.01351 0.0009377 0.2896 6.394e-06 0.001529 0.0008112 0.6544 0.009441 0.3102 0.006224 4.086e-08 0.005645 1.439e-05 0.001303 1.558e-05 0.0006951 4.288e-05 4.829e-05 0.003518 4.695e-05 0.004 5.41e-05 0.01084 0.002786 0.001203 0.4032 0.001866 0.01312 0.4011 0.4835 0.008557 0.3177 6.732e-06 0.2778 0.5621 0.0002177 0.008894 0.0759 0.000177 0.003513 0.0176 0.1117 0.4004 0.01893 0.0009077 0.021 0.01186 0.000946 0.5701 0.004367 0.3164 0.0002518 0.006044 0.0002816 0.003044 0.5886 0.001599 0.01427 0.007787 0.005842 0.02139 7.377e-06 0.008764 0.4657 0.003553 2.362e-05 0.0003111 0.5769 4.798e-05 0.001051 0.003746 6.007e-05 1.504e-05 0.004304 0.6263 0.6141 0.01604 0.004808 0.0003861 0.01981 0.000146 0.4975 0.0002018 7.093e-05 0.0004053 0.001419 0.3223 0.008331 0.004226 0.09921 0.002073 0.001151 0.004441 0.004894 0.00266 0.002507 0.00348 0.001978 0.003363 0.002354 0.01015 0.000539 0.008416 0.001596 0.006702 0.002798 0.0006557 0.00775 0.0004867 0.0001413 0.0004034 9.953e-06 0.0003696 0.0001076 0.001516 0.00796 0.002726 0.00433 0.005609 3.483e-05 8.026e-05 6.947e-06 0.0009673 0.0005166 0.006946 0.01641 0.5746 0.006057 0.001507 3.861e-05 0.002397 0.5644 0.0006939 0.06019 0.2406 0.003209 0.004033 8.062e-06 0.01472 0.002095 0.001077 0.0002873 0.006219 0.000729 1.904e-05 0.06236 0.0005207 0.002922 0.0004528 0.008208 0.002047 0.001013 5.29e-06 0.002414 0.0003505 0.01464 0.01937 0.002587 0.002984 0.5128 0.001592 0.01074 0.002673 0.0001402 0.002197 0.001182 0.5614 1.682e-05 0.001376 0.009597 0.004804 2.052e-05 0.2924 0.001075 0.001495 0.007046 0.0003372 0.003094 0.0268 1.263e-05 0.002375 0.01418 0.003778 0.1128 0.003336 0.005802 0.002583 0.001685 0.06466 0.00453 7.082e-06 0.002406 0.0006618 0.0002167 0.007984 0.0008591 7.583e-05 0.0002338 0.001641 0.0001108 0.0001336 0.03984 8.298e-05 0.1638 7.746e-05 0.001797 0.007865 0.0001676 0.01024 0.000455 0.03279 0.546 0.002175 0.2233 2.084e-06 2.022e-05 0.002481 0.0007566 0.000194 0.006027 0.5139 0.5645 0.006194 0.0001179 0.3046 0.00235 0.006602 6.118e-05 1.24e-05 0.001664 0.08656 0.01274 0.004343 1.226e-05 0.2192 0.0002199 0.5648 0.0003819 0.001636 0.006321 0.002079 0.6424 0.0003343 0.0008605 0.0007743 0.01423 0.08096 0.0007663 0.003041 0.3053 0.0002872 0.0004117 0.007467 0.0005328 0.2916 0.02452 0.002078 6.434e-05 0.0002841 0.01899 0.4434 0.000885 0.002458 0.002195 0.01573 0.01618 0.06102 0.001804 0.008467 0.02679 0.003386 0.0003234 0.01388 0.1037 0.003246 0.0002116 0.0008472 0.02464 0.001766 0.008948 0.0001029 0.001296 0.004149 0.5467 0.002382 0.002226 0.09699 0.001196 8.285e-05 0.09017 0.003621 6.915e-06 0.0008567 4.235e-05 0.0001497 0.004313 0.006351 0.003962 0.004292 5.832e-05 0.6041 0.004289 0.0007339 6.409e-05 0.0005886 0.001157 0.1118 6.649e-05 0.1257 0.007762 1.247e-05 0.379 0.0001742 0.0005986 0.00734 0.03092 0.001648 0.009016 0.0001341 0.03304 0.3646 0.006597 0.00695 0.02074 0.008829 0.0002997 0.001599 0.00339 0.5248 0.003158 0.09796 0.0003064 1.542e-05 0.1635 0.007408 0.001145 0.02231 7.424e-05 0.0134 3.088e-05 0.001182 0.00208 1.935e-05 0.3412 0.001097 0.006833 0.5617 0.007277 0.0008258 1.337e-05 0.1189 0.5882 0.003889 0.5532 0.000678 2.608e-05 5.218e-05 0.0007739 0.0008392 0.008091 0.000164 0.5149 0.003638 4.905e-06 0.000279 0.5687 0.0007407 0.007894 2.648e-05 0.003268 0.00962 0.03014 0.0009074 0.0005904 0.01526 0.0005665 0.08499 0.002696 0.6382 0.01933 0.005403 0.006959 2.439e-06 0.06109 0.0005015 0.002503 0.002213 0.005923 0.0006219 0.005396 7.133e-05 5.748e-06 0.3965 0.0005647 0.0004151 0.04381 4.458e-06 0.002393 0.01294 0.006365 0.01284 0.4775 0.0001849 0.4369 0.007358 0.0006765 0.01262 0.0004351 0.5792 2.015e-05 0.000129 0.568 0.02559 0.003233 0.004816 0.1147 0.003939 0.0006393 0.0174 0.001135 0.0005578 0.5342 0.4341 0.0001452 0.0001079 0.006956 1.238e-05 0.01927 0.000177 0.001409 0.0003569 0.0008236 0.4291 0.003954 0.04064 0.04256 0.2092 0.001303 0.1732 0.000315 0.002913 0.0007175 0.4754 0.00981 0.4146 0.0005225 0.00134 0.01034 0.004016 0.002101 0.008271 0.07141 0.002044 0.004035 0.0002028 0.0007383 8.106e-06 0.0002602 0.004008 0.03842 0.0007481 0.0005027 4.24e-05 2.247e-05 0.001325 0.5641 2.873e-06 0.00487 0.09042 0.0009918 0.1669 2.262e-05 0.004184 0.0001395 1.519e-05 0.01158 0.006307 0.002838 0.007007 0.01068 0.002235 0.003242 0.0002661 0.00184 0.0004293 0.000204 0.01089 0.5313 9.092e-06 0.001216 0.005113 0.003582 0.001651 0.01436 0.008713 0.003704 0.0003758 0.001103 0.009203 0.04158 0.01429 0.003449 0.4056 0.3345 0.0002954 4.281e-05 6.701e-05 2.317e-05 0.01053 0.5803 0.04074 0.4573 0.5685 0.3766 8.036e-05 0.00623 0.1675 0.006207 0.01692 0.0001692 0.0008429 0.004169 0.005899 0.3838 0.5766 0.003817 0.001553 0.01028 3.31e-05 0.007968 8.868e-06 4.472e-05 0.3445 0.00653 0.0006412 0.0145 0.00183 0.0008538 0.001341 9.976e-05 0.0002205 0.0001622 0.0002164 0.5748 0.0001417 0.05875 8.673e-06 0.01773 0.01199 0.05873 0.5684 0.03307 0.004555 0.3542 0.3808 0.5625 0.0001665 0.002921 0.0001262 0.2177 8.535e-05 0.02408 0.0005019 0.005809 0.0002366 0.0001981 3.57e-06 0.0003358 0.009731 0.0002116 7.4e-05 0.0008227 0.009916 0.004853 0.007824 0.02318 0.001168 0.05199 0.0001303 0.0008488 0.001812 8.482e-05 0.5404 0.02932 0.000312 0.000118 0.226 0.0002689 4.278e-06 0.007143 0.004462 5.461e-05 1.679e-05 0.0138 8.104e-06 0.002674 0.4028 0.0007737 6.97e-05 0.488 0.007705 0.01487 0.00267 2.212e-05 0.001409 0.6288 0.002244 0.00568 0.002142 0.3087 0.0001163 0.002509 7.669e-05 1.29e-05 0.001581 0.0002505 0.5857 0.002801 0.01938 0.0001911 0.0006131 0.006168 0.007179 0.06074 5.345e-05 0.004124 0.4597 0.01181 0.0008796 0.003599 0.4729 0.000666 0.005462 0.01752 0.007099 6.353e-05 9.034e-06 0.004703 0.0003786 0.3094 0.0006817 0.0006315 0.01583 0.006677 0.002335 5.732e-06 0.06097 0.01997 0.02035 0.005138 0.01056 0.0001241 0.002801 2.254e-05 0.001443 0.001582 6.638e-06 1.793e-05 0.0003393 0.0006329 0.00292 0.002915 0.431 0.002005 0.001578 0.002633 0.03902 0.004384 0.0004361 0.0046 0.002802 0.16 0.1597 0.5672 0.03764 0.6292 0.02003 0.00141 0.6634 0.04622 0.5462 0.004114 0.5638 0.001662 0.000134 0.2649 4.509e-05 0.5871 0.007449 0.4879 0.00306 0.5455 0.0004662 0.06086 0.04606 0.04403 0.009987 0.002957 0.001592 0.561 0.0003989 0.175 0.005017 0.01183 3.552e-05 0.2516 0.01338 1.382e-05 0.006378 2.012e-05 0.08465 0.002708 0.001147 0.0785 0.002517 0.02137 0.0625 0.02408 0.002963 0.1212 0.0005589 0.2033 0.3989 0.3845 0.3845 0.6584 4.22e-05 0.008404 0.0005284 0.002557 0.004607 0.0004605 0.02793 0.0004932 0.2229 8.647e-05 0.006329 0.1279 0.5564 0.003009 0.004707 0.0004409 0.4815 0.05587 0.01088 0.004462 0.4193 0.00852 0.5641 0.001864 1.128e-05 0.538 0.001354 0.1117 3.103e-06 0.004461 0.004979 0.2458 0.01052 0.04058 0.6342 0.002168 0.001693 9.875e-05 4.228e-05 0.002197 0.5886 0.0006531 0.003199 0.00853 0.446 1.245e-05 0.01169 0.5088 0.4913 0.009421 0.5118 0.004911 0.02804 0.0005578 0.1705 0.0009213 0.006672 0.01074 0.009662 0.5249 0.000348 0.0005839 0.001968 0.002271 0.0009896 0.007793 8.852e-06 0.002891 0.001352 0.249 0.03287 0.3058 0.0006735 0.5755 0.4649 1.695e-05 0.6011 0.6527 0.000624 0.6403 0.0003981 5.711e-06 0.000438 0.0002504 0.009967 0.0001893 0.5351 0.5875 8.735e-06 0.0001781 0.0007678 0.5752 0.00157 0.39 0.0001647 0.02208 0.001501 0.002032 0.01487 0.01025 4.711e-05 0.01713 0.001015 1.557e-05 1.915e-05 0.001883 0.01638 0.3527 0.01177 0.4083 0.004958 0.5579 0.552 0.0009207 0.0001068 0.004739 0.009138 0.0005131 0.000335 0.3012 0.002972 0.0015 0.5972 0.3543 0.003773 0.3534 0.004719 5.594e-05 0.5694 2.712e-05 0.00249 0.007132 0.001391 0.002527 0.006439 0.1957 0.3552 0.0001309 8.231e-06 3.383e-05 0.1038 7.872e-05 0.0008427 2.637e-05 0.003206 0.009033 0.0001353 0.5018 0.000313 0.002797 0.001549 0.5187 0.003659 0.03682 0.1658 0.002032 0.07735 0.03715 0.0006814 0.06756 0.09958 0.5768 0.0006751 0.5572 0.001433 0.000275 0.01972 0.01391 0.004429 6.739e-05 0.001478 0.02698 0.003475 0.0002352 0.3524 2.476e-07 0.0005089 0.0004099 0.06377 0.0008766 0.01751 5.98e-06 0.0002958 0.007573 0.0007458 0.003879 0.03156 8.767e-05 0.001746 1.28e-05 0.002968 0.004987 8.577e-05 0.009901 0.09638 0.000223 9.153e-05 0.09382 0.003423 0.0002156 0.001249 2.872e-05 4.98e-06 0.2945 0.08016 0.00117 0.006222 0.0009175 0.00438 0.003121 0.01647 0.0002699 0.03411 0.0003649 0.002934 0.003377 0.001599 0.004448 0.003829 0.002635 0.01025 0.03858 0.0001585 0.0227 0.1442 0.0004146 0.008064 0.0001279 0.0001662 0.0007507 0.0001114 0.001056 0.04825 0.0008785 0.07561 0.001949 0.00261 0.3528 0.0007864 0.01581 8.223e-05 0.0006553 8.894e-05 0.01045 0.178 8.186e-05 0.5618 0.005338 0.4108 0.0005346 0.02499 0.000425 0.007879 0.0043 0.0001255 0.0005517 0.001499 0.00977 0.001269 0.0001814 0.4429 0.0001686 0.4278 0.5102 0.00767 1.859e-06 0.002963 0.0001501 0.003167 5.707e-06 0.0003553 0.0005976 0.00713 0.004732 4.544e-05 0.001219 0.0001035 0.002938 0.3865 0.0004512 0.001832 0.0002231 0.001795 0.4227 0.6138 0.0009448 0.007234 0.02216 1.234e-05 0.01289 0.5632 0.002884 2.071e-05 0.0005476 0.0002038 1.788e-08 4.422e-07 0.6452 0.004369 0.006009 0.006805 0.01548 0.0007748 0.02397 0.2984 1.655e-05 0.5089 0.00306 0.0004718 0.0006136 0.003217 0.001803 0.06154 0.01271 0.0003735 0.006532 0.0006841 0.001073 0.0005481 0.002346 0.002344 0.009105 0.003755 0.5856 3.299e-05 0.00105 0.001465 0.0006253 0.1133 0.4146 9.99e-05 0.2992 0.0109 0.0003858 0.005503 0.0007857 0.003192 0.5662 7.387e-06 0.0003174 0.03295 0.003266 0.007955 0.5679 0.0009527 0.07595 0.001653 0.008611 0.002653 0.0001663 0.001641 0.004735 0.002465 0.5739 0.3747 0.42 0.0119 0.06587 0.3452 0.0002092 0.0003909 0.02644 0.000504 0.007494 0.0005876 0.0005426 0.01477 0.04209 0.006349 0.5754 0.003059 0.001854 5.541e-06 0.0005827 0.004897 0.01102 0.5743 0.01777 0.004388 0.03522 0.003625 0.4166 0.1167 8.34e-06 1.071e-05 0.006728 0.005027 0.0009917 0.02552 0.004198 2.147e-05 0.0001962 0.02768 0.002043 0.03788 0.00873 0.001077 0.0007671 0.01947 1.245e-05 0.008402 0.4116 0.3215 0.00698 0.00426 0.01003 0.0005011 0.02582 0.07349 0.002958 0.008445 0.006096 0.3843 0.1449 8.067e-06 0.007975 0.007517 0.000563 6.43e-05 5.283e-06 0.003002 0.007916 0.002032 2.491e-05 0.002056 0.0002693 0.001296 0.001429 0.0004179 0.003072 0.002381 0.03538 0.001727 0.009517 3.717e-05 0.01724 0.01123 0.0009786 0.0002748 0.0008018 0.001248 8.252e-05 0.009563 0.00308 1.093e-05 0.0007995 0.003231 0.2933 0.01847 0.003148 5.92e-05 0.006572 0.0002712 0.0002091 0.003748 0.001841 0.0002737 0.009925 0.0002904 0.544 0.3738 3.211e-05 0.5701 0.0004887 0.0006125 0.003582 0.0002709 0.0003943 1.049e-05 2.211e-05 0.03631 1.013e-05 0.007976 1.867e-05 0.03552 0.0758 8.601e-05 0.07101 0.0001085 0.001953 0.0009859 0.5237 0.084 1.897e-05 0.0004708 1.024e-05 0.005043 0.0003709 0.02053 0.3189 5.804e-05 0.4269 0.02947 0.004865 0.001883 0.5771 0.0003288 0.001825 0.003941 0.002603 0.002824 0.0003043 0.003499 4.036e-05 0.0003998 0.06407 0.0004801 0.02743 0.002407 0.0001506 0.0003757 0.4987 0.0005182 0.5755 0.5785 0.003604 0.003126 0.005058 0.0007846 0.0002509 0.09285 0.001499 0.6031 0.0009285 0.00628 0.07795 0.001575 1.144e-05 0.003967 0.0008699 0.002057 0.5549 0.0009782 0.002573 0.002159 0.006455 0.002663 0.0003995 0.0005522 0.0002544 0.001754 0.0004318 0.002839 0.0004007 0.1165 0.6537 0.5676 7.66e-06 0.00186 1.459e-06 0.00101 0.001558 0.006077 0.0002337 0.0004987 0.001533 0.0001604 0.006984 0.001119 5.909e-05 0.02242 0.002436 0.08998 0.001186 0.005989 0.001072 0.0008869 0.002676 1.57e-05 0.003317 0.0008547 0.001874 0.001149 0.009393 0.4091 1.076e-05 0.00682 8.056e-06 5.904e-05 0.008536 0.009632 0.00872 0.0004345 0.004546 0.5752 0.0001855 0.5559 0.1291 0.004546 2.297e-05 0.0006623 0.002853 0.5857 0.01998 0.1128 6.751e-05 0.007483 0.006252 1.568e-05 0.008804 0.002796 0.01073 0.000435 0.004745 0.5685 0.02401 0.01116 0.003876 0.5544 0.0002642 0.001468 0.003919 0.0005609 0.02153 0.02897 0.002215 0.01627 0.007974 9.864e-06 0.001136 0.01534 0.006069 0.006595 0.00179 0.007614 0.2797 0.000174 0.02397 8.284e-06 5.63e-06 0.005349 0.001124 0.01035 0.005418 1.635e-05 0.008528 0.02725 0.0003512 0.002157 0.0009338 1.426e-08 0.01049 0.002775 0.0009349 0.0005751 0.0004488 0.04606 9.222e-06 0.002439 0.005074 0.0002309 0.0004224 6.949e-05 0.02454 9.142e-06 0.6063 0.0008135 0.001998 0.0004544 0.005322 0.0005727 0.5874 0.00313 0.01593 0.0004996 0.0001785 0.001628 0.01097 0.0001451 0.006993 0.001601 8.552e-05 2.588e-05 0.1517 0.0005186 0.0002848 4.439e-05 0.002237 6.964e-05 0.003737 0.0248 0.002587 0.001557 0.01746 0.0007617 0.4745 0.02827 0.004476 4.478e-05 0.001175 0.03769 0.01618 0.01662 6.427e-05 0.0142 0.003624 0.0005514 0.01828 1.816e-05 0.02306 0.0005161 0.0008284 0.05599 0.0006121 0.3076 0.004325 0.519 0.001225 0.003574 0.00108 0.00421 1.632e-05 0.002148 0.001931 0.00315 3.757e-06 0.002176 0.00732 0.01639 0.5687 0.004326 0.0007779 0.5976 0.0003314 0.5194 0.5761 1.149e-05 0.0001097 0.005486 2.274e-05 0.01327 0.003214 0.00211 0.4162 0.0001995 0.005817 0.2972 0.001583 0.000844 0.04229 0.3074 0.005456 0.2212 0.002621 0.0007638 5.075e-05 0.001152 0.001396 0.005596 0.01154 0.5402 0.06955 1.51e-05 1.233e-05 0.02704 0.005555 0.0004242 0.5358 9.001e-05 0.02037 0.005911 0.002135 0.0005965 0.01484 0.001381 0.04391 0.4312 0.3981 0.001265 0.0002637 0.04468 0.0003462 0.4365 6.845e-05 3.939e-05 0.004508 6.026e-05 1.487e-05 4.828e-06 0.002638 0.0005814 0.5761 0.04069 0.0002474 0.0007385 1.587e-05 0.008523 0.5801 0.004489 0.003111 0.005358 7.375e-05 0.002201 0.04757 0.002841 3.263e-06 0.005093 0.01177 0.004138 1.581e-05 0.004253 0.006998 0.02318 3.821e-06 0.002874 0.001902 0.0007768 0.5859 1.944e-05 0.002466 0.5768 0.001643 0.000694 0.01741 7.596e-05 0.002868 0.0008435 4.789e-05 0.05284 0.02002 0.001402 5.127e-05 0.01307 0.00279 0.00625 1.452e-06 0.5535 6.172e-05 0.001058 0.04677 0.0003127 9.308e-05 0.001937 0.0002245 0.04312 2.387e-05 0.000124 0.001173 3.641e-05 0.5737 0.001997 6.503e-05 0.002975 0.09809 0.004197 0.002189 0.02628 9.017e-06 0.4621 0.4138 0.008117 5.308e-06 0.003178 0.005701 0.004019 0.004576 0.0001526 0.006678 0.0005347 0.002658 0.05231 3.963e-05 0.0002212 0.0002223 0.003374 0.01803 0.007626 0.04996 0.05023 0.0001081 0.001392 1.419e-05 0.001231 0.0001064 4.167e-06 1.512e-05 0.004953 0.6139 0.02027 0.3073 0.3257 0.002562 0.0006287 0.00158 0.003769 0.005991 0.005282 0.5716 0.003096 0.03628 8.45e-05 0.0005341 0.000207 0.006088 0.01611 0.4499 0.004089 0.3652 2.388e-06 0.0001708 0.0004007 0.004419 1.479e-05 0.0003006 0.02349 0.009316 0.00111 0.002024 0.392 0.4929 0.004731 0.006489 0.01247 8.257e-06 0.3243 0.006508 0.002922 0.01453 0.001614 0.002839 0.01032 0.006573 0.000535 0.02482 0.004641 0.001191 1.107e-05 0.008832 0.003492 0.345 0.5679 4.636e-06 0.01034 0.002101 0.001614 0.0002864 0.04437 0.003676 0.02975 0.01822 0.6563 8.393e-06 0.001138 0.0001763 0.001883 0.002306 0.002793 0.00097 0.0003279 0.01491 0.01326 0.3766 0.0002803 0.003866 0.5871 0.5655 0.002438 0.006262 0.4679 0.5686 0.001898 0.002164 0.004032 0.0001651 0.5999 0.006046 0.004732 0.004982 0.08083 3.29e-05 0.004527 1.892e-05 0.00168 0.0006698 0.0003015 0.01566 0.06862 0.1085 0.02008 0.003451 0.1523 0.0002086 4.515e-05 0.0009907 0.0008553 0.07686 0.006116 0.4189 0.007827 0.001343 9.072e-06 0.0002053 0.3959 0.01438 0.00622 0.03435 0.05439 9.67e-06 0.0002077 0.0002523 0.001625 0.007146 0.0002247 1.391e-05 0.002053 0.09679 0.002469 4.097e-06 0.0005535 0.0004275 0.0002004 0.003314 0.02778 0.001435 0.05673 3.253e-05 0.02795 0.001272 0.02133 0.0007684 0.001622 0.01704 0.01371 0.02001 0.002636 1.218e-05 0.1542 0.0007699 0.03542 0.5822 0.4269 0.0487 0.000699 0.002837 0.4715 0.00121 0.006988 0.001655 0.00041 0.001523 9.983e-05 0.0005259 3.841e-05 0.01302 0.1554 0.001586 0.01596 0.005022 0.0373 0.0003317 0.0006899 0.001671 0.05861 0.003155 0.0002704 0.004612 0.5549 0.02418 0.001432 0.0005735 0.0001485 0.03049 0.599 0.002463 0.006442 0.001101 0.01833 0.5705 0.0001266 8.792e-06 0.001881 0.0009492 0.0009153 0.007117 5.21e-06 0.01982 0.004498 0.003313 0.0001557 0.0012 3.69e-06 0.0077 0.005794 0.000292 0.02589 0.004597 3.961e-05 0.0003491 0.001277 0.00516 0.0005092 0.0008069 0.002034 0.01126 0.5793 0.409 2.879e-05 0.0005773 0.03787 0.02282 0.0002704 0.002171 0.00114 0.009043 0.04039 0.0008758 0.00472 0.004622 0.006116 0.004107 0.005274 0.0003087 0.005504 2.02e-05 7.771e-05 0.0003274 1.36e-05 0.002579 0.004861 0.5782 0.6678 0.3984 6.164e-05 0.002275 0.002145 0.001054 0.5116 0.5834 1.066e-05 0.001232 0.5701 0.001069 0.0009352 0.0003002 0.0004636 2.913e-05 0.4952 0.0005572 1.604e-05 0.0004847 0.3353 0.06991 0.0001098 0.131 0.3465 1.803e-05 0.4419 0.06218 0.006834 0.001672 0.4177 0.567 0.1572 0.002852 0.0006795 0.002403 0.003196 5.37e-06 0.07768 0.005848 0.005112 6.816e-05 0.0006458 0.00971 0.01189 0.0001486 1.053e-05 0.327 0.1957 8.738e-06 0.001072 0.0004642 0.005047 0.02067 0.0002327 0.003822 0.541 0.00197 7.634e-06 1.176e-05 0.0001817 0.0001189 0.07082 0.006521 0.002923 0.001175 0.006384 0.0076 0.004922 5.232e-05 0.0002065 0.004646 0.04219 0.002546 0.002235 0.04525 4.785e-06 2.356e-05 0.007908 0.5536 3.823e-05 0.6032 6.327e-05 0.01178 1.549e-05 0.001823 0.0001627 7.801e-05 0.5246 0.007489 0.01906 0.004792 0.01638 0.003298 0.3961 0.004352 0.00852 3.792e-05 0.0006128 1.574e-05 0.4483 0.4329 0.001402 0.07374 0.009317 0.005294 6.761e-05 0.3202 0.0003554 0.003739 0.000932 0.0002731 2.134e-05 0.003032 0.007548 6.111e-05 0.0005001 7.185e-06 0.0004232 0.4979 0.09238 0.0003282 0.5708 0.01197 0.006236 0.004466 0.004853 4.195e-05 0.5648 0.2311 0.03358 0.6439 0.0002683 0.0053 0.001204 0.007014 0.0034 0.02435 0.001359 0.008843 0.003607 0.00733 0.004333 0.003008 0.01699 0.3661 0.002627 0.0005078 0.001728 1.029e-05 0.01412 0.001659 7.554e-06 0.05629 0.0003626 0.0003631 0.02078 0.6185 0.002031 0.0004345 0.01563 0.5322 0.004842 0.003335 0.0001744 0.01283 0.4403 0.5694 0.5655 0.0005778 0.005046 0.00379 0.00436 0.008935 0.0008822 0.02443 0.000255 3.532e-05 0.4121 0.4281 0.6198 1.065e-05 0.000549 0.02013 0.1236 8.945e-05 0.01176 0.5681 0.6125 0.5632 0.0006577 0.005986 0.06102 0.001838 0.0005465 0.004249 0.01461 8.084e-05 0.0002249 0.0001197 0.003896 0.01543 0.0008843 1.357e-05 0.01154 0.3016 0.007949 0.01469 0.02185 8.825e-05 0.001725 0.0004704 0.003333 0.0002557 0.001678 0.0014 7.441e-05 0.00152 0.05525 0.01854 0.5394 0.002844 0.4023 0.006299 0.5033 0.002471 1.443e-05 0.0004904 5.005e-06 0.01442 0.3634 0.01794 2.725e-05 0.0004835 0.4602 0.0003388 0.5705 0.008104 4.836e-05 0.4777 0.00955 0.001202 0.003211 8.204e-06 0.00609 0.0256 0.01072 0.008572 0.01389 0.003068 0.0001024 0.0005927 0.5818 0.09189 1.1e-05 0.4823 0.01844 0.0002185 0.0004683 0.007132 1.238e-05 0.00138 0.001832 0.0005429 0.001796 0.002992 0.01524 0.6059 0.001069 0.0009105 0.03071 0.009422 0.0002316 0.007602 0.6455 0.001479 0.002039 0.1502 0.006072 3.144e-06 0.0004857 0.000737 0.184 0.002579 0.0001638 0.006382 9.778e-05 0.001309 0.0006988 7.646e-06 0.0007887 0.0002496 0.001116 0.004959 0.06746 0.5286 0.6315 0.001945 0.002079 0.02083 0.001659 0.004799 0.00659 2.405e-05 9.715e-06 0.000416 0.02063 0.005118 0.01225 0.0003945 0.0007267 7.207e-05 0.001464 0.03083 0.5746 0.0003084 0.02378 0.001741 0.002066 0.001073 0.0002913 0.002598 0.01529 0.4882 0.001125 0.007138 0.005371 0.02503 0.003455 3.614e-05 0.5752 1.14e-05 0.00252 0.001099 0.02294 0.0179 0.1027 1.054e-05 0.03626 0.04711 0.000277 0.00562 0.0006028 0.5719 7.435e-05 0.003361 0.00286 0.006998 0.01462 0.5047 0.0009773 0.0001825 8.847e-06 0.004121 0.0001033 0.003587 0.5897 0.0006505 0.5267 0.002438 0.0005563 6.578e-05 0.1843 9.032e-05 0.009951 0.5711 1.276e-05 0.001431 0.5503 0.003188 0.002619 0.0001696 0.5715 0.004069 0.00178 0.001742 0.0009968 0.002609 0.005411 0.009258 0.0002004 0.1841 0.002903 0.02275 0.006096 0.0001881 0.0003099 0.0005942 4.691e-06 5.093e-05 0.1668 0.3479 5.396e-05 0.0001728 0.0004254 0.01359 0.5819 0.004715 0.0003564 0.01197 0.5668 0.001732 0.3841 3.706e-05 0.01397 0.01196 5.163e-05 0.002301 0.0009002 0.01307 0.0006065 0.5707 0.001263 0.1754 0.002181 0.02231 0.0006299 0.02402 0.000116 0.006671 0.002543 0.4474 0.001353 0.006875 0.0004139 0.01425 0.0003754 0.1544 0.00601 0.0005341 1.76e-05 0.4835 0.003185 0.001875 0.01043 0.001065 0.3699 0.6428 0.005461 0.005608 0.4258 0.0006101 0.007131 0.00765 0.0002271 0.001802 0.05516 0.0001352 0.001205 0.001167 0.004118 0.02053 0.0003403 0.3297 0.002602 0.0006482 0.002928 0.5295 2.014e-05 7.082e-05 0.003107 0.5706 0.008277 0.3976 0.4294 0.003627 0.002033 0.005875 4.982e-06 0.01797 0.0001093 3.396e-05 0.0001715 0.3187 0.0003455 0.005856 0.007273 0.01148 0.5639 0.0006014 0.0004835 0.002912 0.0003541 0.002296 6.374e-05 9.869e-06 0.003074 1.255e-05 0.0003886 0.5538 0.002048 0.004392 0.1143 6.166e-05 0.007399 0.000997 0.0004543 0.003466 0.002093 0.0001992 0.0002786 0.0002793 1.287e-05 0.01629 5.535e-06 0.0009837 0.001959 7.186e-05 0.5825 0.0001292 7.014e-05 0.008284 9.574e-06 0.0001622 0.03352 0.0009275 0.5918 0.3716 0.003097 0.1023 0.004997 0.0005857 0.01244 6.846e-06 0.4843 0.003332 0.001895 0.09811 0.3385 0.08295 0.003108 0.09192 0.0001214 0.003836 0.03531 0.03534 8.891e-05 3.984e-05 0.0392 0.000138 0.002605 0.3533 0.5559 0.003656 0.004157 9.537e-05 0.0005689 0.00435 0.4345 0.000644 0.006003 0.01802 0.0004405 0.002201 0.0001971 4.242e-06 0.006805 0.0001414 0.5246 0.02304 0.004731 0.005462 0.0003504 0.005899 0.6006 0.0005638 0.00107 0.0002655 0.01429 0.0087 0.0006853 0.005056 0.0004461 0.00925 1.102e-05 0.0006417 0.0002843 0.001108 0.4503 0.0479 0.02644 0.0001941 0.5733 0.01469 0.0004356 0.0005324 0.1689 0.2914 0.01568 0.571 0.4478 0.02608 0.0008049 0.00446 0.01119 0.0005326 0.01669 0.5717 0.003251 0.0002896 0.6181 0.618 0.585 0.1399 0.001607 9.244e-05 0.3 6.008e-06 0.0005171 0.002772 0.007288 0.004309 0.0006939 1.639e-05 6.592e-06 0.0006273 0.0162 0.02704 0.06472 0.0272 0.5757 0.2355 1.92e-05 0.4714 0.3589 1.68e-05 0.008383 0.007895 0.03132 1.444e-05 0.01118 0.0006806 0.007316 0.5756 0.5296 0.006562 0.003633 0.0371 0.001407 0.4106 0.5647 0.001823 0.0008819 0.001989 2.067e-06 0.6453 0.619 0.6189 1.043e-05 1.467e-05 0.007345 0.00115 1.889e-05 0.2198 1.075e-05 0.001151 0.001778 0.0001916 0.004255 0.001553 0.02791 0.002859 0.000302 0.000106 9.627e-06 0.003696 0.001823 0.0003517 0.5853 0.0004014 0.007313 0.000107 0.005542 0.002291 0.5493 4.703e-05 0.004142 0.00133 0.005129 0.02502 0.2993 0.00122 0.4716 0.5943 0.0007449 0.004087 0.008416 0.41 0.5787 0.001394 0.0007112 0.006795 0.003011 0.002358 1.93e-05 0.4494 0.09447 0.002148 0.00196 0.5146 0.002014 0.05729 0.007902 0.002629 0.003861 0.2651 4.424e-05 0.0001293 0.03246 8.253e-06 0.007249 0.0001258 0.01011 0.0009071 0.0001086 0.002629 0.5728 0.0004159 1.826e-05 0.02512 0.01177 0.00362 0.0009529 0.004249 0.002354 0.002355 0.4384 0.007645 0.001546 7.972e-06 0.000844 0.5827 0.01858 0.001314 0.00541 1.548e-08 1.86e-05 0.001003 0.01109 0.5525 0.3522 0.5708 0.01346 5.589e-05 0.01635 0.008775 0.00467 0.1725 0.0007844 0.002717 0.01095 0.4115 0.001292 0.001601 0.0001991 8.615e-05 0.0006993 0.001956 0.0003604 0.02998 0.021 0.0007135 0.01154 0.0004451 0.05098 0.0005454 0.005999 8.379e-05 0.0004961 1.916e-05 0.005052 0.001315 0.002313 5.696e-05 0.0003541 0.0002207 0.08493 2.899e-06 0.003406 0.5477 0.01251 0.3774 0.1283 0.01328 0.001273 0.006919 0.002333 0.0002444 0.001973 0.002629 3.77e-05 0.0002748 0.0002495 0.5401 0.377 0.0007999 0.3892 0.3893 0.00458 0.3417 0.004545 1.678e-05 0.3383 0.002039 0.03381 0.001425 0.1413 0.000205 0.00856 0.001102 0.007894 0.004027 0.4981 0.0005904 0.003416 0.0001137 0.000617 0.002085 0.0002233 2.15e-05 0.0001846 0.01115 0.408 8.077e-06 0.00268 0.3294 0.3294 0.5641 0.1013 0.000578 0.3287 0.006325 0.002119 0.5625 0.05092 7.426e-05 0.004536 0.001308 0.0123 0.5165 0.0008018 0.0004154 0.0002622 5.073e-05 0.00575 0.0001265 0.001139 0.0008836 8.075e-06 0.008848 0.0116 0.0002279 0.001574 0.0007164 0.001 1.934e-05 0.005015 0.008875 6.556e-06 0.02897 0.05495 0.001546 0.4088 0.001771 0.0001823 0.000838 0.0001413 8.365e-05 9.759e-06 0.0005216 0.001058 0.002099 0.004903 0.6341 0.3975 0.0004839 0.04674 7.16e-05 0.001249 0.005604 0.05851 0.02621 7.516e-05 0.002199 0.0003517 0.007057 0.005279 8.956e-06 0.5839 0.006315 0.002343 0.004737 0.00055 0.009485 5.64e-06 0.1202 0.007144 3.656e-06 0.5469 0.0009338 0.0005809 0.0002123 0.02718 0.3924 0.005348 0.3105 5.289e-05 0.00417 0.0009603 0.2675 0.2678 0.4468 0.5603 0.0005609 0.006925 0.5201 0.00742 0.0009897 0.000686 0.5826 0.001419 0.5696 0.0006247 0.02512 0.01824 0.01032 0.0002125 0.0008952 0.0901 0.007314 0.0002002 7.867e-06 0.02522 0.001918 0.0006339 0.0004903 5.146e-06 0.001581 0.5669 4.477e-05 0.0004318 0.5659 0.01879 0.1783 0.001151 0.01339 0.01207 0.001306 0.3615 1.358e-05 0.0006756 0.3855 1.94e-05 0.0001309 0.2926 1.492e-05 0.4296 0.6472 0.000457 0.04096 0.01417 0.4343 0.04826 0.5634 0.006066 0.006854 0.004154 0.0002279 0.001008 0.08671 0.002452 8.591e-05 0.01017 0.008196 0.002328 0.003345 0.009801 0.0001258 5.998e-06 0.002621 9.278e-06 0.001264 0.00025 0.003481 0.005245 0.004561 0.0006153 0.0003077 0.002869 0.000499 8.165e-05 0.00165 6.019e-05 0.003804 0.0008411 0.2878 0.2879 9.637e-06 0.0004644 0.5339 0.001631 0.0003168 0.01468 0.4128 0.0008254 0.5418 0.0001736 0.001758 0.004897 0.5023 0.0002088 0.3414 0.004625 0.008356 0.0007056 0.2607 0.02254 0.001995 0.000192 0.5636 0.005683 0.4035 0.009734 0.002277 3.849e-06 6.304e-05 0.0003218 0.0001237 0.0003681 0.0003927 0.06589 0.000467 0.003194 0.0007694 0.1109 0.0001168 0.002587 0.001582 0.01311 1.747e-05 0.0002636 0.009212 0.00076 0.1214 0.002408 0.001057 0.01937 0.585 0.007411 6.37e-05 0.015 0.0004331 0.005842 4.759e-05 0.0001263 0.003323 0.000433 0.00314 0.0007773 1.847e-05 9.668e-06 0.0103 0.0002441 0.003856 0.006562 7.385e-05 0.004473 0.0003421 0.0008962 0.5146 0.00867 0.5617 0.0178 0.00974 0.007048 0.001605 0.001386 0.0001185 0.01122 0.000957 0.01624 0.04975 0.003093 0.1212 0.5949 0.3789 0.007223 5.386e-05 0.1452 0.002986 0.003931 0.0001042 0.5767 0.008023 4.45e-06 0.002303 0.008584 0.003428 0.409 0.03243 0.007707 0.0003394 0.004636 0.003115 0.005345 3.711e-06 0.2602 0.5887 0.007816 0.01605 0.07558 0.0002299 0.0008721 0.0001596 0.5738 0.0004915 0.2243 0.6446 0.000795 0.00173 0.002825 0.0008438 0.2298 0.001745 0.002616 4.624e-06 0.0001664 0.601 0.5436 0.2914 0.2928 0.001365 0.1812 1.928e-06 0.000353 0.001883 9.78e-05 0.4103 0.007067 8.753e-06 0.02008 2.063e-05 0.005359 4.99e-05 0.001118 0.001263 0.003593 0.001334 0.0005672 0.0007204 0.0031 0.002461 0.00169 0.001211 7.857e-05 0.004385 0.001689 9.423e-06 0.01106 0.001317 0.01087 0.05865 0.01125 8.566e-05 0.001304 0.008767 0.02339 0.0005356 0.008989 2.351e-05 0.02063 0.000757 0.6465 0.03239 0.004726 0.00556 0.3485 0.006649 0.0008217 0.01064 0.009806 0.01705 0.0007157 0.004804 8.474e-06 0.004815 0.5857 0.001607 0.003066 0.0004182 0.5893 0.594 0.01239 0.6322 0.0003491 2.632e-06 4.303e-05 0.001144 0.0003509 9.769e-05 0.00656 4.44e-05 0.0004812 5.926e-05 0.001073 0.00109 0.00434 7.858e-05 0.009115 0.003452 0.005433 0.04071 0.0003317 0.6134 0.004518 0.001733 0.008834 0.0005266 0.0001036 0.01174 0.007714 0.0008856 0.1022 0.5654 0.0007021 0.01727 8.657e-06 0.005369 0.005565 0.0006086 0.008641 0.008768 0.003095 5.179e-06 0.0005481 0.006312 0.1264 0.006154 0.006965 0.00462 0.2025 0.00765 0.02919 0.0001291 0.000674 0.005777 0.0004553 0.0007494 1.408e-05 4.065e-07 0.2195 0.002623 0.0272 1.841e-05 0.02893 0.0006676 0.004405 0.01057 0.2658 0.0002663 0.06195 1.074e-07 1.196e-05 0.5614 7.174e-06 0.01805 0.0001371 0.4219 0.001203 0.01409 7.432e-06 0.003494 0.5426 1.92e-07 0.03974 0.001035 0.5631 1.46e-05 0.1592 0.0008185 0.00188 0.000833 0.001031 0.000805 0.001135 0.006744 0.0002249 0.002796 2.883e-05 0.001703 1.255e-05 0.006676 7.548e-06 0.5241 0.0007941 0.2328 0.0004281 0.6388 0.0007147 2.679e-06 0.001164 0.0005356 0.0008391 0.0002985 0.003873 7.587e-05 0.02002 0.01301 0.0007686 0.00972 0.0001018 0.004424 0.0004867 0.001026 0.4105 0.2755 0.001875 0.00918 0.6454 0.000333 0.0004639 0.5667 0.5447 0.03081 0.03099 4.2e-05 0.01224 0.000304 0.5101 0.01039 0.0001679 6.844e-05 0.007249 0.4551 0.0005605 0.004308 0.001158 0.5849 0.5957 0.6117 0.4711 0.002061 3.911e-05 0.01259 0.1068 0.01677 0.0007428 0.03186 0.0004411 0.0004063 5.67e-05 0.5641 0.0008777 7.427e-05 3.085e-06 5.276e-05 0.0004063 0.000262 0.0002101 0.01101 0.007184 0.001621 0.001039 0.000225 3.676e-05 0.5307 0.008432 0.01733 0.01709 0.03292 0.0008679 6.939e-06 0.0007592 0.002817 0.007007 0.002923 0.0001836 0.0002146 0.5611 0.0001954 0.6281 0.0005127 2.56e-05 0.002166 0.01076 0.3209 0.4455 0.5694 3.158e-05 0.005039 3.93e-05 0.0007735 1.37e-05 0.000366 0.03065 0.0003548 0.002821 0.06493 0.01952 2.456e-05 1.195e-05 3.138e-05 0.0005411 0.0002562 0.0002116 1.553e-05 5.085e-05 0.008236 1.878e-05 0.0004903 0.0008915 0.000185 0.0006812 0.0026 0.0002089 0.5838 8.686e-05 1.484e-05 0.003012 0.01329 0.04134 0.02355 2.268e-05 0.0002497 0.0001444 7.99e-05 2.309e-05 0.004724 0.3388 0.005639 0.0003898 0.006375 0.008044 0.1825 0.0005867 0.002649 0.0008433 0.4263 0.0002039 0.001767 3.035e-06 0.5304 0.006463 0.01179 0.0004987 0.4868 0.01703 0.0002425 0.0376 0.0008495 0.004522 0.0654 0.2878 0.0002658 0.000332 0.006283 0.007761 6.793e-06 0.01296 0.0004325 0.02708 0.5513 2.136e-05 0.008017 0.001661 5.159e-05 0.001189 9.828e-06 6.196e-05 0.5741 0.002581 0.0002574 0.0008992 0.000123 0.01238 0.003086 8.824e-05 0.003048 0.008209 0.02316 0.004205 0.001669 7.702e-05 0.001449 0.0007526 0.006722 0.4085 8.972e-05 0.1479 0.505 0.05849 1.141e-05 7.708e-05 0.5901 0.001409 9.905e-06 0.004417 0.0003011 0.2805 8.778e-06 0.007231 0.002752 0.4998 0.1066 0.001323 0.006693 0.006142 0.3795 0.004093 0.001533 0.001029 1.974e-05 5.568e-05 0.6383 0.5998 0.0007622 0.4204 0.5743 0.007134 0.03614 0.57 0.4267 0.01348 0.001033 0.0005004 0.1488 0.004061 2.475e-05 0.01678 0.003116 0.0034 0.5367 0.000251 0.4442 0.4544 0.5152 0.001445 0.001895 0.0009138 0.003015 0.0006989 0.0001247 0.1093 0.002032 0.01056 0.3579 1.374e-05 0.0119 0.001629 0.002148 0.04397 0.005646 0.5252 0.3888 0.005063 0.001569 6.796e-05 0.3005 0.00965 0.0008116 0.0001111 0.5842 0.005281 0.0002804 0.0007519 0.001936 0.001074 0.005293 0.0003812 0.0001271 4.242e-06 0.000341 0.0478 0.008455 0.4147 0.005076 0.003263 6.68e-05 0.003518 0.008224 0.001608 0.004904 0.01351 0.01059 1.105e-05 1.253e-05 0.001401 2.15e-05 2.143e-05 6.554e-06 0.1109 0.4679 0.003304 0.0002996 0.5639 4.659e-05 0.0005738 0.004004 0.001894 0.005178 9.943e-06 0.0009711 2.434e-05 0.001761 0.0344 0.009913 0.0005962 0.0001391 1.813e-05 9.351e-06 4.983e-05 0.0142 0.00473 0.004531 0.007201 5.704e-05 0.5622 0.0001218 0.01116 0.03202 6.326e-05 0.007471 0.06845 0.004883 0.0004066 1.308e-06 0.009601 8.69e-05 0.6014 0.001928 0.089 0.01481 0.02655 0.000142 4.576e-06 0.4152 0.0005388 0.002268 0.07349 0.004563 0.000586 0.001217 0.0004437 0.001018 0.3359 0.002203 0.001496 0.004225 0.07203 0.2776 0.001315 0.0111 0.0004469 0.0002672 0.0008044 0.00277 4.715e-06 0.001395 0.002521 0.001016 0.006565 0.0129 0.4279 6.775e-05 0.07485 0.004237 0.00923 0.002512 0.5692 0.003176 0.0007647 0.00293 0.0004299 0.001173 0.0007491 0.5637 0.001005 0.004393 0.001506 6.218e-05 0.001763 0.01241 1.676e-05 0.0001611 0.1467 0.007799 0.0261 0.588 0.008119 0.006186 0.002498 0.2976 0.04284 1.95e-05 0.03032 0.5788 0.4188 0.5731 0.001112 7.643e-05 0.0001567 0.0001129 0.008936 0.004074 8.373e-06 0.0933 0.002812 0.004597 0.002472 0.0007499 0.0002578 0.5803 0.009423 0.5746 0.2887 0.001926 0.5765 0.5312 0.009623 0.0008623 0.001099 0.001761 0.5913 0.01283 0.324 0.5693 0.08142 0.0009541 2.535e-06 0.01688 0.4135 0.0008106 6.847e-05 0.004696 0.022 4.974e-06 0.0008338 0.5605 0.5869 0.001378 0.0003055 0.001916 0.001922 0.006691 0.009941 0.006022 0.02837 0.01348 0.002322 0.0002052 0.02711 0.07465 7.073e-05 0.003686 0.000511 0.002067 0.0047 0.00147 0.001047 0.001182 0.1882 0.0122 0.006911 0.000464 8.965e-05 0.004667 7.477e-07 0.0005746 0.1821 0.00381 0.005868 0.0002442 0.008275 0.00315 0.002538 0.001896 0.0001182 0.0001596 3.346e-06 2.684e-05 0.008169 0.01187 0.004345 0.01521 0.00226 0.05528 0.006987 0.05062 5.55e-06 0.0002189 0.1117 0.004115 0.003477 0.0005004 0.003777 0.5689 0.02962 0.001721 0.001591 0.0154 0.0001942 0.04521 3.637e-05 0.02482 0.0003059 0.3763 0.006189 0.5739 0.01068 0.1511 0.002845 9.403e-06 0.0001827 0.001564 0.003399 0.0001243 0.0004391 0.0005677 0.002793 0.003718 0.003069 0.3076 0.01542 0.00043 0.000917 0.0005062 0.001748 0.009471 0.009246 1.334e-05 0.0003529 0.02577 0.00737 0.0001111 0.0004227 0.3862 0.3862 0.004085 0.5872 0.001342 0.439 0.002312 0.001867 0.007249 0.007751 0.001773 0.06911 0.0327 0.001764 0.005263 0.01568 0.0001118 0.009091 0.0031 0.0005636 0.01554 0.06754 9.659e-05 0.02461 0.004285 0.0007082 0.0004425 0.4634 0.001492 0.1388 0.002355 0.2001 0.003719 0.02936 5.981e-05 0.001483 0.01832 0.02235 0.003652 0.0004896 0.003913 0.002914 0.002112 0.3046 0.04133 0.0001502 0.2492 0.0003996 0.003415 0.008147 0.0451 0.005072 0.5003 0.5764 0.0006443 0.001623 0.3727 0.007107 0.03077 7.484e-05 0.0003375 0.0005873 0.002985 0.006686 0.0002452 0.002398 0.007998 1.868e-05 0.0007002 0.002048 0.01026 0.001347 0.005629 0.0003898 0.3031 0.002526 0.004794 0.03303 0.3588 0.03985 5.701e-05 0.001682 0.003335 0.0002126 0.5719 0.6175 0.002824 0.004336 0.001109 0.06125 0.01551 0.0005238 1.606e-05 0.002001 0.61 9.269e-06 0.0001369 0.005858 0.01054 0.001583 1.155e-05 0.001648 0.00371 0.001044 0.001637 0.002197 0.002218 0.001286 0.03102 0.01073 0.5887 0.0133 4.579e-06 0.4117 0.006899 0.02222 0.0006497 5.77e-05 0.6112 0.4043 0.0007924 0.0004855 0.01524 0.003342 0.001632 0.009578 9.392e-05 8.956e-08 0.0286 0.5623 0.0006804 0.0004742 3.364e-05 0.0007206 0.1561 0.3629 0.01675 0.003954 2.786e-05 0.0003912 0.009037 4.469e-06 1.235e-05 8.735e-05 0.001195 0.0002705 0.001679 0.3358 0.006837 0.001861 0.0005695 0.0004526 0.00057 0.001706 1.859e-05 0.0003094 0.0004987 9.956e-05 9.039e-05 0.001757 0.001917 0.01382 0.0002633 0.2226 0.001027 0.5989 3.76e-06 0.007823 0.002306 0.04076 0.002081 0.004223 0.0004492 0.5359 0.001835 0.2806 3.56e-06 0.001897 6.203e-05 1.446e-05 0.00656 0.006174 0.0002188 0.002077 0.0001814 0.03432 0.00235 0.05469 0.01613 0.0077 0.0008451 0.0004181 0.0002887 0.001886 0.006621 0.007751 0.001307 0.008015 0.03419 0.005756 0.009881 0.004232 0.03334 0.01055 0.001086 0.009767 0.001239 0.05946 0.0003137 0.5594 0.002154 0.3244 0.0008502 0.4162 0.1178 0.003929 0.008954 0.002687 0.0009427 0.0009346 0.03423 0.3783 0.0002517 0.00528 0.001144 9.034e-06 0.1387 0.0006678 0.4559 0.001844 0.002284 0.01065 0.05131 0.003277 0.0008576 0.2902 0.002453 0.002316 0.01185 0.01671 0.2256 0.6133 0.0006615 0.0003442 7.834e-05 0.5524 8.681e-05 0.000101 0.001362 0.002638 0.01269 0.0008402 0.004848 0.01635 0.02683 0.004342 0.0004517 0.001835 0.0003911 0.001633 0.0004553 0.001875 0.6205 0.6205 2.78e-06 2.984e-06 0.0009221 0.1354 0.4193 0.4193 0.001226 0.004224 0.001581 0.4138 0.00108 0.002355 1.289e-05 0.0005662 0.01119 0.3994 0.006952 0.4472 0.00529 0.0001052 0.003473 0.5711 0.381 0.004604 2.183e-05 0.5816 0.003355 0.008209 2.117e-05 0.3461 0.0009716 0.05214 1.769e-05 0.0007215 0.09877 0.006081 0.009634 0.00459 0.4216 0.3471 0.0002739 9.994e-06 0.579 0.002041 0.465 0.007839 0.003759 0.0005652 0.002215 0.5095 0.0002518 0.005041 0.5174 0.004844 0.0001667 0.001475 0.004682 1.493e-05 0.001049 0.01468 0.001642 0.008184 0.4025 1.048e-05 0.0009017 0.006755 0.001341 0.0003193 0.002375 0.0001141 0.0008757 0.0009975 0.0008603 0.004881 0.0001579 0.0003098 0.0001104 0.4937 0.3549 0.00628 0.0006137 0.008911 0.000751 0.002688 0.01427 0.001177 0.0207 0.004436 3.592e-05 0.481 0.009572 0.0008099 0.0001539 1.128e-05 0.001581 0.0009276 1.067e-05 0.001003 0.0002552 0.0003161 0.001618 0.001629 0.0007117 0.005007 0.001823 0.00493 0.04548 0.01158 0.608 0.002706 0.0005275 0.0009988 0.4191 0.007964 0.04295 0.006243 2.44e-05 0.00029 0.001469 0.07855 0.0002267 0.001958 0.002505 2.168e-05 0.004735 0.4333 0.0002829 0.0009356 0.2784 0.004095 0.001576 1.566e-05 0.5739 0.08644 0.005281 0.00282 0.003037 0.1198 0.003018 0.6085 0.006545 0.002214 0.3926 0.005654 0.5712 0.3537 0.4129 0.5707 0.4893 0.5067 0.005863 0.1023 0.0007132 0.03269 0.02399 0.001771 0.0005095 0.2305 0.002636 7.294e-05 0.001408 0.02043 0.0008465 0.4176 0.0007515 1.401e-05 0.003545 0.0007619 0.04027 1.541e-05 0.01418 0.001109 0.142 0.0002341 0.007204 0.003794 0.0005519 0.009119 0.001845 0.02849 0.01223 0.553 0.007561 0.3614 0.3762 0.001985 0.002592 0.02444 0.0009415 0.0003009 0.0002767 0.0004446 0.003435 7.547e-06 0.001039 9.474e-05 0.01342 0.00843 0.0136 0.3693 0.0009975 0.04725 0.00819 0.0003428 0.002424 0.003377 0.008707 0.001024 0.001937 0.00218 0.0001978 0.4433 0.000159 0.39 0.0002875 3.726e-05 0.008212 0.001353 0.6337 0.05465 0.00338 0.0005873 0.000841 1.167e-05 0.0001319 0.0009165 0.0002014 0.5704 0.0002097 0.1867 0.5629 2.432e-05 0.006851 0.5206 0.005975 0.1448 4.995e-05 0.0004998 0.002219 0.0007875 0.5904 0.01023 0.008361 0.003464 9.737e-06 0.4942 0.00223 0.2696 0.002351 0.005529 0.007588 0.001069 0.0004854 0.6568 1.602e-05 0.02644 0.01589 0.01669 0.4586 0.001345 1.006e-05 0.01259 0.002366 0.008284 0.01548 0.0005457 0.003939 0.004526 0.001517 0.002383 0.0009095 0.665 0.00346 0.02786 0.1218 0.001571 4.735e-05 0.0002159 0.0004234 0.001847 0.3953 0.005093 0.001332 0.002692 0.001076 0.00256 0.0002441 1.035e-05 0.5407 0.5839 0.001935 0.0004745 0.004059 0.01291 0.0005358 0.002502 0.006087 0.003357 0.01029 0.0001531 0.0009945 0.00553 0.001461 0.0007025 0.0005548 0.0004971 0.5693 0.5718 0.0001868 0.003393 0.0004106 0.004404 1.362e-05 0.05075 0.0006289 4.079e-08 0.04069 0.5652 0.08078 0.008893 0.001727 0.002273 0.0002699 0.002011 0.0238 0.1969 0.001409 0.004801 4.662e-05 0.008688 0.3502 0.000861 0.0005884 0.009303 0.6363 0.08901 0.001903 0.001934 0.000776 0.001851 0.01743 0.01488 0.002357 0.04731 0.007551 0.00167 0.4297 0.004402 0.4394 0.001675 0.01333 0.00375 0.01098 0.07554 0.5702 1.8e-05 0.0009479 0.0006583 4.174e-05 0.002768 0.01901 0.0002245 0.3072 0.01497 0.01057 0.5515 9.747e-05 0.0006857 0.005422 0.008969 0.0005783 0.004495 0.000851 0.001514 0.5683 0.002003 0.0004171 0.02085 0.0005648 0.0009778 0.01253 0.565 0.401 0.009252 0.599 0.01859 0.1269 0.01606 0.003568 0.3123 0.001361 1.3e-06 5.889e-05 0.5451 8.463e-05 0.3848 0.645 0.0329 0.000483 0.000718 0.0008951 0.0003405 0.0001448 5.531e-05 0.0002139 0.0006139 0.003308 0.01604 0.6019 0.0008432 0.0002234 0.004097 0.0001325 0.008884 0.000697 5.877e-05 0.009435 0.4683 6.594e-05 0.001259 0.0004216 0.5314 0.0002934 0.0005752 0.0001653 0.04687 0.3849 0.003323 0.002229 0.0008645 0.0005257 0.04423 0.5939 0.005428 0.0001755 0.03067 0.0006224 0.5627 0.02421 0.01807 0.007355 0.002066 0.003308 0.0147 0.2292 0.3579 0.003099 0.3274 0.605 0.001357 0.001044 1.134e-05 0.5725 0.05476 0.002788 0.01673 0.0001306 0.5726 0.0325 7.634e-05 0.418 0.01484 0.0007351 0.001997 0.0008539 0.03214 0.3253 0.4556 7.832e-07 0.001331 0.5583 0.01879 0.003277 5.457e-05 0.02848 0.001273 0.002464 0.01617 0.0008355 0.01117 0.005201 0.4156 0.002771 2.09e-05 0.001574 0.02419 0.3165 0.3218 0.007214 0.005234 0.0258 0.002025 0.2962 0.06504 0.0001207 0.664 0.002478 0.0005935 1.777e-05 4.869e-05 0.00788 0.007901 0.001892 0.00158 0.000582 0.003414 0.05493 1.467e-06 0.00121 0.02782 0.002797 2.231e-05 0.002641 1.059e-05 0.2345 0.00826 0.002646 0.0001201 0.002755 0.0002215 0.004212 0.0008724 0.005911 0.03078 0.00154 6.638e-05 5.439e-06 0.5658 0.0001166 0.0003938 0.02768 2.936e-05 0.008281 0.001413 0.001966 0.09648 1.657e-05 0.01429 0.006616 0.003733 0.005971 0.003172 0.003727 0.004156 0.05099 0.003958 0.01037 1.457e-05 0.006886 0.0006832 0.0005832 0.0005418 0.001618 0.0004981 0.0002868 0.5107 1.554e-05 0.0006614 0.001767 0.004138 0.01443 0.02534 0.001023 0.5669 0.0001177 0.005827 0.002937 0.004489 0.4549 0.005569 8.969e-06 6.97e-06 0.001205 0.01974 0.01807 0.0001395 0.006529 0.0007839 0.573 0.009397 0.0009014 3.919e-06 1.326e-05 0.002234 0.0137 0.007412 0.001253 0.1508 0.002914 0.0007693 0.0001808 0.5627 0.000405 0.04559 0.03039 5.892e-05 0.000273 0.002157 0.006096 0.006432 0.0134 0.3788 0.007194 0.5556 0.001719 0.003979 0.001963 0.0002279 0.001624 0.001447 0.05614 0.0001655 0.001554 4.8e-05 0.0003298 0.0002796 2.01e-05 7.194e-06 0.0001942 0.04235 0.0001396 0.0057 6.926e-05 9.31e-06 0.002627 0.0598 0.01103 0.008236 1.039e-05 0.0007304 9.342e-06 0.005211 0.01163 0.04149 3.017e-05 0.009122 0.004189 0.00494 0.0005053 0.008963 0.0008679 0.00593 7.114e-06 1.936e-05 0.0213 0.5896 0.0003012 0.002765 0.0008983 0.0111 0.3775 0.006329 0.00119 9.577e-05 0.03441 6.384e-05 0.664 0.0002088 0.0002658 0.005699 0.01604 0.0005516 0.001118 0.4058 8.625e-05 0.002176 1.504e-05 0.6108 0.0001335 0.0002528 0.0832 0.0002143 1.041e-05 0.04275 1.14e-05 0.001386 0.001927 0.001396 0.07504 0.001134 0.01165 2.597e-05 0.01812 0.0003424 0.01224 5.444e-05 0.02913 0.002917 9.982e-06 0.0004889 0.005115 0.00865 0.001017 0.006567 0.0003995 0.001953 0.2815 0.2809 0.0007174 0.3936 0.4242 1.261e-05 0.005871 0.001426 0.1317 0.002433 0.003049 6.646e-05 0.0004705 0.001531 0.003048 0.005102 0.5777 7.991e-05 0.0002357 0.5241 0.007023 0.02357 0.002385 4.468e-06 0.0002543 0.01139 0.002979 0.0007567 0.01351 0.003668 0.0132 0.02702 0.0006279 0.001207 0.007792 0.00895 0.04567 0.0001027 0.01225 0.5551 0.003772 0.5396 0.361 0.361 0.3794 0.0006824 0.001799 0.0006916 0.01861 0.001653 0.0008338 0.003313 0.3154 0.0001359 0.02253 0.02586 0.07306 1.732e-05 1.892e-05 0.0001055 0.001047 0.0279 0.000286 0.0001861 0.01151 4.384e-06 3.981e-05 0.343 0.001877 0.00235 0.0006921 0.00152 0.002135 0.06694 0.2827 0.1756 0.008681 0.01854 0.07258 0.4585 0.00392 0.005698 0.006645 0.0004944 0.000267 0.4046 0.4223 0.0009639 0.0003621 8.951e-05 7.594e-05 0.004853 5.576e-05 0.02693 0.6224 0.005334 0.01211 0.003718 9.323e-06 0.001828 0.009602 0.0003568 0.009788 0.002623 0.4139 0.0008474 3.441e-05 0.000261 0.00155 0.007466 0.01529 0.0006154 0.007861 7.102e-05 0.009676 0.108 0.0003574 0.001189 0.0001752 0.006282 6.916e-05 0.007792 0.000738 0.002326 0.0001893 0.006713 0.0007624 3.233e-05 1.121e-05 0.009673 0.5636 0.01408 0.0002512 0.00514 0.0001785 0.0001814 0.006867 0.02806 0.001776 0.002157 0.579 0.6292 0.0009961 0.5737 9.397e-06 0.0002338 0.4737 2.429e-06 0.01238 0.0002936 1.172e-07 6.368e-06 0.0002772 0.2621 1.249e-05 0.0001904 0.0002952 0.0002094 2.496e-05 0.001989 0.0001114 0.003312 0.001799 0.0006704 0.1667 0.5533 0.003062 0.00166 0.5403 0.01462 0.0006288 0.005149 0.002992 0.0005511 0.0002058 0.0008237 0.1392 9.812e-06 0.0001502 0.002982 0.0005688 0.0006404 0.002775 1.006e-05 0.004274 0.004199 0.002464 0.3791 0.004208 0.0009921 0.002064 0.0007095 0.001571 0.5646 3.236e-06 0.0006448 0.003653 0.01725 5.142e-05 0.001914 8.631e-05 0.0009486 8.439e-06 0.07527 0.4888 0.5688 0.002045 0.004303 0.2235 3.127e-05 0.001552 1.086e-05 0.000168 0.0008097 0.00783 0.001753 0.007474 0.006486 0.002088 0.0006284 0.002642 0.002388 0.3289 0.002137 0.003857 2.033e-05 0.0009123 0.3967 0.0221 0.0001673 0.001911 0.003612 0.6361 0.0005011 0.001147 0.00188 0.02342 0.001753 0.2967 0.003932 0.0004593 0.02419 0.3891 0.01824 0.01251 0.0004455 0.02523 0.001311 0.01089 0.04915 0.0006726 0.004816 0.0007965 0.0006531 4.651e-05 0.01097 0.001155 0.0002279 4.089e-06 0.003063 0.0002221 0.007555 0.00422 0.007152 0.003849 1.236e-05 0.5993 8.56e-06 0.5642 0.5436 0.264 0.0004072 0.0004794 0.0001109 0.0003234 0.0001387 0.4498 0.005064 0.0007734 0.004721 0.5749 0.0003607 0.01238 0.002495 7.688e-05 5.04e-06 0.007326 2.428e-08 0.0003724 0.02046 0.3371 0.003054 0.001289 0.0009426 0.006916 0.0002433 0.003193 0.004909 0.003221 0.4881 0.5744 0.00018 0.02051 0.001548 0.001783 0.00383 0.02553 0.002189 0.004474 0.2625 0.03441 9.049e-05 0.104 0.001376 7.473e-06 0.00248 0.0007312 0.001595 0.002705 0.2924 0.00398 0.0007176 0.0002023 9.352e-05 0.001617 0.006948 0.0001872 1.468e-05 0.01512 0.06286 0.00399 0.00703 0.007223 5.257e-06 0.0003307 6.374e-06 1.142e-05 0.6049 0.3602 0.5684 0.04073 0.001005 0.002075 0.00132 0.00617 0.00142 2.095e-05 0.0001402 0.571 0.002949 0.001823 0.1662 0.0004656 0.002974 0.01359 0.001229 0.01004 0.2387 0.007545 0.0006472 0.0009856 0.003502 0.003735 0.01725 0.005277 0.007704 0.008888 0.0004804 0.0002779 0.02295 0.002651 0.009174 0.02183 1.706e-05 0.005865 0.01337 0.003314 0.1101 0.01127 0.0008623 0.0008966 0.0009287 0.001144 0.004729 0.0009502 8.054e-05 0.004544 0.006226 0.5668 0.00908 0.003946 0.0009222 0.3516 0.0002963 0.004275 0.6441 0.0003702 0.2597 5.763e-06 0.004072 8.496e-06 0.003199 0.0009231 0.0008919 0.5779 0.002976 0.0001559 0.0004268 0.4083 0.5205 0.228 1.501e-05 0.1381 0.0005296 0.0004057 0.003102 0.004817 0.5716 0.06308 0.0002668 0.2717 0.1323 0.0004135 0.0007832 0.0004908 6.536e-06 0.0002808 0.003521 1.747e-05 0.0006525 0.06888 0.01933 0.0002319 0.02093 0.4122 0.0004896 0.0006373 0.001753 0.004585 0.3653 0.00917 0.001919 0.0001034 0.5557 0.001492 0.5207 0.008875 0.04216 0.006015 2.398e-06 0.03613 0.01821 0.06853 0.0002694 0.0007826 0.001181 0.0001342 0.004032 0.0004587 0.0152 0.02167 0.5684 0.0568 0.002842 0.001737 0.0002667 1.584e-07 2.539e-05 0.000261 0.0007437 0.01621 0.0002354 0.5725 0.0151 0.001075 0.0118 0.04783 0.4624 1.275e-05 0.004618 1.882e-05 0.006228 0.0001682 0.002762 0.003612 0.6094 0.4423 2.567e-05 0.001612 0.4891 0.01386 0.06042 0.005082 0.3568 0.02661 0.09731 0.003051 1.341e-05 0.0008925 0.002003 0.5771 0.001332 0.03541 0.0009823 6.795e-05 0.005076 0.001848 0.01529 1.433e-05 6.204e-05 0.0002406 0.001587 0.002264 0.000582 6.863e-05 0.008791 0.00218 0.003307 0.0004642 0.0002092 1.038e-05 0.0006191 6.045e-05 0.001395 0.004128 0.08364 0.0003511 0.01409 0.0002283 0.0002466 0.00227 0.06319 0.0004098 0.006387 0.005223 0.003521 0.01842 0.005485 0.004429 0.007279 2.343e-05 0.003121 3.694e-06 0.005786 6.673e-05 0.3708 0.0001457 0.5915 2.302e-05 0.003332 0.292 0.0004595 0.02152 0.001171 0.00395 0.001023 0.005179 0.001791 0.000531 0.002321 0.02935 0.001091 0.002471 1.166e-05 0.005248 0.00294 0.004039 0.0006498 0.000236 0.01227 0.006713 0.0002878 0.006976 3.525e-06 0.0001351 0.003889 0.001629 0.0002996 0.002846 1.967e-06 0.5841 5.018e-05 0.01428 0.001598 0.005645 0.008713 0.5756 0.0001062 0.003919 0.002689 0.001199 0.001569 0.002308 0.6654 0.08571 0.0001921 0.004925 0.06381 0.001275 0.06523 0.003394 1.391e-05 0.001527 0.0006854 0.0002402 0.5532 0.0002145 0.001244 7.058e-05 0.3877 0.0006618 0.02308 0.001267 0.001745 0.0268 0.4314 0.0008868 0.002454 0.004169 0.0003745 0.1635 0.004246 0.001794 0.009031 6.574e-05 0.0005613 2.731e-05 0.007343 0.08996 0.003284 0.01186 0.5788 0.007079 0.0001307 0.00149 0.06407 0.0145 0.002746 0.00216 0.001407 0.000463 2.78e-05 0.00336 0.01708 0.002049 0.0009167 0.002601 0.00173 0.0006275 0.005319 0.05316 0.04712 0.002347 0.1375 0.02296 0.09072 0.02128 5.328e-05 0.002596 0.5607 0.001672 0.5727 0.4812 0.004629 0.003887 0.006609 0.01192 0.0005624 0.0006845 0.0009273 1.906e-05 8.245e-05 0.0002074 1.228e-05 0.001494 0.1351 0.5096 0.07138 0.05546 0.02493 0.0002408 0.0008766 0.02159 0.0001288 0.006008 0.01736 0.01679 9.627e-05 5.651e-05 0.00237 0.0005634 0.004745 0.002071 0.02018 0.0753 0.005151 0.0002901 0.004451 0.4151 0.0002845 0.01469 0.2366 0.002959 4.726e-05 0.005261 0.0005614 0.00127 0.5544 0.003054 0.0005634 0.005912 0.01 0.007295 0.001384 0.0174 0.002697 0.527 0.0008521 0.0008004 0.1523 0.02969 0.0001716 3.953e-05 1.254e-05 0.002437 0.001075 0.004961 0.5642 0.002637 0.01063 0.0004653 0.01288 0.0002059 0.004815 0.0005631 0.5167 0.001052 0.008033 0.01287 0.002055 0.0009699 0.000503 0.0001497 0.0004347 0.02995 8.245e-06 0.003918 0.0003114 0.002138 0.001724 0.00197 0.007252 0.0006015 0.5497 0.004133 0.0001556 0.0003278 0.0008878 0.002791 0.008459 0.001511 0.001064 0.5091 0.5671 0.001462 0.01341 0.5774 0.0009845 0.003128 0.001489 0.1361 0.00293 0.01299 0.0004493 0.001575 0.01768 0.0003412 2.715e-05 0.01803 0.00197 0.003678 0.02117 0.4527 0.3137 2.475e-05 5.579e-06 0.3925 0.001818 0.0008232 0.0002085 0.5017 0.0003418 0.0007761 0.001203 0.003449 0.5684 0.3082 0.0433 0.01254 0.003221 6.013e-06 1.253e-05 0.002714 0.0005703 0.3134 0.6331 0.0009244 0.4867 7.935e-06 0.01892 0.0006765 0.006028 0.001854 2.581e-05 0.003183 0.001089 0.1615 0.0149 0.1261 0.003956 0.0003016 0.007856 0.5589 0.0007303 0.5801 0.003035 0.1504 4.931e-05 0.4584 0.0004808 0.001511 6.489e-05 0.003694 0.0007696 0.387 0.5694 0.02946 0.005 0.00798 0.003021 0.3682 0.572 0.004495 0.0003552 0.03562 0.0007274 1.825e-05 4.782e-05 0.003587 0.04661 1.096e-05 0.003475 0.0004288 0.0006609 0.009669 0.5737 0.5759 0.2805 0.008486 1.651e-05 0.0001067 0.5711 9.324e-05 0.001203 0.0166 0.003236 0.577 0.3028 0.0001808 0.001073 9.758e-05 0.5158 0.0002446 0.006145 0.004588 0.006139 0.0001153 0.004476 0.0006199 0.1539 0.003366 0.02427 0.003726 7.55e-06 0.002452 0.3415 0.3537 9.33e-06 0.0001573 0.00768 0.00515 0.0004024 0.0003221 2.295e-05 7.86e-06 9.996e-05 0.003106 0.0001145 0.0002692 0.002261 0.0001755 0.001267 0.006784 0.0674 0.0006723 0.4873 0.001595 0.0005846 8.864e-05 0.01635 0.01985 0.6194 5.594e-05 0.001418 0.0002861 0.0003177 0.001807 0.0001152 0.002689 0.01886 0.03453 0.003513 0.0001015 0.000301 0.001373 1.246e-05 1.76e-05 0.4712 0.008065 0.003012 0.004915 0.04872 0.0002787 0.5666 0.004416 0.0125 9.108e-05 0.00411 0.02384 0.009701 0.3839 0.001749 0.0001087 0.0003661 0.0001658 0.453 0.6665 7.518e-06 0.02864 0.001676 0.02253 0.001223 5.197e-06 0.0005697 0.5442 0.009884 0.5571 0.001703 0.00211 0.01259 6.743e-06 0.1118 0.004156 0.001482 8.617e-06 0.04753 0.0005816 0.001287 0.0005867 0.004931 0.001867 0.5709 0.5413 0.00472 0.01256 0.0005715 0.0002654 0.2699 0.002904 9.939e-06 0.4688 0.0003921 0.001727 0.01347 0.0005754 0.0002422 3.713e-08 0.001437 0.001803 0.003584 0.5723 0.01232 0.01398 0.01108 0.0003246 0.009917 0.352 9.607e-06 0.0007833 0.5645 0.001455 0.0009136 0.1114 0.002064 0.001702 0.007772 0.0008165 0.0001136 0.2388 0.002145 0.0001563 0.6056 0.645 0.6149 0.6006 0.03246 0.005465 0.000534 6.805e-06 0.0004639 0.5648 0.01121 0.05006 0.005818 0.006692 0.02031 0.0006365 0.006634 0.004412 0.03483 5.451e-05 6.011e-05 0.3789 4.259e-05 0.4856 0.0001381 0.0008325 0.001521 0.000427 0.005691 0.001118 0.3742 0.3636 0.3166 0.0002684 0.3731 5.923e-06 0.0008799 0.01081 0.3041 0.001799 0.0006509 0.00132 0.532 3.156e-05 0.007873 0.00199 0.003728 0.0001979 0.02797 0.0006207 0.001204 0.004365 1.451e-05 0.0001002 0.0007064 0.0109 7.076e-09 0.00216 0.01511 0.0005477 1.151e-05 0.0006811 0.0007706 0.00215 0.5302 0.0004144 0.003608 0.03247 0.3714 0.0009202 0.0001349 0.00032 0.01777 0.004853 0.1041 0.003067 0.0002247 0.4307 5.332e-05 0.002412 0.0004034 0.002206 0.0004326 0.0005728 1.036e-05 0.5758 0.0002267 0.0273 0.0207 0.0003886 8.801e-05 0.000536 0.04784 0.02037 0.007197 0.000161 0.5607 0.5533 0.006229 0.003439 0.00621 0.004611 0.5483 0.0004345 0.0185 0.000413 0.004924 0.1164 0.000145 0.003086 0.0002429 0.02627 0.007063 0.02974 0.5694 0.00261 0.01253 0.009847 0.0005559 0.002438 0.001488 0.004861 9.141e-06 8.926e-06 0.0001342 0.265 0.5892 0.08344 4.186e-06 0.02646 0.002776 0.01649 0.02867 0.00952 1.377e-06 0.001694 0.002383 0.328 0.5693 0.0002164 0.006406 0.000161 0.001456 0.0002115 0.00175 0.009596 0.0006061 0.6209 0.004063 0.002275 0.0006122 3.531e-06 4.174e-05 0.4723 0.013 0.378 0.00103 0.001435 0.413 0.003834 0.008528 0.003283 0.5707 0.6174 0.000427 9.07e-06 0.1948 0.5272 0.006701 0.5686 0.0003509 0.1368 1.736e-05 0.003638 0.0002042 0.00319 0.001416 0.0002638 0.002013 3.11e-06 0.004509 0.01943 1.132e-05 0.5884 0.004804 0.0002153 0.008802 0.003927 0.0007502 0.01874 0.005846 1.33e-05 5.219e-05 0.002506 0.003669 6.127e-06 0.00574 0.5592 1.987e-06 0.003442 0.001165 0.06739 8.31e-06 0.001011 0.01687 0.08517 0.002875 6.803e-05 7.052e-06 0.001461 0.0004071 0.04789 0.0004219 0.5685 0.0007784 0.5795 0.0002006 1.399e-05 8.61e-06 0.000199 0.0003259 0.003431 0.04371 0.002498 0.009952 2.431e-05 9.946e-06 0.001385 1.528e-05 0.003494 0.01318 0.01612 0.0005874 7.285e-08 6.356e-05 0.0001246 6.023e-05 0.002447 0.6314 0.01462 0.01519 1.613e-05 0.0009319 0.0005424 0.001298 0.0001058 0.002762 0.1238 7.463e-05 0.001848 1.937e-05 0.002546 0.002003 0.009438 0.007505 0.006692 0.01118 0.0001488 0.003005 1.108e-05 0.001641 0.1753 0.009404 0.5971 0.004459 0.2636 0.001697 0.5788 0.02194 0.00104 0.5684 0.0245 0.001429 0.2899 0.008639 0.0001696 0.0003508 0.0002292 0.2947 4.267e-05 0.02328 8.896e-06 0.00425 0.0005057 6.292e-06 0.0005154 0.009202 0.009044 0.002041 0.005689 6.687e-05 0.003091 0.009212 0.001076 3.013e-05 0.0302 0.0006636 0.02188 0.0002005 0.006895 0.001173 0.000507 0.1517 0.01787 0.004455 0.005727 0.0007333 0.2936 0.002157 0.58 0.00391 0.4908 0.006849 8.115e-05 0.6011 0.0007534 5.657e-07 0.0002622 9.068e-06 1.153e-05 0.0005078 0.001302 0.0004385 0.0004576 0.0006976 0.002909 0.00399 0.004434 0.003251 0.00143 0.08454 0.0002065 0.003415 0.007901 0.004465 1.206e-05 0.001052 0.6584 0.003574 1.251e-05 0.000465 0.0004024 0.5881 1.069e-05 2.569e-05 0.002633 0.006015 0.01228 0.008173 0.0002207 0.0005119 0.003389 0.342 0.00847 6.192e-05 0.001867 0.2168 1.674e-05 0.0005685 0.00159 0.001515 0.005412 0.2934 0.0005915 0.009175 1.957e-05 2.068e-05 0.005136 0.5026 0.007811 0.004778 0.002199 0.005469 7.832e-05 0.004957 0.001365 0.002179 8.594e-06 0.0006124 0.003582 0.002615 0.001219 0.006616 0.6266 0.001276 0.03373 0.0003863 0.001018 4.714e-05 0.00132 0.007619 0.1006 0.009636 0.5595 0.0002264 0.001414 0.0003146 0.398 0.3947 0.00266 0.002343 0.6435 0.474 0.007594 0.0007236 0.004408 8.898e-06 0.007869 0.0008352 0.0006586 0.07313 0.3258 0.001913 0.006995 0.001556 0.005579 0.003827 0.1817 0.009151 0.001101 0.01086 0.0001721 0.001824 0.0002982 0.5736 0.0001384 0.08346 0.0002431 0.03148 0.01486 2.91e-05 0.0007004 0.0005804 0.006314 0.03799 0.0009365 0.0287 0.00256 6.229e-06 6.078e-05 0.4281 0.001505 0.0007272 0.6396 0.6449 0.0003169 0.004279 0.005194 0.009527 0.006497 0.0002726 0.0005863 0.3201 0.3121 0.3348 0.4655 0.006717 0.0001729 0.001887 0.0003721 0.002184 1.992e-05 0.001026 0.5571 0.002176 0.001583 0.0009463 3.717e-05 0.01005 0.0002272 0.004179 0.03382 0.003608 0.0006783 0.0007285 8.407e-06 0.00637 0.001138 0.569 0.000225 0.006542 0.01477 0.001741 0.009212 1.769e-05 0.00022 0.005637 0.0005946 0.1694 0.009528 0.001111 0.007112 0.0001188 5.759e-05 0.5752 0.1161 0.02092 0.0001884 0.004575 0.001199 0.003565 0.5752 0.009836 0.003838 6.922e-06 0.04581 0.0001703 0.6632 0.009503 0.2538 0.4615 0.4988 0.1092 0.5491 8.927e-05 0.001423 0.5701 0.002591 5.599e-06 0.00162 0.03214 0.0002171 0.0002218 1.085e-05 0.001495 0.000889 0.00177 0.001969 0.004434 0.000221 0.5411 4.019e-05 8.445e-07 0.576 0.001974 0.03882 0.5068 0.0006058 0.002985 0.2896 0.0001586 0.2586 0.02182 0.0162 0.001552 4.278e-05 0.07512 0.6454 0.009324 0.003578 4.792e-05 0.001077 0.006909 0.003728 0.001606 0.01707 0.01214 0.4264 0.08586 0.007395 3.605e-06 0.002059 0.3856 0.09506 0.5801 0.01524 0.005957 0.01002 0.01357 0.6511 0.04994 0.002401 0.3904 0.05182 0.002072 7.495e-06 0.5245 1.793e-05 0.5557 0.001255 0.002189 0.003661 4.27e-06 0.002868 0.004923 0.3387 0.02294 0.0003676 0.0008627 0.001285 0.02038 0.0009138 0.003977 0.002118 5.438e-05 0.002933 0.05135 0.01167 0.004637 8.469e-05 0.009884 0.0001118 0.003333 0.5513 9.62e-06 0.001539 9.384e-06 0.3403 0.5836 0.4995 0.00054 0.0003125 0.002144 1.031e-05 0.2509 0.002484 0.007678 0.5095 0.01529 0.0001969 0.003762 0.0003959 2.913e-06 0.0001913 0.006761 0.0004405 0.0001093 1.81e-06 0.004644 0.3429 0.001645 9.108e-05 0.1058 0.01096 0.009395 1.413e-05 0.001428 0.01678 0.01027 0.2631 4.726e-07 0.0001586 0.05887 0.4102 0.00321 7.799e-06 0.001564 0.005118 9.184e-06 5.427e-05 0.001162 0.003087 5.671e-06 0.1028 9.839e-05 0.01093 0.01853 0.008133 0.002284 0.003436 0.3889 0.001356 0.3136 7.207e-05 0.0005742 0.0004953 0.003783 0.0004583 0.0004752 2.172e-09 0.3876 0.002191 0.007334 0.03367 0.02161 0.002271 0.003157 0.5635 0.05606 0.0139 0.1201 3.008e-05 7.946e-05 2.365e-05 0.07762 0.0003739 0.0009376 0.0005002 6.177e-06 0.003049 0.001507 0.002693 0.003479 0.002068 2.062e-05 0.6194 0.5729 1.062e-05 0.1432 0.0009951 0.6436 0.00187 0.3547 0.0006553 5.611e-07 0.000286 6.101e-05 0.0006403 0.01611 0.04982 0.04803 0.03634 0.4322 0.000132 0.4326 0.394 4.059e-06 0.03353 0.0005867 7.468e-06 0.003995 0.5879 0.000315 0.004468 0.0001802 5.363e-05 0.4109 0.001007 2.483e-05 0.004778 5.231e-05 5.731e-06 0.01543 0.0002303 0.5717 0.006144 6.764e-05 0.5415 0.00644 0.0009416 0.001133 0.0006982 0.001743 0.0001871 0.01083 4.929e-06 0.3811 0.0005738 0.001626 0.0007498 0.6443 0.568 0.0007661 0.002538 0.0001326 0.3487 0.04797 0.001468 0.01314 0.01561 0.006654 0.0852 0.03112 0.001291 0.002412 3.759e-05 0.0001944 0.001532 0.4932 0.0005684 0.00891 0.008166 0.006703 0.01346 0.002936 0.0001927 7.289e-06 0.5631 0.001261 0.01217 0.009817 0.004659 0.00338 0.003211 0.04246 9.635e-06 0.0401 0.0005626 0.001997 0.0005893 3.176e-05 3.098e-08 0.005715 0.004778 0.005074 0.01738 0.003853 7.786e-05 0.009408 0.4884 7.229e-05 0.005697 0.01165 0.0006977 0.0001875 0.3888 0.008288 0.5712 0.0005268 1.081e-07 0.007955 0.0007841 0.002483 0.3722 0.0001718 0.5143 0.02114 0.3682 4.691e-06 0.005893 8.135e-06 0.0001545 0.0743 8.352e-05 2.974e-05 0.0001305 0.6442 0.5701 4.171e-06 0.002075 0.01259 0.5682 0.0002067 5.41e-07 0.005169 0.0002543 0.002441 0.4355 0.0001174 0.3533 0.001679 0.0005521 0.01554 7.082e-05 4.865e-06 0.01189 1.811e-05 0.0005659 0.007839 0.00329 0.5788 0.3694 9.844e-05 0.4002 0.003184 0.001132 0.001514 0.001249 0.0005285 0.0008754 0.0587 0.0002329 0.5365 0.0001558 0.01848 0.001107 0.03572 0.01062 0.1123 0.007864 0.03195 0.002521 0.0143 0.0002373 0.000455 0.01147 0.0001192 0.001359 0.001206 0.002329 0.1079 0.000874 0.5781 0.005412 0.3546 0.01066 0.01339 0.003083 0.5911 0.0008292 0.002776 3.451e-06 0.0002928 0.01326 0.0005373 0.08961 0.0005248 0.005324 0.0001974 0.002728 4.704e-05 0.001442 0.01371 0.009129 0.001943 0.02881 0.003251 0.5514 0.416 0.5608 0.0002866 0.006723 0.004221 0.4818 0.003844 0.419 0.02115 0.002203 0.008284 0.009722 0.005526 0.00279 0.003753 0.002336 5.044e-08 0.07305 0.001195 0.006363 0.0006094 0.0007108 0.01684 0.00134 0.02248 0.0007899 1.295e-05 0.001519 0.009004 0.5747 2.215e-05 0.002099 0.004497 0.4936 0.0001228 0.002286 0.0007053 0.0008424 0.5662 7.702e-05 7.713e-06 0.0008942 0.01585 5.91e-06 0.001161 0.00021 0.001487 4.963e-05 0.001108 0.003575 0.001184 0.0196 0.5597 0.0004413 0.0009639 8.662e-06 0.0001406 0.0004888 0.131 0.00123 0.006154 0.006611 8.058e-06 0.01977 0.00145 0.0003524 0.3069 0.006707 0.5685 0.0001115 0.00783 0.004409 3.166e-05 8.157e-05 0.001595 0.006123 9.492e-06 0.31 0.06658 0.3938 0.01846 0.05182 0.0002212 0.5474 0.00592 0.0007645 0.0002087 0.006476 0.2525 0.004132 0.01329 0.6045 0.3754 0.008037 1.759e-05 0.011 0.002065 0.0007135 0.01043 0.002834 0.000868 6.735e-06 7.317e-05 8.787e-05 0.002891 0.004503 0.6275 1.682e-05 0.08265 0.002001 0.001977 0.3741 0.01197 0.2659 0.4398 0.008851 0.0006473 0.01661 0.0002934 0.008826 0.6194 0.02197 0.06478 0.6453 0.001663 0.0004195 0.006487 0.0001071 0.002569 0.4163 0.001505 0.0007949 0.00122 0.001659 0.001912 0.0002933 1.538e-05 0.002345 0.008528 1.146e-05 0.0101 0.001693 0.00834 0.02519 0.0006076 0.3892 0.0001374 0.6257 0.002204 0.004627 0.00477 0.001728 1.842e-07 0.0004693 0.5864 0.0002012 0.0001554 0.002797 0.00999 0.000303 1.524e-05 0.002024 0.5807 0.00412 0.1824 0.3217 0.0009664 0.0001024 0.0005672 0.000121 0.01167 0.002196 0.5717 0.0002085 0.0278 0.5528 0.3955 0.005081 0.008704 0.03192 0.01119 0.04094 0.03458 0.002376 0.0001305 0.002401 0.6499 0.01432 0.01068 0.5433 0.0006702 0.0006093 0.0328 0.0008647 0.0001868 0.003581 0.0002327 4.439e-06 6.186e-06 0.001468 0.587 0.006642 0.002908 0.004162 0.5133 0.0008971 0.3933 0.6638 0.003732 0.001658 0.5755 0.6478 0.03073 0.00544 0.001474 0.001001 0.01014 0.004497 8.58e-06 1.274e-05 2.412e-05 0.003153 0.006753 0.0001651 0.0005906 0.008751 0.07307 0.5282 0.0004516 0.001706 0.01234 3.859e-06 0.0008947 0.5453 0.02377 0.01811 1.204e-05 0.003968 1.016e-05 0.02278 0.3558 0.0006306 0.0005487 0.01745 0.03193 0.001306 0.002228 0.0002482 0.003026 0.01082 0.002017 0.01662 0.0008473 0.003056 0.0003865 6.395e-05 0.002049 0.004448 0.0146 0.5307 0.0001092 0.02129 0.5772 0.003448 0.01766 6.014e-05 0.008404 4.498e-05 0.001019 0.001639 0.0006716 0.0003896 0.02812 0.0002981 0.008717 0.0003509 0.004147 0.007933 2.063e-05 0.0006857 0.0008521 0.5631 0.0001811 4.163e-05 0.0009548 0.06083 0.000289 0.5536 0.005384 0.01152 0.614 0.00148 0.009961 0.006373 0.002993 0.002858 0.006413 9.212e-05 0.5723 0.00399 0.02462 0.1762 0.0002061 0.003075 0.01973 0.02387 0.0031 8.091e-05 0.0002734 0.5753 0.01752 3.732e-05 0.0002477 0.001165 0.5774 0.0002781 0.05379 0.002375 0.008299 0.02558 0.001413 0.5471 0.003764 0.008364 0.5881 0.5953 0.226 0.01056 0.5705 0.002205 4.602e-05 0.005729 8.005e-05 0.007196 0.5917 0.004079 0.001913 0.0002698 0.001172 0.5161 0.6193 6.22e-05 4.787e-06 0.0003186 3.779e-05 0.0002309 0.02005 0.004375 0.5306 0.0001039 0.00104 0.007668 0.003323 0.00952 0.0008305 0.002465 0.4302 0.0003711 0.01971 0.05017 0.003599 0.4181 0.002524 0.0001806 1.578e-05 0.000122 0.009755 6.575e-05 9.539e-06 0.01889 0.003731 0.006391 0.2586 9.482e-06 0.003668 0.0005816 0.002203 6.737e-06 0.0001561 0.009263 0.0006509 0.003124 0.5629 0.6322 0.0006897 0.0003957 0.001139 0.00149 0.0002226 1.13e-05 0.01619 0.008647 0.00147 0.00333 0.01091 0.004431 0.003237 0.0002253 0.003617 7.175e-06 0.0006888 0.0007661 0.001637 0.004563 0.0574 0.001448 0.001224 0.00434 0.3538 0.001516 0.07063 0.00163 0.0008382 0.005487 0.1012 0.001266 0.01425 0.0001588 0.000707 0.002697 0.2515 0.001339 0.5867 8.068e-06 2.765e-07 0.0004149 0.01961 0.0003328 0.004366 0.0005101 2.717e-05 0.3376 0.05197 0.001056 5.451e-05 0.0003274 0.002421 0.3268 0.001903 0.0002468 0.0181 0.007182 0.01027 0.0002911 0.04416 0.0001602 0.003592 0.004346 0.01135 8.331e-08 0.001655 0.01776 4.754e-06 0.005925 0.00162 0.0007899 0.00179 7.513e-05 0.0009659 0.002388 0.00107 0.2513 0.001487 0.0002313 0.002658 0.4139 0.02154 0.4117 0.001115 0.008208 6.796e-05 0.001671 0.002342 0.5605 0.1294 0.001212 0.00595 0.05769 0.0004167 0.004387 0.001224 0.007717 0.003969 0.003463 0.0005212 3.191e-05 0.5431 0.02345 9.806e-05 0.0003796 0.001043 4.521e-06 0.02513 0.000252 0.01721 0.4926 0.008014 0.001399 1.704e-05 0.2948 0.009145 0.000827 0.5696 1.912e-05 0.0002 0.00274 0.0006952 0.003707 0.0006903 0.0021 0.04245 0.01705 0.5048 0.01115 2.099e-05 0.09125 0.4571 0.1175 9.247e-06 1.612e-05 0.004234 0.001244 0.5432 0.004799 1.097e-05 0.0003202 0.006938 0.0008173 0.001616 0.1712 0.0007701 8.098e-05 0.0005676 0.001525 0.5784 0.02824 0.005969 0.0002903 0.5847 0.01045 0.0001592 0.0006251 0.0001382 0.003767 8.228e-06 5.968e-05 0.002742 0.005253 6.716e-06 0.0002091 0.001265 1.384e-05 0.1498 0.3296 0.02558 0.002221 9.861e-06 0.0004695 0.3471 0.005584 0.002349 0.315 0.06167 0.5591 2.509e-05 0.0004846 0.0359 0.0336 0.4892 0.0002581 0.0002307 0.00687 0.0001913 3.838e-05 0.0008763 0.001066 0.00339 0.001224 8.606e-05 0.05737 0.001765 0.009536 0.5805 0.01597 0.002522 0.02317 0.007202 0.0005942 0.009192 0.007911 0.005479 0.0004255 0.02438 0.009647 0.005645 0.006877 0.6249 9.944e-05 0.001177 0.5724 0.009175 0.3779 0.0007842 0.4381 0.5615 0.0007525 0.5766 0.001001 0.02356 0.001715 0.0002875 0.0262 0.004161 0.101 0.1122 0.0008207 0.003512 0.5194 0.001927 3.338e-05 0.001061 0.02448 0.002005 4.48e-06 0.01167 0.004399 0.0004586 0.5182 0.4676 0.03752 0.5819 5.807e-05 0.3955 0.001645 0.001741 0.0118 0.003506 0.004635 0.0008644 0.001599 0.00692 0.0008233 9.036e-05 1.685e-05 0.002034 0.5768 0.0001222 0.01307 2.772e-05 0.0009128 0.001561 0.001073 0.2434 0.0001675 0.6143 0.001906 0.004651 0.3908 0.39 0.0541 0.09532 0.4659 0.003159 0.5454 0.5679 0.004001 0.4216 0.004715 0.001093 6.016e-06 0.01211 1.594e-05 0.002178 0.572 0.001709 0.001591 0.3236 0.5301 0.002367 0.001663 0.004293 0.00234 0.4791 0.01118 8.724e-06 0.01511 0.004977 0.002864 0.002431 8.266e-06 0.0004491 0.05515 0.001989 0.5775 7.707e-05 5.227e-06 0.0009021 0.001605 0.3909 0.003502 0.124 0.001789 0.005011 0.00806 4.074e-06 0.003449 0.1665 0.0003968 0.0005103 1.353e-05 0.0001756 0.0007873 0.00146 0.5716 0.005858 0.002749 1.054e-05 0.5818 0.04749 0.001141 0.00682 0.1682 0.005179 0.009185 1.07e-05 0.4174 0.002106 4.982e-05 7.999e-06 0.004708 0.003317 0.01657 0.008161 0.0008962 0.003476 9.474e-06 0.006232 0.00397 0.0006392 4.318e-05 0.01256 0.006711 0.03624 0.000964 0.0005954 0.001439 0.00304 0.0001959 7.977e-05 0.002527 0.002486 0.5462 0.00267 0.0003311 0.001111 0.000857 0.006744 5.765e-07 0.000108 0.006805 0.02531 1.924e-05 0.01346 0.002241 7.052e-05 0.5631 0.004147 0.5304 1.98e-05 0.0007765 0.006989 0.001556 0.002783 0.01275 0.1328 1.657e-05 0.05172 0.002709 0.002966 0.002016 0.01309 0.002805 0.003649 0.01655 0.004335 0.06895 9.113e-06 0.001448 0.006313 0.001001 0.004482 0.002389 4.206e-05 1.239e-05 0.5956 1.311e-05 0.0007739 0.006555 0.001423 5.503e-06 0.0009708 0.3701 0.008822 6.322e-06 0.0001898 0.0009041 1.309e-05 0.004035 0.04074 0.002607 0.007456 0.003382 0.008047 0.5905 0.001177 0.002693 0.001825 0.06501 0.00614 0.5723 0.002339 0.007246 0.009091 0.007521 0.5754 0.0003918 0.0005052 0.0006717 0.4097 0.5052 0.0009695 0.001101 0.0008624 0.0002662 1.006e-06 0.3658 0.01538 0.3681 0.03597 0.5652 0.0009878 0.08106 0.01358 0.001312 0.4272 6.157e-05 4.771e-05 0.003871 0.009347 1.209e-05 2.181e-05 0.00451 0.009497 0.003814 0.002569 1.085e-05 9.379e-06 0.0009861 0.008774 0.05681 0.005127 0.001634 0.0006311 0.001184 0.2365 0.285 0.2844 0.5613 0.03741 0.0004653 0.0007318 0.003266 0.003426 0.01008 1.038e-05 0.3273 0.4906 0.02315 0.0002041 0.0007256 0.1086 1.078e-05 0.0002979 0.05453 0.01193 0.0002153 0.6671 0.0005326 0.01534 0.005405 0.0002903 0.001082 0.043 0.06334 0.03072 0.01992 0.000315 0.0001557 0.5727 5.717e-05 0.002793 0.1474 0.007193 5.653e-06 0.0002703 0.02196 7.46e-06 9.09e-06 0.001704 0.0186 0.001466 0.2757 1.023e-05 0.4129 8.702e-06 8.303e-06 0.0008163 0.6045 0.001962 0.01624 0.0007947 0.2553 0.0001659 0.003213 0.005451 0.5736 0.0009124 0.0009119 0.003324 0.02019 0.006067 0.02427 0.006853 0.001142 0.5754 0.000839 0.00234 0.5577 0.001395 0.005889 0.00289 0.007248 0.000481 0.002306 0.5451 0.00314 8.408e-06 9.292e-05 1.312e-05 0.004402 6.232e-05 0.5663 0.003145 0.0003397 0.0009876 2.5e-05 0.5075 0.002937 0.0002917 0.0001099 0.08474 2.371e-05 0.004289 3.244e-05 0.00105 0.3377 0.01276 0.01589 0.3587 0.001626 0.0102 0.006022 0.5678 0.0002405 0.000902 1.678e-05 0.02836 0.001937 0.388 0.0012 7.419e-05 0.0018 0.02018 0.003275 0.6096 0.007594 1.163e-05 0.00104 0.005361 0.5552 2.681e-05 0.0001758 0.0006511 0.04834 0.0001061 0.003053 0.009283 0.003579 0.002793 0.01524 0.5311 0.01025 1.315e-05 0.002664 0.4838 0.0003764 0.004434 0.01048 0.002016 0.01078 0.0003869 0.0002838 0.003241 0.0007906 0.0003811 0.0001836 0.008389 1.547e-05 1.531e-05 0.01258 0.007993 0.0001831 0.006035 0.01287 0.0002577 0.00165 0.0001288 0.004685 0.003214 0.0004949 0.006446 0.0001217 0.0003361 0.0005857 0.004432 6.709e-05 0.001228 0.0002273 0.003467 0.0174 0.0004272 3.198e-06 0.02107 0.001129 0.0005459 0.0003896 0.003834 0.02309 8.038e-05 6.463e-06 0.001191 0.0009714 0.4862 0.002255 0.001929 1.01e-05 0.000746 0.03038 0.01068 5.035e-05 0.5734 6.143e-06 0.6106 0.005087 0.0002154 0.005632 0.0009044 8.499e-06 0.004929 0.0001105 0.5936 0.0002433 0.0001136 0.0004526 0.04429 0.57 0.004623 0.0007471 0.00173 0.001492 0.03121 0.002918 0.006872 0.003952 0.06652 0.02649 0.06343 0.0472 0.004507 1.208e-05 0.004668 2.459e-05 0.5699 0.3141 1.02e-05 0.0001454 0.002601 0.002905 0.02177 0.001316 0.002088 0.006834 0.0004838 0.03218 7.178e-05 1.583e-05 0.000322 0.0003123 0.0234 0.3982 0.0004688 0.09577 0.0002559 0.01444 0.5945 0.0009695 0.3901 0.003334 0.001364 2.656e-05 5.635e-05 0.01159 0.05901 0.3959 1.066e-05 0.0003059 0.6181 0.0009613 0.007345 0.001227 0.001187 0.4441 0.5765 0.2314 0.001071 0.007228 0.0009493 0.0003905 0.005008 0.5764 0.004509 0.03307 0.000674 0.006321 0.003096 5.177e-05 0.004404 0.4141 0.004363 0.0004287 8.828e-05 0.5841 0.01807 0.08975 0.004026 9.959e-06 0.02665 0.007956 0.529 0.5906 0.5281 0.001874 0.0002808 0.001242 0.002049 0.5127 0.004853 0.5698 0.02335 0.0001085 0.0001588 0.0167 0.003037 0.01394 0.02993 0.0005207 4.777e-06 0.002309 0.001485 0.003036 0.135 0.5471 0.003146 0.00281 0.009612 0.0002931 0.002841 0.5799 1.149e-05 1.082e-05 0.526 8.433e-06 0.05805 0.03238 0.01629 0.008797 0.4221 0.008934 0.0009342 4.86e-06 0.0004442 0.02191 0.3553 0.11 0.0002094 5.834e-06 0.3547 0.008016 0.2914 0.2927 0.0002949 0.0006769 0.1586 0.0007153 0.003146 0.01861 0.000434 0.5538 6.565e-05 0.577 0.009694 6.5e-05 0.009224 0.001013 1.805e-05 4.153e-05 0.001144 0.006912 0.4998 0.1056 0.0024 0.4191 0.0006559 0.0006539 0.00502 0.0006528 0.00245 0.3708 1.024e-05 0.0007495 0.0007595 0.006943 0.1711 0.005687 0.001598 0.00235 0.001561 0.002398 0.0007393 0.1809 0.01582 0.0002127 0.0002712 0.006021 0.0001831 0.004804 0.00911 0.006224 0.1317 0.03557 0.001421 0.00486 0.5602 0.004167 0.003061 0.0005611 0.5609 0.4229 0.002512 0.002595 0.1147 0.2374 3.857e-05 0.0001374 0.0001485 0.0004484 0.005732 0.0003801 0.01326 0.0001633 6.743e-06 0.001555 4.767e-05 0.00313 0.0251 0.55 0.04619 0.03031 6.612e-06 0.04012 1.961e-05 0.003216 0.01135 0.5574 0.001359 0.0008001 0.0004835 0.5035 0.00645 0.0001086 0.0002592 0.1416 0.2781 0.0001408 0.004224 0.1821 0.001088 0.03282 0.4586 0.0137 0.001868 0.0002527 0.002848 0.000235 0.002878 0.00856 0.00254 0.000419 0.006571 0.001211 0.003838 0.000232 0.5401 0.001218 0.001476 0.002646 3.158e-06 0.01156 0.0016 0.004501 0.002156 3.2e-05 0.1589 7.738e-06 9.178e-06 0.001667 0.001846 0.01975 0.005186 0.2042 0.0005661 0.5803 0.007112 0.001542 0.0008958 0.0131 0.004939 0.002145 0.517 0.004786 1.062e-06 0.0002703 0.6573 0.0001657 0.02182 0.0002091 0.01036 0.008223 0.5704 0.000399 8.711e-06 0.006383 0.00196 0.002039 0.0005047 0.002246 0.008585 0.003424 0.00329 0.002414 1.827e-05 0.0008834 0.0008333 0.01139 0.00204 0.0002736 0.01828 0.2693 0.00026 0.3867 1.074e-05 0.001898 0.0004903 0.003945 0.007741 0.5547 0.0223 0.2472 0.05915 4.589e-05 0.0001958 0.3799 0.0003561 0.001583 1.063e-06 0.00105 6.606e-05 0.01814 0.002798 0.001401 4.529e-05 0.0001504 6.588e-05 0.5715 0.01669 1.403e-05 0.004465 0.00402 0.002253 0.5683 0.3882 0.0001928 0.6376 0.0005682 1.156e-05 0.0008031 9.665e-05 0.00188 0.02553 0.06974 0.1275 0.002171 0.0153 9.579e-05 0.0001034 5.009e-06 0.000817 0.001523 1.895e-06 0.2885 0.2896 0.003132 0.01283 0.003458 0.003269 0.007395 0.5718 0.002592 4.973e-08 0.003702 0.006002 9.865e-06 0.003043 0.0009738 0.02487 6.426e-06 0.01858 0.02937 0.003683 0.07263 0.0002021 0.0001252 0.5737 0.004863 7.245e-06 0.002171 0.001712 0.09242 0.002267 0.003916 0.003889 0.001644 0.08631 0.0001191 0.09758 0.004067 0.001504 6.833e-06 0.009237 0.001554 0.00259 0.543 0.0006314 0.007532 0.0007634 8.38e-05 0.5451 6.555e-05 0.04544 0.00297 0.01049 0.005074 0.005766 1.531e-06 0.001503 0.005956 0.05683 4.328e-05 0.004667 6.464e-05 0.0009587 0.001358 0.002115 0.0133 0.00659 0.003989 0.333 8.634e-06 0.0005586 0.006455 0.01161 0.008112 0.4113 0.6057 0.001842 0.001856 0.5475 0.001469 0.004678 3.456e-05 0.001049 0.5823 0.006785 0.007489 0.4132 0.0003651 0.00918 0.3409 1.265e-05 0.0004588 0.001486 4.773e-05 0.001149 9.82e-05 0.0001937 6.209e-05 0.001633 0.001226 0.3424 0.000317 3.928e-06 4.036e-05 9.378e-05 8.5e-06 0.00033 0.0003418 0.0006081 0.0203 0.01126 0.001862 0.008281 0.0004916 0.0004484 0.2051 0.002305 0.007539 0.003441 0.006727 0.5454 0.002298 0.03954 5.103e-05 0.01016 0.002714 0.0001057 9.169e-05 0.001196 0.0001585 0.01114 0.003944 0.0008723 0.0001413 0.002466 4.822e-06 0.002493 0.0008843 0.00142 4.207e-06 0.0009354 0.009324 0.003535 0.005453 0.0006843 8.418e-05 0.00562 8.722e-05 0.0001932 0.0003975 0.003248 0.009192 1.389e-05 0.002866 0.002236 0.4329 0.04319 0.003485 0.001551 0.001834 0.001342 3.441e-05 0.00036 0.00254 0.008946 1.857e-05 0.01307 0.006848 0.01336 0.0002636 0.6083 0.0003336 0.1861 0.001886 0.0004484 0.003724 0.5667 0.0002474 0.001271 0.002139 0.002193 0.0007292 0.004129 8.759e-05 0.003992 0.5761 0.001906 0.001975 7.014e-05 0.007913 0.002527 0.008974 0.001237 0.4767 7.73e-05 0.0009981 0.00896 0.003091 8.966e-05 2.358e-05 0.002433 8.703e-06 0.001702 0.001393 0.0007115 0.5473 0.002796 0.007881 0.0003863 0.3112 2.834e-05 3.319e-06 0.1053 0.0007741 0.01565 0.5919 6.278e-05 0.001412 0.0005487 4.988e-06 0.0004078 0.0007646 1.449e-05 0.0006088 0.00517 1.014e-05 0.0006447 0.002926 0.002358 0.008956 4.524e-05 0.004203 0.3801 0.0124 0.5441 0.004908 0.001085 1.424e-05 7.504e-05 2.427e-06 0.01344 0.0001661 0.00645 0.02337 0.3273 0.004151 0.03714 0.003401 0.01046 0.562 0.0005269 0.644 0.006637 0.01373 0.3677 0.584 5.079e-06 0.02654 0.0009717 0.0006309 8.12e-06 8.407e-05 0.01055 0.004075 6.781e-05 0.0004527 0.009136 0.0005851 3.847e-05 0.002078 7.647e-05 0.004863 0.4082 0.002434 1.217e-05 0.002269 0.5874 0.0008837 7.305e-06 0.0006752 0.07165 0.06047 0.5626 0.3768 6.525e-05 0.0003516 0.5857 0.004146 0.00047 0.6419 0.007869 1.095e-05 0.006837 0.5905 0.0005189 0.002451 0.0007603 0.5723 0.007481 0.0118 0.0006874 0.5713 0.5746 0.0002051 0.0004427 0.3499 0.008463 1.34e-05 0.01805 0.4677 0.4164 0.01121 0.3033 0.006598 0.3315 9.706e-05 0.3022 0.001182 0.1334 3.709e-05 0.0009051 0.1261 0.5175 0.03506 1.277e-05 0.0007564 1.056e-07 0.003096 0.003256 0.01005 0.001424 0.3854 7.798e-05 0.001947 8.385e-06 7.969e-06 6.257e-06 3.341e-05 0.02163 2.871e-06 0.1024 0.005851 0.1453 0.002657 0.0009984 0.002885 8.937e-06 0.01038 0.01484 0.000196 0.0001218 6.431e-06 0.0156 0.001308 0.006158 0.001008 0.00304 0.1773 0.004352 0.5157 0.006857 0.0005435 0.00126 0.001576 0.02571 3.891e-05 0.0002475 0.5403 0.0001614 0.009377 0.001974 0.4245 0.4138 0.00328 0.0009101 0.004346 0.06793 0.0001768 0.0007005 0.5111 0.001209 0.003352 0.00116 3.33e-05 0.5535 0.554 0.0007647 2.015e-05 0.5706 0.001578 0.003415 0.0003418 2.951e-06 0.007235 0.008598 0.001402 0.0003757 0.004609 0.5778 6.398e-05 0.4109 7.073e-05 0.002163 0.3927 0.0006887 0.0005088 0.01252 0.01512 0.001936 0.0001328 0.005208 0.003392 0.5443 7.845e-06 0.01742 0.00338 0.0003269 0.05098 0.5678 0.00547 0.001792 0.01123 0.001776 9.262e-06 0.005742 0.0003976 0.003885 2.075e-06 0.007133 0.006053 0.6471 0.001105 0.01074 0.5738 0.002507 0.008411 0.002838 0.0002195 0.455 0.005008 0.0179 0.4827 0.5409 7.622e-06 0.2234 0.06177 0.1621 0.001781 8.434e-06 7.968e-05 0.08827 0.001434 0.008437 0.0002272 0.01513 0.4809 2.229e-05 6.778e-06 0.009099 0.07493 0.6563 0.005613 1.056e-05 0.002976 0.002042 0.0002197 0.4028 1.419e-05 0.01877 0.0239 0.001466 0.0002305 0.445 0.0004229 0.5631 0.04731 0.0001015 0.004771 0.03656 0.1704 0.0676 0.0002119 0.0003762 0.004995 1.161e-05 0.004079 0.5588 0.3025 0.0001428 0.0003662 0.00242 0.06573 0.5528 0.0005889 0.001101 0.0181 0.001795 0.4069 0.004317 0.003844 0.0004423 0.3623 0.004027 0.0004007 3.258e-05 0.0006445 0.0003864 0.001264 7.957e-06 0.0007385 0.0002609 0.005621 0.001878 0.0002825 0.001232 0.0001674 3.491e-05 0.002254 0.001199 0.2194 0.003938 5.475e-05 0.01559 0.0007814 7.926e-06 0.003703 7.183e-05 0.0009509 0.004628 0.008718 0.0008787 0.01882 0.0005684 0.001069 0.031 0.008948 0.002856 0.005602 0.0008397 0.007286 0.006063 0.5495 0.1817 1.591e-05 0.00619 0.001485 0.003061 0.04469 0.0705 0.01815 0.0002603 0.0005794 0.0003339 0.007859 0.0001304 0.1053 0.07847 0.0002444 0.02206 0.5717 0.08445 0.008199 0.2881 0.0006318 0.0004466 0.005401 0.01098 0.002414 0.0006952 0.00209 3.448e-05 0.0003337 0.0002291 0.04174 0.0005398 0.003874 0.0129 0.02449 0.01326 0.002824 0.007547 0.003492 0.001529 0.001753 0.0002887 0.0004845 0.0004166 0.004925 0.001698 0.002391 0.5705 0.000547 0.0004428 9.678e-05 0.0168 5.166e-06 0.0157 0.0006342 0.0001208 0.0027 0.004488 0.0008425 0.0277 0.5918 0.4016 0.0001093 0.0003408 0.01494 0.002021 0.002066 1.607e-05 0.01871 0.004414 0.000232 8.632e-06 0.0006842 3.094e-06 0.01275 0.0009515 0.0005241 0.009828 0.0006663 0.417 0.5887 0.01103 0.0103 0.006686 0.009316 0.01222 0.2358 0.4579 0.0002764 0.0001313 0.005567 0.005516 0.4456 8.557e-06 0.3565 0.008474 0.0006048 0.005842 0.221 0.005901 0.0002017 0.0007232 0.3821 0.0002151 0.0008419 0.3455 0.3401 6.794e-06 0.006207 0.000121 1.176e-05 5.016e-05 0.0413 0.001939 0.2941 0.002706 0.3282 1.355e-05 0.000626 0.5713 0.08353 0.01733 0.0005862 0.008821 0.01384 0.004349 0.0002053 0.0005208 6.636e-06 3.168e-05 0.0001485 4.56e-06 0.0003419 0.02888 0.2282 6.887e-06 0.01765 0.03983 0.008436 1.812e-05 0.001685 2.68e-05 0.007554 0.004965 0.006892 0.605 0.0009663 0.417 0.5694 9.676e-05 0.0009986 0.0121 0.5748 0.001518 0.0005732 0.004484 0.1641 1.044e-05 0.003802 0.03754 0.3229 0.001418 0.01152 5.289e-05 0.009162 0.0007729 0.0129 0.4043 0.04861 0.5609 0.05787 3.37e-05 0.04623 0.1035 0.00795 5.289e-06 0.0006511 0.00982 0.003472 0.008327 0.0003692 0.00101 0.004475 7.963e-06 0.0003604 5.965e-07 1.248e-05 0.0002434 0.001346 0.001241 0.0008897 0.02006 0.0002487 0.003702 0.0008487 0.007621 0.01115 0.4371 0.083 0.0007074 0.0004349 0.08548 0.005187 0.002968 0.03616 0.0002735 0.5022 0.0001267 6.979e-05 0.02425 0.02299 0.003531 0.03725 1.08e-05 0.003533 0.01004 0.3791 0.003519 0.0003479 0.004889 0.001037 8.725e-06 7.244e-05 0.002373 0.128 0.0001731 0.0003743 0.0004747 0.002779 0.003555 0.2979 0.000204 3.059e-06 0.000135 0.001693 0.01472 0.001637 0.001102 0.00715 0.1223 0.001476 0.1476 0.01787 0.005668 0.01987 0.004929 0.0005143 0.001006 0.0006316 0.003427 0.03915 0.009109 0.3389 0.0003194 0.002711 0.05514 0.002297 1.842e-05 0.3769 0.003689 0.2645 0.002325 1.982e-05 0.6051 0.007752 0.003026 0.004051 0.008738 0.001087 0.001087 0.01958 1.544e-05 0.002728 0.0001629 0.0008219 4.311e-05 0.003082 0.5717 0.02465 0.02057 0.0003677 0.2566 0.0003139 0.00747 0.1905 0.0005209 7.853e-06 0.00308 0.0009503 0.4507 0.0003519 3.506e-06 0.1018 0.02507 0.007997 0.4004 0.2557 0.08573 0.001087 0.02417 0.006032 0.003341 0.3008 0.0001028 0.4262 0.0001885 3.998e-05 0.2403 0.01631 0.0002192 0.000335 0.005195 0.0006007 6.906e-06 0.0005676 5.043e-06 0.08279 0.001316 0.005011 0.0004244 0.005069 0.002505 0.5683 0.001568 0.005352 0.06559 0.008862 0.009372 0.0001946 0.0004606 0.03258 0.5679 5.116e-05 0.001626 0.05017 0.02192 0.002235 0.6429 0.6428 0.002282 2.482e-05 4.194e-06 0.000789 0.00195 0.04242 0.000794 5.425e-06 0.02143 3.28e-05 0.00454 0.04269 0.0003074 4.529e-06 0.002848 1.642e-05 0.0007839 0.0006038 6.827e-06 0.001136 0.0003243 0.004485 0.04629 0.5702 0.0002849 0.1658 0.003945 0.5614 0.003258 0.02454 0.0001724 0.05204 0.2701 0.2689 0.001701 0.017 0.5743 0.001118 0.0001507 0.0007911 0.006335 9.826e-06 8.421e-06 0.0001929 4.923e-05 0.001555 9.462e-06 0.01137 0.01735 6.003e-06 0.5559 0.001834 0.001606 0.001097 0.006546 0.001384 0.2829 0.5668 0.5665 3.971e-05 0.399 0.004766 5.527e-06 1.91e-05 0.00484 0.00092 0.355 0.001256 0.0202 0.005178 0.002023 0.001025 0.0003354 1.226e-05 0.6351 0.008749 0.04585 3.896e-05 0.002444 0.001609 0.01017 0.003802 0.08377 2.412e-05 0.008952 0.0001809 0.4035 0.002837 4.999e-05 0.001568 0.01343 0.002286 0.01663 0.0003332 0.0007909 0.003264 0.001077 0.004132 0.0003774 0.5391 0.003875 9.701e-05 0.007199 0.0007543 0.02904 0.0008204 0.001599 3.883e-06 0.3336 0.008455 0.004298 6.524e-06 0.0006975 0.0001104 0.5757 0.00336 1.105e-05 0.001863 0.00805 0.4518 0.0002043 0.2911 0.008664 0.001773 0.001735 0.003007 6.141e-06 0.0001823 0.0004164 0.04342 0.5821 4.609e-06 4.053e-06 0.01105 0.006562 1.43e-05 3.589e-06 0.5185 0.0007871 0.01586 0.0001531 0.005954 0.004607 0.0001619 0.5395 0.002255 0.003543 0.003203 7.171e-05 0.01806 0.001499 0.002945 0.5608 0.001829 0.02864 0.00227 0.01505 0.1469 0.0007003 0.001675 0.3941 0.0003077 0.001996 0.0002752 0.004152 6.053e-05 0.0001786 1.373e-05 0.0007028 0.5255 0.002607 4.842e-05 0.003018 9.039e-06 0.006685 0.003025 0.5768 0.001046 0.6041 0.0008262 0.5646 0.002408 0.002715 1.109e-05 0.0007749 0.008888 0.2984 0.4118 5.47e-06 1.108e-05 0.001301 0.0656 0.02655 0.0007715 0.0008746 1.618e-05 0.05199 0.0008773 0.5676 0.00093 0.00498 0.0006132 0.6305 0.04835 0.0001531 0.4779 1.032e-06 1.285e-05 0.003661 0.003469 0.0008108 0.00346 0.00219 0.3688 9.827e-06 0.02129 0.577 0.4411 0.01196 0.001084 0.02927 0.0009976 0.001802 0.002072 0.0005614 0.6232 0.005692 2.862e-05 0.000667 1.709e-05 0.01807 0.001662 0.0326 0.3981 0.001102 0.01059 0.5995 0.003254 2.652e-06 0.4914 0.3192 0.001701 0.000842 0.3975 0.6312 0.0002588 0.3528 0.05095 0.002836 0.03454 0.0003538 0.3437 0.3709 0.002666 0.006875 1.39e-05 0.005405 0.0002682 0.3055 5.643e-05 0.0001518 0.0002 3.877e-05 0.001457 0.004546 0.16 0.002795 0.003419 0.01456 8.848e-06 0.1883 0.5703 5.301e-05 2.371e-06 0.38 0.6133 0.0004694 0.002479 0.0105 0.0121 0.05764 0.001806 0.0005755 0.3307 0.4734 0.2618 7.433e-05 0.002067 0.001232 5.072e-06 0.0088 0.5618 0.005427 0.3705 0.5879 4.692e-06 0.00292 0.02112 0.02323 0.003176 0.4141 0.5613 0.0008698 0.01772 5.589e-06 0.006048 0.0002153 0.005556 7.583e-05 0.0009284 0.00421 0.0005253 0.07904 0.003295 7.511e-06 1.139e-05 7.348e-05 0.005793 0.0005981 0.2102 0.0007456 0.0008053 0.00416 0.2952 0.001443 0.0004423 0.6038 0.007095 0.05371 0.09146 1.027e-05 0.3894 1.034e-05 3.718e-06 0.0004501 0.01262 0.3008 0.0003487 0.01254 0.0009108 0.001157 0.002627 0.0003474 0.0007452 2.766e-06 0.0006377 0.002847 0.007104 0.0653 0.5734 0.0004587 0.001895 1.386e-05 0.0005836 0.01353 1.166e-05 0.5837 0.5938 2.557e-05 0.5778 5.081e-06 4.406e-05 0.0001237 0.008774 0.5691 0.006916 0.001689 0.406 0.01774 0.001447 0.01531 0.0003161 0.0003689 3.458e-05 0.01715 0.128 0.0008 0.0006079 4.45e-06 0.6016 0.0006336 0.4393 0.002142 0.0004676 0.009683 0.5401 0.09418 0.0212 0.01528 0.001219 0.004087 0.005132 0.002637 0.03996 2.177e-05 0.002299 0.3294 0.0007225 0.0006172 0.0009134 0.0009809 0.2326 0.5751 0.002906 0.0264 0.09747 0.004493 0.002038 0.0007207 0.01792 0.0003732 0.00357 0.0009305 0.02541 0.0009233 0.0001056 0.003828 0.01399 0.001217 4.398e-05 0.4552 0.001188 0.0004417 0.02725 0.004058 0.5695 0.0008882 0.5803 0.0005938 0.002497 0.0002282 0.001897 0.4073 0.0001121 0.005956 0.4824 0.6583 0.009188 0.004435 0.002609 0.08518 0.00467 0.0008139 0.001465 0.001246 1.143e-05 0.003596 0.0003607 0.0001754 0.007557 1.226e-05 0.00842 0.01164 0.00146 0.001087 0.2514 5.808e-06 0.0006608 2.699e-05 0.005652 0.009186 0.03165 0.02142 7.89e-05 7.984e-06 0.2626 0.002807 0.02171 0.3468 0.00538 0.4387 0.5595 0.008328 0.5731 0.00443 9.209e-05 0.5131 0.003376 0.01002 0.006115 5.175e-05 0.009331 0.005998 7.045e-05 0.0009036 0.03758 3.95e-07 8.397e-05 0.5615 0.001095 0.00557 0.577 0.003569 0.005266 0.003483 0.01505 0.007543 1.598e-05 0.00116 0.03144 0.02523 0.0003781 0.1036 0.002425 5.903e-05 0.002771 0.002286 0.3996 0.007718 0.002887 0.005053 0.0005084 0.004221 6.682e-05 0.5669 0.606 0.3495 0.0008709 0.5617 0.002501 8.036e-05 0.574 0.009932 5.983e-05 0.5849 0.0003102 0.4034 0.000669 0.05044 0.01912 0.4685 1.071e-05 0.01683 0.001556 7.04e-05 0.01049 0.0001177 0.005693 0.009065 0.0001219 0.001704 6.094e-05 0.211 0.007113 0.001594 0.0001448 0.005785 0.0002823 5.172e-05 0.00225 0.5798 0.001461 0.002087 0.00367 0.006327 0.01858 0.02635 0.0009472 0.003459 0.01675 0.02326 0.01617 0.0256 0.3161 0.001385 0.01538 0.00235 0.2968 0.001059 0.0022 0.003539 0.6048 0.001439 0.004418 0.5772 0.02677 0.01164 0.0007483 0.006786 3.614e-06 0.002306 0.05058 0.007228 0.0116 0.0004041 0.0001527 0.3668 0.001705 0.0006581 0.0138 0.003745 0.4368 0.001583 0.01856 0.4003 0.2975 0.002216 6.408e-05 5.548e-05 0.001187 0.2948 0.007629 0.0003899 0.005148 0.006719 0.002453 0.0003501 0.00652 0.5566 0.222 0.001557 0.002278 0.001784 0.1398 0.0005658 0.0008506 0.5725 0.5887 7.07e-05 0.004618 0.006305 0.1104 0.4017 3.335e-06 0.007898 0.0001992 2.391e-06 6.75e-05 0.5607 0.0002745 0.4048 8.458e-05 1.293e-05 0.001749 0.006872 0.0006874 0.2465 0.003773 1.578e-06 0.2605 1.548e-05 0.01068 0.5858 0.5703 8.216e-06 0.6468 0.01822 0.0002276 9.79e-05 0.01042 0.0004362 0.002271 0.0001088 0.3229 0.1577 0.002901 0.001795 0.008955 0.004412 0.4738 0.02275 0.003034 0.009014 0.003236 3.382e-05 0.06854 0.003375 0.004106 0.006261 0.007823 0.001659 0.5717 0.007541 0.0002251 0.02125 0.001443 5.443e-05 0.5823 6.103e-05 0.06217 0.06943 0.001719 0.00028 0.003685 0.2984 4.107e-05 0.005514 0.000378 0.01523 2.012e-05 0.0005092 0.002595 0.002514 4.984e-06 0.01198 0.07476 0.002429 7.22e-06 0.4027 0.0001789 0.003676 0.003745 0.009835 0.01597 6.374e-05 0.005073 0.01023 0.001797 0.006551 0.00261 6.592e-06 0.5695 0.0002892 0.5709 0.4667 0.4593 0.003573 0.0001331 2.815e-05 0.0001678 0.3806 0.0009041 3.843e-05 0.2616 0.0009083 0.005042 5.036e-05 0.3249 0.0006534 7.289e-06 0.5715 0.000323 0.00317 0.0002987 0.003829 9.044e-06 7.577e-06 0.002145 0.004319 4.698e-06 0.5174 0.001971 0.004004 0.001222 0.01635 0.02395 1.202e-05 0.0007876 6.316e-07 1.156e-05 0.5554 0.0005475 0.006098 0.02172 0.01088 0.01084 0.0005 0.001239 0.0006105 0.01033 0.0001917 1.5e-05 0.000271 0.01813 0.0005801 9.212e-06 0.0001956 0.001303 0.006722 0.0515 9.942e-06 0.005308 0.0001621 8.545e-06 0.4099 0.0005849 0.01724 0.2072 0.02201 0.5867 0.0004142 0.0007843 0.002996 0.0008331 0.6203 0.0121 0.5657 0.002305 0.4425 0.03017 0.006683 0.02257 0.004323 0.0459 0.006269 0.003601 0.02787 0.5305 0.007453 0.0002583 0.09752 0.6409 0.001232 0.006466 9.236e-05 0.004893 0.0007828 0.04937 0.0005072 0.3232 2.802e-05 0.004797 0.007039 0.5754 0.0003073 1.6e-05 1.114e-05 0.002031 0.003171 0.001399 0.5012 0.004048 0.000793 0.02425 0.00408 0.4185 0.0003988 0.002842 0.007596 0.0209 0.01143 0.02215 0.0239 0.001375 0.000474 0.003055 3.696e-06 0.02691 2.575e-05 9.228e-06 0.00279 0.5611 9.177e-06 0.003277 9.392e-05 0.000221 0.3845 0.0001299 1.064e-05 1.098e-05 0.001113 0.0002948 9.333e-06 7.037e-05 0.009524 0.001554 0.0009064 1.447e-05 3.411e-05 0.2556 7.13e-06 0.006533 0.01954 0.004091 0.0007069 0.001398 0.0005686 0.008453 0.01329 0.542 1.765e-05 0.0006952 6.599e-06 0.1385 0.001359 0.0115 0.5527 0.0004147 0.2062 5.096e-05 0.01579 0.3428 0.0007658 0.06665 0.0007137 0.00435 0.003063 0.02349 0.002433 0.0004974 0.3339 0.0002018 0.0004159 0.0005892 0.008169 0.0002335 9.935e-06 0.00469 0.5735 0.00091 0.0003806 0.6271 0.0002103 0.003356 0.0009456 0.0002058 0.007669 0.001634 0.02397 0.001015 1.03e-05 0.00337 0.0179 0.03112 1.087e-05 0.0003041 0.001419 0.5774 0.002685 6.306e-05 6.16e-05 0.007618 0.0005887 8.834e-06 0.0002651 0.003978 0.001259 0.5623 0.0002244 0.5505 0.5888 0.2612 0.005401 0.01065 1.379e-05 9.986e-05 7.603e-06 0.0003252 0.000949 0.3349 0.04828 0.07651 0.52 0.5452 0.001067 1e-05 0.0005732 0.00166 0.3171 0.05656 0.001709 0.01327 0.001766 0.01927 0.002663 1.079e-05 0.007004 0.0003475 0.00113 0.005614 0.5899 0.001157 3.773e-05 0.03103 0.003976 0.0003261 0.01796 0.006066 9.643e-06 0.6124 0.5691 0.0002234 0.6471 8.865e-06 1.004e-05 0.0006877 0.001077 0.0009943 0.5296 0.002841 0.5515 0.0003359 0.0003013 0.0005067 0.01061 0.002698 1.215e-05 3.636e-05 0.0003845 9.397e-05 0.006121 0.003672 0.005726 2.003e-05 0.4784 0.01544 4.951e-06 0.03428 0.5398 0.0007327 4.486e-06 0.5319 0.007114 0.002705 0.004641 0.0006852 0.0004924 0.006771 0.001732 0.2048 1.199e-05 0.00394 0.5757 0.01148 0.008277 0.002004 0.01801 0.02561 0.004053 0.0009038 0.008321 0.01057 0.0007868 0.0002909 0.02165 0.422 0.0009173 0.001302 0.6643 0.0007292 2.963e-06 0.04261 0.004797 0.1034 0.006169 0.07233 0.00912 0.0008129 0.00717 0.04284 0.00125 0.0002399 0.002795 0.008228 1.13e-05 0.002156 0.0811 0.03095 0.003225 1.183e-05 0.575 0.001079 0.003628 0.004768 0.002414 0.002771 0.3947 0.0199 0.005665 0.0004594 0.1958 1.037e-05 0.000331 0.1402 0.003656 0.0003391 0.00152 0.006824 0.2894 0.05355 0.001562 0.005148 1.102e-05 7.132e-06 0.002331 0.5824 0.002954 0.5682 0.4154 0.5668 0.5659 0.004597 3.924e-06 0.001058 0.0007712 1.336e-05 0.4848 5.216e-05 0.0001432 0.01122 5.853e-05 0.6672 0.5474 0.0006092 6.766e-06 0.03177 0.0004768 0.5737 0.5782 0.001422 0.001026 0.002885 0.003597 0.005856 0.0001595 8.422e-06 0.1801 1.133e-05 0.02893 0.007837 0.5992 0.00339 0.003074 0.0007785 0.01725 7e-08 0.001119 8.03e-05 0.03644 0.002044 0.4182 0.0004105 6.248e-06 0.004057 0.0003652 7.887e-06 1.06e-05 0.5726 0.0009756 0.001978 0.05809 0.002288 0.4002 0.0005014 0.0008252 0.0135 0.004212 0.000359 0.003592 0.0008411 0.5695 0.04325 0.0003697 0.001637 0.0007628 0.02217 0.002028 0.00575 0.0009881 0.0001353 0.0003781 0.01797 0.017 0.005266 6.18e-06 3.687e-05 0.5127 0.004386 0.1357 0.5501 0.0002755 0.01857 0.005642 6.157e-05 0.5971 0.5734 0.01298 0.00143 0.001948 0.5402 0.002565 0.001144 0.003999 0.007433 0.001718 0.0001889 0.0001631 0.007119 0.1254 0.001502 0.4691 0.006217 9.858e-06 0.01992 0.004187 0.03815 0.0005515 0.0005885 0.001352 0.5577 0.1296 0.003986 0.0004745 0.0005145 0.01069 1.882e-05 0.002276 0.00623 0.0002015 0.5857 0.06948 0.01183 0.0003501 0.0001071 0.0001859 0.5609 0.467 0.0007253 0.4757 1.24e-05 0.0007129 0.007406 0.008629 0.5621 0.0003516 0.004275 0.014 0.0001611 3.376e-05 0.02494 7.202e-06 9.387e-06 0.0005011 0.005754 0.648 0.0003619 4.745e-05 0.4177 2.641e-05 0.04088 0.003021 0.0647 6.709e-05 0.0008786 0.003546 0.0001356 8.248e-05 0.005841 0.002947 1.489e-05 0.003662 0.412 0.0008731 0.5058 0.2431 0.01427 0.000701 0.0008177 1.017e-05 0.000562 0.005157 0.002388 0.005276 0.0005654 0.2693 0.007405 0.5642 0.0003395 0.005306 5.364e-06 0.007435 0.000267 0.008823 1.648e-05 2.681e-05 0.5542 0.001499 0.001735 1.739e-05 0.1107 0.005056 0.0001986 0.002449 7.372e-05 8.557e-06 0.0001133 2.913e-05 0.002295 0.1054 0.02554 0.0169 1.564e-05 0.001192 0.5649 0.003432 0.001329 0.0007108 0.1001 1.526e-05 0.001171 0.5598 0.0007627 0.5753 0.000366 3.395e-06 0.0003765 0.01005 1.413e-05 0.3304 1.634e-05 0.1244 0.0003563 0.003324 1.177e-05 0.552 0.5644 0.001443 0.07653 0.0286 0.02309 0.04635 0.001216 0.01353 0.5538 0.6459 0.002342 0.002877 0.007163 0.01823 0.01581 1.034e-05 0.002156 0.0001172 0.0001617 1.791e-05 2.348e-08 0.002482 0.5428 0.0004681 0.0001038 0.5999 0.006787 0.004697 0.121 0.002715 0.0115 0.0001101 1.21e-05 0.01118 0.001402 0.0009358 0.001836 0.003546 0.0004101 0.1183 0.004844 0.09745 0.00544 1.575e-05 0.003128 0.00775 0.0002034 0.3165 0.0008539 0.01647 0.0004389 0.0001057 1.216e-05 0.05593 0.004716 0.5643 0.0002681 0.02093 0.002617 0.4796 0.5904 0.0001769 0.03328 0.00612 0.02604 0.0004193 0.2598 0.1579 0.07597 0.5621 6.434e-06 0.0001357 0.6191 0.5763 0.000812 0.5255 9.318e-06 0.0001974 0.05855 4.563e-05 7.976e-06 0.4398 0.0001335 0.6093 0.007307 0.003446 0.6495 0.003487 0.000311 0.001812 1.4e-05 0.001595 0.01576 0.5773 0.001755 0.0003509 0.001148 0.0002701 0.0037 0.001026 0.03914 0.0002714 0.6269 0.001755 0.5721 0.001297 0.005813 3.32e-05 0.0001967 0.4751 0.005005 0.1064 0.001734 0.3853 0.0005644 0.6032 0.005163 1.737e-05 0.03057 0.0955 1.359e-05 5.361e-06 0.005852 0.3594 8.538e-05 0.0007329 3.466e-06 0.0002448 0.001749 0.008615 0.002294 7.061e-05 0.0002192 0.001079 0.004492 0.3894 0.0002226 0.01237 0.0003422 0.0001013 0.0004461 0.003753 7.318e-05 0.01993 0.0002217 0.0002596 0.000949 0.0001057 0.0007072 0.1239 0.000701 0.0002653 0.009804 0.09448 0.2424 0.001446 0.01004 1.264e-05 0.0004669 0.007747 0.009319 0.01696 0.001737 3.547e-07 0.000929 0.0001791 0.00134 0.0005581 7.477e-06 0.01316 0.4695 0.2417 0.3854 6.671e-05 0.4147 1.135e-05 0.001185 0.00764 0.002376 0.002253 0.001348 0.3322 0.03904 0.0008783 0.003605 0.002097 0.443 0.0052 0.01284 0.006072 0.5767 0.005582 4.114e-05 1.439e-05 7.412e-05 0.4028 0.000605 0.05901 0.5771 0.0003776 0.0001536 0.02184 0.0004888 0.5951 0.0009151 0.01563 0.3169 5.076e-05 0.5461 0.0003427 4.791e-05 0.0005966 0.0004059 0.002321 0.001125 0.0001629 0.03485 0.0006361 0.007363 0.01047 5.145e-05 0.5907 0.001431 0.01473 5.147e-06 0.04784 0.5547 0.0006996 0.004509 0.004015 6.008e-05 0.007924 1.635e-05 0.005628 8.139e-05 0.0005214 0.006573 0.01954 0.3194 0.00048 0.009453 0.001947 0.001903 0.0007248 0.001365 0.002738 0.003084 0.00057 0.1068 0.0002746 0.003719 0.0004754 0.001003 0.01007 0.0009566 0.002208 0.0006131 0.001614 0.004704 0.001924 6.327e-05 0.05596 0.009177 0.5872 0.5742 0.01504 0.001137 6.874e-05 0.001046 0.00102 1.864e-05 0.000306 0.0006008 0.000681 0.471 0.0002352 0.4443 0.3063 0.001748 0.001788 4.804e-07 0.0006954 0.01316 0.001192 0.3123 2.101e-05 0.01818 6.996e-05 0.001535 0.5746 0.003339 0.0004544 0.004998 0.4934 0.00287 7.533e-05 6.956e-06 0.1083 0.001794 0.3466 0.001644 0.1014 0.03066 0.0001202 0.0009092 0.0001361 0.00173 2.113e-05 0.01294 8.959e-05 9.591e-05 0.03251 0.01639 0.0003303 0.0008868 0.1035 0.001897 0.0001366 0.3876 0.01322 0.001856 0.0008412 0.5615 0.5438 0.004616 0.1198 8.683e-06 0.0004322 0.0009949 0.001138 0.0002464 0.000719 9.334e-06 0.0175 0.005479 0.5913 0.005383 0.00352 0.01179 0.4051 0.0003193 0.0002845 0.009659 0.004116 0.003642 0.0006124 0.001459 0.03161 0.01357 0.0008418 0.01096 0.5534 0.0008778 0.004187 0.4751 0.4189 0.06586 0.4202 0.359 5.018e-06 0.0006342 0.0001209 7.471e-05 0.05218 0.4504 0.009201 0.0009782 0.0002279 0.003649 0.0003227 0.5653 0.3145 0.3145 0.003754 0.004353 0.05471 0.01601 0.0001123 0.3697 7.14e-05 0.0009841 0.002466 0.01743 7.193e-06 0.000377 0.009958 7.728e-06 0.0004803 0.2626 7.043e-05 0.02375 0.5708 0.002388 0.0005482 0.05784 0.3731 0.3617 0.004609 0.1417 0.009507 0.001378 0.5679 0.0008765 3.764e-05 0.008923 0.001377 1.012e-05 0.004605 0.0001358 0.02406 0.02694 0.002186 0.2237 0.01411 0.001063 0.001909 0.07655 0.4184 0.03253 0.3149 0.00554 0.003604 0.003257 0.0004424 0.0001158 0.0004238 0.008868 0.1803 1.951e-05 0.0003185 0.004701 0.01842 0.001374 6.72e-06 0.00444 5.792e-06 0.006407 0.5828 0.02867 0.1305 0.001122 0.01074 0.0009597 0.07974 5.601e-06 0.000734 0.0007645 0.0004101 0.000501 0.0224 3.697e-05 0.05366 4.188e-05 0.001719 0.005012 0.005511 0.3783 0.002305 0.0008717 0.02981 0.0002355 2.595e-06 9.138e-06 0.4917 0.04399 0.02221 8.762e-06 4.566e-06 0.001188 0.003837 0.003124 0.001163 0.001396 0.01294 9.699e-05 0.4173 0.4174 0.004364 0.02063 7.334e-05 0.3722 0.00881 0.0004074 0.00296 0.6674 0.005361 0.5854 0.001312 0.008303 0.09558 0.000758 8.241e-06 7.935e-05 0.3266 0.0008121 0.002204 0.003353 1.169e-05 0.007675 6.093e-06 0.006615 7.046e-06 0.5733 9.249e-05 5.555e-07 0.5184 0.4865 0.0002422 0.0003591 1.529e-05 1.074e-05 0.01069 0.0002416 0.001609 7.711e-06 0.06259 0.1927 0.3725 0.0003734 0.04689 0.000834 0.0002068 0.6105 0.003683 0.003014 1.109e-05 0.005767 1.075e-05 0.007481 0.414 6.959e-06 0.003762 0.004424 0.01958 0.0008741 0.0004667 0.005369 0.00116 0.01849 0.01451 0.0002028 0.2183 5.713e-05 0.000942 7.187e-05 0.001189 0.0005581 0.001275 0.0009285 9.204e-06 0.003277 0.02327 0.5842 0.0009902 0.03127 0.3937 0.001835 0.003662 0.004241 0.001645 0.006561 0.01396 0.0001152 0.5798 0.002183 0.001461 0.5581 0.0005989 0.005555 0.6284 0.0003946 0.002045 0.09195 0.4842 0.002027 0.01313 0.3113 0.001421 0.0007277 0.02281 0.01508 0.0005343 0.003769 0.003199 1.002e-05 0.01736 0.004669 0.007664 0.008304 0.006962 3.683e-06 0.000463 0.02376 0.005222 0.0007127 0.0004975 0.5729 0.002873 0.001131 0.0002463 0.004005 0.01531 0.01002 0.0001462 0.002658 5.866e-05 0.003446 0.1823 0.0001467 0.0004801 0.006867 9.103e-05 0.01623 0.02071 0.6682 0.00873 0.0008363 0.001575 0.01587 0.003143 0.03463 0.005308 0.02386 0.009613 0.002253 0.001288 0.0005786 0.01351 0.5408 0.2931 0.5411 0.00821 1.162e-05 1.982e-05 0.02069 0.0008126 0.0003747 0.465 0.006824 0.002283 1.383e-05 0.004851 0.0018 0.0009611 0.00156 0.0002559 0.01033 0.02014 0.01124 0.01815 7.835e-06 0.002082 0.0237 0.00124 0.3887 0.2539 0.0008443 0.002295 0.3108 0.03236 0.003756 0.0009377 0.5792 0.0295 0.0001613 0.0004176 0.00198 0.002078 0.0007071 0.4272 0.4936 0.2237 0.1003 0.5752 0.4589 0.005193 0.003019 0.5816 0.02505 0.03286 0.4878 0.1426 0.5751 0.0079 0.006167 8.556e-05 0.001839 0.001921 0.5736 0.00648 0.003957 0.009324 0.0001136 0.003837 0.01617 0.5915 4.173e-05 0.004041 6.796e-06 0.02649 0.0001223 0.002071 0.4908 0.005444 0.001501 0.001245 0.3084 0.0008332 7.589e-05 1.289e-05 0.0005568 9.396e-06 0.0002833 0.001614 7.123e-06 0.001676 0.02661 0.003325 0.0008724 5.193e-06 1.016e-05 5.928e-06 0.409 0.409 0.01478 0.006854 0.01755 0.007821 0.001688 0.007357 0.6543 0.003119 0.5704 0.003006 0.003946 6.849e-06 0.008606 0.002394 7.558e-05 0.001087 0.0002373 0.001243 0.002968 0.001112 0.05773 0.00101 0.0005107 8.613e-05 0.5943 2.18e-05 0.001298 0.0003817 0.5794 0.004472 1.19e-05 0.01859 0.001828 1.422e-05 0.001744 0.003179 0.003842 0.01056 1.002e-05 0.6171 0.002406 0.001988 0.002386 0.5639 0.02861 0.001646 0.002404 0.001369 1.366e-05 0.004396 0.003266 0.3498 0.003275 0.07967 0.03781 0.008933 0.001084 0.007192 0.004155 8.48e-06 0.008915 0.003551 1.371e-05 0.00977 3.459e-06 0.0374 0.002726 0.00758 0.004444 5.455e-05 0.0002999 0.4766 0.005029 0.004495 0.01241 0.000177 0.0213 0.0003236 0.01797 0.0009597 0.001625 0.02871 0.00108 0.004475 0.04112 0.5722 0.0009334 0.0007559 0.0008635 0.2698 7.626e-06 0.02001 0.3869 0.0002026 0.003228 0.3337 0.00721 0.001149 0.0001137 0.001504 0.003941 0.03956 0.0005489 0.2764 0.372 0.0006282 0.002961 0.00982 0.5653 7.013e-05 0.0008071 6.869e-05 0.06644 0.001239 0.003614 0.00187 0.002403 0.004811 0.5721 0.0006973 0.001411 0.001395 0.001018 0.5898 0.003064 0.003801 0.002875 0.000486 0.0003556 0.04778 0.0001591 0.0002813 0.4898 0.001868 0.008208 0.0167 0.5507 0.5705 0.009122 0.0004667 0.5937 0.009518 3.534e-06 0.4593 0.561 0.4619 0.05104 0.01624 5.677e-05 0.003205 1.055e-05 0.3118 0.001172 3.129e-05 3.611e-05 0.00111 0.4927 0.02062 0.006954 0.1857 0.001035 3.646e-06 0.006305 0.003103 0.0004536 0.01309 0.0111 0.009417 0.0002723 0.01191 0.007816 0.0009836 0.002001 0.0002139 0.01689 0.007176 0.001836 1.309e-05 0.002204 0.009743 0.0008946 0.01158 0.00233 0.3539 0.00797 0.4722 0.002839 0.005329 0.003608 0.007259 0.005857 0.03718 8.697e-05 1.425e-05 0.001217 0.00362 0.1032 0.01879 4.928e-05 4.568e-05 7.961e-05 0.002749 0.0006316 0.1462 0.3737 0.001316 0.5668 1.018e-05 0.3035 0.5672 9.935e-05 0.0003166 1.243e-05 7.989e-06 0.005943 0.009307 0.5727 0.001046 0.007019 7.509e-06 0.003109 0.0005083 0.004671 0.0002684 0.4053 0.5605 2.321e-05 0.008429 0.002777 0.0001574 0.001968 0.00035 0.0008683 0.01054 0.0007251 0.003772 5.193e-06 0.001322 0.0173 0.0002085 0.4756 0.1057 0.003511 0.000791 0.5685 0.0001064 0.0145 4.675e-05 0.006456 0.004726 0.1772 0.004546 0.02305 1.032e-05 0.002482 0.001385 0.006583 4.966e-05 0.01239 0.00595 0.008477 0.005132 0.002521 0.008757 4.948e-05 0.6227 0.001384 0.0001304 0.5646 0.0005159 0.00694 0.0008897 0.6462 0.004917 0.0007173 0.01162 0.0009176 0.001724 0.001743 0.002653 0.008593 0.4776 0.00856 0.0006084 0.02818 0.007987 0.009218 0.0004984 1.013e-05 0.05173 8.866e-06 0.01203 0.05357 3.695e-05 0.001646 0.00119 0.3669 4.754e-06 8.291e-05 0.5414 0.02822 0.003065 0.5938 0.0001964 0.5738 0.0189 0.0006704 0.01686 0.02549 0.000316 0.004252 0.0006323 0.007616 0.003676 0.003355 0.003615 0.0007691 0.00225 0.01777 0.02543 4.75e-05 0.1317 0.0006276 6.494e-05 0.1256 0.4814 0.001057 0.0006699 0.002951 0.375 0.5072 0.01719 4.933e-05 0.5762 0.003285 0.000268 0.01839 0.0001551 0.008018 0.5745 0.001375 0.0009537 0.1359 1.006e-05 0.006673 0.01555 1.535e-05 0.0008966 0.0001655 0.574 6.976e-06 0.4114 0.0002424 0.0007276 0.001392 0.0165 0.0003011 0.002935 0.5673 7.848e-05 0.01071 0.00115 2.383e-05 0.01307 0.001276 0.001829 0.02353 0.5254 0.0163 0.00117 0.03951 5.271e-05 6.808e-06 0.4955 0.0003683 2.993e-05 0.000762 0.0002405 0.284 0.0008795 0.0004728 0.4856 0.5739 0.001386 0.002905 0.6055 0.001082 0.00185 0.01202 9.084e-07 0.001306 0.003269 0.2582 0.009883 0.0037 0.0006814 0.003039 0.5777 0.001587 0.5244 0.002427 0.006631 0.01175 0.0001052 0.01822 0.5002 0.0008061 0.5783 0.004498 0.577 0.008561 0.0004531 0.004047 0.0008679 0.001563 0.592 0.01703 0.03335 0.0002017 0.5438 0.03093 0.01796 0.005586 0.001137 0.001265 0.003337 9.11e-06 7.801e-06 0.001137 0.008875 0.004022 0.5772 0.002718 0.007403 0.001151 0.0007016 0.000191 0.001242 0.0001383 0.006966 0.003637 2.391e-06 0.01101 0.001012 0.0005438 0.003132 0.001233 0.00115 0.08111 0.002768 1.148e-05 0.0318 0.009944 0.005398 0.007513 0.3184 0.3173 0.005937 6.697e-05 6.089e-05 0.01072 0.0003739 0.01565 0.00522 0.001452 0.001425 0.3748 0.0002008 0.4813 0.01157 0.0004766 0.001619 8.446e-05 0.004773 0.005792 0.002365 0.0001961 0.3865 0.5748 0.0003097 0.05318 0.009686 0.0004967 0.01464 0.4026 0.0004321 0.4054 0.001311 0.0003467 0.007665 0.0003113 0.003019 0.0005096 0.000336 0.1145 0.002306 0.000851 0.005483 0.4886 0.001205 0.004378 0.311 0.0005502 0.4004 0.6032 0.003466 0.04353 0.008841 0.000621 0.003598 0.3891 0.001369 0.04051 1.755e-05 0.597 0.004005 0.0001611 0.0001545 0.01149 0.05082 0.0388 4.493e-06 0.0002858 5.993e-05 6.506e-05 0.5002 0.003185 0.05431 0.003755 0.000372 0.3865 0.5752 0.006706 0.002046 0.004275 0.0009099 0.01904 0.002067 0.007849 4.42e-05 0.4023 0.0004503 0.6475 0.0009503 0.6129 0.001938 0.001711 0.0003299 0.001114 0.002596 0.005188 5.401e-06 0.004084 7.884e-06 0.000244 3.942e-05 0.02205 3.956e-06 4.081e-06 0.4806 0.002823 0.006518 8.599e-06 0.0111 0.01176 0.0005044 0.6169 0.007083 0.0006784 0.0005692 0.0005431 1.391e-05 0.02308 0.006406 0.4349 0.0002094 0.004596 0.005992 2.257e-05 0.001513 0.6172 7.062e-06 8.237e-05 9.733e-06 0.1167 0.003177 0.5516 0.5713 0.2425 0.2447 0.000472 0.004442 0.04456 0.3765 0.5736 0.007147 0.004439 0.00178 0.002789 9.779e-06 0.2402 1.826e-05 0.5471 3.754e-05 0.00729 0.003947 0.2626 0.0002427 6.335e-05 0.0008757 0.0006738 0.01437 0.003048 0.002033 0.4241 0.0005087 0.0009762 0.002191 0.001605 0.0004814 8.801e-05 1.948e-05 0.3479 0.003971 8.742e-06 0.007897 9.744e-06 0.04065 0.0009826 0.01292 0.5654 0.01657 0.0615 0.0005294 0.002606 0.01612 0.0005962 3.654e-05 0.3723 0.006716 0.603 4.919e-05 0.01536 8.993e-09 0.006937 0.001035 0.005945 0.001161 0.001454 0.002669 0.003735 0.001296 0.002589 0.3953 0.0002143 0.1287 0.0001711 0.1285 0.01604 0.006288 0.6672 2.798e-05 0.001491 0.006386 0.009786 0.535 0.6142 0.005407 0.005301 0.478 0.02316 0.000207 0.5784 0.4105 0.00528 0.05232 0.001912 5.367e-05 0.0007713 0.002516 6.033e-06 8.11e-05 0.01121 2.512e-06 0.003542 0.0327 0.06711 0.0005775 0.0002855 9.758e-05 0.525 7.19e-05 0.2644 1.791e-05 0.000252 0.0008 1.499e-06 0.001433 0.001625 0.0009453 0.5669 0.01027 0.001643 0.01118 0.4873 0.5573 0.0008671 4.862e-06 0.02268 0.0007742 0.01682 1.02e-05 0.4406 0.001771 0.000879 0.004933 4.641e-05 0.001815 0.001728 1.039e-05 0.003902 0.0003673 0.001028 0.01129 0.005635 0.01597 0.02116 0.0001043 0.001445 0.008916 8.02e-06 0.001563 0.00244 0.0001115 0.00325 0.0009786 0.0007656 5.729e-05 0.01956 0.0005162 3.889e-06 0.4937 3.22e-06 0.000257 0.001964 0.003231 0.001986 0.002174 0.003742 0.003534 0.001295 0.001169 0.001014 0.00107 0.01165 0.003555 6.324e-06 0.05863 0.001424 0.008208 0.003215 0.5755 7.173e-05 0.004557 0.5741 0.002257 0.2543 0.02187 0.001582 0.01611 0.02984 0.001061 0.001099 8.833e-05 0.01492 0.576 0.006791 0.0008103 0.4165 0.01807 5.026e-05 0.001691 0.02161 0.000105 0.5996 0.3178 0.004611 0.001848 9.085e-05 0.002971 0.0275 1.852e-05 0.0575 0.0008258 0.000114 0.0004127 0.01409 0.01067 0.02045 7.687e-06 0.0006527 0.01729 0.001621 0.01854 0.02864 0.1939 0.5733 5.82e-07 0.005386 0.05582 0.01497 0.002421 0.4994 0.004597 0.008053 0.0005843 0.0001784 0.0007844 0.001901 0.0003323 0.007992 0.0001885 0.3618 0.1114 0.0123 0.0002925 0.01286 0.0006623 0.001977 0.00243 0.005344 0.3366 0.09361 0.002736 6.125e-05 0.01512 0.001788 0.009652 0.5766 0.006129 0.05365 0.01193 0.001167 3.624e-05 0.01707 0.004501 1.444e-05 0.02146 0.00151 0.001653 0.002014 0.1792 0.005774 0.001405 0.003316 0.003394 0.0006422 0.0003775 0.0005904 0.002903 0.6223 0.01065 0.001326 0.0003774 0.07623 6.944e-06 0.01348 0.001775 0.02454 0.01247 0.2581 0.002339 0.007124 0.003206 0.01908 0.001423 0.0008969 0.0003017 0.04506 4.883e-05 0.0002761 0.1336 0.003191 0.0003347 0.003179 0.001262 0.004141 0.001219 8.295e-06 0.5708 0.02133 0.008016 0.000739 0.002634 0.0002173 0.006503 0.0004857 0.0003191 8.043e-05 0.02273 0.001261 0.001368 0.001384 0.5655 0.4037 0.00321 3.525e-05 0.5304 0.003558 0.003237 0.01816 0.571 1.824e-05 8.976e-06 8.642e-06 0.001092 0.001828 0.04824 0.0013 0.002757 0.004086 0.002979 0.001199 0.001042 0.03367 0.01406 0.4856 0.001379 1.101e-05 0.0009083 0.002208 0.0002063 0.005807 0.000321 0.0004321 0.005633 0.007999 0.004387 3.426e-06 0.003273 0.03791 0.001098 0.005184 0.002805 0.08841 0.3894 1.031e-05 0.0001655 4.454e-05 0.0002149 0.000127 0.033 0.006274 0.5519 0.003123 0.01386 0.001646 7.775e-06 0.0006291 0.001845 0.0006669 0.01947 0.008299 0.003502 0.4959 6.817e-06 0.006764 0.009349 3.691e-06 6.016e-05 5.775e-05 0.01677 0.5743 0.0008531 0.004716 0.0002515 0.007362 0.0002876 0.0001542 0.000787 0.005891 0.6276 0.02126 0.01494 0.5013 0.006065 0.0007138 3.335e-06 0.001826 0.001206 0.01514 0.005 0.00373 0.0739 0.005856 8.48e-06 0.002656 5.876e-05 0.0002661 9.775e-05 0.005846 0.003842 0.06896 8.86e-05 3.171e-05 0.4413 0.00192 0.5493 0.009828 0.01757 0.4432 0.5905 0.0004189 0.002774 0.001058 0.005499 0.01588 4.099e-05 0.225 0.003798 0.007687 0.5617 0.5713 4.785e-06 0.0004543 0.009794 7.246e-06 0.01219 0.01165 0.0005439 5.314e-05 0.0006375 0.004807 0.007046 0.0004898 0.03206 0.5737 0.003284 1.089e-05 0.04253 0.0001512 0.007918 0.2427 0.002658 0.09189 0.002245 0.005342 0.001021 0.1544 0.0005682 0.5605 0.000949 0.08225 0.5842 0.5795 0.00185 0.005634 8.053e-06 0.001816 0.000193 0.014 0.000341 0.3087 0.002597 0.4991 0.403 0.004973 5.301e-06 0.313 0.0003198 0.02209 0.001754 0.008936 9.867e-05 0.001949 0.4105 0.09927 0.0001121 0.002262 0.5691 0.01765 0.004134 0.0003648 0.02189 2.344e-05 5.947e-05 0.5624 0.6028 7.924e-08 0.001491 0.0006753 0.005835 0.003035 0.002331 0.6669 0.003017 0.0005754 0.5629 0.0004742 0.001538 0.001391 0.002435 0.0006522 0.0001426 8.833e-05 0.0005665 0.03025 7.179e-05 0.529 0.002432 0.4201 0.0006983 0.002625 0.001716 0.6349 0.004267 0.5781 0.005253 0.2868 0.0003259 0.003102 0.0004909 1.344e-05 0.5198 0.006835 3.909e-05 0.0009989 0.03412 0.0014 0.007493 0.4121 0.003616 0.01042 4.246e-05 0.01022 0.01003 7.087e-05 0.01892 0.06786 0.002312 0.6288 0.5394 2.563e-05 0.001686 4.411e-05 0.001758 0.01315 0.009518 0.001195 0.03115 0.001837 0.002408 0.01186 0.352 0.007753 0.3498 0.3733 0.6511 0.0006199 0.4421 0.3522 0.5824 0.04214 0.003049 0.0004519 0.004071 0.009395 0.002002 0.00808 0.000266 0.002154 0.0002889 0.6533 0.0009427 0.385 0.0045 0.00646 0.0008028 0.5712 0.0133 0.3534 0.02808 3.664e-06 0.004298 0.1465 0.0007681 0.001663 1.478e-05 9.344e-05 0.0006195 2.077e-05 4.761e-05 0.03418 0.0005209 3.788e-06 0.09872 0.07923 7.827e-06 0.0109 0.004211 1.842e-05 0.0008874 0.008782 0.6526 0.006612 0.54 0.001252 0.005725 8.761e-06 0.4648 0.0002694 0.001254 0.0004531 0.0123 0.01006 1.5e-05 0.003842 0.002507 0.4119 0.2057 0.003167 0.02359 0.01209 1.868e-05 0.5673 7.599e-05 0.5448 0.02336 0.003488 0.005639 0.0004781 0.5524 0.007205 0.001976 0.001117 0.003849 0.0002173 0.003116 0.003561 0.004897 3.383e-05 0.0003203 0.00241 0.2532 6.936e-06 0.0379 1.05e-05 0.002519 0.0007436 0.003119 6.393e-06 0.05258 6.265e-05 0.003966 0.00233 0.0033 0.578 0.004779 0.0001132 0.002603 0.0005477 0.002125 0.01576 0.01036 0.0006413 0.0003512 0.006101 0.3059 3.212e-05 0.001254 0.0004591 0.0002703 0.3855 0.01662 0.4463 0.003802 0.002386 0.0007862 0.02074 0.5838 0.01171 0.009861 0.006297 0.0002617 0.006199 0.2169 0.1007 0.1151 0.0002336 0.2913 0.407 0.1567 0.05379 0.07464 0.02722 0.0002086 0.0002588 0.01209 7.01e-06 0.0002001 0.2878 0.002526 0.005684 0.3992 0.03016 0.01146 0.01596 9.416e-06 0.01242 0.3645 4.534e-05 0.03593 0.1228 0.0002778 0.0001762 0.4484 0.1602 0.0002298 0.02332 0.00169 0.0003704 0.02837 1.669e-05 0.009812 0.4423 0.003314 0.5669 0.6219 0.009382 6.291e-05 0.001554 0.00446 8.856e-06 0.2196 0.008787 0.001514 0.0001381 0.0004203 0.0001596 2.948e-05 4.003e-06 0.005394 0.007635 0.02679 0.002021 0.0007184 0.3868 0.0001137 0.003167 0.005104 0.00145 0.001951 0.5576 0.0007453 0.001787 0.002174 0.6316 0.03668 0.0009293 0.004203 0.3938 0.01017 5.703e-05 0.01137 0.003502 0.1067 2.682e-05 0.01417 2.034e-05 0.0001099 0.009042 0.6068 0.003306 0.001627 0.0005802 0.0004142 2.227e-05 0.464 0.0009853 0.01323 0.001989 0.5729 0.00148 0.3706 0.00213 0.00296 0.01844 0.00774 0.001777 0.4139 1.453e-05 0.4886 0.5659 0.00109 0.002645 0.002628 0.3518 0.5609 2.899e-06 0.0003536 0.5906 0.006557 0.000341 0.001605 0.002468 7.211e-06 0.01693 0.0022 0.0003963 0.02242 0.0001644 0.004573 0.08728 0.4984 0.02637 0.4099 0.0008142 0.01079 0.003346 0.001048 1.72e-05 0.6248 0.4669 0.001641 6.72e-06 0.00499 0.0001731 0.0002631 0.003102 4.222e-05 0.001082 0.3972 0.01181 0.0001639 4.381e-06 0.009833 0.5672 6.422e-05 0.5259 0.006531 0.0007949 0.002833 0.001144 0.4808 0.008229 0.0009418 0.01474 0.001979 0.001977 0.0001979 0.4078 0.006561 0.001925 0.002415 0.5235 0.0004427 0.002161 0.001619 0.001332 0.0006467 0.3105 0.007911 0.002012 0.0005996 8.407e-06 0.001365 0.02795 0.2796 0.002037 0.009312 0.002091 0.0003111 9.045e-06 0.5365 0.001692 0.009678 0.006944 0.004783 0.0001958 0.000565 0.002772 0.001107 4.339e-05 0.00273 0.01577 1.089e-06 0.001625 0.009427 0.03203 0.000266 0.01864 0.0002398 0.5815 0.01076 4.223e-05 0.007163 0.5694 4.266e-05 0.001163 9.652e-06 0.01065 0.0003504 2.112e-05 0.01297 4.286e-06 0.0007716 0.01263 0.001873 0.5688 0.01979 0.0006214 9.324e-06 0.01388 0.0006061 0.0006009 0.001054 0.003525 0.0001873 0.004291 0.005664 9.933e-06 0.5497 0.002055 0.0003751 0.6424 0.6424 0.004308 0.01359 0.5777 0.003175 0.003629 0.0001791 0.002883 0.001846 0.5817 0.0005896 0.002207 0.009661 0.001835 0.007216 0.0003819 0.007291 0.001007 3.582e-05 0.004877 8.503e-06 8.543e-05 0.0004183 0.3578 0.001922 0.0002158 1.8e-05 0.000168 0.01245 0.002558 0.00157 5.395e-05 0.008 7.739e-06 0.1371 0.01161 0.02702 9.555e-06 0.001185 0.05952 0.01204 0.006002 6.905e-05 0.002062 8.765e-06 0.0004884 0.006474 0.01207 0.005387 0.0003829 0.002544 0.002491 0.01007 0.007022 0.005811 0.0006331 0.002041 7.936e-06 0.00264 0.002341 0.04806 0.001211 0.1612 9.536e-07 1.537e-05 0.0008461 0.001507 5.371e-05 0.004821 0.01397 6.967e-06 0.008735 0.4274 0.006864 0.01141 6.117e-06 4.653e-06 0.01956 0.01444 0.002847 0.002159 0.006466 0.5372 0.0001848 0.0002074 0.08752 0.01805 0.005397 0.001378 7.719e-06 8.189e-06 0.0004935 6.684e-06 0.0009104 8.447e-06 6.53e-05 0.0116 0.5109 0.000985 0.0006823 0.09876 0.0007853 0.002406 0.0243 0.003809 0.0008736 0.005069 0.1023 0.5672 0.5707 0.5529 0.002257 4.411e-05 0.01088 0.01874 0.008136 0.06179 0.1556 0.006585 0.005164 0.0043 0.5329 0.001104 0.0001721 0.005021 0.0003789 0.007055 0.5574 1.723e-05 0.002601 0.007878 8.084e-06 0.0138 0.5642 7.784e-06 0.003117 0.001635 5.607e-06 0.001141 0.5742 7.807e-09 0.002803 0.5977 0.0003097 0.006299 0.01518 6.847e-06 0.0003564 0.0004698 0.003131 0.0006245 0.1949 0.002354 7.672e-05 0.001189 0.5819 0.000381 0.008678 0.01563 0.01125 0.0005765 0.0003341 0.0003689 0.579 0.06001 0.5713 0.0002512 1.069e-05 0.03707 0.01925 7.11e-05 0.005423 0.0004018 0.001276 0.03312 0.01786 0.001697 0.0005387 0.01693 0.003659 0.00244 0.002409 0.0004705 0.01514 0.3519 0.002255 0.01932 0.5633 0.001601 0.6176 0.001871 0.4683 0.001978 0.003334 0.3945 0.5494 7.386e-06 0.03035 0.002804 0.0492 0.0002003 0.001454 0.02353 7.169e-05 0.0008938 0.001488 0.5701 5.596e-06 0.003295 0.1314 1.603e-05 0.006697 0.00086 0.0011 6.64e-06 0.00313 0.008145 0.000268 0.01616 0.0008939 0.002601 0.0131 0.001449 0.0003206 6.112e-06 0.5721 0.00756 0.001202 0.01218 0.001011 0.008955 0.01294 0.08896 0.01339 0.1404 0.005444 0.001171 0.001369 0.00327 0.01819 6.627e-06 0.01179 0.00067 0.001587 0.0007512 0.001559 0.008711 0.01055 0.004395 0.00228 0.0001236 0.01182 0.006882 0.0001709 0.08452 0.001968 0.00567 0.001009 0.527 0.5139 0.00735 0.3637 0.02485 0.5748 0.5728 0.4714 8.904e-05 0.003078 0.5709 4.345e-05 9.996e-06 1.021e-05 0.5515 0.00093 0.001134 0.01161 4.546e-06 0.09125 0.006121 0.0007546 0.3518 2.041e-05 0.5704 0.002784 0.5722 8.994e-06 1.159e-06 0.0005525 0.1607 0.004385 0.01506 0.002292 0.0003286 0.006337 0.5768 0.001852 0.0003355 0.5586 0.5826 0.006049 0.003311 0.002945 0.0006358 0.1837 5.257e-05 1.45e-07 0.03519 0.5747 0.3719 0.5667 0.004605 0.01805 3.665e-05 0.00158 0.04732 0.02077 0.3316 0.008761 0.03403 0.5611 0.1408 0.01955 0.001461 0.2772 0.2759 0.01145 0.007679 0.002629 8.522e-06 0.317 0.002685 0.003017 0.003841 0.0002815 3.986e-05 0.5333 0.0004452 0.0001652 0.4863 0.002308 0.005094 0.03359 0.0007589 0.3049 0.6476 0.05188 0.0004915 0.0008495 0.002488 0.4168 0.02097 0.001307 0.03918 0.5727 0.001764 0.001648 0.0006014 0.0003422 0.5304 0.01146 0.001996 0.01091 0.0007065 0.1664 0.005938 1.053e-05 0.007329 0.03001 0.001678 0.4805 0.4552 5.726e-05 0.007571 0.2584 0.2447 0.002145 0.000712 0.5852 0.004106 5.136e-05 0.004648 1.367e-05 0.1148 0.004639 0.0007115 0.01802 0.003351 0.0007962 4.213e-05 0.0002072 0.3124 0.5769 0.01371 0.01437 4.979e-06 0.005728 0.001087 6.692e-05 0.6166 0.0002181 0.2268 0.005891 0.001895 0.002277 0.0001115 9.852e-09 0.0003706 9.229e-05 0.002285 0.01285 0.5879 7.127e-06 0.5471 0.4291 7.847e-06 0.0001106 6.71e-06 0.4972 0.02245 0.3536 0.003273 0.00142 0.01374 5.458e-06 0.05665 0.561 0.00569 0.02059 3.988e-05 0.0004458 0.0003955 0.001562 0.184 0.3507 0.555 0.002293 0.001932 0.0001716 0.005405 0.01967 4.135e-05 0.1395 0.0002117 0.0009084 0.04636 0.009648 0.006866 0.006765 0.0006761 0.1241 0.007077 6.367e-06 0.00102 0.05358 6.637e-05 0.003674 0.4153 0.04343 0.01504 0.01951 0.07899 0.008103 0.006797 0.0002712 0.000676 0.0009754 0.07322 0.0002319 0.002593 0.5663 0.0002087 0.002999 0.01237 0.0007077 0.0001516 0.0006624 0.001205 0.5246 0.1142 9.977e-07 0.0004844 0.3094 1.121e-05 0.00136 0.000178 0.4411 0.006594 0.03934 0.002353 0.0002523 0.009491 0.000155 0.0005514 4.371e-06 0.005909 0.00506 9.045e-06 0.0001299 0.0004363 0.008089 0.0003995 0.01949 0.05146 2.295e-05 0.008068 1.589e-05 0.001761 0.01465 1.287e-05 0.001122 0.0002784 0.007932 0.4286 0.005646 9.286e-06 6.871e-06 0.004963 7.57e-06 0.01512 0.002791 1.133e-05 0.00213 0.002834 0.000744 0.01736 0.5819 0.3414 0.0007547 0.0009049 0.0005937 8.836e-06 0.01511 0.01809 0.001253 0.01903 0.002473 1.786e-05 0.005064 4.329e-05 0.003043 0.002153 0.03635 0.3278 8.161e-06 1.33e-07 0.003401 0.02875 0.0001301 0.01132 0.008827 7.91e-06 0.5547 0.5758 0.3885 0.113 0.4797 0.5579 0.0005455 0.01431 0.006381 0.0005311 0.3283 0.0007662 0.02822 0.0001349 0.02722 7.853e-06 0.003432 0.05651 0.1278 0.002996 0.1805 0.4905 0.3709 0.002579 0.008409 5.076e-05 0.01094 0.007 0.0004117 0.003236 0.5894 0.002975 0.002414 0.01596 0.00624 0.003357 0.0008511 0.0002555 0.5588 0.0005731 0.003898 8.457e-05 0.005215 0.01816 0.506 0.001613 0.005699 0.0003581 7.897e-06 0.01846 0.1915 0.001085 5.549e-05 0.4148 3.088e-05 0.5184 0.003823 0.005688 1.172e-05 0.1945 0.001257 0.6316 0.006421 0.0008464 1.211e-05 0.003918 0.5844 5.716e-06 0.01762 0.3676 0.00388 0.0009794 0.001461 1.497e-06 0.5741 0.5398 7.963e-06 0.0001649 0.003771 0.0004268 0.0003369 0.00638 0.002912 0.0004969 0.0004132 5.273e-06 0.5825 0.001328 5.007e-05 0.001855 5.711e-05 0.001092 0.009275 0.004378 0.553 0.01089 0.3981 0.01019 0.005945 0.00191 0.2446 0.5687 0.5362 0.001583 7.481e-05 0.001015 0.005965 0.4368 0.4933 3.61e-05 4.842e-05 0.008354 0.003529 0.2959 0.0001144 0.2974 0.5683 0.0001548 0.4096 0.003901 0.003395 8.35e-06 0.4158 0.02481 2.788e-05 9.043e-06 0.002958 0.0006538 0.3746 0.0009875 0.004533 0.01064 0.003479 0.3735 0.00025 0.05208 0.0008614 0.2169 0.002488 0.007832 0.08526 0.001129 0.02327 0.4505 0.00243 0.0001234 0.009615 0.0002894 0.4215 0.0003581 5.579e-05 0.0004749 6.366e-06 0.03966 0.2592 0.01681 0.0002486 0.02584 3.46e-06 0.4569 0.001183 0.5085 0.002273 0.5682 0.02932 4.542e-05 0.0006147 0.002914 0.001365 8.498e-06 0.01525 0.001068 0.0008256 5.707e-06 0.0007022 0.0008297 0.01614 7.133e-06 0.0008816 0.0003266 3.38e-06 0.01197 0.005639 0.001122 0.0007602 0.001857 0.2112 7.282e-06 0.001453 0.0001639 1.009e-05 0.1006 0.1506 0.0005171 0.003269 5.207e-05 0.009056 0.004278 0.00784 0.01536 0.004146 0.0001856 0.01178 0.01342 0.0001674 5.145e-05 0.001183 0.001678 0.0007677 0.01015 0.0005035 0.007143 0.02308 0.5912 0.0001531 0.004028 0.003872 0.0007693 0.004556 0.0007485 0.0005115 0.003781 0.008767 0.5671 0.004344 0.001711 0.06183 8.326e-06 0.0002481 0.0003409 0.0009403 0.0002743 0.003343 0.1445 0.002621 0.001843 0.0005163 0.5796 0.212 0.0002265 0.0008772 0.01958 0.004598 0.0002395 8.101e-06 0.08893 0.0005843 0.5668 4.005e-06 0.001036 0.001206 0.009477 0.01094 0.3617 0.001346 0.0003408 0.2656 0.578 0.0002232 0.5744 0.003622 1.291e-05 0.0001359 0.001597 0.4399 0.0004542 0.003526 0.0008059 0.3019 0.002211 0.004498 0.00366 0.5706 0.006538 0.002491 0.00859 0.007488 0.0007083 0.0004217 0.001377 0.0003838 0.02215 0.5846 0.0005379 3.838e-06 0.01555 0.03355 0.0007446 0.003038 0.02009 0.0006021 0.00149 0.05184 0.01142 0.0003248 0.06099 0.0003959 0.000554 0.0241 0.0002159 0.01238 0.6117 0.000228 0.001709 0.002384 0.003849 0.004154 0.008941 0.000387 0.00769 0.000269 0.383 0.5915 1.852e-05 0.6661 1.416e-05 0.0002056 0.3786 0.01814 9.312e-06 0.01001 0.003519 8.196e-06 4.159e-05 1.452e-05 0.1638 0.003543 0.04666 0.5799 0.4155 6.839e-06 0.0005734 0.5492 0.04048 0.5832 8.265e-06 0.0002384 0.003903 0.002491 1.485e-05 0.03361 0.001153 0.0004574 0.008402 0.003658 0.001275 0.007349 0.00195 0.0345 5.071e-05 0.002042 0.001005 0.01025 0.0001881 0.0006194 0.005939 0.0009543 0.5109 0.004706 0.006669 0.001168 0.003326 0.006347 0.002986 0.009373 0.009375 8.211e-06 0.0009713 0.002461 0.000146 7.288e-06 0.0003824 0.0002176 0.002303 0.07804 0.01749 0.001811 0.5112 0.0004134 0.4158 0.007992 0.4162 0.01236 0.009453 0.007131 1.431e-05 0.0001785 1.832e-05 3.347e-06 0.5166 0.5696 0.001576 9.45e-06 0.001887 0.0004431 0.008432 0.383 2.065e-05 0.3256 0.4205 0.0773 0.002638 0.001698 0.007445 0.001521 0.0003273 0.001982 0.001332 0.2601 0.003633 1.276e-05 0.02234 0.001594 0.000534 0.01698 0.005488 0.004239 0.0389 2.273e-06 0.02576 0.001063 0.0007147 8.202e-06 0.0004256 0.4848 0.4848 0.00495 0.007724 0.0009824 0.3699 0.004644 0.06422 4.063e-05 0.006608 3.245e-05 0.1235 0.004355 0.0001331 0.29 0.01003 0.0002443 0.002198 0.0009133 0.001307 0.001176 0.0005855 0.0001419 0.0007194 0.00276 7.99e-06 0.001806 0.01741 0.002149 0.003653 9.834e-06 0.04371 0.001664 0.0835 5.769e-06 0.5707 0.002072 0.0004503 0.000249 0.01257 0.0002628 0.01737 0.0003486 0.5645 0.0003161 0.6417 0.0004474 0.002951 0.003759 4.15e-06 0.01319 0.002517 0.003651 0.0004441 0.01558 0.00166 0.03171 0.204 0.5952 0.002533 0.00697 0.5635 0.0009134 0.0001301 0.002887 0.01122 0.0004013 9.951e-06 0.5247 0.003825 0.000546 0.01729 0.00241 0.0009183 9.409e-06 8.921e-06 0.04482 4.361e-06 0.006364 0.0001319 0.0001524 1.322e-05 8.492e-05 0.3412 8.689e-06 7.498e-05 0.0008954 0.00372 0.004829 0.002072 0.001786 0.009445 0.005032 0.000199 0.00105 0.005548 0.003578 0.0002506 0.0001122 9.418e-06 7.832e-09 5.356e-05 2.064e-05 0.03444 0.04806 0.008024 0.0002726 0.005021 0.01743 0.01107 0.001394 0.005179 0.0009297 0.004143 0.007896 9.958e-06 0.5808 0.009465 6.564e-05 0.3814 0.002483 0.3008 0.5679 0.00246 0.0004664 0.001249 0.0001861 7.748e-05 0.01013 0.0005959 0.0007115 0.001885 0.5766 0.0002799 0.002661 0.5458 0.5598 0.006933 5.951e-05 0.00252 1.414e-06 0.006598 0.353 0.003858 0.006154 0.008141 0.001772 0.6175 0.005318 9.124e-06 0.0153 0.01367 0.0008105 0.02766 0.005766 0.0004131 0.001641 0.6174 0.01183 0.001705 0.5729 0.5273 0.001051 0.3003 0.0002654 0.002822 0.00153 0.000104 5.671e-05 0.003616 0.5911 0.003474 0.4848 0.007283 0.0006867 0.0008785 0.06728 0.0005496 0.0004026 0.0007269 0.001036 0.000642 0.001607 0.476 0.0003024 0.000268 0.0003674 0.07706 0.06495 6.847e-05 0.0003671 0.01944 0.001048 0.002507 0.00915 0.0004891 0.006439 0.002802 0.05991 0.0007417 0.001944 5.053e-06 0.03494 0.5464 0.00345 0.4524 0.5135 9.421e-09 0.01472 4.092e-05 0.0003174 0.004114 1.67e-05 0.0007298 0.009108 0.0001568 0.0008716 0.0007622 0.0004857 0.003707 0.00399 0.01977 0.00326 0.0007362 3.557e-05 0.0079 0.002257 0.07242 3.193e-05 0.001831 0.001663 0.5884 0.007299 0.003845 0.005325 0.5812 0.01927 0.6078 0.004429 0.0002244 9.896e-05 0.5093 0.002058 0.0005528 0.0006444 0.3995 0.0006843 0.003924 0.001057 0.01525 0.006631 0.0013 0.0005889 0.001417 0.5129 0.4383 0.006283 0.0009632 0.3864 0.4411 1.755e-05 0.003219 0.001561 0.001484 1.782e-05 6.786e-06 0.004562 8.957e-06 5.828e-06 0.006543 8.817e-09 0.2452 0.002278 0.006457 0.01028 8.367e-06 0.001463 0.5704 0.001406 0.007664 0.002694 0.307 0.0006345 0.01329 0.0006455 0.009006 0.003815 0.02476 0.001286 1.17e-05 0.0001612 0.006119 0.002593 0.003887 0.06446 0.3895 0.0007041 4.942e-06 0.001417 0.001343 0.003171 0.009924 0.0008059 0.0009571 0.1061 0.005531 0.0002069 0.00286 0.0007038 0.0007647 3.899e-06 0.003635 0.001964 0.0001107 0.001188 7.077e-05 0.0001965 0.005617 0.002034 0.07082 0.0003682 0.0006889 9.482e-05 0.01031 0.006395 0.01108 0.003909 6.747e-06 0.00207 0.0009613 3.958e-06 0.001433 0.007178 0.002682 4.701e-06 0.02737 0.001964 1.222e-05 0.004348 9.117e-05 3.049e-05 0.5222 0.002796 0.001039 0.002486 0.03269 0.02351 0.0006158 0.01026 0.002835 0.001429 0.0684 0.0002393 0.001432 0.04427 0.5788 3.004e-05 3.721e-06 0.006216 0.000351 0.0007734 0.01236 0.5885 0.0006542 0.01732 0.004139 5.706e-06 1.099e-05 0.0006808 0.000255 0.136 0.0009869 0.1631 0.03366 0.002967 0.003691 0.2868 0.571 1.175e-05 0.003444 0.02579 0.001722 0.5251 8.95e-06 0.5593 0.002467 7.43e-06 0.001032 0.3873 0.005713 0.4152 0.003897 7.489e-05 0.004753 0.5741 0.0007942 0.001458 0.0004944 0.0003876 0.496 0.0006079 0.009205 0.0003198 0.002551 7.855e-05 0.008476 0.0008322 0.005439 0.0003428 0.01972 0.001322 7.891e-06 0.5963 0.4642 0.002695 6.741e-05 1.473e-05 0.003155 0.0003274 0.0006209 0.001643 6.565e-06 0.0002634 0.5932 0.004525 0.003161 0.00173 0.3923 0.002428 0.04287 1.171e-05 0.001558 0.004386 0.4908 1.484e-05 0.0007908 0.05521 0.02143 0.01465 0.1691 7.913e-05 0.0007298 0.002111 8.155e-05 0.001732 4.24e-05 0.02818 0.001614 0.0005334 1.821e-05 0.005143 0.002205 8.922e-06 0.005616 0.0003176 7.646e-06 0.01536 7.127e-05 0.001292 0.6593 0.004381 0.001902 0.0007552 0.1909 0.01244 0.002618 0.0996 0.03147 0.002727 0.0008138 0.0007788 0.0008055 0.02826 0.003137 0.1182 0.02243 0.5565 0.1719 6.055e-05 0.0001488 0.005762 0.6145 0.003293 0.0005007 0.004693 0.001139 8.306e-06 0.001202 0.0115 0.5703 0.5218 0.0008107 0.02584 0.01736 0.004133 0.002484 5.864e-05 0.001737 8.827e-06 0.001659 0.3607 0.0002206 0.0006706 0.0003128 0.09447 9.938e-06 0.5747 7.567e-06 6.254e-06 0.5689 0.01447 0.002111 0.02011 0.0001031 0.001888 0.5838 0.006954 0.003404 0.002512 0.0005202 3.654e-05 0.0004646 0.0008254 5.695e-05 0.02166 0.5694 0.0005046 0.02027 0.0009076 0.08457 0.02719 0.0002565 0.002272 0.004341 0.002071 0.002665 7.331e-06 4.332e-05 0.0002285 9.464e-06 0.6512 0.0006129 0.007366 0.0278 0.0006797 8.229e-06 0.01171 2.469e-05 0.0003179 0.003072 5.268e-05 0.01865 0.008467 0.005115 0.0003771 0.0002704 0.0009831 0.004385 0.00078 1.054e-05 0.009054 0.00023 0.3595 0.3675 4.994e-05 0.0001152 3.768e-05 0.0009269 0.001381 0.05334 0.001524 9.952e-05 0.4985 0.5821 1.073e-07 2.701e-06 0.00192 0.4394 0.003679 9.733e-06 0.003269 0.002022 0.02374 0.002444 0.002697 0.0003015 1.918e-05 0.0003663 0.000234 0.003731 0.01303 0.5816 0.00112 0.001436 0.002022 0.004497 0.005435 0.01032 0.008366 6.685e-06 0.00157 4.991e-06 0.000532 0.0003737 0.003174 0.009374 0.000139 0.002234 7.837e-06 0.5331 0.003318 0.0002835 0.000312 0.6045 0.5263 0.007993 0.003604 0.0005748 0.01006 0.01036 0.0007258 6.563e-06 0.003949 0.007391 0.003176 0.007051 1.041e-05 0.002261 0.006194 0.001727 0.0002167 0.001117 0.002058 1.561e-05 0.01657 0.002451 0.001323 0.007145 8.669e-06 0.0005675 0.006644 0.0002884 0.006775 0.0006493 0.004183 0.03777 0.005655 0.00157 0.4866 0.0001377 0.0164 0.005043 0.5102 0.0007866 0.005023 0.197 0.006781 0.001012 0.0003858 0.006864 1.005e-05 0.01205 0.0006057 0.0002655 0.001149 0.08536 0.0005632 0.5633 0.007415 0.01715 0.001098 0.3225 0.01125 7.478e-06 0.0002703 0.001876 7.124e-06 0.0008517 0.0003827 0.003148 0.4081 0.02812 0.00028 0.001761 0.01902 0.0003963 0.006824 0.0005703 3.584e-05 0.001493 7.467e-06 0.0002958 0.03119 0.001719 0.00225 0.003813 0.5466 0.006809 0.003683 1.543e-05 0.003999 0.001117 0.004194 0.0007905 6.65e-06 0.00373 2.408e-06 0.003622 0.5784 0.008555 0.2453 0.13 0.0001557 0.002629 0.006046 0.007671 0.00141 1.14e-05 0.422 0.0001568 0.002648 4.849e-05 0.4341 0.4494 0.5158 0.3389 0.5678 0.5368 4.518e-05 0.01331 0.003019 0.03702 0.004612 0.5589 0.006782 0.04472 0.01059 0.03267 0.0001852 0.0009188 0.001493 0.01195 0.006245 1.585e-05 9.484e-05 0.0002336 0.0002143 0.3518 8.529e-05 0.4086 0.02534 0.3161 0.0006191 0.0006053 6.524e-06 0.0001584 1.904e-05 0.0007158 0.004492 0.0004728 4.57e-05 1.372e-05 0.5617 0.001463 0.0002806 6.782e-05 0.00392 0.0008835 0.0001029 0.00458 0.0009452 0.5595 0.001582 0.003978 0.0001324 0.00587 8.119e-06 0.000594 0.002498 1.011e-08 0.5853 0.0005517 0.003106 0.002832 0.0009666 0.2364 0.06591 5.766e-05 0.00284 0.0002285 0.0008543 0.0008135 0.003434 0.0004901 0.01334 0.6037 0.0004331 8.378e-06 0.003582 0.00118 0.02208 0.004187 0.002129 0.03952 0.0008841 0.5654 0.003373 0.006112 0.3723 0.0001007 0.01409 0.0008326 0.005847 0.0002144 0.001594 0.008329 0.375 0.002088 1.646e-05 0.0003369 0.005485 0.4718 0.001885 0.002786 0.0009206 9.796e-06 0.5648 0.5623 0.001552 0.2222 0.0006319 0.001879 0.004267 1.509e-05 2.472e-05 0.00144 0.0223 0.0006085 0.00405 0.01003 0.06863 7.218e-05 0.0001275 1.067e-05 0.00333 0.0007563 0.0002812 0.06696 0.132 0.06144 0.003439 0.01388 5.184e-05 0.3239 0.00341 0.4616 0.0009605 0.0007007 0.0001066 0.0005565 0.3397 0.009341 0.3328 0.6601 0.00482 0.5486 0.3314 0.001445 0.01871 0.03885 0.004253 1.574e-05 0.01295 0.0176 0.001515 0.0002344 0.0001177 0.5667 0.0008827 0.003649 1.581e-05 0.003152 0.001732 0.000314 0.0004193 0.000223 0.03339 0.009672 0.0019 0.001162 0.193 0.002338 0.5651 0.006258 0.007698 0.5701 0.001427 0.005545 0.0007597 0.05516 0.0005627 0.001516 0.5643 0.0602 0.0006982 0.5596 0.004633 0.00605 5.592e-05 0.002028 0.003693 0.01321 0.00896 0.001703 0.01296 0.001324 0.07043 0.2324 0.0005239 8.158e-06 0.6493 2.752e-05 0.0001755 0.06393 0.001291 0.002772 0.003643 0.5976 0.002197 0.4016 0.1736 0.001027 4.612e-05 0.0002301 0.2383 0.0002246 0.03126 0.005553 0.0003665 0.03042 0.4081 0.0006561 1.043e-05 0.0006469 0.002506 0.001332 3.198e-06 0.0001478 0.001371 0.02635 0.002035 0.0009811 0.2177 0.3457 0.000767 0.002914 0.009505 0.0008968 0.002761 0.008161 7.202e-05 0.5936 0.5499 0.009961 1.569e-05 0.01322 0.000271 0.003784 0.03164 0.004025 0.001017 0.001404 0.0001542 0.009622 0.002146 0.002228 0.0002366 0.001918 0.0005943 0.5228 0.4081 0.02007 0.0002324 0.5711 0.0002814 2.975e-06 5.979e-05 0.04843 6.667e-05 0.0002601 4.166e-05 0.00369 0.59 1.291e-05 0.004691 6.687e-05 1.089e-05 0.000175 2.097e-05 0.0007125 1.121e-05 0.01096 0.5614 0.0004213 0.009428 9.497e-06 0.001692 0.00924 0.001661 0.00401 0.001782 0.00266 5.862e-06 0.4568 0.002646 0.02666 0.002709 0.0003954 1.092e-05 0.0006457 0.3526 0.0003368 0.3482 0.0001877 0.009058 0.00149 0.5621 0.0002232 0.02726 0.0009375 0.001011 0.006885 5.585e-05 0.0051 0.5502 0.0002569 0.0006134 0.04748 0.000672 0.00628 7.395e-06 0.008424 7.106e-08 0.5783 0.0001632 0.2565 0.03086 0.008228 8.302e-05 6.973e-05 8.154e-06 0.4934 0.0008472 0.4098 0.004951 0.05888 0.005852 0.3816 0.1238 7.331e-06 0.0009933 0.0001717 5.827e-06 2.51e-06 0.0004605 0.001797 0.4637 0.00108 0.007688 0.002372 0.01071 5.37e-06 0.005975 8.749e-09 0.0006213 0.003085 0.1462 0.1573 0.008378 0.001857 0.43 0.001988 0.0003642 0.1947 0.01438 0.5681 0.5681 0.5437 0.02371 0.007085 0.000852 0.01437 0.08809 0.000795 0.0007738 0.007406 0.004851 0.008828 0.0004978 0.06238 0.004865 0.001164 0.0005954 0.002122 0.0038 0.359 0.008581 8.101e-05 0.001362 0.0003472 0.5267 0.002424 0.000195 0.007281 0.3684 0.009715 0.146 1.317e-05 0.00889 0.002964 2.567e-06 1.249e-05 0.00134 0.004379 0.002162 0.003778 0.0004421 0.003865 0.549 0.5316 0.0005603 0.002567 0.004998 0.6489 0.493 1.094e-06 0.0005835 0.0002471 0.0024 0.00025 7.458e-05 0.3725 0.002638 0.0001557 0.006391 7.104e-05 0.0002398 0.0007704 0.5839 0.000332 0.338 0.5549 0.3385 0.1835 0.01144 0.003835 0.00148 0.002233 3.574e-06 0.001214 0.001989 1.837e-05 0.01994 0.0006081 0.002465 7.387e-05 0.0002492 0.0002569 0.0004072 0.3637 0.00309 0.06078 0.0004372 0.2041 0.4091 0.002172 0.5591 0.0002935 0.01517 7.678e-06 0.000432 0.0002917 0.0004435 0.0008956 0.0006666 0.0005262 0.006581 0.007899 0.359 0.569 0.003013 0.5779 0.3892 0.002628 0.01077 0.5943 0.4661 0.01162 0.5557 5.49e-06 0.000963 0.00071 0.001529 0.0008761 2.084e-05 0.0001982 0.0004496 0.0002669 1.183e-05 0.006155 0.01513 7.718e-05 0.005192 2.076e-05 0.0005605 8.726e-05 0.5966 0.0009094 0.003006 0.007099 0.002173 0.01357 2.736e-05 0.02991 0.005018 9.466e-06 0.002315 0.3406 0.001626 0.002023 0.5594 0.0002488 0.003139 0.007643 0.007392 2.922e-06 0.0002162 0.0005252 0.001349 0.0005063 0.1663 0.002631 0.05386 0.007984 0.000779 0.04482 0.001146 0.5038 0.6471 0.0001661 0.0391 0.5772 1.936e-05 0.6383 0.0001127 0.000596 0.0009753 0.002081 0.004708 0.006573 7.622e-06 0.003058 5.147e-06 0.01047 0.004452 0.00282 0.0005145 5.118e-05 0.0003217 0.008876 0.006584 0.003754 0.0001653 0.5629 0.5742 0.02871 0.0003176 3.922e-05 0.0001204 5.807e-06 4.953e-05 0.001101 5.671e-06 0.002785 0.003791 0.3441 0.05581 0.00156 0.01197 0.03744 0.1728 0.01214 0.003942 0.0007984 0.4148 0.003322 0.004768 0.004154 0.0003454 0.1563 0.0006195 0.0002017 0.001155 0.0001567 1.055e-05 4.369e-05 0.0009344 7.891e-06 6.091e-05 0.004633 0.005477 0.0003486 0.0003664 0.4167 0.001617 0.01104 0.003846 3.027e-05 1.434e-05 9.557e-05 0.4142 1.263e-05 0.007217 0.002703 0.002393 0.001065 0.0002918 0.001737 0.3397 0.154 0.5828 0.004799 0.0003928 0.01157 0.006438 0.009294 0.003012 0.3426 4.838e-05 0.002397 0.01921 0.001043 0.001838 0.002588 0.01123 0.426 0.09561 0.2689 0.2701 0.1564 0.578 0.05621 3.431e-05 0.001937 0.2776 0.279 0.00121 0.0322 0.1219 0.5719 0.4663 0.002556 0.5737 0.01152 0.0001055 0.0009396 0.0005842 0.0005194 0.00849 0.0002475 0.5761 0.001548 0.002557 0.595 0.01873 0.3387 0.003421 0.2674 6.235e-06 0.003087 0.01764 0.008982 0.1219 0.007281 0.003057 0.003111 0.0008456 0.06163 0.0004794 0.0003388 0.0001191 0.001835 0.006152 0.001711 0.006494 0.0006457 0.007658 0.0002661 0.02403 0.0001713 0.586 0.4281 0.01354 0.008507 0.003075 0.2139 0.5937 0.000581 0.001618 0.03088 0.0006043 0.002066 0.02944 0.006206 0.4335 0.0004567 1.555e-05 0.009075 0.01025 0.001356 0.0004275 0.002295 0.01004 0.00555 6.248e-05 0.4505 0.000269 0.001823 0.00154 0.01043 0.0002436 0.4103 0.003611 7.038e-06 2.361e-06 0.0001885 0.01634 0.001053 0.002488 0.001988 0.001797 3.354e-06 0.4326 0.04212 0.1128 0.3131 0.4024 0.004853 0.129 0.01146 0.001744 0.6491 0.1689 0.0001951 8.365e-06 0.02211 0.03923 0.0001023 0.003658 6.509e-08 0.02341 0.001042 7.629e-05 0.003403 0.006343 1.898e-06 5.705e-05 0.001922 0.0001911 0.001627 0.03917 0.08931 9.841e-05 0.0007177 0.002591 0.004768 0.0369 0.0017 0.0138 0.5181 0.0003296 0.5178 8.758e-05 0.5726 0.002159 0.001125 0.009864 0.0004764 0.0002315 0.0006323 0.5705 0.0099 0.0002607 0.006087 0.0007228 0.01543 0.0008334 0.005786 0.0004453 0.001256 0.001593 0.01014 0.0009913 8.388e-06 0.0004251 0.09952 0.000725 0.1153 0.0009533 0.1353 0.568 5.464e-06 0.0006326 0.2091 1.392e-07 0.0313 0.0005904 0.5712 0.002859 0.009646 0.0009475 0.002962 0.0004989 0.001944 0.0001536 0.0001058 0.000694 2.058e-05 0.0006982 3.282e-05 0.02821 0.00321 0.0003287 0.002936 0.5425 0.5687 0.0008906 0.002905 0.001023 0.001867 0.0003606 0.0004116 7.72e-06 0.5645 1.188e-05 0.003396 0.001011 0.0001799 0.1264 0.0014 0.5685 0.5751 0.001701 0.006619 0.009111 0.0044 2.131e-05 0.0008173 7.075e-05 0.5693 0.004392 0.0003163 0.5429 0.0005533 0.002536 3.903e-06 0.4029 0.0002891 0.03833 2.911e-06 4.241e-05 0.0002697 0.00412 0.04127 0.01189 0.005993 0.007421 0.007257 0.002562 1.636e-05 0.0004381 0.02279 0.2462 0.3742 4.663e-05 7.262e-06 0.002683 4.846e-06 0.004873 0.0005759 9.656e-06 0.0009804 0.01115 0.005576 0.01162 4.811e-05 0.004353 0.002045 8.129e-06 0.00328 0.0002673 9.161e-06 3.463e-06 0.001814 0.001535 0.0004077 0.004426 0.0006297 0.0006151 0.00694 0.0003044 0.0004083 0.004639 0.0008425 5.953e-06 0.007908 0.09441 0.007628 0.001063 0.1237 0.006571 0.006486 0.03728 0.003412 0.00713 0.01556 0.004142 0.6227 0.003215 0.000305 0.004405 3.995e-05 0.09453 0.606 0.001614 7.32e-06 0.0002015 0.001511 0.5727 3.631e-06 0.0006157 7.219e-06 0.05214 0.04666 0.01031 6.477e-06 0.001703 0.0008686 0.002162 0.0002746 6.661e-05 0.03862 0.3327 0.0001326 0.0001264 0.6177 0.5659 0.0003067 0.002883 0.0006948 0.0001996 0.0006958 0.5636 0.000338 0.005574 0.007183 0.0007849 0.0003343 0.01952 0.0002831 0.0004108 3.169e-06 0.005255 0.005229 0.0006639 0.006566 0.004201 0.2203 0.02368 0.0006791 0.03017 0.01254 0.0006782 0.002065 0.03678 3.99e-05 0.004534 0.04996 1.647e-05 0.5757 0.008388 0.002658 0.007635 0.5085 0.00704 9.089e-05 0.17 0.1617 0.003304 0.0007577 0.0009797 0.02317 0.6014 0.4082 0.5782 0.001515 0.0001217 4.77e-05 0.001256 2.121e-06 0.003565 0.002366 0.5732 1.058e-05 0.0001766 0.4948 0.0005394 0.5806 0.001215 6.225e-05 0.00215 0.007336 0.0005512 5.329e-06 1.173e-05 0.001341 0.01449 0.02213 0.0003736 0.001694 0.000238 0.5037 0.004435 7.135e-06 0.009777 0.001477 0.002629 0.2222 0.005839 4.378e-06 0.001946 0.01137 0.004283 0.03909 1.007e-05 5.94e-06 0.4505 0.002118 1.015e-05 7.776e-06 0.004658 0.00721 0.005986 1.905e-05 0.00701 1.684e-05 0.004445 0.009378 0.000332 0.002031 8.535e-06 0.0002338 0.001985 0.0004223 0.0002196 0.0003513 9.357e-06 0.004611 0.3321 8.423e-05 0.5469 0.5791 0.005689 0.001557 8.495e-05 0.001796 0.00402 0.05522 0.6027 0.5562 0.002644 0.0004184 0.002607 0.0001872 0.001983 0.0008735 0.001631 0.04096 0.001188 0.01381 8.201e-06 5.877e-06 2.966e-05 0.00381 0.004411 0.002259 0.001309 0.0006401 0.003577 9.04e-06 1.007e-05 0.0005112 0.001972 0.0007938 0.01056 5.87e-06 0.0001332 6.008e-06 0.006971 1.211e-05 0.002945 0.00281 0.001833 0.0001156 0.3838 0.0003784 0.02783 0.4083 0.002013 0.6466 0.001323 0.0002018 0.5643 0.01034 0.0003079 0.3869 5.358e-05 0.002051 0.0001722 0.0007796 0.5671 0.0001247 0.0108 0.0004222 0.002892 0.004805 0.03073 0.4951 0.347 0.3638 9.47e-06 0.05266 0.6012 0.2422 0.02397 0.0005096 0.002287 0.03563 0.00649 0.1689 6.648e-06 0.002426 0.0002716 0.0001711 0.0004623 0.001753 0.2132 0.4029 0.5631 0.01933 0.0131 0.01336 0.002864 0.001764 0.08832 0.002065 0.0002863 0.628 0.006874 5.292e-05 0.001956 0.001476 0.004389 0.01186 0.01072 0.0007198 0.0001536 0.003133 0.08712 4.166e-05 0.5735 0.009602 0.0002332 9.645e-06 0.001299 0.01966 0.0001311 0.0001872 0.5575 0.5145 5.808e-06 0.0123 0.000644 7.76e-06 0.004278 1.204e-05 0.01062 0.001955 0.0001795 0.5553 0.6307 0.2362 0.04642 0.002035 0.1235 0.007794 0.0002176 0.08871 8.258e-06 0.001245 0.007776 0.0001424 0.5534 0.003137 0.0007102 2.011e-05 0.006039 0.00185 0.5976 0.02827 0.02155 0.5875 0.001098 0.004783 0.002159 0.0009092 8.83e-05 0.004042 0.02971 0.0007175 1.133e-05 0.000464 0.0008384 9.752e-06 6.908e-05 1.329e-05 0.0003796 0.5902 0.001384 0.01435 0.01349 0.4156 0.09599 3.795e-05 0.0001044 0.002925 0.0008896 0.0004429 0.5806 0.02161 0.0464 4.566e-06 0.5416 0.00216 0.006052 0.4917 0.0001253 0.5708 0.023 0.01515 0.01238 0.001368 6.99e-06 0.000565 0.006683 0.2056 0.5585 0.009731 0.001606 1.419e-06 0.0002829 0.0001459 9.098e-05 0.001509 6.266e-06 0.05103 0.0005184 0.00568 0.006988 0.399 0.01412 0.5722 0.5117 0.007507 0.01575 3.018e-05 0.01684 0.0006959 0.001576 0.01731 0.002949 0.02509 0.002399 0.009432 0.0003768 0.003329 1.144e-05 0.04341 0.001769 0.003343 0.0003581 8.912e-06 0.0003954 0.001494 5.278e-05 0.000366 0.0005268 0.1072 0.009066 0.4077 0.6466 0.04469 0.03034 0.4721 0.0004169 0.01302 0.4847 8.081e-06 0.0002002 0.004316 0.003579 0.0002048 0.01533 0.0006924 0.4957 0.5386 0.001934 0.01943 0.008726 0.000629 0.009115 0.0009375 0.009091 0.0003863 0.0004549 0.002103 0.0001943 1.086e-05 0.002524 0.003337 0.0001952 6.916e-06 0.0006595 0.0006063 0.003761 0.009224 0.6158 0.002882 0.001975 0.03156 0.0006075 0.01402 8.179e-05 0.05484 0.0004858 0.001096 0.002369 0.04758 0.0005941 0.6003 0.0004308 1.097e-05 4.072e-06 0.5574 0.07802 4.118e-05 0.003748 0.001528 0.003927 0.006515 0.04329 0.1507 0.1446 0.00563 0.06053 0.001718 0.001258 0.0168 0.0003704 0.001774 0.01538 0.5638 0.007025 0.00258 0.01248 0.2679 0.5311 0.0006136 0.01737 0.001978 1.019e-05 0.005012 0.0003554 0.004809 0.0001085 3.196e-06 3.38e-06 0.0003531 0.002897 0.002612 0.0001209 5.153e-05 1.354e-05 0.01542 0.2547 0.0009139 0.0007771 0.006873 0.0002993 0.0005254 0.003643 0.0003113 3.856e-06 3.265e-05 0.02999 0.00388 0.007331 1.029e-05 6.962e-05 0.006109 0.0004499 0.0008349 0.009954 0.0002578 0.01118 4.139e-05 0.0007696 0.000128 0.5719 0.03133 0.02784 0.00702 0.0002175 0.1605 0.01207 0.001046 0.0006859 0.01992 0.001094 0.4094 0.002646 0.09578 0.003746 0.006726 0.002904 0.0006644 0.001369 0.0002573 0.004139 5.126e-06 0.0009844 0.5579 0.0003378 0.0003246 0.002046 0.2119 0.0001187 9.412e-06 0.001008 0.002687 0.02705 4.104e-07 0.5772 0.0007492 0.6446 0.4092 0.4091 0.5752 0.0001756 5.139e-06 0.001082 5.196e-05 7.82e-06 0.07154 0.005262 0.0001157 0.5634 0.001176 0.0007243 0.5387 0.02599 7.308e-06 0.0002155 0.0002188 0.0004693 0.03985 0.0003848 0.01774 0.002535 8.544e-05 0.3699 0.00043 0.3886 0.5623 2.77e-06 0.02206 5.833e-05 9.051e-06 0.01372 0.01946 1.184e-05 0.0005502 0.004452 0.004511 0.5602 0.003232 0.1382 0.002273 0.4977 0.009594 0.4322 0.005379 0.0008134 0.005601 0.002345 0.008988 0.003313 0.3685 0.08155 0.04557 9.971e-06 0.008391 0.001274 0.3559 0.004212 0.1788 0.002004 6.1e-06 0.5261 0.001169 0.01608 0.3314 0.0005455 2.651e-05 0.01668 0.2797 0.06213 0.003217 5.271e-05 0.0007405 0.01075 0.0001742 0.003856 0.003648 0.4213 0.0002347 0.367 0.4096 0.002628 0.5677 6.094e-05 0.4834 0.0003143 1.952e-05 0.0005994 0.001296 0.007994 0.001988 0.07721 5.892e-06 0.001651 0.1694 0.001848 0.001493 7.819e-06 0.007341 0.0001304 0.001532 6.688e-06 3.437e-06 0.000871 0.004461 0.0005859 0.00328 0.005468 0.3728 0.5641 1.502e-05 0.09195 0.007461 4.088e-06 8.521e-05 0.3673 3.274e-06 0.002443 0.0005062 0.02855 0.06312 0.009132 9.759e-06 0.002701 0.3654 0.01826 0.0006239 0.00435 0.3972 0.3972 0.0002616 0.0005888 0.005177 0.567 0.01541 0.007577 0.06764 0.04818 0.0009271 0.0008029 8.175e-05 0.3128 1.403e-05 0.5024 0.01726 0.5345 0.0002755 0.3661 0.001025 0.4178 7.972e-06 0.004216 0.0004588 0.4685 0.007503 0.02575 0.00193 0.006256 0.005045 0.1337 2.452e-05 0.005625 0.01369 0.002081 0.4131 0.01498 0.008676 0.001213 0.0003419 0.00174 0.04503 0.017 0.009585 9.278e-06 5.716e-06 0.001223 9.15e-07 0.0009445 0.003765 0.006452 0.0002674 0.01195 5.02e-05 0.009043 0.1083 0.1715 0.1124 0.005531 0.01352 0.001025 0.0008512 0.001694 3.861e-06 0.006349 9.678e-06 0.002265 0.001785 0.3138 0.009615 0.002056 8.458e-06 0.02752 0.001114 0.0001543 0.001179 0.2733 0.0008874 5.571e-05 0.001131 0.5632 5.685e-05 0.004065 0.0003374 0.007245 0.01184 0.00368 0.3252 0.4966 5.61e-06 0.0039 0.05256 0.3779 0.0003938 0.0003305 0.0005742 0.01187 0.001146 0.0008034 0.5282 9.546e-06 1.049e-05 0.0007804 0.0003653 0.009076 6.881e-05 9.602e-06 0.0003848 0.0009717 0.01209 2.517e-05 1.006e-07 0.2404 0.01038 0.2947 0.00484 3.323e-06 0.002565 0.005515 1.071e-05 0.006406 0.3063 7.842e-05 0.01231 2.216e-05 0.5633 1.019e-05 0.03926 0.0002555 6.115e-06 0.008252 0.0004069 0.003811 0.003035 0.4933 0.0002558 0.0005162 0.002084 0.01058 0.001177 0.004926 0.01653 0.001686 7.41e-06 0.0003293 0.006612 0.0003146 0.006004 0.002027 0.004922 0.0001739 0.002876 0.0004865 0.6154 0.002527 0.006221 0.00543 0.5673 0.3761 0.00524 0.4204 0.03072 0.0005153 0.002349 0.0004354 0.0004731 0.0005305 0.3853 3.584e-06 0.01326 0.00372 0.1333 0.3905 0.04217 9.33e-06 0.001419 0.002511 0.0006753 0.002086 7.222e-05 0.003198 0.001039 1.191e-05 0.5704 0.0005313 0.0003456 0.01055 3.441e-06 0.4545 0.006212 8.223e-06 8.533e-06 0.00235 0.4678 0.5547 0.000404 0.4638 0.007676 0.003009 0.001552 0.01214 0.01821 0.005024 1.302e-05 0.005171 0.001435 0.03575 0.001632 1.797e-07 0.02522 0.5487 0.001732 0.001397 0.01082 0.06528 0.01796 6.872e-06 9.944e-05 0.003241 0.002023 0.06729 0.0001549 0.0004376 0.0001716 0.001185 0.04836 1.139e-05 0.5525 0.0001135 0.008947 0.009113 2.117e-06 0.000637 0.004339 0.001407 0.002516 0.003014 0.0008226 0.01525 0.0001839 0.00815 0.02873 0.0004299 0.0003073 0.0001828 0.0003582 9.077e-06 7.38e-06 0.001344 0.0002055 0.002549 0.5886 8.14e-06 4.254e-05 0.5696 0.006318 7.869e-05 0.002849 0.002346 0.00312 1.896e-05 0.5325 8.738e-06 0.002784 0.5859 0.4062 0.0001763 0.00225 0.4895 0.0001433 0.0004692 0.005647 7.387e-06 0.0001752 0.5547 0.001267 0.001403 0.0001563 6.83e-05 1.077e-05 0.005855 5.293e-05 0.0003986 0.002864 2.707e-05 0.6018 0.002885 0.006483 0.2807 0.6077 0.001596 0.5745 0.002867 0.0007007 0.0007203 0.001092 0.61 0.0001019 0.006653 0.002604 0.003758 1.681e-05 0.0003835 0.004652 0.4646 0.002244 4.679e-05 0.001926 0.0003227 0.005816 0.0007661 0.001189 6.014e-05 0.002063 7.137e-06 0.3923 0.0002963 0.01631 0.02153 0.4995 0.002589 0.003075 0.002354 4.316e-07 0.02087 0.0008951 0.2818 0.004332 4.137e-05 0.0006776 0.001974 8.928e-05 0.006066 0.4453 7.482e-05 0.004182 0.001813 9.965e-06 7.606e-05 0.01049 0.0001984 0.006917 0.0002554 0.0004407 0.001824 7.761e-06 0.007006 0.4079 0.004894 0.008813 0.001024 0.002413 0.008007 0.511 0.01094 0.004771 0.00257 0.002702 0.5873 0.4008 0.00194 0.002042 0.01471 0.05267 8.939e-05 9.667e-05 0.0004842 0.5718 0.007424 0.07381 0.007991 0.06007 0.001961 0.01466 0.003181 0.0004122 0.01607 0.002695 5.397e-05 0.4522 0.001781 0.001703 0.0002122 0.0007683 1.655e-05 0.0004977 5.393e-05 0.0005617 0.0005376 0.000491 0.00699 0.0003083 0.0005995 0.3521 0.3462 0.03155 0.01806 0.0006244 0.4507 0.007286 5.863e-05 0.0006847 0.001302 4.692e-06 0.0003308 0.006711 0.000817 0.5261 0.01163 0.001872 0.4793 0.6064 0.6101 0.0004491 0.0008109 0.0003251 0.0029 0.1054 5.497e-05 0.001264 0.009991 9.054e-06 0.000575 0.001617 0.0002442 6.017e-06 0.0001036 0.000565 0.008415 0.5749 0.1284 0.001736 0.0001641 0.003177 0.4351 0.00112 0.008552 0.005472 0.5832 0.0005452 8.862e-06 0.001781 0.000976 0.004219 0.001846 0.01522 0.0001883 0.5695 0.0002068 0.007487 0.002413 0.0666 0.0007329 0.007054 4.759e-06 0.05059 0.001913 0.005522 0.6077 0.0001827 5.83e-06 0.0001601 0.0008612 0.01096 0.002626 0.004162 0.4985 0.002505 0.008078 9.741e-06 0.02776 0.002008 4.805e-05 0.007595 0.4939 1.14e-05 1.127e-05 0.001212 0.00013 0.003344 0.003718 0.02541 0.0001414 6.371e-06 0.07 8.705e-06 0.3278 0.003272 0.001235 0.0005163 9.477e-06 0.0005736 1.808e-06 6.296e-05 0.0001986 0.5137 0.2317 0.04454 0.01616 0.5773 0.002788 0.3399 0.001598 0.0001942 1.001e-05 9.659e-06 0.0002168 0.004218 0.3589 0.01027 0.01144 0.05988 0.004049 0.0003532 0.002484 0.0005195 0.0007494 0.002613 5.083e-06 0.006264 0.4739 0.5748 0.009374 0.007571 9.164e-06 0.5686 7.666e-05 0.3397 0.0003049 4.284e-05 0.006242 0.5457 0.6473 0.0006158 4.68e-05 0.0005595 8.479e-05 0.2199 0.00317 0.001242 0.001167 0.0008409 4.294e-05 1.7e-05 0.008315 0.1181 0.001042 0.01028 0.6304 0.0074 0.004144 0.005453 0.00464 0.01421 1.296e-05 0.0008186 0.0001863 0.001307 0.0008669 2.088e-05 0.009942 0.3829 0.6553 0.0002442 0.3337 8.571e-06 0.02291 0.0008959 3.802e-05 0.003105 0.001118 0.001339 0.4369 0.0002212 0.001534 0.3774 6.177e-05 0.0002834 0.0002496 0.0003684 0.04628 0.2118 9.911e-06 8.472e-05 0.0002739 0.2122 0.001039 1.055e-05 4.823e-05 0.001161 0.5703 7.81e-06 0.001612 0.0006737 0.005114 9.076e-06 1.177e-05 1.021e-05 0.0003702 0.006015 0.002363 1.078e-05 3.078e-06 4.242e-05 8.028e-06 0.0004106 0.004792 0.0002996 1.09e-05 0.0001823 0.003906 0.002512 0.005994 0.04147 0.006311 0.04596 0.423 0.003018 0.01808 0.0018 0.3559 0.2364 0.002552 0.0007818 0.5734 0.003021 0.001192 0.001132 0.008894 0.0001312 0.5719 0.5915 0.0004307 8.078e-05 0.01048 0.5691 0.008761 0.005714 0.005389 0.00409 0.007697 0.5734 0.0001181 0.109 0.005089 0.004151 0.003567 0.0006257 0.0003039 0.009356 0.000285 0.049 0.0005456 0.01673 0.5748 0.3393 0.1925 0.0001406 0.1366 0.000382 0.004341 0.004105 0.003869 0.02727 0.06515 0.5142 0.5668 0.3245 4.364e-05 0.01399 0.03729 0.0001821 0.002205 5.32e-06 0.0003794 0.5827 0.001197 0.5128 0.001505 0.5698 0.003376 0.002718 0.2519 0.6037 0.04582 0.007017 0.001196 0.00212 0.02381 0.04288 0.5813 0.0128 0.02587 0.004426 0.003175 0.004375 0.0008741 0.009363 8.326e-05 0.0003603 0.003222 0.1674 0.5833 0.009395 0.6679 0.592 0.01601 0.3436 3.285e-05 0.001182 0.2308 4.131e-06 0.007202 0.5671 0.0008569 8.313e-05 0.003445 4.934e-06 6.199e-06 0.0003157 0.002273 0.02953 0.01162 0.2907 0.0004789 0.003776 0.208 0.007228 0.001855 0.02174 1.18e-05 6.352e-06 0.001119 1.25e-05 0.0005781 0.5234 0.532 0.3866 1.879e-05 0.0008704 2.299e-06 0.0002685 6.375e-06 1.09e-05 0.001236 0.01337 9.985e-05 0.003709 0.08035 0.0004768 5.862e-05 9.216e-06 0.005666 0.5923 5.367e-06 0.001755 9.698e-05 0.008926 0.0004477 0.0002616 0.0002092 0.001388 0.164 1.072e-05 0.001551 0.001037 1.115e-05 0.0003834 0.0003145 3.765e-05 0.003242 0.3426 0.0007095 0.0002462 0.005062 0.01067 0.003135 0.01597 0.003037 5.423e-05 0.1819 1.745e-05 1.648e-05 0.53 0.02488 2.519e-05 0.002328 0.006521 2.492e-05 0.007868 0.0045 8.837e-06 7.461e-06 0.0005391 7.153e-05 0.0004599 0.6021 0.1609 0.0003907 0.5408 5.322e-06 0.001648 0.003765 0.001323 0.0006733 0.004087 0.0345 0.4566 0.001546 0.0003331 7.737e-05 0.006937 0.002991 0.00531 5.261e-07 0.0431 0.0008983 1.044e-05 0.001624 4.187e-06 0.02982 0.5815 1.422e-05 0.002643 0.02516 0.0004559 0.0007216 0.0002051 0.009625 0.05877 0.5742 0.01148 0.006377 0.3402 0.1437 0.0004567 0.005322 0.003613 0.5749 0.0007319 0.001107 8.508e-05 6.35e-05 0.0001535 0.0008934 0.0001146 0.008589 5.951e-05 0.3583 0.5339 0.0003062 0.003963 0.2806 9.807e-06 0.0001043 0.0002474 0.000638 0.00102 0.0009878 0.002716 0.5678 0.0003087 0.3882 5.729e-06 0.0004893 6.476e-06 0.0003098 0.003287 7.291e-05 6.576e-05 0.1349 0.01841 0.000309 0.001157 0.003646 0.02208 4.348e-05 0.0001142 0.6061 0.009722 0.5811 0.006042 4.684e-06 0.6295 0.00152 0.007922 0.000549 0.003184 0.01545 0.3361 9.116e-06 0.0005841 0.5817 9.786e-06 1.254e-05 0.0002097 0.001563 0.0001384 9.14e-06 0.003354 0.3911 0.5537 0.3246 0.0002212 1.9e-05 0.0006745 0.01156 0.02035 0.001843 0.01186 0.0007343 0.5688 0.006763 0.003355 0.001628 1.091e-05 0.005209 0.004284 0.003675 0.0138 0.3687 0.01811 0.0004497 0.0005397 0.004051 0.0009222 0.05232 0.009728 3.364e-05 0.1003 1.54e-05 0.0002082 6.957e-05 0.0006145 0.0001398 0.6447 1.731e-05 0.5312 0.00584 0.00259 0.5692 0.001542 2.495e-06 0.02142 0.5859 0.001132 0.429 0.02524 0.0001855 0.02036 0.00293 3.055e-05 0.002704 0.001171 0.0006211 0.0004564 0.003906 0.0001576 0.0004703 0.005262 0.001196 9.971e-06 0.02236 0.001519 6.53e-05 0.4155 0.0003181 0.005662 0.0003673 0.0002105 0.0005589 0.0001406 0.002702 0.5754 0.001127 0.003179 0.615 0.5609 6.255e-05 0.06516 1.333e-05 0.5669 0.0002237 2.806e-06 6.46e-06 0.0001771 0.0002223 0.01205 0.0114 0.0008976 0.0005333 0.002031 0.0004834 0.00354 0.01356 0.001189 0.0002154 0.003529 0.0006417 0.001904 0.5577 0.00092 0.006781 0.008974 0.3761 0.004681 0.3809 0.0003447 0.5869 0.001681 0.5841 0.000419 0.0002595 6.473e-06 0.0006165 0.001873 0.0008102 1.059e-05 0.315 0.007806 0.000528 0.00102 0.006133 0.6298 0.0001005 0.003975 0.0009853 2.197e-05 0.0007553 0.00277 0.2371 0.002371 0.004833 0.000266 6.715e-06 3.586e-05 0.002554 0.00573 0.5679 0.0009954 0.0003477 0.004353 0.000194 5.064e-06 0.5362 3.015e-05 0.5637 0.0003157 0.1176 0.003863 0.5772 0.003393 0.5588 0.001346 0.001573 0.0001471 0.003229 0.008552 0.003528 0.0003916 0.4503 0.007635 0.001104 0.009559 8.273e-06 0.3961 0.0001114 0.002035 2.453e-05 0.0005605 0.00574 0.0001395 8.031e-06 0.006938 0.0002104 0.03373 0.001683 0.0007659 0.3512 0.0001082 8.855e-05 7.128e-06 0.004318 0.2801 1.872e-05 4.831e-05 0.1165 0.002636 0.002048 0.004497 0.01335 0.0001696 0.0064 0.006468 0.007112 0.005452 0.007283 0.003296 0.02042 6.728e-05 0.5756 0.002223 1.7e-05 3.847e-05 0.515 0.003591 0.0005718 0.000147 0.0006801 1.691e-05 0.004306 0.00174 0.03189 0.0007366 0.004857 0.5621 0.002393 8.942e-06 0.003893 7.946e-07 7.648e-06 0.001115 5.918e-06 0.01227 0.01954 0.01087 0.5782 0.002907 0.006909 0.002911 7.03e-06 0.01253 0.4865 6.123e-05 0.001401 5.324e-05 0.000196 0.00737 0.02347 3.76e-06 8.141e-06 0.2843 0.2851 0.0002729 0.01094 0.0005131 0.4812 0.005548 0.001523 0.006058 0.6582 0.0007054 0.5945 0.002961 0.1994 1.07e-05 9.041e-06 0.0006927 0.0002795 0.002891 0.09104 0.01265 0.01236 0.01082 0.003437 5.074e-06 0.0006934 0.0009587 0.06886 4.555e-05 0.002932 0.0005713 0.005948 0.001755 0.279 9.705e-06 6.354e-07 0.004937 0.002729 0.0008969 7.885e-05 0.01024 1.128e-05 0.5618 0.002059 0.1218 0.6231 8.878e-06 4.281e-05 0.001302 0.02074 0.00135 0.002327 0.0002324 0.6479 0.01255 0.0002968 0.4168 0.5477 0.001971 4.608e-06 0.01191 6.237e-06 0.0005912 0.0005688 0.0008074 0.05023 0.00138 0.4539 9.42e-06 0.007136 0.01399 0.0009085 1.82e-05 0.004951 0.4104 0.009633 0.001843 0.005149 0.004424 0.00782 0.0001145 0.001429 0.001988 0.003893 0.004703 0.0003521 0.00364 3.042e-07 0.0001291 3.86e-06 0.2944 0.268 0.5729 0.002368 8.116e-05 0.01143 9.435e-06 0.0002143 0.001802 0.6449 0.2584 0.0001577 0.001473 0.0003295 0.405 0.0006025 0.3156 4.75e-06 0.21 0.002093 0.001763 1.061e-05 0.0004878 0.008372 0.004235 1.06e-05 0.01308 0.0008514 0.01493 7.297e-06 0.0002309 0.003836 0.003156 0.5705 0.004497 0.001041 0.6266 0.0004616 0.006953 7.651e-05 0.001419 0.001201 0.4403 1.081e-05 0.000454 9.592e-05 0.002357 0.0024 0.00179 0.005363 0.0002085 0.001729 0.001672 0.02343 0.001477 0.3944 0.1515 0.02911 0.5464 8.183e-05 0.005395 0.001222 0.006825 0.5787 0.000227 7.983e-06 0.5399 0.01129 0.002348 0.001227 5.54e-05 0.002479 9.699e-06 0.01123 2.743e-05 0.5811 0.6043 0.000863 0.0005413 9.304e-06 0.0001133 0.0004972 0.0003671 0.001983 0.008112 0.004209 0.0002455 0.002217 0.004496 0.002898 0.001368 0.5677 0.0007618 0.2485 0.006292 0.003979 0.004901 7.621e-06 0.008716 0.003104 0.007501 0.001324 0.5718 0.3195 0.5691 0.005106 0.000666 0.008488 5.508e-05 0.6659 0.001115 0.4246 6.068e-05 0.01841 0.002796 0.5605 0.0005043 0.0001922 0.009927 0.00109 4.072e-06 0.002377 8.722e-07 0.531 0.002455 0.0007664 0.001289 0.0001833 0.003062 0.00415 0.003467 0.001438 0.2811 0.002309 0.001814 0.0009897 0.0005622 7.746e-06 0.001789 0.0005642 0.003036 0.01234 0.00596 0.00459 1.058e-05 0.00877 0.02364 0.0001389 0.01014 0.06975 0.0004487 0.3597 0.0003999 6.391e-05 0.4149 0.002509 8.359e-05 0.5542 0.001542 5.588e-06 0.3169 0.003995 0.0001892 0.06791 0.5057 0.01543 0.006672 4.773e-06 0.0002603 0.02418 0.009132 0.008477 1.547e-05 0.0001945 0.1103 0.006013 1.553e-05 0.01588 0.01113 0.0006106 1.198e-05 0.09491 0.01164 0.008168 0.01078 0.002158 1.002e-06 0.00553 0.01083 5.816e-05 0.03862 0.0007433 0.0006274 0.04995 0.0129 0.0112 0.0003251 0.001989 0.1676 0.0002892 0.5706 0.005261 0.0002168 1.344e-05 6.274e-06 0.003721 5.995e-05 3.915e-06 0.00054 0.07714 0.01069 0.001761 0.04194 0.002358 0.3954 0.005829 0.0002258 0.01117 0.0008402 0.001879 0.002737 0.2531 0.0001045 0.3666 0.02134 0.366 0.0061 0.001709 0.001837 0.5147 9.835e-06 0.006133 0.006884 0.3801 0.001787 1.324e-05 0.006043 0.004094 3.335e-05 0.005892 0.001282 0.002644 0.5842 0.01049 0.4131 0.01752 0.5702 0.01674 0.004921 0.02517 0.01142 0.4048 0.003559 0.001855 2.054e-05 0.006057 0.3261 0.00987 0.07298 0.3529 0.02167 0.0005314 1.01e-05 0.009204 7.181e-05 0.001482 0.0008204 0.01612 0.5753 0.03721 1.01e-05 0.006595 0.01742 0.02139 0.0004379 0.003317 0.02776 0.011 0.0003945 0.457 0.003475 0.002449 0.5763 0.001922 0.0001094 0.006566 0.001066 0.004784 0.0122 0.06935 0.004682 0.02361 0.00227 0.01203 0.000754 0.0003431 0.0002495 0.001939 0.6561 1.264e-05 0.0171 0.5131 3.594e-06 0.0004963 0.0002573 0.0004848 1.624e-05 0.005408 0.00312 0.002566 0.006805 6.025e-06 0.001831 0.0004907 0.5684 0.005689 0.001597 0.002229 0.0004381 0.3302 0.5664 0.04101 0.0002728 0.005741 0.002833 0.02563 0.002612 0.05258 0.007394 0.0004272 0.07494 0.0383 5.061e-06 0.004457 0.0008237 0.005268 0.000974 0.003838 0.009878 0.00685 0.4737 0.0119 0.0001113 0.0004358 7.474e-06 0.5853 0.000267 0.0004475 0.0009188 0.0003568 5.287e-05 8.866e-05 0.001248 0.5058 0.2364 0.02057 6.477e-05 0.008927 0.0003291 0.5284 0.096 0.01605 0.002047 0.003872 0.001339 0.004674 0.02161 1.036e-05 0.001046 0.002875 0.001656 8.746e-06 8.167e-05 2.568e-05 0.001364 0.004784 0.008559 0.005668 0.001356 0.005148 0.0004437 0.001856 0.5646 0.0006426 0.006359 0.001071 0.02364 0.000423 0.5631 0.0001434 0.01412 6.773e-06 0.02243 0.0425 0.01116 0.02133 0.00502 0.004591 0.01889 0.001659 0.0002836 0.001665 0.3162 0.001346 0.4073 0.001037 0.001152 0.0009144 0.02263 0.0002802 0.001562 0.01108 0.03539 0.01192 0.1171 0.004748 0.006073 0.5134 0.5738 0.6455 0.000977 0.5548 1.403e-05 0.001041 0.004999 0.0003984 0.6184 0.0008328 0.0002278 0.4929 0.5601 0.4138 9.37e-05 0.00023 0.0005795 7.4e-05 0.0007348 0.0002131 0.03033 0.009059 0.003309 0.00118 0.3979 0.3857 0.00278 0.001005 0.001241 0.1249 0.567 6.879e-05 0.0001764 0.003417 0.00396 8.657e-05 0.004688 0.003899 0.007254 0.5832 0.0263 2.309e-06 0.01407 0.0131 0.004969 0.0001787 0.004022 0.001513 0.002118 0.002697 1.548e-05 0.002539 0.0008972 0.0003449 0.003534 0.0001586 0.0001966 0.001904 0.006183 0.009324 0.00787 0.001331 0.0002013 0.001865 0.5424 0.0004474 0.000367 0.01593 0.0001935 0.4245 0.000806 0.5722 0.5629 0.02099 0.01707 9.937e-06 0.00101 0.0007735 0.009094 0.0008036 0.008549 0.0973 0.5602 0.01306 6.959e-06 0.005725 0.001259 0.0001742 0.5976 0.02556 0.000426 0.05927 0.003178 0.01939 0.2189 0.002074 0.5656 0.5848 0.006358 0.005041 0.0009881 0.004292 0.006768 0.3338 0.5622 5.371e-05 0.001358 0.009496 1.42e-05 4.538e-06 0.0008027 0.003937 0.0001534 0.007365 0.007072 0.0006786 0.6161 0.001079 0.4971 0.0001456 6.226e-06 8.267e-06 0.01241 0.4067 0.5344 0.009884 0.0007635 0.0009258 0.002094 0.5676 0.0109 0.003378 0.0587 0.02858 0.001646 9.646e-06 0.3349 0.3424 0.007572 0.0008532 2.538e-05 0.5311 0.01891 0.0003915 0.01588 0.008163 6.649e-06 0.0001111 0.01101 0.002803 0.3866 0.0013 7.702e-06 0.002722 8.713e-06 6.449e-05 0.002407 7.311e-06 0.01 0.01659 0.003746 0.08854 0.0003868 0.5256 7.139e-05 0.03572 0.0001295 0.005575 0.6071 3.617e-05 0.03491 0.0005035 0.03721 0.01708 0.0001055 0.01018 0.0002334 0.004206 0.5747 0.03159 0.009281 5.934e-06 1.021e-05 3.938e-06 0.001508 0.001563 9.554e-05 0.003534 0.0001039 0.5765 0.0008895 0.002245 0.006553 1.017e-05 0.0004336 0.0214 0.001376 0.0003698 0.003314 0.001193 0.01271 0.0002005 0.001229 0.002879 0.1332 7.712e-07 0.00024 6.557e-05 0.0004617 0.0004552 6.05e-05 0.001664 0.007124 0.3487 0.002248 9.33e-05 0.001742 0.0008295 9.003e-05 0.001488 0.008704 0.0005401 0.0009625 0.001075 0.003401 1.306e-05 0.5185 0.008237 2.408e-05 2.466e-06 3.853e-05 0.0002837 0.0006796 0.3076 8.63e-06 0.0001534 0.6057 0.003483 0.008865 0.005072 0.1613 8.985e-06 0.0186 0.004477 3.967e-06 2.999e-06 0.04449 0.02836 1.102e-05 0.001565 0.0003025 0.3468 0.00311 9.81e-06 0.0006457 0.0719 0.001318 0.005848 0.003911 0.001256 0.01536 0.0002719 0.6448 3.884e-05 0.0003839 0.002477 0.4335 0.5939 0.004629 0.0398 0.5566 0.569 6.342e-05 0.001934 0.0006348 4.224e-06 0.008481 0.6635 0.002464 0.1562 0.009263 7.353e-05 0.6185 0.5763 0.0004506 0.0001932 0.4914 0.006758 0.004826 0.004799 0.007272 0.0001041 0.01624 1.178e-05 2.134e-05 0.002152 1.43e-08 0.2836 0.2833 0.008448 0.0005181 0.007378 0.001841 0.01595 0.0007069 6.455e-06 0.001986 0.002952 0.003743 0.006317 0.5733 0.0044 0.003874 0.002448 0.00516 9.709e-06 0.002839 0.0764 0.0003427 0.001651 0.001334 0.5135 0.2314 0.001836 0.00198 0.0007362 0.0003047 0.5437 0.003881 0.0008643 0.003005 0.0001014 0.002413 1.126e-05 0.0007687 0.09593 7.045e-06 0.005294 0.007544 0.002882 1.049e-05 0.4264 0.002314 0.5733 0.01091 0.003845 0.02551 8.78e-06 0.006082 0.5208 0.003547 0.002477 0.003508 0.004753 0.02565 0.03895 0.0001746 7.801e-06 0.00226 0.001506 0.0004067 0.007425 0.0007329 0.003865 0.5901 4.198e-05 0.004723 0.0004624 0.0005548 0.008817 0.0008671 0.0008522 0.04537 8.294e-06 0.03043 0.002749 0.004553 0.5951 0.009723 0.001288 0.0007954 0.00269 0.001324 0.000369 0.003956 0.07381 0.0005488 0.0001697 9.457e-06 0.002989 6.922e-06 0.0005784 0.4472 0.2797 0.001155 6.27e-05 8.265e-05 0.008987 0.0004213 0.0006156 0.319 0.0002025 2.048e-05 0.004679 0.561 2.288e-06 0.5744 0.000266 2.902e-07 0.004369 0.4828 0.002418 0.0001981 0.005779 0.01367 0.2896 0.006736 0.004679 6.401e-05 0.0006075 0.0002393 0.001617 9.6e-06 0.002302 0.007053 0.5465 0.0009392 0.0008177 0.03279 0.0003762 0.1502 0.4973 0.003792 0.00347 2.14e-06 0.0003412 0.0001848 0.003476 0.0001725 0.001322 0.1279 0.03509 0.003994 0.01401 7.678e-06 0.004242 0.57 0.001039 0.07939 0.0009669 0.02961 0.000195 0.01986 4.038e-05 7.856e-05 0.01701 0.003675 8.904e-06 0.2569 0.007919 0.009102 7.231e-06 0.01716 0.00127 0.008499 0.5714 8.115e-06 0.00561 0.01503 0.003845 0.004457 9.334e-06 0.00129 0.0008069 0.03129 0.001131 0.008174 0.1171 0.008541 0.002509 0.008292 0.0002646 0.0001603 1.502e-08 3.676e-05 3.525e-06 0.002508 0.005276 0.0008399 0.01495 0.00049 0.5736 0.003748 0.0005834 2.437e-06 0.5342 0.5668 0.003691 9.743e-05 6.523e-06 0.1624 0.001615 0.0007441 0.02195 0.007752 0.08252 0.002099 0.001009 0.003721 5.154e-05 0.5661 9.861e-05 0.1134 0.2901 0.04389 0.001841 1.936e-06 0.002809 0.007231 0.2556 0.000103 0.5525 0.001212 0.004539 0.002533 0.00997 0.06307 0.001388 0.0001038 0.01072 0.0009352 0.4736 0.002448 0.0003301 0.003907 0.005032 0.4037 0.001041 0.0001091 0.01458 0.0009453 0.1991 0.5673 0.06934 2.622e-06 0.5675 0.0003852 0.005746 0.0001806 0.262 0.0005398 0.0002342 0.01771 0.0541 0.0005486 0.0003976 0.01043 0.02692 0.0183 0.0003589 0.0006454 0.5568 0.5517 0.01123 0.014 9.978e-06 6.912e-06 0.5215 0.0004417 0.003369 0.0003016 0.0008779 0.001135 0.005143 0.001086 0.0002153 3.409e-05 0.0009046 0.00418 0.001851 0.0003924 0.003022 0.01731 0.1077 0.01056 0.5868 0.001057 0.001003 0.5808 5.447e-05 0.06269 0.0004883 0.01074 0.01562 0.001204 0.001428 0.007545 9.403e-06 0.001104 0.004234 0.4333 4.345e-08 0.00524 0.009449 0.0006963 0.5313 1.907e-05 0.001893 1.685e-05 0.001874 6.59e-06 0.5654 9.974e-06 0.02774 0.002611 0.6408 0.01701 0.008619 0.0007391 0.1022 0.0005957 0.5676 0.0006255 0.01032 0.5232 0.0006076 0.002527 0.4882 0.0001476 1.233e-05 0.00217 0.0004412 0.0001444 0.5771 9.901e-06 5.232e-05 0.0001985 0.003823 0.0006969 9.619e-06 0.000855 0.004555 0.0004796 0.3666 0.5931 4.136e-05 0.01117 0.002375 0.002644 0.00424 0.0002752 0.004792 0.003029 0.001841 0.1626 0.002281 5.271e-06 0.001086 0.00119 0.002194 0.4547 0.0216 8.529e-06 0.0005142 0.0008228 0.6245 0.0004836 2.453e-06 0.003362 0.3629 0.5641 5.133e-05 4.259e-06 7.522e-05 0.00236 0.01832 0.01842 0.001807 0.3724 0.09311 0.008166 7.395e-05 0.001429 0.001186 1.199e-05 0.0002083 0.006093 1.705e-05 0.00273 8.74e-06 0.001627 0.5629 4.579e-06 8.115e-06 0.0003932 0.0017 0.5712 0.002806 0.02138 0.008087 0.5039 4.575e-06 0.003634 0.0145 0.006258 1.928e-05 8.972e-06 0.000249 0.0009761 0.0002843 0.001323 0.0002353 0.003149 0.002366 0.5617 0.003698 0.001817 0.0005695 0.001234 0.01499 0.0003754 0.0001743 6.546e-06 0.000374 0.005072 0.01475 0.004755 0.0001578 0.001824 0.006817 0.467 0.01056 0.007674 0.002559 0.004134 0.0004579 0.0255 0.001168 1.798e-05 3.9e-06 0.006022 0.000626 0.02422 0.0002137 0.5597 0.0794 0.4311 0.0001283 0.005406 0.1209 0.0007878 0.004624 9.013e-06 7.374e-05 0.5726 0.01757 0.00221 0.002633 0.02563 0.0009105 0.3461 0.5701 0.00308 0.008214 0.00033 0.0001896 1.102e-05 0.005083 0.002209 0.02924 0.0002826 0.08735 0.007598 0.004761 5.521e-05 0.003237 0.0005697 6.631e-06 0.01171 4.755e-05 0.001155 8.338e-06 0.0001206 0.005133 0.0007942 0.3665 6.856e-05 0.00328 0.0003846 0.04605 0.3803 0.0005168 0.004419 0.002424 0.003662 0.006246 0.001885 0.3403 0.5378 0.4778 0.01296 0.0002662 0.000132 0.0001202 1.067e-05 0.5865 7.316e-06 0.001143 0.0175 0.01679 0.0002368 8.548e-05 0.001039 0.6573 6.124e-05 0.001766 0.007475 8.103e-06 0.01105 2.902e-05 0.0002841 0.0003643 0.0004669 0.002373 0.001251 1.153e-05 0.008061 2.425e-05 0.0009479 6.221e-05 0.0001056 0.1555 7.692e-05 0.3843 0.01066 1.243e-05 0.0008074 0.05599 0.0007468 0.006716 1.361e-05 0.0002687 1.507e-05 0.001246 8.569e-06 0.008916 0.00273 0.003939 0.02427 0.2031 6.991e-06 0.000914 0.0009367 0.3202 0.04885 0.209 0.0547 0.002692 0.002867 1.071e-05 0.375 0.474 0.0001783 0.4344 0.0002898 0.05381 0.03196 0.4366 7.424e-06 0.01833 0.0009256 0.05706 0.002694 0.007842 0.001898 0.02084 0.003134 0.005864 0.0007511 0.1722 0.6413 0.01234 0.001718 0.2532 0.05005 0.002262 0.002874 0.001693 0.0406 0.2871 0.2877 7.706e-06 0.0007492 0.01247 0.002307 4.051e-05 0.00193 0.3574 0.001078 0.0005886 1.001e-05 0.002142 0.0001114 0.1299 0.004704 1.178e-05 0.0001585 0.00479 9.757e-05 0.0001359 0.03054 0.009523 0.001275 0.0001906 8.163e-06 0.3121 0.0005031 0.03122 0.03107 0.01547 8.473e-06 0.006883 0.0007657 0.0002785 0.3817 0.0005826 0.005831 0.0002915 0.001451 6.724e-07 1.023e-05 0.0009186 0.004005 0.002119 0.5959 0.1711 0.2992 0.004019 0.003059 0.003361 0.1406 0.002522 0.003627 0.6136 0.004154 0.003377 3.495e-05 0.0005791 0.01111 8.839e-05 0.0004779 0.002547 0.006951 0.0002291 0.00171 4.482e-06 0.002617 0.004609 4.96e-05 0.001121 0.001161 0.559 0.0005615 0.002005 0.001196 0.0003556 0.0001507 0.0005144 0.003577 0.00123 0.002027 0.0001562 0.01016 0.0005175 0.004404 0.001983 0.4732 0.0007625 0.4202 0.000976 0.001576 0.0005374 0.0001838 0.3359 2.203e-05 0.02196 0.001174 0.009044 0.001088 0.01236 0.001561 0.5838 0.003511 0.003088 0.0004992 0.0004498 0.007313 0.000492 0.0001322 0.5757 0.02728 0.003072 0.5574 3.918e-06 0.0002981 0.002594 5.765e-06 0.566 0.003426 1.259e-05 4.786e-06 0.01398 4.859e-06 0.001983 1.033e-05 0.001226 0.0001302 9.316e-06 0.4077 0.001267 0.002875 1.567e-05 0.006341 0.003034 0.02301 1.015e-05 0.001268 0.004213 0.005097 0.0008081 0.007792 0.00123 2.946e-05 0.00449 0.1967 1.039e-06 0.07226 0.0003983 0.002451 3.936e-06 0.03682 0.03673 5.585e-06 0.0001056 0.007003 0.4624 0.00168 0.001916 0.02034 0.0006916 0.006394 0.02328 0.0005195 4.902e-06 0.00235 0.01262 0.3145 0.01388 0.001857 0.0001794 0.0002419 1.101e-05 0.0004466 0.5788 0.001319 0.5685 0.005398 0.0002673 0.01053 0.0006482 0.02627 0.01247 1.286e-05 0.03476 0.004516 7.854e-05 0.001001 0.004842 0.00969 0.002428 0.04138 0.001846 0.0006434 7.919e-06 0.01044 0.002577 0.0002068 0.00443 0.0008921 0.5736 0.01001 0.05659 0.0002191 0.002868 2.399e-05 0.003818 0.006295 0.003857 0.005336 0.5609 0.01687 0.5886 0.0003013 0.01368 0.01524 0.0004891 0.0008125 4.96e-06 0.3744 0.008953 0.0004269 0.006795 1.684e-08 0.001331 0.009424 0.001906 0.0004172 0.0009004 5.951e-06 0.003135 0.003755 0.5176 0.004069 0.001783 0.5463 0.04077 0.0488 0.06165 0.0007763 0.001103 0.5792 0.001537 0.00352 0.003688 0.003707 0.004532 1.464e-05 0.0002426 0.007542 0.01586 0.0002714 0.01875 0.02944 0.0002611 0.2386 0.01713 4.949e-05 0.0004223 0.000313 0.0002187 0.001165 0.6095 0.01502 0.0001906 0.007797 0.0006049 0.3994 0.0003342 0.0006324 0.0003439 0.04562 5.873e-06 0.001031 0.0004466 0.3219 0.5633 0.6214 3.539e-06 0.0892 0.0001405 0.5623 0.001824 0.1797 8.537e-06 0.001797 0.000808 0.01071 4.117e-07 0.0001311 0.421 0.04108 0.004994 0.001621 0.5738 0.005015 6.333e-06 1.03e-05 0.2666 0.001288 0.003385 0.4135 8.122e-06 5.41e-05 0.5056 0.01046 0.003919 0.001587 0.0004412 0.008297 0.00219 0.002034 0.003765 0.002175 0.1266 0.004042 0.001342 6.107e-06 0.00116 0.002722 0.6137 0.6138 4.549e-05 0.0607 4.257e-05 0.3419 0.00297 0.001527 0.5511 0.001668 5.618e-05 0.0005178 0.0006101 0.1365 9.08e-05 0.1655 0.03391 0.002361 0.000427 0.007859 0.0002161 0.5258 1.012e-05 0.621 0.0002799 0.02042 3.093e-05 0.4688 0.01141 0.02369 0.5753 7.986e-06 0.1331 0.5672 0.5662 0.5607 0.008363 0.002063 0.01401 0.0001901 0.3735 0.001734 0.003118 0.0001225 0.06931 1.244e-05 1.21e-05 0.003604 0.008738 0.000427 0.001632 0.0009837 0.3597 0.007956 1.042e-05 0.002002 0.01023 0.0001564 0.02118 0.3933 0.003082 0.003102 0.007909 0.003283 0.1394 0.1708 0.546 0.001863 0.008587 0.002289 0.0007486 0.006503 0.005199 0.5665 0.4477 0.5728 0.006392 0.002772 0.009549 0.5768 0.0421 3.785e-05 9.025e-06 0.006729 0.0005818 0.003092 0.01935 5.934e-06 0.02813 0.005477 0.01529 0.0008886 6.236e-06 0.009036 0.001124 0.004235 0.004434 0.5683 6.303e-06 0.003924 0.009698 0.01084 0.01268 0.004674 1.158e-06 0.004065 0.002753 0.0002565 0.5643 0.001126 0.004779 0.003535 0.0003048 0.0103 1.11e-05 4.632e-06 0.0005615 0.03229 0.003367 0.0003789 0.04373 0.01399 0.001549 0.3891 0.002399 0.003769 0.003636 0.001667 0.001213 1.42e-05 0.003466 0.04302 0.0002512 0.00261 0.6147 0.5616 0.5483 0.5617 0.5675 6.164e-06 1.855e-05 0.001712 0.1358 0.1016 0.0005356 0.0007206 8.357e-06 0.0251 0.0004112 5.256e-05 3.818e-05 0.1496 0.004821 0.001455 0.0004094 0.00177 0.0009104 0.002329 0.0003603 0.001247 9.587e-06 0.007277 0.002301 4.002e-05 0.009226 0.001456 0.001823 0.002533 0.002442 0.5003 2.572e-06 0.01705 6.746e-06 0.001865 0.5746 0.01088 0.1974 0.003537 0.001205 0.009415 0.001017 0.01256 0.01686 6.54e-06 0.0001974 3.985e-07 0.0003338 0.001772 0.01029 0.005707 0.003022 0.02005 5.078e-05 7.907e-05 0.4544 0.02141 0.00109 1.6e-05 0.5466 0.02216 0.5259 6.038e-05 0.007893 0.0003166 0.1673 0.006515 0.05838 0.01539 0.005428 0.4917 0.1846 0.1235 0.005731 0.0001497 0.02748 0.008033 0.5504 0.0006595 0.01241 1.925e-05 0.4252 0.0001834 6.619e-06 0.001522 0.0001696 0.0009911 0.0111 0.0528 0.0004098 0.002129 0.004492 0.4758 0.4101 0.4104 0.004744 6.508e-05 0.0005467 0.1015 0.0005438 0.002504 0.0255 0.01178 0.002759 0.0004795 0.00522 0.0002194 0.02055 0.007107 9.093e-05 0.3004 0.001366 0.05492 9.762e-06 0.0001144 0.002737 0.2969 1.169e-05 0.06168 0.0007726 0.007751 0.01195 0.001642 0.007027 0.04762 1.203e-05 0.001328 0.002394 0.0009283 0.00862 0.005909 0.007389 0.005466 4.26e-05 0.01367 0.004492 0.009493 0.0002657 0.0009401 0.001046 0.006156 0.00137 0.1635 0.002626 8.809e-06 0.01439 0.2365 2.246e-05 0.008559 0.005639 0.2548 0.002575 0.0002614 1.009e-05 0.003946 0.01888 1.045e-05 5.024e-06 0.2594 0.008024 0.00488 0.08663 6.144e-06 0.0008627 0.002131 0.001665 0.001727 0.04131 0.01352 0.003484 0.002769 0.005437 0.0004365 0.01071 0.004751 9.814e-06 0.03196 0.5626 0.001598 0.3642 7.608e-06 0.2973 0.0006022 0.002213 0.0003505 0.0953 0.0001096 0.3486 0.001711 0.004727 0.2444 0.0002444 0.5708 0.001799 0.0006683 0.01548 4.988e-06 0.001196 0.04578 0.003323 0.0002815 0.5772 1.151e-05 0.01181 0.02407 0.01236 1.183e-05 0.4176 6.744e-06 0.00283 0.0256 0.007506 0.0002974 0.004785 0.000523 0.0009366 0.0004379 0.002053 0.001059 0.01801 3.774e-06 0.392 0.0001291 0.4186 0.002846 0.003413 0.006054 0.0001475 0.002037 0.02501 5.887e-05 0.00325 0.01064 0.01086 1.076e-05 0.005565 0.008333 7.402e-06 0.5883 0.5748 0.0001951 0.03128 0.009775 7.366e-06 0.01398 0.0003153 0.0004584 3.658e-05 5.401e-06 0.002608 0.0003774 0.006418 0.005561 0.3138 0.3712 0.4332 0.0002697 0.001379 1.889e-05 1.527e-05 0.001383 0.000772 0.01372 0.001979 0.0007057 0.004807 0.0039 0.5846 5.869e-05 0.2861 0.3955 0.3737 3.135e-06 0.0007893 0.03777 0.002883 2.617e-05 0.0004266 0.2342 0.0002502 0.00433 0.001653 0.005921 0.3918 0.003569 0.01167 0.5712 0.001238 0.00267 0.0008785 0.002617 0.01577 0.0002739 0.65 0.002277 0.02252 1.553e-05 0.0003967 0.0005826 0.006344 0.0008395 0.001346 0.3231 6.087e-06 0.2567 0.001193 0.0251 3.309e-05 5.119e-05 0.02813 0.0001742 0.0007877 1.087e-05 0.0001797 0.001823 0.001324 0.004692 0.007551 0.005067 0.002731 0.001326 0.0001548 0.002715 0.006507 0.02254 0.4176 0.002586 0.001089 0.01446 0.002999 0.000354 0.09816 0.5963 0.02378 0.02988 0.001146 0.3978 0.003045 0.002381 0.003297 0.007682 0.021 0.007219 6.436e-05 9.268e-05 0.0007386 0.0002598 0.0061 0.003373 0.005677 0.609 0.03799 0.05536 0.0008044 0.002589 0.0001572 0.001799 0.001491 0.001108 0.00827 0.2155 0.0006731 0.0008404 0.001337 9.298e-05 0.02949 0.0006966 0.1006 0.0008979 0.000636 0.007576 1.067e-05 0.4154 0.008944 0.001324 0.3755 2.141e-06 0.001392 6.992e-06 0.001618 0.2021 0.005086 2.284e-06 7.097e-05 0.003086 0.003262 0.0783 0.0004881 0.003143 0.002857 0.00339 0.0001119 0.0002674 0.3049 0.06101 0.0002847 0.00349 0.0007432 0.0002607 0.01117 0.0007164 0.001508 0.0007819 0.002125 0.1446 0.002645 0.539 0.5025 0.0006961 1.539e-05 0.00866 0.5537 0.02295 0.0002938 0.004709 0.1634 0.002681 0.01172 0.006441 0.01389 0.008507 4.505e-07 0.0006638 0.001124 0.0005882 0.5882 0.4178 0.06138 0.6207 0.0003245 0.4257 0.001153 0.0002033 0.007506 0.01759 0.0008835 0.01869 0.0009019 0.0007382 0.001304 0.1507 1.81e-05 0.007221 0.1509 0.006356 0.04916 0.005134 0.0275 0.0005656 0.002376 0.1137 0.367 0.4259 5.968e-05 0.003858 0.01239 0.003095 1.025e-05 0.0001465 2.252e-06 0.0001066 0.0002515 0.003897 0.1023 0.04865 0.0004129 0.01118 0.5944 0.0002395 0.09097 0.0008104 0.001947 0.0008509 0.525 0.0003284 0.000162 0.06209 0.02361 0.007785 7.778e-05 0.01951 0.01174 0.0006184 0.01331 9.685e-05 0.5684 0.002326 0.01399 0.005208 0.01437 0.0003685 0.0006453 0.008155 0.008746 0.001491 0.02563 0.006194 0.005753 3.94e-06 0.3702 0.0003436 0.5073 0.006471 0.0005284 0.4647 0.0006023 0.573 0.01262 0.0006409 0.0008467 0.01318 0.0001488 0.003445 0.4222 0.002216 0.002177 0.4899 0.571 0.000243 0.03093 0.03479 0.4091 5.377e-06 0.005464 0.02879 9.611e-06 0.5693 0.03957 6.464e-06 0.001102 0.00712 0.0005661 0.004162 0.003824 1.257e-06 0.00385 0.004359 0.00193 0.04731 0.553 1.138e-05 0.0001372 0.00563 0.05409 0.1302 0.0002678 6.675e-05 3.142e-05 8.122e-05 0.0002406 0.0008299 0.05222 0.001718 0.6465 0.01708 0.003441 0.578 0.003443 0.0005937 0.0007848 0.0003749 0.0007485 0.01403 0.0005401 0.001568 0.00864 0.01478 0.0002258 1.069e-05 0.0008973 0.0002873 0.00368 0.5575 0.005495 4.252e-05 0.001036 0.0009231 0.507 0.5468 0.001549 0.0002724 0.000725 0.01389 0.000276 0.1381 0.009526 0.003359 7.94e-05 0.4381 0.0009086 0.004931 0.007045 0.00152 0.001009 0.1515 0.002139 5.441e-05 0.0009046 0.0002431 0.0001117 0.004746 0.01068 0.000468 1.089e-05 0.3605 8.275e-05 0.01466 0.5697 0.01905 0.02287 0.0004671 0.0003182 0.0002215 0.002441 3.056e-06 0.6212 0.2494 0.003255 0.001075 0.0008668 0.0003842 6.557e-06 0.0004391 0.003125 0.003007 8.451e-06 0.01138 0.3896 0.0006759 0.05424 0.09801 0.00325 0.001541 0.5732 0.01104 0.001567 0.00123 0.002676 0.03764 0.0001106 0.338 0.002418 0.002809 0.0002556 0.006503 0.03227 0.01196 0.02922 2.478e-06 0.004922 0.5989 0.01573 0.01078 0.2669 0.001436 0.5138 0.002982 0.0004743 0.0011 0.001106 4.075e-06 0.0006584 0.01778 7.425e-06 0.004266 0.001853 0.5706 0.002905 4.366e-06 0.008042 0.0006644 0.006507 0.005146 0.0467 0.0002623 0.0005594 0.0002542 0.3241 0.001731 0.00064 0.00343 0.005832 0.0001487 0.0001015 0.5698 0.4268 0.0002727 7.292e-06 0.001969 0.04768 0.002926 0.01139 8.807e-05 0.5639 0.0007784 0.005089 0.4202 0.5773 0.002222 0.01016 0.5383 0.04957 0.002214 0.0005986 0.001148 0.3854 0.009501 0.01158 9.769e-05 0.002249 1.1e-05 0.5977 0.0002159 2.878e-05 0.0712 0.001146 0.5698 0.3916 2.652e-05 0.0009355 2.814e-05 0.001251 0.02018 6.62e-06 0.001263 0.03286 0.0008233 0.001094 1.204e-05 0.004665 0.0009569 0.006209 0.001051 0.005358 0.0001973 0.000646 0.5668 0.00241 0.003062 2.731e-05 0.0008494 0.02161 0.008032 0.0001076 0.4692 0.001837 0.0002087 6.937e-05 0.01819 0.007046 0.001857 0.0006338 0.004394 1.522e-05 0.6081 0.001968 0.5516 0.0004309 0.008074 0.002026 6.964e-05 0.001112 0.002166 0.01758 0.007243 0.003545 0.005079 0.0005609 0.6009 0.0006573 0.0003677 0.002244 0.0001926 0.5627 0.3946 0.001446 8.178e-06 0.008474 0.002113 0.01562 0.0228 1.057e-05 2.584e-05 0.009993 1.652e-05 0.0001698 0.001389 0.000152 0.003508 0.002882 0.0001143 0.005992 0.001095 0.3797 0.0001221 8.145e-05 8.583e-05 0.3024 0.0001673 0.006311 0.003743 0.2657 0.0001017 0.000415 0.001065 0.007168 0.002512 0.002192 0.007274 0.5443 0.5339 0.00123 0.5799 0.01776 0.007566 0.09583 0.002417 6.365e-06 0.009302 0.003401 0.6243 0.6244 7.955e-06 9.752e-05 0.06285 0.3162 0.5302 6.693e-05 0.1837 0.2379 0.003359 0.003816 0.003098 0.0008567 0.006319 0.0005159 0.0071 0.5602 0.5919 3.785e-05 0.0001369 0.001614 0.007276 0.01694 0.0008812 0.0002657 0.03625 0.002213 0.0008123 0.2792 0.001586 0.004934 0.01696 0.003531 0.003074 0.1414 0.0002557 0.0002071 0.002981 0.5818 7.426e-05 0.004489 0.002034 0.008888 0.004616 0.001514 0.0001215 6.941e-05 0.002825 0.0005326 0.0002745 0.001725 4.104e-05 9.057e-06 0.578 0.00129 0.001208 0.0007135 0.04055 8.547e-06 0.01945 0.0003235 0.007966 0.5365 0.02464 0.009429 0.3904 0.008946 0.0001911 2.472e-05 0.007484 0.3272 9.758e-06 1.061e-05 0.005936 0.5147 0.000108 0.338 0.005739 0.007291 0.003015 0.08177 0.0002161 0.01925 0.00139 0.398 0.002648 5.601e-05 0.00136 0.0008389 4.353e-06 0.0002509 0.0126 0.00186 5.486e-06 0.001352 0.002755 0.03852 0.002129 0.0006662 8.889e-06 1.461e-05 0.0001498 0.003975 0.0005058 0.008169 0.000651 0.005066 0.5099 0.002176 0.0005966 6.72e-06 0.0002014 0.3047 8.796e-06 0.003846 0.002671 0.3584 0.6323 0.001437 0.002067 0.002294 0.01619 0.3406 4.489e-05 0.003128 2.396e-05 0.001415 0.0002788 0.06949 9.976e-06 0.2299 2.154e-05 9.179e-06 0.001457 1.545e-05 0.03118 0.01891 2.561e-06 0.00351 0.4752 0.001931 0.0002693 0.009486 0.003038 0.0005812 0.0005558 0.00328 3.074e-05 0.003291 0.003235 0.007599 0.5567 0.002221 0.01269 0.001302 4.039e-05 0.03978 0.001945 0.001162 0.6558 0.4117 0.0006106 0.001404 0.01083 0.002831 0.002856 0.0001846 0.01876 0.5484 0.0004941 0.0007467 0.0002931 0.003946 0.004674 0.3217 0.001314 1.593e-05 0.5408 0.02783 0.002263 5.538e-05 0.03294 0.007372 0.002277 0.001182 0.5184 4.751e-05 0.5663 0.00944 0.08856 0.5573 0.01494 0.4106 0.002566 0.01737 0.0007605 0.0007139 0.6005 0.002316 1.308e-05 0.3694 0.004036 0.0004179 0.001495 0.001888 0.1247 0.03524 0.0008983 0.5323 5.091e-06 0.1002 0.001231 0.0007638 0.0007169 0.02074 0.04512 0.00015 0.002263 0.0008558 0.02295 0.003743 0.001398 0.5683 0.001579 0.4141 0.001133 0.00131 0.577 0.01882 0.1788 0.0001698 0.006411 0.1195 0.3573 0.5749 0.09879 0.0001428 0.0401 0.0003537 0.001549 0.000648 0.0001555 0.01375 0.01197 0.01647 7.683e-05 5.606e-06 0.01108 0.5184 3.375e-06 2.96e-05 7.049e-05 0.001593 0.552 0.0004303 9.812e-06 0.001686 0.5717 0.5878 0.0003766 0.0002203 0.00389 1.444e-07 8.636e-05 0.5383 0.003678 0.002128 0.5744 0.5713 0.0004904 0.003602 0.001584 0.000114 0.0006178 0.002175 0.003886 0.3113 4.764e-05 0.0005943 0.004525 0.5715 0.055 0.0006379 4.813e-05 4.829e-06 0.03143 0.001002 0.01459 0.2809 0.2809 5.597e-06 0.5284 0.006484 0.000761 0.005829 0.00414 0.0005681 0.0002749 9.683e-06 0.000299 1.268e-05 8.747e-06 0.01624 0.001319 0.02794 5.641e-05 0.0004114 9.816e-05 0.34 0.0001502 0.0006413 0.01018 0.003272 0.05632 0.001425 0.005458 0.0005632 0.1052 0.3945 0.003683 0.000954 0.007431 0.5672 0.002187 0.006454 0.004882 0.0001507 0.04297 0.3184 0.4171 0.01075 0.2526 0.0003368 0.002846 0.003837 0.0001048 0.1186 0.0003093 0.6101 0.002301 0.0006757 0.005931 0.005239 0.0005626 4.029e-06 0.0001967 7.969e-06 0.005371 0.01522 0.02549 0.005229 0.0006387 0.002422 0.003123 0.001082 0.000354 0.007191 0.003202 0.0001654 0.0007225 0.000198 0.0001101 0.04034 0.0003416 0.005905 0.001733 0.0003504 0.05697 1.008e-05 0.0002058 0.001238 0.007647 0.0001145 0.0003958 0.002859 0.000439 0.1552 0.5823 0.01051 0.01952 0.04821 0.002212 0.006682 0.0002753 0.01076 0.004839 0.5693 0.01281 0.01561 0.1209 7.295e-05 0.005876 0.002172 0.0007636 0.3541 0.0002859 0.02476 0.0003084 9.72e-09 7.115e-07 0.01081 0.006515 0.382 0.005829 0.01076 9.058e-06 0.01455 0.002298 6.636e-05 0.5216 0.0005869 0.001389 0.003836 0.2385 0.0004729 0.0001865 0.0008108 0.0001847 0.3437 0.007838 0.5048 0.0005698 0.0001719 0.359 0.004763 3.39e-06 0.03754 0.001788 0.001021 0.0003781 0.0003852 0.6185 0.0007995 0.0003628 0.476 0.0002577 0.0001057 0.02543 0.001006 0.5348 0.0007472 0.0009495 0.002463 0.5557 3.549e-05 0.0001356 0.000175 0.0001537 0.01153 0.3442 0.00105 0.00432 0.4189 0.0121 0.0005475 0.00272 0.0001181 0.01833 0.00346 0.006744 0.0003152 0.2404 0.009467 0.001954 0.0002493 0.007098 0.04664 0.001194 0.02954 0.5722 0.3596 0.01324 0.00785 0.004518 0.00057 0.003655 0.1382 0.0003401 0.001585 0.4151 0.0002693 0.02598 0.01085 0.003743 0.007257 5.712e-05 0.002168 3.433e-05 0.0005147 0.0006733 0.0004474 0.0002827 0.0005531 0.001992 7.98e-06 0.01055 0.00349 0.001057 0.01124 0.01911 0.3564 0.00408 0.01518 0.0002645 0.0001556 0.02364 0.4849 0.07444 0.0002663 0.000643 0.0003528 0.0003334 6.419e-06 0.6531 0.0006692 0.0003994 0.04778 0.5696 0.004391 0.001345 1.392e-05 0.004931 0.001601 0.0001728 0.01072 0.0112 0.02174 0.4847 0.0002067 0.006143 5.024e-06 0.04475 0.3575 0.0004437 9.913e-05 0.01874 0.0003155 0.0003158 0.07111 0.003251 0.4057 0.005169 0.008987 0.006886 0.003783 0.0002534 0.00917 0.002558 0.000397 0.5795 0.01708 0.0001353 0.5758 6.207e-05 0.542 0.001487 0.003367 0.009166 0.2967 0.0003723 0.0116 5.248e-06 0.004322 0.498 0.07044 0.0003472 0.0001684 0.3396 0.3568 0.002546 0.4206 0.00645 0.001554 0.0001718 0.004449 4.874e-05 0.65 0.0009156 0.04953 0.0006746 0.03277 0.0001693 4.701e-06 0.002203 0.002985 0.0004682 0.0008351 0.00696 0.0009694 2.032e-06 0.5536 1.252e-05 0.003288 0.602 0.00169 0.008036 0.6445 0.5603 7.743e-06 0.001339 0.5697 0.0007964 0.002248 6.412e-06 0.0001171 0.4433 0.1023 0.002224 1.433e-05 0.01692 0.5667 0.009168 0.005585 8.652e-06 0.007412 0.6045 0.002282 0.0007958 0.01164 0.005353 0.0005715 0.002012 0.02885 0.0002501 0.0127 0.001309 0.003402 0.1588 0.004887 0.05226 0.0009244 0.00341 0.0002653 0.001803 0.03096 0.001656 0.0008048 0.0002042 0.02564 0.002392 0.003992 0.0003418 0.003456 0.006087 0.0001704 0.001377 0.0003379 0.003164 0.01429 0.0007372 0.0002273 0.002905 0.001662 0.0001756 4.773e-06 0.01002 0.1064 9.847e-05 0.003804 0.001372 0.007724 0.1026 0.0007017 0.002137 0.00206 0.000814 0.05353 8.805e-06 0.002198 0.02393 0.001485 0.005155 7.309e-05 0.00318 0.02358 0.1105 0.001747 0.001917 0.00353 0.0001447 0.002152 4.195e-06 0.5836 8.105e-05 0.4809 0.006342 0.5787 0.001151 0.0001414 5.196e-05 0.0006792 0.004693 0.004388 0.001398 0.004282 0.01334 0.05299 1.413e-05 0.008122 0.4607 0.000709 0.5853 0.002481 0.453 3.061e-05 0.0002018 0.0002191 0.001913 1.031e-05 0.001436 0.0002201 0.007332 0.0005646 0.0001316 5.564e-05 0.004099 3.354e-06 0.0001966 0.001489 0.001596 0.00318 0.03435 6.879e-06 0.004739 0.02535 0.01683 0.04001 0.1074 0.02911 1.641e-05 0.0003277 0.0001904 0.5695 0.002045 0.006673 0.0003726 0.0006103 0.007205 0.001011 0.05296 0.00185 0.495 0.01342 0.007652 0.01265 4.35e-05 0.004877 0.02289 0.0002192 0.003867 0.003053 0.5901 0.0009882 0.02396 0.01126 0.0007741 1.035e-05 0.02023 0.001738 0.02663 0.5694 2.634e-05 0.002762 0.007263 0.4942 0.3258 0.003485 0.007266 3.663e-05 0.3999 0.003687 0.0009041 0.001722 0.0707 0.004253 0.02317 0.0007919 0.006525 0.01635 0.02248 0.008561 0.001818 4.122e-05 0.01047 0.004329 0.03313 0.3951 0.012 4.805e-06 0.3998 0.003257 0.3976 0.01163 0.003123 0.01412 4.069e-06 0.01322 0.09653 0.005148 3.733e-06 0.001065 1.35e-05 4.734e-05 0.02759 0.0008339 3.689e-05 0.0009532 0.0002891 0.007593 0.002366 0.002014 0.001713 0.003032 0.001204 0.5484 0.005759 0.0005459 0.02672 0.002446 0.0001421 0.001276 0.006578 0.4459 0.002081 0.004926 0.01118 0.001376 0.009944 0.3607 0.0002104 1.52e-05 0.003137 0.5463 0.01075 0.5642 0.004586 0.005055 0.07583 0.0005823 0.01283 0.000151 5.588e-05 0.005313 0.002761 0.0007998 0.002622 0.00144 0.001076 0.0003408 0.02312 0.001967 0.0001059 0.465 0.00365 0.001468 0.5833 0.02497 0.6496 0.001132 1.293e-05 0.4233 0.5424 0.002011 0.002679 0.3957 0.003302 0.0007368 0.004706 0.0001556 0.5638 4.656e-05 4.985e-06 0.1156 0.511 6.159e-05 0.2931 0.01993 0.005826 0.0003351 0.001501 0.0001881 0.0001019 0.00384 0.01957 0.001455 8.445e-06 0.0502 0.002361 0.000467 0.0009681 5.424e-05 0.05868 0.4448 0.4447 0.01302 0.004283 6.789e-06 0.5942 0.0002476 1.216e-05 0.001108 8.27e-06 0.01624 0.2798 0.2804 0.003053 0.001631 0.1373 0.04465 0.06621 0.002341 0.001354 0.001057 0.01672 0.03575 0.01149 3.412e-05 0.0001019 0.00265 0.00257 0.005042 0.0002542 0.004455 0.001481 6.752e-06 3.003e-05 0.002857 0.01299 0.0006153 0.007718 0.001202 0.0001009 0.001939 0.002034 0.02181 0.001412 0.000426 0.001481 0.00373 0.001282 0.0005356 0.1313 0.006512 0.0009424 0.522 0.0008803 0.1184 0.005953 6.405e-05 6.676e-05 0.3865 0.0002625 0.0003083 0.000407 0.1559 0.0057 0.006422 0.003386 0.001541 0.004412 0.5786 0.0005421 0.01153 0.6505 0.00845 0.0006668 2.104e-05 1.116e-05 0.0004531 0.0272 8.657e-05 0.004646 0.0002378 0.0003201 0.000217 0.3949 0.5156 0.1248 7.445e-05 9.505e-05 0.0002468 0.002452 0.009454 8.777e-06 0.02671 0.1607 0.001234 8.936e-05 0.04329 0.00167 0.008069 0.00154 4.39e-06 7.99e-05 0.0003882 0.02178 0.001023 0.0005875 0.004321 0.0002551 0.01555 0.0002521 7.988e-05 0.001571 0.02447 0.5311 0.00237 0.0004882 0.005548 4.861e-05 0.0141 0.5717 0.004174 0.001942 0.006798 0.004973 0.00403 0.01163 4.462e-06 0.001853 6.583e-05 0.0005066 5.772e-05 0.3158 3.724e-05 0.4899 0.003505 0.01082 9.583e-05 0.003637 0.0005876 0.01816 0.006227 0.0001753 0.00488 0.02572 0.002249 0.002962 0.00775 0.0006721 0.5728 0.1316 0.1527 0.002255 0.02556 0.5883 0.5762 0.003933 5.279e-08 0.004668 4.807e-05 0.0016 0.002826 0.2981 0.4251 0.4104 0.0006685 0.0004575 0.0007871 0.01784 0.002029 0.002961 0.0004706 0.4745 0.3698 0.01041 0.06354 0.004164 0.02829 0.004776 0.01084 0.001815 0.1198 0.04441 0.0002095 0.03996 0.0005098 0.4172 0.4172 0.02111 0.001351 0.3399 0.0309 0.4019 0.002059 0.001102 0.04779 0.002202 0.000432 1.383e-05 0.009336 0.004982 0.0003676 7.142e-06 0.00291 0.001191 0.002361 0.6441 1.408e-05 0.007403 0.3962 0.5743 9.902e-05 6.865e-05 0.004602 0.004926 0.004212 0.0002866 0.0001902 0.315 0.01688 0.001921 0.0009182 0.0003557 7.032e-05 0.004047 0.0003016 0.5615 0.003519 0.03156 0.1351 0.007924 0.04987 0.5733 0.0004281 0.00116 0.0005612 0.0009364 0.001453 0.0007715 0.006848 0.0003199 0.0006237 0.03744 0.0002265 0.003246 5.196e-06 8.916e-07 0.5222 5.475e-05 0.0003023 0.003135 0.00162 0.004787 6.147e-06 0.5686 0.004905 0.001964 0.1744 0.3398 0.009767 0.003932 0.1752 0.5403 0.0004211 0.002746 0.006387 0.02138 0.5318 0.001049 0.0001069 0.00545 0.0008792 7.855e-05 0.5738 0.0005713 0.0002328 8.839e-05 0.0003448 1.853e-05 0.05908 5.273e-05 0.0002288 0.001725 0.001028 3.047e-06 0.01733 0.04503 5.52e-05 0.01971 0.02846 0.02811 0.0002819 0.005093 0.007568 8.084e-06 5.894e-06 0.4042 0.0001544 0.1332 0.004834 0.002011 0.006339 0.4198 4.205e-05 0.004081 0.1081 0.005418 2.772e-05 9.533e-06 0.04904 0.0004157 0.0003551 0.5676 0.00103 0.001085 0.0002214 0.4098 0.0002182 0.001179 0.01068 6.483e-06 0.002713 0.00549 0.0001753 4e-05 0.03947 0.04983 0.0006463 0.000427 0.005418 0.009136 0.0002429 5.755e-05 0.5644 0.0009896 0.004088 0.02033 0.08603 0.569 0.5677 0.2113 0.003869 0.002931 0.0007957 8.226e-06 0.07967 0.5646 0.006008 0.5798 0.001561 0.0003263 0.6252 0.001474 0.0001285 4.344e-06 0.06893 0.00186 0.00361 8.462e-05 0.01396 0.0008779 0.00604 0.002608 0.3247 0.003542 0.000112 0.006252 0.0007261 0.01605 0.0004613 0.002046 0.4412 0.008625 0.007784 0.002209 6.016e-05 0.0197 0.0005702 1.076e-05 1.176e-05 0.3715 0.03681 0.001353 0.1448 2.838e-05 0.0004565 0.002992 0.000224 0.2443 0.05481 0.0002329 0.0003585 0.0007504 0.56 0.5597 0.002244 0.4664 0.0004005 0.0002114 7.998e-08 0.06599 0.0007389 4.924e-05 0.4664 0.008518 0.0009499 0.0007427 0.0003578 0.5697 0.005542 0.02361 0.0008291 0.0001508 1.542e-05 0.0009096 6.189e-08 0.004277 0.0123 0.5761 0.005405 0.006622 0.001325 0.01722 0.0003508 0.04782 0.4301 1.169e-05 0.00167 2.176e-05 0.03187 0.05651 6.842e-05 0.001845 0.003525 0.3256 1.277e-05 0.01256 0.6002 0.5282 0.002765 0.001104 0.02795 0.002019 0.0001474 0.003956 0.008562 1.103e-05 0.0002484 0.004163 0.5296 0.001115 0.000135 0.00681 0.0002963 0.1895 0.0002285 8.185e-06 0.0003475 0.161 0.02311 0.03967 0.3894 0.001118 7.965e-06 0.05292 0.0006677 0.1247 0.01028 0.00107 2.028e-05 0.08269 0.5901 0.01114 0.008724 0.005965 0.000602 0.0001378 0.003804 5.715e-07 0.01066 0.5876 0.0004964 0.0004459 0.3046 0.001604 0.0002497 0.00468 0.5832 0.004801 0.002592 0.04582 0.001568 0.0004666 0.002271 0.525 3.944e-05 5.556e-06 0.001361 0.000174 7.709e-06 8.668e-06 0.007223 0.0005641 0.00766 0.5604 0.001553 0.001348 0.002506 0.0422 0.0009832 0.1517 0.01566 0.00343 0.5663 0.03957 0.07104 0.0009958 0.005702 0.2475 0.02894 0.001998 0.5702 0.0001053 0.006459 2.785e-05 0.5108 0.3962 0.001858 8.967e-05 0.1751 3.353e-05 1.141e-05 0.002921 9.695e-06 0.02246 0.001196 0.004221 0.0001908 0.00274 0.02512 0.004781 0.0001339 0.01443 5.32e-05 0.0006972 2.955e-06 0.005809 0.003012 0.4109 0.000361 0.004967 0.5521 0.001963 0.001497 0.03361 8.499e-05 0.0002472 0.003666 0.6007 0.0009546 6.426e-05 0.02612 5.318e-05 0.0007362 0.0261 0.0005403 2.763e-06 0.1242 0.5639 0.001992 0.1092 0.001952 0.0004324 0.008852 7.709e-06 0.3776 0.01064 0.2952 0.5773 0.001605 0.01023 0.003188 5.409e-05 0.5792 0.001148 0.5683 0.009835 0.001815 0.0002173 0.0003742 0.5679 4.902e-05 0.008604 0.002567 0.0003363 0.6026 0.01257 0.0002532 0.0005927 0.01113 1.241e-05 0.001279 0.0003173 4.368e-05 0.5662 0.001075 0.0004644 1.429e-05 0.2618 0.000265 8.191e-06 2.544e-05 0.009095 0.0001738 0.5923 0.05727 0.004047 0.001051 0.04499 0.01288 0.000931 0.002528 0.04127 9.354e-05 0.002978 0.0009843 0.0008566 0.5839 0.001865 0.002786 0.01712 0.001007 8.206e-05 0.0002879 0.00511 0.5692 0.035 0.01246 0.01703 0.001075 0.1244 0.0002495 0.0004115 4.49e-05 0.002118 0.005892 0.001821 0.02178 0.0002284 0.06377 0.004139 0.6034 0.005869 0.002671 0.5255 0.4234 0.003382 0.5913 0.003816 0.01049 0.02014 0.0009985 0.0008101 0.01831 0.0002348 0.006083 3.799e-05 0.5657 0.001425 6.929e-05 0.5715 0.5719 0.001056 0.01325 0.0003639 0.0002851 0.00125 0.4732 0.002131 0.002054 0.000611 8.854e-05 0.1201 0.008786 0.005239 0.001477 0.0007755 0.0002646 4.44e-06 0.0008472 1.61e-05 0.0004567 9.869e-06 0.3787 0.05789 0.008502 0.0001921 0.07244 0.01865 0.2815 0.007661 6.172e-05 0.002631 0.0003931 0.3752 0.001609 0.0008533 8.282e-05 0.4047 0.0004599 0.03025 0.002131 0.002597 0.0002205 0.3807 0.2925 0.0001255 0.001373 6.996e-05 0.5739 0.07245 9.211e-06 0.0001602 7.997e-05 0.003596 0.000707 0.05236 0.008603 0.003041 0.01096 0.005237 0.02089 0.02961 0.1339 0.1209 0.009144 0.0002358 0.4924 0.002357 0.3386 0.004444 0.000665 0.00179 0.001984 1.295e-05 5.602e-05 4.216e-06 0.1566 0.004448 0.0001755 0.004276 0.5673 0.003605 0.0003019 7.403e-06 0.04294 0.000346 0.0004648 0.6637 0.0005664 0.5577 0.003293 0.005062 0.004229 9.135e-06 0.02572 0.5622 0.001437 0.007573 0.01385 0.0005434 0.001235 0.2032 0.6524 0.4861 0.00423 0.565 0.5649 0.0001626 0.001347 0.007014 0.6373 0.00187 0.0001163 0.4489 1.311e-05 0.3737 0.5608 0.0005963 0.373 0.000209 0.5876 4.227e-06 0.00618 0.007636 0.3057 0.02179 0.0001857 0.004852 9.463e-06 0.0008216 0.008308 0.007794 0.0001359 4.843e-05 0.0001154 0.002646 0.0002021 0.001138 0.00607 0.01187 0.001854 0.07412 0.3132 0.04098 0.6013 0.006785 0.1585 0.002568 0.0307 0.001994 0.00115 0.01149 0.0004193 5.85e-06 1.027e-05 0.01743 0.02237 0.551 6.579e-07 0.004248 0.0006935 0.003439 0.0007868 0.0001903 0.06438 0.0002323 0.006057 0.001335 0.009283 0.5763 0.005249 0.000659 0.004186 4.762e-05 0.5086 0.0001248 0.001641 0.003116 0.5664 1.648e-05 0.004586 0.005745 0.00362 0.003958 0.0002276 0.001271 0.005989 0.5655 0.004801 0.5937 0.006098 0.00178 4.109e-05 0.002671 0.01082 0.0008976 0.003288 1.142e-05 0.001673 0.1083 0.007072 0.01353 0.3907 5.602e-05 0.006303 1.02e-05 0.0001112 0.02812 0.0003497 0.3428 0.03134 5.286e-06 2.113e-05 0.003608 0.0003813 1.134e-05 0.0478 0.006246 0.4092 0.01274 0.07466 0.001392 0.006817 0.0005531 0.002671 0.01522 0.08141 0.4261 0.04091 0.07393 0.01279 0.005413 0.005339 0.0004804 0.001562 0.00298 0.0005861 0.5834 0.0003865 0.003959 0.0001836 0.0008603 0.005565 0.007442 0.02001 0.001094 0.0007152 0.08944 0.005187 0.007045 0.003659 0.0008284 0.002327 0.0007149 0.0004779 0.0004402 0.009135 6.736e-05 0.004223 0.5743 0.5587 0.006756 0.0105 4.698e-05 0.001225 0.5741 0.5351 0.5602 0.008069 0.003598 0.003824 0.0006636 0.0004593 0.005798 0.006731 0.0008369 0.01835 0.001066 0.0006045 0.0001157 0.3835 0.001014 0.3828 0.005279 0.3551 5.365e-05 0.002296 5.712e-05 0.000557 0.003252 0.5662 0.001781 0.4199 1.505e-05 0.00111 0.4932 0.3475 0.009996 0.005029 0.02558 0.4153 0.5738 9.223e-05 0.5156 0.002037 0.5358 5.659e-06 4.877e-05 0.001995 0.004224 0.01243 0.003973 5.114e-06 0.5682 0.002546 0.002363 0.003077 0.0008438 0.004681 0.5003 0.005106 0.01275 0.003972 0.0001785 0.4532 6.579e-05 0.0006423 0.09348 0.0003328 0.1203 0.01775 0.002431 0.001159 0.001126 0.5782 0.001026 0.002616 3.707e-05 0.1353 0.478 0.0009355 0.5765 0.006278 0.002566 0.01727 0.0004424 0.001039 0.004569 0.01002 0.0003782 0.001557 0.4535 2.2e-05 0.0002457 0.01285 0.0009403 0.04676 0.01686 0.002239 0.00428 0.001992 0.002134 0.000166 6.335e-06 0.001725 0.5198 0.0003268 0.03575 0.0423 0.006332 0.003879 0.03057 0.001834 0.09451 0.00597 0.003124 0.3388 0.0007902 0.003506 0.6193 0.0006619 0.002568 0.0006461 0.0007815 0.001018 0.004003 0.01707 4.336e-05 0.0002065 1.006e-05 0.0002303 3.534e-05 0.002599 0.005872 0.00266 0.000309 0.01148 0.002431 6.309e-05 0.00122 0.01471 0.001514 0.5645 0.009275 0.0002392 0.3439 0.0005436 3.682e-06 0.003039 0.006138 0.007812 0.004981 0.0003668 0.001014 0.001933 0.565 0.0007032 5.452e-06 0.00264 0.001453 0.0002082 0.002492 7.295e-06 0.01194 1.308e-05 0.09551 1.45e-05 0.001842 0.4468 0.002439 0.0007742 0.0001537 0.5588 0.001023 0.0008736 0.001941 0.001373 0.01502 6.81e-05 0.01132 0.0003623 0.001443 0.001456 0.003655 0.005257 8.933e-06 0.004787 0.01803 0.6586 0.007499 0.4331 0.0001836 0.01139 0.003197 0.02619 0.0001287 0.03832 0.63 0.0005317 0.0002103 0.003202 0.0005845 0.008066 1.299e-05 1.372e-05 0.005266 8.325e-05 0.004658 0.5128 4.093e-06 0.02975 0.002069 6.211e-05 0.002256 0.001254 0.00708 0.002019 0.00771 0.01951 0.003246 0.0173 0.02971 0.005458 0.02409 0.05995 0.0001787 0.4736 0.05177 0.3734 0.5725 0.00089 0.001833 0.06973 0.0133 0.001685 0.002424 0.0001574 0.5038 0.5401 7.424e-07 0.5805 0.002705 0.008726 0.0003588 0.6016 0.0001347 0.0004982 0.007194 0.007501 0.001572 0.1048 5.659e-05 0.008771 0.0008011 0.0005724 0.002991 0.0009118 0.003736 0.003591 0.002218 0.0003663 0.5699 0.003288 0.002035 0.3059 0.0139 0.000445 0.004044 0.2675 0.01978 0.415 0.006168 0.0004656 0.1892 0.0002148 0.06344 0.002218 1.689e-05 0.01876 0.0047 0.00221 1.945e-05 0.0003025 0.0005676 0.002251 0.002011 8.93e-05 0.2071 0.001066 0.01242 0.01793 0.5777 0.000565 0.0009351 0.00289 0.002125 0.00417 0.1022 0.0002498 8.537e-05 0.001939 0.5542 0.03042 0.0318 0.005974 0.6104 0.006226 1.102e-05 0.0009628 0.004004 0.5799 0.001578 0.0006794 0.003516 0.001295 0.0001958 0.0002208 0.002048 0.0007287 3.446e-06 0.003938 0.05504 9.301e-06 0.186 0.5826 0.02483 0.009615 0.5453 0.002082 0.01023 0.001262 0.5024 0.00929 0.002847 3.241e-08 0.01178 0.3536 0.0003039 0.0008941 0.0001473 0.5437 0.06883 0.0008228 0.3432 0.0044 0.5166 0.01512 0.01399 0.000422 0.3215 5.77e-05 0.009406 0.0273 0.0001197 0.0003859 0.006746 0.002983 0.01164 0.0001599 0.004814 7.718e-05 0.0009342 0.0001383 0.01018 0.003697 0.0005477 0.007091 0.002486 3.067e-05 0.3171 0.005927 0.002297 0.0004135 0.001229 0.5916 0.2871 0.01457 0.007498 0.003783 0.002653 0.0005457 0.2219 0.001978 0.0008671 0.6645 3.004e-06 0.003723 0.002313 0.5897 0.003688 0.01722 0.5937 0.009304 1.178e-05 0.000372 0.009924 0.0001053 0.001941 7.53e-05 0.03282 0.418 0.0002836 0.0006042 0.001716 0.01788 0.1581 0.000155 0.001371 0.001497 1.078e-05 0.001242 7.985e-05 0.0004049 0.5957 0.01331 0.0008502 0.003668 0.05247 0.001346 6.818e-06 0.05195 0.009536 8.147e-05 0.01103 0.003793 9.407e-05 0.004155 6.56e-06 0.3625 0.5473 0.5839 0.008054 7.624e-05 1.625e-05 0.01135 0.0002672 0.0003377 0.001441 0.2627 0.008429 0.001033 0.01592 0.008086 0.422 7.169e-06 0.5708 0.001036 0.003497 0.002619 0.0001475 0.3996 0.0001617 9.659e-06 0.002315 0.01258 0.004096 0.0001989 0.0001789 0.01757 0.2087 0.0867 0.000722 0.0009357 0.3267 4.811e-05 0.0004436 0.01654 0.0002103 2.212e-05 0.000162 0.0002829 4.898e-05 0.001608 2.704e-06 0.00697 0.0001019 0.3384 0.001238 9.312e-05 2.784e-05 0.02967 0.006451 0.006789 2.926e-05 0.002401 0.004995 0.09097 0.004897 0.01136 0.0002837 0.0002981 0.003976 7.142e-06 0.001128 0.0001634 0.0003808 0.000327 8.318e-05 0.004153 0.0009116 0.0003431 0.00428 0.3699 0.000578 0.3767 8.229e-06 0.4007 0.0001808 0.005781 0.01751 0.004148 0.003306 0.0001696 0.006452 0.0004336 0.001935 0.01471 0.344 0.006912 0.03772 0.0004827 0.5693 0.005858 4.645e-06 0.4738 0.02616 0.002301 0.0001683 1.345e-05 0.1206 0.0001355 0.2989 0.002266 0.01715 0.0009759 0.0003463 0.5367 0.01414 0.005821 0.0001223 0.001732 0.1723 0.01357 0.2239 0.003248 0.5401 0.5211 0.002097 0.2637 0.004226 0.006816 0.009019 0.5681 0.0001147 4.738e-05 0.56 0.0005595 0.001455 0.0126 0.0001822 0.01424 0.000238 0.2412 9.088e-05 0.0001047 0.05787 0.02958 0.004969 0.0007429 0.003962 0.01371 0.004448 0.0008184 0.0005892 0.0004648 0.001001 0.0001048 0.3521 0.0001759 0.0006498 0.004011 0.01497 0.004417 0.004237 7.977e-06 0.01084 0.03059 0.01224 0.001592 0.5611 0.007356 0.0006091 0.004573 0.001033 6.12e-06 0.0001902 0.005957 0.005175 0.001623 0.00341 0.0004389 9.922e-05 0.0006211 0.003401 0.0005426 0.07282 1.378e-07 0.06131 0.002092 0.00034 0.0004964 0.303 0.5608 0.6072 3.762e-06 0.003198 0.01843 0.003926 0.03225 0.005955 0.003348 6.73e-05 0.001274 0.00361 1.944e-05 0.01031 0.0001907 0.00118 0.002471 7.44e-05 0.0004661 0.5564 0.0008397 6.628e-05 0.5695 0.0007223 0.001724 0.00702 0.006779 0.06626 0.00334 0.007795 0.5194 0.535 5.23e-05 0.008537 0.002034 0.0004453 0.003221 0.2112 0.4169 0.0002202 0.003016 0.4072 0.00974 0.5701 0.0003242 0.3732 0.6629 0.001683 0.0002418 0.0006189 0.005657 0.0001553 0.0003285 0.004364 0.002476 0.0235 0.02903 0.0005334 0.004123 0.000419 6.079e-05 0.0002259 0.0008088 0.002043 0.0001124 1.629e-05 0.0001343 0.002246 0.0009496 0.003468 0.001221 0.002267 0.01214 0.0005409 0.0006837 6.699e-05 0.06195 0.0003214 2.998e-05 0.002485 0.000208 0.0006096 0.0004831 0.5659 0.02062 0.0003341 0.001067 6.204e-05 0.5114 0.0083 4.57e-05 0.001518 0.0001051 0.198 0.001659 0.001176 0.008235 0.007161 0.006108 0.001969 0.03777 0.0005077 0.01138 1.163e-05 0.002784 0.01646 4.151e-06 0.03176 0.001873 4.985e-05 0.0228 0.003778 4.626e-07 0.001243 0.0002099 0.5702 0.0128 0.5713 0.01687 0.5713 0.00158 0.01281 0.006572 0.004474 0.01799 0.003134 0.332 0.09152 0.05169 0.002939 0.02012 0.02454 0.4196 0.005027 0.0005407 0.002695 0.636 0.001604 0.4077 0.01139 0.005591 0.001028 0.00021 0.0008561 0.572 0.006959 0.002725 0.08802 0.002321 0.0002107 0.002232 4.367e-05 0.006345 0.001865 0.00312 0.0002739 0.0005254 0.0005211 0.4199 0.007262 0.2974 0.0007827 0.006093 4.176e-05 0.001109 0.3963 0.02042 0.004345 0.001067 0.005985 0.04915 0.005474 0.00456 0.003629 0.02769 0.0002373 0.001421 0.0004953 0.001896 0.0083 0.0008964 0.003567 2.726e-08 0.001255 0.002605 0.5788 0.0004942 0.001341 0.006738 0.000222 9.101e-06 0.01985 0.001146 4.348e-06 0.002191 0.00173 0.0002463 0.002668 0.0001116 0.0005954 0.01959 0.007884 0.0005995 0.002727 2.683e-05 0.006847 0.4205 0.00534 0.003163 0.4391 0.0006681 0.0002119 0.00226 0.0002712 5.008e-05 0.563 0.01281 0.0002156 7.186e-06 0.005659 0.003198 0.0896 0.0004574 0.002378 0.0006204 0.003158 0.005793 0.3522 0.07231 0.01786 0.07142 0.452 1.031e-06 0.01036 0.003064 0.4555 4.8e-05 0.0001789 0.00741 1.672e-05 0.01032 0.00112 0.0004287 0.03853 4.08e-05 0.0005637 4.143e-05 0.005539 0.0004647 0.000525 0.4609 0.0008306 0.001177 0.01093 0.001365 0.00101 0.001307 0.0008956 1.449e-05 0.5462 0.1518 0.004421 0.00137 0.01367 0.06852 0.0439 4.326e-05 0.0635 0.0002578 0.6134 0.0241 0.4532 0.003266 0.002927 0.001294 0.00197 0.06943 0.0009746 0.5727 0.006822 0.0006087 0.01873 0.001874 0.0003945 0.0004443 0.04873 0.001885 0.5717 0.0001153 0.0001084 0.005261 0.002697 0.0005298 0.002181 0.006245 0.5779 9.317e-05 0.2282 0.0006878 0.0002032 0.003433 0.0001338 0.001866 0.0001531 0.0002032 0.002069 0.0105 0.0007423 0.5671 1.344e-05 1.037e-05 0.004558 0.001818 0.002645 0.007537 0.0007104 0.003407 0.02378 0.00385 8.513e-06 0.01739 0.000361 3.159e-05 0.00271 0.001155 0.01507 9.858e-06 0.03789 0.00312 0.5021 0.0002238 7.858e-06 0.502 0.6447 7.25e-05 0.5448 0.0001682 0.00143 0.0003924 4.876e-06 0.5713 0.0007811 0.00122 0.002076 0.001371 0.1052 0.003096 0.02202 1.485e-05 0.403 0.0002543 0.539 0.001955 0.001663 0.007761 0.368 0.0005081 0.01361 0.6128 0.01534 6.211e-05 0.0002183 0.2984 0.0002284 0.009613 0.00193 0.0004034 0.02249 0.00275 0.2734 1.02e-05 0.0001897 0.000625 0.02369 0.008032 0.0002566 0.0005205 0.2586 1.248e-05 0.01645 0.0002419 0.005857 0.002418 0.01187 0.006021 0.00284 0.6021 0.0006141 0.0001387 0.2966 0.2963 0.002592 0.004109 0.3388 0.003373 0.0004108 0.0005145 2.799e-05 0.001284 0.00064 9.78e-06 0.0001584 1.439e-05 0.001977 0.5708 0.5525 0.003029 0.05436 0.002652 0.04777 0.0002367 0.00103 6.88e-05 9.636e-05 0.0001499 0.0004127 0.09846 0.2366 0.1688 0.5889 0.007729 0.5723 0.0001669 0.01068 0.3115 0.008662 0.00253 0.001871 8.518e-05 0.08463 0.01292 0.01147 0.04949 0.001255 0.0003232 0.004868 1.613e-05 0.056 0.008704 0.007913 0.004403 0.001882 1.104e-05 0.001703 0.001907 0.001407 0.5528 0.001632 0.04459 0.3609 0.0002166 0.0006014 0.5412 0.001321 0.004806 1.193e-05 0.0002715 0.002216 0.004556 2.829e-05 0.0003347 0.1475 0.0001173 0.0002447 0.001056 5.132e-05 0.0001039 7.113e-05 0.4309 0.001106 0.001726 0.03348 0.4598 0.005973 0.1485 0.03548 0.002065 0.0007251 0.002172 0.001692 2.568e-06 0.2412 0.0002407 0.5319 0.001031 0.1643 8.315e-06 0.506 0.0006598 0.5801 0.007316 0.004042 9.077e-05 0.001981 0.3704 0.0006687 0.002954 0.002152 0.5854 0.003416 0.6482 0.004689 0.08709 0.567 0.007093 2.88e-05 9.062e-05 0.0005717 0.001925 0.1553 1.936e-05 3.904e-05 0.001889 0.57 0.001788 0.001686 0.1896 0.001637 0.000338 0.0006584 4.526e-06 0.00307 0.5556 0.03827 0.5542 0.006721 0.0005279 0.0005821 0.001282 0.008998 0.005404 8.267e-05 0.001013 0.001453 0.02279 0.0004532 0.0009367 0.00463 0.001125 0.3703 0.3703 0.02839 0.01255 0.005112 8.468e-05 1.084e-05 7.387e-05 0.001495 0.05332 0.5712 0.01252 6.835e-05 0.001242 0.003423 0.000324 1.403e-05 0.4358 0.01069 0.008256 0.007188 0.0002584 0.001918 0.0005926 0.0007417 0.512 2.524e-05 0.01095 0.6552 0.0008767 0.01708 0.0003499 0.003357 0.05941 2.9e-05 0.0003067 0.3856 0.4081 0.1169 0.0005987 0.0003377 0.005573 0.0001771 0.5803 0.001052 0.6502 3.385e-05 0.005974 0.004785 0.006388 0.004536 0.5613 0.005184 0.03418 7.754e-05 0.5202 0.003039 0.002072 0.007047 7.106e-06 0.0007707 0.6102 0.0005359 0.0005633 0.5507 0.5577 0.001805 0.0001073 0.0001453 0.00947 0.6355 0.001658 0.0002261 5.304e-05 6.976e-06 0.0115 4.872e-05 0.03113 0.0005585 1.22e-05 0.0006486 0.0006232 1.304e-05 0.003745 0.001895 0.01179 0.006264 0.02902 0.005369 0.5745 0.0003145 0.001355 0.006707 0.0004121 0.0004208 0.6235 0.3345 0.569 2.339e-07 2.303e-06 0.5223 0.3934 0.002683 0.2072 0.005657 0.0002816 0.01454 0.01997 0.005068 0.009713 0.5903 0.006638 0.5559 0.003711 0.432 0.0009128 0.01339 0.004473 0.0171 0.0002547 0.003575 0.3696 7.415e-05 0.1472 0.0004437 0.01331 2.095e-05 0.3729 0.002778 0.002199 0.0005394 0.0004529 0.002806 0.004679 7.281e-06 0.02664 7.876e-06 0.08968 0.005119 0.2579 0.5686 0.0005176 0.002298 0.0366 0.0117 0.0003552 0.0006009 0.5408 0.008201 7.651e-06 0.01373 1.544e-05 0.0006172 0.01159 0.0004449 0.5955 0.001082 0.0007241 3.93e-05 0.01159 0.0004104 0.3944 0.0003115 0.004303 0.285 0.002849 0.001486 0.3848 0.006631 0.05994 0.04209 0.4277 0.4277 0.002723 0.008838 0.002369 0.02436 0.03406 0.01448 0.003711 0.03969 0.000637 0.002797 0.000271 0.01981 0.001464 0.007911 0.003012 0.03769 0.1945 0.002188 0.006208 1.005e-05 0.005777 0.0008421 1.304e-05 0.002035 0.0129 0.01163 0.001478 0.2565 0.0111 0.5552 0.004427 0.0001687 0.006901 0.0008577 0.02223 0.0001473 0.006451 1.567e-05 0.2035 0.001657 7.538e-05 0.001781 0.003154 0.006056 0.000311 0.008596 0.1759 0.00639 0.01654 0.5655 0.3915 1.163e-06 0.007326 0.001199 1.135e-05 4.152e-06 0.0001822 0.03012 0.0006411 0.0006482 7.757e-05 0.003231 0.1111 0.008173 0.0009794 0.097 0.02338 0.0001731 0.0007659 0.002094 5.15e-05 0.002734 0.000285 0.3554 0.004894 2.505e-05 1.275e-05 0.004211 0.002003 0.001399 0.002317 0.03264 0.0004611 5.266e-06 0.02314 0.00654 0.001444 0.007514 0.0006084 0.003608 1.264e-05 0.0009718 0.01282 0.0164 0.5044 0.0008022 0.00397 0.02361 0.4399 0.01293 0.3553 0.05464 8.358e-05 0.0001303 0.001458 0.0005142 0.000968 0.004105 0.01781 0.5587 0.02878 0.2849 0.08077 0.003048 0.5751 0.001033 0.02328 0.004459 0.00466 0.001884 0.5777 0.4522 4.929e-05 6.108e-05 0.002094 0.0004463 8.704e-06 0.0003654 0.09005 2.576e-05 0.01365 0.003354 0.01063 0.001125 0.0003069 0.008447 0.000143 0.0002216 0.0004739 7.281e-05 0.004723 0.0005853 0.4731 0.009705 0.003927 0.01832 0.0003986 6.167e-05 0.001839 0.004729 2.401e-07 0.003492 0.001611 0.0003174 0.002623 0.0002796 0.007462 0.005488 0.01392 0.4638 0.002747 0.07858 5.181e-05 0.000923 0.005256 0.07787 2.99e-05 0.5014 0.001139 0.001661 0.0001846 0.443 0.3407 0.003632 0.001579 0.0005135 0.02494 0.6015 1.644e-05 0.001486 0.3727 0.01068 0.002724 0.004135 0.0006844 0.5625 0.00478 2.027e-05 0.04426 5.445e-06 3.31e-06 0.5007 0.0004177 0.004259 0.0013 0.002673 0.01722 0.001728 0.006842 0.005888 6.553e-06 4.049e-05 0.002133 0.024 0.003831 0.0001864 0.001835 0.4188 0.02205 0.0001174 0.002995 0.004827 0.005311 0.0001479 0.0007063 0.0005891 0.5772 0.4401 0.0008679 0.0005743 0.0001593 0.0008765 0.009538 0.001083 0.006035 0.009806 0.0002066 0.0002352 0.0276 0.0003555 0.00808 0.0009718 0.00068 0.0114 3.923e-06 5.62e-05 0.0002842 0.02699 0.002783 0.0002198 0.5891 2.091e-05 6.56e-05 0.009896 0.562 0.008281 0.007797 5.671e-05 0.005351 0.536 0.5909 0.0006164 0.171 0.042 0.5598 0.004587 0.294 0.01112 0.3198 0.6482 0.0007905 0.002456 2.638e-05 0.002321 0.0002257 0.000155 2.383e-05 0.6015 0.1159 0.01976 0.02223 9.333e-05 0.0001779 0.4831 0.3707 1.598e-05 0.0006311 3.499e-06 0.01425 0.004761 2.253e-05 0.05127 0.05916 0.5595 0.0001068 0.004479 0.0007881 0.000608 0.5535 0.006664 0.4305 0.00101 0.006874 0.007967 0.0002197 0.03469 0.002856 0.0004853 0.00159 0.000261 0.0001569 0.0002478 0.004273 0.0004415 0.003 4.694e-06 0.004854 0.002269 0.4103 0.4524 0.00101 0.002243 0.001034 0.001077 0.007318 0.01722 0.02163 0.002376 0.0002586 0.5693 0.5732 0.5362 0.5365 0.0003166 0.0003326 0.008692 0.0229 0.03338 0.4584 0.5428 0.0004897 0.004805 0.0001603 0.3847 0.001031 7.033e-05 0.4806 0.01695 0.004201 0.002337 0.3566 0.0366 0.5666 0.08463 0.001268 0.01772 0.00256 0.008059 0.0001258 0.001013 0.3921 0.01595 0.5848 0.05492 0.006299 0.0002198 0.001313 0.0003396 0.00024 0.002393 0.0002113 0.00049 8.664e-06 0.000312 0.5815 0.002375 0.02827 0.0008226 0.005297 0.0009898 0.000501 0.008937 0.0002147 0.01569 0.2999 5.804e-05 0.01575 0.3202 0.0003706 0.006668 0.03128 5.972e-05 4.152e-06 0.007585 0.01365 0.01521 0.03485 3.13e-05 0.0005741 0.04802 0.001131 0.002733 0.3394 7.596e-06 0.003315 0.005479 0.5722 0.002407 0.02918 0.002585 0.008034 0.0004685 0.0001081 0.0008312 0.002286 0.004779 0.1043 0.004732 0.02033 0.008747 0.0006351 0.003905 0.2932 0.3845 0.004829 0.02311 0.001499 0.001272 0.004009 0.1204 0.03751 0.4023 0.008088 0.0106 0.0001945 0.1463 0.009223 0.0002605 1.192e-05 0.0001569 0.0001845 0.01169 0.003127 0.002677 0.1267 1.965e-05 0.3853 0.0004943 0.003005 9.678e-06 0.007335 0.0004483 0.002197 0.007479 0.0515 0.0005753 0.001955 0.001884 0.001476 0.02341 0.5414 0.04701 0.001614 0.007828 0.05024 0.07885 0.486 0.0007916 0.003021 0.006561 0.5445 0.3738 0.001665 0.08893 0.003031 3.514e-06 0.004964 0.04247 0.0003506 0.0008107 0.001329 1.448e-05 0.04973 8.42e-05 0.5939 0.004563 1.113e-05 0.5811 0.000369 0.00708 0.5464 0.002105 3.823e-05 0.00146 0.000734 0.0008828 0.0005194 0.01867 0.002191 0.0003934 0.002462 0.004657 0.0003149 0.0007291 0.0003271 0.007657 0.009298 2.938e-05 0.5565 0.0007459 0.003519 0.5377 0.00228 0.0008425 0.000771 0.008224 0.015 0.5735 0.4529 0.00339 0.007806 0.00474 5.462e-05 0.004686 0.0008203 0.002202 0.001989 0.002448 0.01941 0.001686 5.25e-05 0.3159 0.4937 0.002457 0.03808 0.005839 0.008764 0.0001248 0.0007454 0.6475 0.000897 0.0001929 0.00104 0.01257 0.0007911 0.3196 0.1137 0.003944 9.093e-05 0.02706 0.004189 0.002096 0.00607 0.006487 1.167e-05 0.3444 0.0003178 0.001712 4.853e-06 9.361e-05 0.0122 0.02539 0.0002932 1.224e-05 0.0002453 0.0004092 0.002225 0.01108 0.02884 0.01077 0.003905 0.4042 0.003886 0.0004522 0.002754 0.001748 0.0009621 0.01777 0.05439 0.001067 0.001416 0.0009073 8.508e-05 9.413e-05 0.6178 0.00235 0.003305 0.08437 0.0531 0.009697 0.002193 0.0008842 0.0004512 0.002019 4.385e-06 0.0003127 5.959e-05 0.001325 0.002122 0.001316 0.01477 0.03933 0.006386 0.002335 0.0008167 0.001422 0.2973 2.678e-08 0.009514 0.0003224 0.01489 0.0008288 0.0007537 0.0009124 0.01456 0.0008915 0.4905 0.0004961 0.009601 0.5771 0.003065 0.4389 0.0002424 1.155e-05 0.02399 0.01659 0.0001684 0.0001856 0.01338 0.0001016 7.713e-06 0.002582 4.714e-05 0.009488 3.727e-06 0.5789 0.00557 0.0003135 0.006743 5.159e-06 0.02355 0.001056 0.0003793 0.0001011 0.001082 0.0115 0.01492 0.0001586 0.005788 0.00109 0.000174 1.993e-05 0.0005123 0.001738 0.2493 0.0003548 0.006702 1.869e-05 0.623 0.002145 0.005175 0.006661 4.602e-05 0.001668 0.5761 0.0007456 0.002557 0.00255 0.009464 0.0002453 0.0005257 0.0007274 0.006625 0.009342 0.1265 1.291e-05 0.0575 0.004259 0.0001149 0.001016 0.005167 0.01504 0.004794 0.0002379 0.01093 0.0004007 0.01177 0.0004619 0.4031 0.4535 0.3227 0.002451 0.5533 0.5602 0.002523 0.003775 0.006102 0.02222 0.001513 0.03253 0.1293 0.008772 0.5489 0.3897 0.07416 0.02564 0.4427 9.665e-06 0.006243 6.931e-05 0.005285 9.24e-05 0.5225 0.0007371 0.3885 0.0001196 0.2491 0.003747 0.0001183 0.5771 0.0819 0.6681 0.003554 0.4075 0.002193 2.509e-06 0.0009629 0.0004657 0.006406 0.006076 0.0005246 0.008804 0.0004509 0.008294 0.008452 0.0005146 0.0004679 0.00753 0.006433 0.001764 0.004854 0.000161 0.0001915 0.04571 0.008113 0.01074 0.004629 0.0001823 0.004753 0.04036 0.5772 0.007526 0.000441 0.005814 0.0007663 0.006979 9.542e-05 0.005947 0.001499 5.932e-05 0.01406 0.001635 0.00275 0.003918 0.001349 0.1372 0.00922 0.5746 0.002149 0.002829 0.4635 0.0004309 0.003238 0.619 9.647e-06 0.6356 0.005269 4.185e-06 0.3923 0.01606 1.058e-05 0.3779 9.374e-05 0.1299 0.02406 7.487e-05 0.001469 2.131e-05 0.002265 0.4146 0.00263 1.636e-05 0.0002333 0.007079 0.0002936 0.0001044 0.004519 0.03185 3.763e-06 0.02747 0.005761 0.01225 0.02067 0.5713 4.367e-06 0.04386 0.03334 0.003844 0.07884 8.92e-05 0.0005091 0.0004764 1.542e-05 0.04121 0.0003778 8.509e-05 0.009484 0.001099 0.3034 0.0008615 0.06966 0.001684 0.003515 0.3896 0.0007267 0.001845 1.835e-05 0.0001876 0.00383 0.0008342 0.01039 0.01603 0.01564 1.658e-05 0.001276 0.1398 0.003925 0.5541 0.008037 8.821e-06 0.0002536 0.008516 0.00174 0.001296 5.996e-05 0.00259 0.09537 0.3515 5.691e-07 0.206 0.5227 0.001441 0.0004396 0.0001343 0.007476 0.001075 0.007033 0.001106 0.0002702 0.0004989 0.5635 0.007184 0.07855 0.0001716 0.006303 6.341e-06 0.003378 0.02382 0.007011 8.38e-05 0.001667 0.0001449 0.002223 0.01932 7.107e-05 6.184e-05 0.004582 0.01797 4.086e-06 0.001398 0.0001554 0.106 0.005689 0.001037 0.02522 0.04789 0.2015 8.464e-05 0.001268 0.0007909 1.056e-05 0.005945 0.001396 0.01591 0.002644 0.0187 0.0002384 0.0002619 0.006457 0.004149 2.804e-05 0.0006216 0.001137 0.1081 4.297e-08 0.0006037 0.01296 0.4497 0.0003605 0.002071 0.0001384 0.02723 0.002431 0.0004414 0.3879 0.41 6.288e-05 0.008549 0.006894 1.66e-05 0.0004541 0.002286 0.04858 0.0006107 0.04191 0.007986 0.0002744 8.582e-05 0.000623 5.085e-05 0.0032 0.01584 0.0004936 0.009261 0.00362 0.0006988 7.105e-06 0.0003981 0.0003638 0.01834 0.0006226 0.0009517 7.972e-05 0.1449 0.5719 0.07216 0.02963 0.5665 0.001001 0.02067 0.01235 0.008862 0.0139 0.002337 0.001043 0.01833 0.5696 0.0103 0.5738 0.5596 0.03662 0.00103 5.371e-05 0.3581 0.4066 0.001344 1.033e-05 0.005601 0.001316 3.617e-05 0.04947 0.002338 6.569e-05 0.00107 0.00011 0.05942 0.01441 0.004237 0.002536 0.2851 0.01874 0.0003597 0.0002717 2.833e-05 9.26e-05 0.006734 0.0005947 0.0001062 0.0001051 0.001757 5.491e-05 2.612e-05 0.05774 0.003272 0.6045 0.0004779 0.0176 0.3956 0.007802 0.06025 0.002837 0.5715 0.2746 0.2505 0.001544 0.267 0.0001295 0.01418 0.3179 8.543e-05 0.5364 0.004158 0.2555 0.002147 0.0006284 0.0009154 0.0002759 0.004433 0.5683 0.002642 0.0001102 0.001318 0.0001933 0.007716 0.0001122 0.04024 0.0004741 0.003453 0.00391 8.557e-05 0.637 0.0004347 0.5351 0.001762 0.5697 0.0006458 0.000474 0.001234 0.004598 0.1223 0.002246 0.1723 0.005327 6.646e-06 0.000842 0.001097 2.908e-05 0.589 0.64 0.0773 0.4026 0.512 0.005166 0.0009763 8.46e-06 7.115e-05 0.5225 0.0004518 0.003994 0.0004863 0.01146 1.456e-05 0.00909 0.1561 0.0006431 9.735e-05 0.002268 0.009142 0.005028 0.01124 1.785e-05 4.819e-06 0.06835 0.004159 9.129e-06 0.06472 0.01732 0.0002588 0.001269 0.0001435 8.445e-05 0.56 0.002055 0.00477 0.4253 0.006527 0.02909 0.5843 0.01957 0.0005919 0.0007255 0.0009101 0.3841 0.5763 6.221e-06 0.000176 2.46e-06 0.2444 0.0006387 0.003513 0.007245 0.0002917 0.0005597 0.0646 0.01107 0.01375 0.006358 0.3182 0.008974 0.01068 3.692e-05 0.006847 0.0006441 0.1611 2.604e-05 0.0007682 6.355e-06 0.002149 0.1962 0.007421 1.099e-05 0.001034 0.5509 5.306e-06 0.01374 0.000104 0.001332 0.02224 0.4011 0.01814 0.009557 0.000453 5.328e-05 0.6071 0.5261 3.287e-05 0.5977 0.006277 0.0006216 0.0005869 1.073e-05 0.001943 0.04059 0.009333 0.5459 0.003783 0.001162 0.02883 0.007088 0.01132 0.00312 0.6528 0.3421 0.5467 0.05246 0.003954 4.841e-05 0.006026 0.001589 0.001886 0.5545 0.02852 0.00168 0.00085 0.0001056 0.002246 0.003551 0.0288 0.01304 0.0005245 0.05716 0.0002357 0.0002851 3.828e-05 0.5772 0.001375 0.01418 0.007671 0.0008592 0.006206 0.006808 0.3483 0.0001387 0.01623 0.001921 0.4913 0.5485 0.001403 4.693e-05 0.02018 0.01014 0.034 0.0708 0.5024 0.0001439 0.00043 0.0002823 0.5965 0.01915 0.005682 6.061e-05 0.007946 0.0006999 0.02222 0.3869 0.01007 0.006024 0.007667 0.008957 7.614e-06 0.001023 0.5928 0.002071 0.02387 0.03226 0.05525 0.02207 0.008345 0.005068 0.00189 0.001111 0.00563 0.00013 0.003101 0.3843 0.008135 7.135e-06 0.005342 0.002351 0.002443 0.003635 0.126 0.002425 0.05442 0.0001562 3.093e-05 0.005677 0.3791 5.198e-07 0.0002239 0.1807 0.001036 0.000679 1.51e-06 0.002104 0.03158 0.0004169 0.003379 0.008805 0.004584 0.0005459 4.027e-05 0.04693 0.01975 0.0002116 9.308e-06 0.00123 3.398e-05 0.5777 0.5039 0.0001409 0.5276 0.39 0.1799 0.0003071 0.00172 0.03691 0.001826 0.3989 0.008662 0.001446 0.006968 0.002045 0.0006444 9.216e-05 0.002389 0.006136 7.852e-05 0.004149 0.02891 0.5776 0.3732 0.004655 0.002244 0.0003401 0.0001825 0.003844 0.001039 0.4447 0.0001724 0.004474 0.6404 0.0001858 0.003063 0.01346 9.011e-05 0.5671 0.0005849 0.1634 0.005533 0.0003187 0.5761 0.0004064 0.3988 0.004026 0.01502 8.184e-05 0.003653 0.0001793 0.2957 0.002652 0.006483 0.0002875 0.002493 0.004767 0.0004196 0.0007935 4.926e-06 0.0001729 0.004296 0.5773 0.01994 5.809e-05 0.4018 0.2353 0.6265 1.699e-05 0.007591 0.005656 0.01082 0.000482 0.0007213 0.008276 0.004488 0.002617 0.01121 1.341e-05 0.001456 0.0001999 0.001845 0.0009839 0.0007114 0.00557 0.002699 9.725e-05 0.009351 0.0007184 0.2123 0.013 0.6043 0.0002816 0.002348 6.659e-06 0.06555 0.01556 0.001348 0.0001838 0.0007569 0.004036 0.000385 0.0001893 0.3789 0.002161 0.03614 0.002767 1.615e-05 0.0001301 0.00447 0.003071 0.4074 5.318e-06 0.06911 0.004463 0.005243 0.01632 0.0002252 0.009324 0.4166 0.0003581 0.001095 0.0001649 0.5698 0.001287 0.01985 0.0003122 0.00213 0.0009775 1.404e-06 7.517e-06 0.0006044 0.5754 7.593e-05 0.001647 0.03993 0.001573 0.5661 0.6222 0.001557 0.4459 0.4376 0.006772 0.0003035 0.0008303 0.5414 0.0001153 0.04952 0.01169 0.01588 0.608 0.0002025 0.004103 0.001142 0.01465 0.001135 0.1299 0.0005304 0.004396 5e-06 0.001175 3.388e-05 0.02554 0.5874 0.0006817 0.001506 1.577e-05 0.01141 0.00383 0.001194 0.393 0.6176 0.0008436 0.001699 2.854e-06 0.01282 0.0004544 0.003125 0.01645 0.0008096 0.0004566 0.0009639 0.504 0.001264 0.0307 0.0005574 0.006528 0.02336 0.0106 1.335e-05 0.2836 0.2823 0.0001078 0.003107 0.003225 0.02033 0.0003506 0.006397 0.1374 0.002853 0.001183 0.0002213 0.001911 0.02221 0.000106 6.23e-05 0.009046 0.0002539 0.001177 0.4548 0.009697 0.3194 0.01742 0.001957 0.0009331 3.004e-05 0.561 0.001756 0.007876 0.00137 0.001821 0.002843 0.003958 0.009008 0.5583 0.000893 0.007313 0.56 0.5947 0.02452 0.5424 0.004211 0.01077 0.0003831 0.06761 1.008e-05 0.4964 0.01248 0.01741 0.008503 0.5713 0.001814 0.0007234 0.003874 0.001592 0.0004113 0.004736 0.00734 0.5376 0.01038 0.0008723 0.003564 2.33e-06 0.0004194 0.5825 0.234 0.09127 0.03552 0.002153 0.0235 0.00276 0.02604 0.0002327 0.007523 0.007943 0.0001269 8.345e-05 0.08265 0.01848 0.0002333 0.0003178 0.4368 0.002007 0.1126 0.1782 0.006239 0.1104 3.341e-06 0.01346 0.001093 0.01838 0.0005279 0.005566 0.005032 0.00448 7.781e-05 0.0002337 0.005295 0.002005 0.0006292 0.001417 0.001505 4.657e-05 0.000557 0.000155 0.0008463 0.005462 0.003088 0.007552 0.009425 0.003942 0.001044 0.002556 0.03177 0.002084 0.009868 0.002104 0.0002917 0.0007154 0.000128 7.318e-09 0.05615 0.001548 0.0004545 0.0005289 0.06252 0.0002008 0.0009879 0.0232 0.009311 0.008599 0.002465 3.748e-05 0.3459 0.01752 0.005138 0.003863 0.0001265 0.003988 7.37e-05 0.0001751 0.01739 0.003486 0.0003051 0.00509 0.008487 0.002767 0.0006087 0.002699 0.0001263 0.0001562 6.6e-05 0.003878 3.993e-06 0.007155 0.0009298 1.548e-05 0.01834 0.4832 0.0005334 0.002411 0.05546 0.002195 0.2881 0.5807 0.000855 0.0001816 0.001764 0.0126 0.0001082 0.001216 0.0002875 0.003167 0.004582 0.002596 1.096e-05 0.001046 0.01637 0.001525 0.004753 1.322e-05 4.617e-05 0.008856 0.0004456 0.003102 0.0001704 0.0004218 0.002181 0.006317 0.004395 0.3273 0.0003232 0.0004225 0.000152 0.6068 0.0003958 0.001924 0.002464 0.001666 0.0003625 0.4776 0.1642 0.005046 3.711e-06 1.208e-05 0.0001641 0.001354 0.0007891 0.008183 0.02005 0.02541 0.01733 0.007056 0.3633 0.003022 0.00193 0.004052 0.002624 0.0007312 0.002264 0.1247 0.00282 0.003672 0.01346 0.0008265 0.0003687 0.00275 0.3008 0.004718 0.02353 0.1941 0.002519 8.011e-06 0.3889 0.5693 0.1254 0.002385 5.42e-05 0.0006137 0.03836 0.0002926 0.001919 0.05745 0.0001634 0.003807 8.335e-06 2.18e-05 2.46e-06 0.002902 7.693e-06 0.2815 0.003721 0.006704 0.00818 0.04919 0.1208 0.0002567 5.304e-05 0.0006847 5.278e-05 9.559e-05 9.765e-06 5.665e-06 0.3165 0.335 0.0004793 0.003646 0.002503 0.003974 0.006514 0.01064 0.002055 9.04e-06 0.006374 0.003708 0.4039 0.0006533 0.0003209 0.003165 0.002095 0.005993 0.003613 3.207e-06 0.01023 0.5638 0.001804 0.0008383 0.002975 6.591e-08 0.002347 0.000467 2.026e-05 0.002523 0.0004926 0.0001044 0.000129 1.125e-05 0.009357 0.4094 0.0001035 9.764e-06 6.774e-05 0.001134 0.03018 0.003454 0.00639 0.09371 0.001604 0.001016 0.5728 0.007047 7.035e-05 0.5571 0.56 0.0001141 8.713e-06 0.4002 0.0001723 0.00744 0.3496 0.373 0.004089 0.0002191 0.002115 0.007552 0.04143 0.004459 0.01041 0.003847 0.0008236 0.01196 0.001248 0.0003596 0.3298 1.349e-05 0.01514 5.936e-06 0.0005707 0.0005439 0.0003766 4.29e-05 7.676e-05 0.002107 0.001771 0.0002912 0.001601 0.0001118 3.701e-05 0.01285 0.004631 0.5725 0.00326 0.03365 0.002688 0.5738 0.0001257 0.01558 0.0002432 0.0001531 0.4835 0.07233 0.00188 0.00053 0.0003197 0.03648 0.03774 3.322e-05 0.007467 0.008377 0.03959 0.008909 9.758e-06 6.532e-05 0.001985 0.6048 0.005444 0.0008457 4.614e-05 7.379e-05 0.004508 0.0003841 0.3934 0.004991 0.001259 0.002745 0.574 0.0004862 0.3002 0.1576 0.006438 0.0003118 0.4055 0.0009516 0.5351 0.0004253 0.5783 7.56e-05 0.01058 0.4524 0.001849 4.817e-07 0.0002487 0.0001537 0.005537 0.007788 0.0006173 0.002951 0.009463 0.04745 0.4295 0.003579 0.5321 0.0223 0.03989 9.836e-05 0.001856 1.29e-05 0.00118 0.0233 0.388 0.01172 0.001905 0.0005895 0.0002476 0.007365 0.0004397 0.0002966 0.0009199 0.001383 0.000623 0.0001252 0.0003121 3.338e-05 1.167e-05 0.0003008 1.141e-05 0.0001781 0.003678 0.0007021 0.0004926 0.03096 2.112e-05 0.000782 0.0001656 0.001068 0.5565 0.1318 2.894e-05 0.2989 0.005059 7.009e-05 0.0009185 0.6178 0.001216 1.015e-05 0.6195 0.5314 0.001181 0.01177 0.004259 0.008361 0.005828 0.008791 0.0002016 7.55e-08 0.4572 0.4821 0.1764 0.3548 0.3542 0.0003363 0.4992 0.0074 0.2399 0.006276 0.002654 0.001921 0.003501 0.005754 0.0001781 9.608e-05 0.00175 0.00136 0.003804 0.3392 0.02023 7.676e-05 0.6606 0.002032 0.005287 0.0002446 0.00523 0.5856 0.001219 0.5772 0.0005418 0.002256 0.3789 0.5613 0.001437 0.01098 0.01132 0.01343 0.002788 0.01295 0.003302 0.02231 0.3985 0.001205 0.5345 0.00125 0.2671 0.0002186 0.008693 0.000143 0.1445 0.5528 0.03711 0.0007181 0.001929 0.005889 0.5624 0.0001426 0.001982 0.09384 0.00573 0.003492 0.06304 0.0005207 0.008344 0.552 0.001566 0.1531 0.0004872 0.0477 0.001291 0.006135 0.002884 0.002366 0.5757 0.0004673 0.04864 7.141e-05 0.003976 0.5613 0.002401 0.003286 0.03656 6.022e-05 0.000396 0.0001246 0.5662 0.08333 0.5466 7.989e-06 0.002223 0.008923 0.000334 0.0005017 0.0004884 6.995e-05 0.0005571 1.216e-05 0.0002506 0.6561 3.718e-06 0.001899 0.002354 0.0007553 0.004013 0.003549 0.001222 5.74e-05 0.001198 0.001368 1.86e-06 0.5934 0.647 0.002216 0.004102 0.5576 0.0008335 0.0004204 0.06683 8.966e-05 0.004327 1.448e-05 0.4164 6.399e-05 0.3518 0.4649 0.009383 0.001348 0.0007867 0.5854 1.206e-05 4.263e-05 1.218e-05 0.0003342 0.0003346 0.2551 0.0023 0.0213 0.0006656 0.0004102 0.1509 0.009089 0.01104 0.0004038 0.0003794 0.006917 0.0002044 1.414e-05 0.414 0.005221 0.0002237 0.4707 0.004511 0.001957 0.4583 0.0007349 7.189e-06 0.001196 0.0001514 0.0001159 0.01634 0.01341 0.0145 0.007537 1.131e-05 0.002242 0.00146 0.002082 0.005238 0.01391 0.0003678 0.0006215 0.001487 0.005811 0.5291 0.02493 0.574 0.002141 0.02006 0.6257 0.001106 9.112e-06 0.000862 0.003246 0.001076 0.004929 0.04111 0.004972 2.355e-07 0.001353 0.0007474 3.197e-06 0.001696 0.5737 2.906e-06 5.882e-05 6.696e-06 0.003916 0.004349 0.008912 9.423e-06 0.1771 8.572e-06 0.01591 0.01787 9.72e-05 0.001215 0.003861 7.432e-06 0.0003512 0.001928 0.0007132 0.0002427 0.01081 0.1317 0.0005199 0.0003301 0.01357 0.0001934 0.001573 0.01011 9.491e-05 0.577 0.01878 0.01678 0.4605 0.0006229 0.3917 0.4693 0.0001972 1.56e-05 0.01455 0.004863 4.885e-06 0.5763 0.0003974 0.003238 0.0006063 0.009945 0.01276 0.000851 2.74e-05 0.5763 0.008159 2.703e-06 0.002042 3.121e-06 0.4691 0.001542 0.0003237 1.884e-05 0.0002281 0.0003832 0.00135 0.0001602 0.001067 0.5686 0.003593 0.003021 1.352e-05 0.0005399 0.02347 0.6044 0.08814 0.6021 0.0012 0.167 0.0004532 0.007919 0.002153 1.023e-05 0.0006892 0.002884 0.0006962 0.6331 0.002581 0.0003495 0.01179 0.05698 5.633e-06 0.0002789 1.293e-05 0.009067 0.5779 0.0004867 0.005378 0.0009091 0.4099 0.1114 0.05102 0.003757 0.003514 0.0001957 0.001462 0.007886 0.5552 0.4632 0.000305 0.003065 0.00578 0.5662 4.576e-05 0.00361 0.0004812 0.0001833 0.001506 0.5803 0.002163 0.0004858 0.0001902 0.005185 0.05012 0.0002292 0.0007596 0.6009 0.007788 0.003661 0.007305 0.0005534 0.004615 0.002404 0.01202 0.006586 0.004566 6.063e-05 0.4438 0.0008108 0.07079 6.941e-05 0.005725 0.0004382 0.007508 0.1592 0.005709 7.519e-05 0.005909 0.0001734 0.001425 6.726e-06 0.000644 0.0205 0.003519 0.000241 0.009535 0.002127 0.002144 0.01271 0.582 0.5941 0.004186 0.009033 0.5375 0.003621 0.01841 0.0009011 0.557 0.002848 0.009857 0.001031 0.02444 0.0007965 0.002597 0.004071 0.01785 0.0004136 0.003449 0.3191 0.3192 0.5223 4.878e-05 0.003934 0.5936 0.0002195 0.0004846 0.0009091 0.5734 0.00917 0.005195 0.0003752 0.0003713 0.4044 0.004142 0.0002331 0.008971 2.736e-06 0.05397 0.002354 0.0008238 1.643e-05 0.01067 0.0006384 0.001541 0.02122 0.01637 0.002849 0.02446 7.376e-09 0.001596 0.02942 0.001544 1.271e-05 0.0002992 0.002682 0.08123 0.006087 5.834e-05 0.000471 0.06733 0.002577 0.0005674 0.007145 0.01061 0.06606 0.5832 0.324 0.002817 1.003e-05 0.02414 7.877e-05 0.5698 0.01312 0.003984 0.0006318 0.008578 0.008269 1.017e-05 0.000652 0.0002479 0.0187 0.3642 0.005069 0.0006988 0.004604 0.005028 0.31 0.003834 0.01648 0.001046 0.005272 0.4034 0.002919 0.05481 0.5854 0.002091 0.0003058 0.0005468 9.379e-05 0.08683 0.1037 0.004345 0.009257 0.06532 0.002327 0.001522 0.0004785 0.0008367 0.0002627 7.358e-05 0.001017 0.5672 0.001427 0.01046 0.002838 0.01439 0.0004673 0.000777 0.01492 0.000353 0.5673 8.032e-07 0.004176 0.009771 0.0005887 0.003203 0.03665 0.5381 8.16e-06 0.5834 0.2314 0.003125 0.009956 0.0008214 0.0003289 0.003024 0.0001119 0.1095 0.005626 0.01843 0.05699 0.6261 7.974e-07 0.3886 0.007783 0.208 0.4427 0.006747 0.002862 0.002004 0.006103 0.0226 0.0004015 0.1078 0.0009282 0.0004929 0.0005493 1.534e-05 0.5952 0.5669 0.01252 0.001854 0.01652 0.00379 0.009394 0.002935 0.2563 0.5181 0.3896 0.002053 0.006138 0.0002436 0.006734 0.2641 0.01599 0.5535 0.407 0.001337 0.384 0.5694 0.0003559 0.573 5.621e-06 0.0003333 0.00896 0.0007007 5.904e-05 0.002813 0.00781 0.02394 4.34e-05 0.004199 0.376 3.862e-05 0.001012 0.0004521 0.001016 0.002967 0.3828 0.0001016 0.0006645 0.4872 0.02347 4.417e-05 0.001626 0.01235 0.5393 0.563 0.008271 0.53 0.0108 0.01069 0.01187 0.2781 3.142e-06 0.006458 2.238e-06 0.01351 0.001056 6.363e-06 0.00389 0.1873 0.3597 0.0006835 0.03631 0.02282 0.004214 0.001548 0.006046 1.148e-05 0.0002258 0.0001135 0.002408 0.5292 0.003724 1.164e-05 0.002461 7.82e-06 0.0234 4.091e-08 0.5564 0.0002116 0.003402 1.115e-05 0.0007205 0.0002608 0.00336 0.3666 0.0001344 0.0009105 0.0105 0.0001696 0.008978 0.01049 0.0003797 0.001183 0.0005691 0.04356 9.048e-06 0.00783 0.001786 0.5737 0.3752 0.001289 0.007417 0.000885 0.4165 0.02076 0.2498 0.0044 0.01774 0.0142 0.0009674 5.315e-06 0.5751 1.379e-05 0.3009 0.05638 0.5634 0.007535 9.052e-05 0.00475 0.003385 1.92e-05 4.52e-06 0.08533 0.00244 0.3283 0.03554 0.003405 0.02039 0.4477 0.0007391 0.4875 0.23 0.001348 0.0002332 0.0008495 0.0003593 0.003125 0.005218 0.0208 0.01938 0.002329 0.04154 0.0004505 0.003583 0.1361 0.0015 4.831e-05 0.000212 0.01445 0.0004727 0.002237 0.0006247 0.6162 0.0003386 0.4202 5.375e-06 0.004949 0.009576 0.001186 0.0005173 0.002605 0.005998 0.3018 0.07002 0.002913 0.01416 0.005709 0.0004566 0.004187 0.001924 0.01002 0.002232 0.5654 0.0005755 0.002984 0.000416 0.0001421 0.002416 0.3034 5.46e-05 0.000328 0.001123 0.008945 0.00379 0.3976 0.01096 0.0001219 0.0101 0.04086 6.294e-06 0.004926 0.004716 0.2747 0.01271 0.0004615 0.0008292 0.5867 0.0004619 0.0001393 0.0004476 0.0006031 0.02718 6.267e-05 1.959e-06 0.0211 0.5875 0.3425 4.34e-05 2.499e-06 0.0002871 0.4748 0.003679 0.0001998 0.4237 0.001108 0.0003491 0.0003681 0.002571 0.001772 0.001082 0.3847 0.333 0.008326 0.01848 5.646e-06 0.0261 0.002495 0.1272 0.5359 0.1879 0.2669 0.0003555 0.003305 0.00706 0.0002999 0.006061 0.004493 0.0002481 0.001393 0.5813 7.381e-05 0.000118 0.0004603 0.001643 0.4629 0.5682 0.006664 0.0003873 0.5151 0.0007066 0.2758 0.5764 0.00474 0.005156 0.5691 0.006187 0.003743 0.572 0.3006 0.0004014 0.004532 0.5597 0.5084 0.002161 0.0001542 0.0001258 0.09105 0.0002311 0.0002743 0.0003816 0.0004319 0.5019 0.001153 0.01797 0.00628 0.002135 0.0009005 6.935e-05 8.223e-05 0.02711 0.008346 0.007019 7.677e-05 0.02443 0.005123 0.0002262 0.0008935 0.001607 4.038e-06 0.5437 0.01452 0.01167 0.5781 0.0001438 0.003083 0.002302 0.0005089 0.0004177 0.01001 0.001784 0.002043 0.003197 0.006206 0.06505 0.01435 2.573e-05 0.01713 0.0001075 0.01433 0.6087 0.001561 0.0005683 0.008254 0.01813 0.1101 4.763e-05 0.001839 0.003182 0.01176 0.009676 0.001017 0.01724 0.01662 0.4478 0.02728 0.001506 0.0002693 0.0003494 0.01225 0.01777 4.246e-05 0.3873 0.5902 0.03889 0.003939 2.968e-06 9.488e-05 0.0006205 0.0001073 0.05227 3.988e-05 0.001264 3.784e-06 0.006051 0.0009634 0.006265 0.584 0.0006169 0.0004218 0.0007051 1.324e-05 0.2425 0.5701 0.0008591 6.535e-05 7.75e-05 0.5465 2.327e-06 0.006442 0.002808 0.5628 0.0006241 0.005969 0.01114 0.007786 1.059e-05 0.0008744 0.001499 8.735e-06 0.001698 0.0001861 0.002478 3.438e-06 0.002867 0.0003849 1.06e-05 0.001525 0.000723 0.00583 0.01086 0.002869 0.1356 0.0009206 0.3208 1.479e-05 0.5986 0.0003426 0.003824 0.002151 0.004926 0.006034 0.4141 0.001209 0.5932 0.02285 0.003255 0.0001142 0.001439 0.0002856 0.3413 0.0006451 0.002095 0.314 1.922e-05 0.0005104 0.05194 0.08585 0.0003435 0.0008073 0.04396 0.003295 0.0001518 0.0002044 0.007798 0.005676 4.405e-05 8.466e-05 0.0013 0.3153 0.0005898 0.0003584 0.003092 0.006769 9.057e-05 0.00204 0.0009835 0.004215 0.0003413 0.002353 0.0002676 0.4082 0.0008914 0.001774 0.01627 7.453e-05 9e-06 0.0114 0.001988 5.062e-05 0.01434 0.00874 0.0004123 0.0001055 4.556e-06 1.015e-06 1.466e-05 0.0004017 0.001774 1.435e-05 0.5295 1.201e-05 0.0005438 0.3976 0.001593 0.0007578 0.1303 0.0245 0.00222 7.962e-06 0.3734 0.0006747 0.565 4.05e-05 0.3645 0.0002493 0.0007065 0.0005513 0.007977 0.6093 0.3821 0.02144 0.2697 0.003096 6.826e-06 0.0005691 0.001849 0.02219 0.004089 0.0002382 0.0003122 0.0001044 0.002405 0.0008419 0.0001716 0.06711 0.001012 0.371 2.694e-06 0.006101 0.5111 0.0002409 0.002692 0.3652 7.989e-05 0.3724 0.003429 0.5025 0.001065 0.03065 0.04578 4.705e-06 0.005379 0.004256 0.3188 0.0299 1.197e-05 0.009581 0.004156 0.236 0.08506 0.01391 0.009761 0.5658 0.4466 0.000681 0.01044 1.454e-05 7.995e-05 0.5623 0.004917 0.02744 8.674e-06 0.00098 0.6177 0.002413 0.005678 0.000567 0.01062 0.005591 1.039e-07 0.0007697 0.001039 1.687e-05 0.001269 0.004726 0.1797 0.0004551 5.741e-05 0.008348 0.002431 1.288e-05 0.476 0.0002425 0.5845 5.334e-05 0.004877 0.01059 0.109 6.788e-07 0.04164 0.4682 0.319 0.01212 0.009763 0.002392 0.3918 0.00602 1.728e-05 0.01149 0.0002401 0.1064 0.0008903 0.4248 0.002071 0.002423 9.276e-06 0.002712 0.0002958 0.0002673 7.007e-06 0.0002231 0.01237 0.0002524 0.4745 8.976e-06 0.5622 0.3445 0.4432 0.3677 0.0006774 0.3851 0.004019 0.1294 0.006508 0.004064 0.06145 0.4822 0.005363 0.009603 0.001926 0.009049 3.322e-06 0.00389 0.001944 0.06005 8.303e-06 0.002158 0.5609 0.1161 1.177e-05 0.4065 0.003043 7.385e-05 0.003633 0.005731 0.0005131 0.005917 0.01292 0.211 5.295e-05 0.002622 0.01129 0.00137 0.002247 0.06769 0.5319 0.0001987 0.0002455 0.5565 0.003436 0.001822 0.0005038 0.006014 0.004241 0.005803 0.01835 0.005857 3.359e-05 0.0004947 0.0001303 0.00306 0.0008787 0.009059 0.0002549 0.04279 0.3014 0.6139 0.01096 0.0005589 0.02445 0.236 0.002436 0.4445 0.003668 0.0001319 0.009612 0.0005134 0.003087 9.962e-06 1.328e-05 2.073e-06 0.0137 0.004505 0.001049 0.0168 1.186e-05 0.0003724 0.002616 0.00984 0.001086 0.002514 0.002208 1.205e-05 0.00464 0.5586 0.008638 0.0002762 9.09e-05 0.6008 0.3278 0.01967 0.6237 0.003449 0.5577 1.905e-05 0.02742 7.106e-06 0.0004417 0.0009535 0.03247 0.5711 5.669e-05 0.4053 1.015e-05 0.004448 0.0006099 0.005097 0.0002797 0.004185 0.0003632 0.0007344 0.009382 1.137e-05 5.911e-05 0.0002183 0.003568 0.003528 0.02301 0.003564 4.178e-05 0.00146 0.003809 0.5263 0.06822 4.448e-05 0.002603 0.005021 0.0002057 0.0001019 0.3366 3.551e-06 0.0839 0.005747 0.5687 0.4357 0.003006 0.02683 0.04633 0.01588 0.0001639 0.5914 0.001885 0.1306 7.293e-06 0.007745 0.003305 0.004757 0.002972 0.0006169 0.00639 0.5689 0.398 0.0009063 0.002656 0.0003965 0.003108 0.1756 0.0001875 0.001432 6.283e-05 0.01931 0.0003022 0.5454 0.001229 0.004407 0.003237 0.06659 4.926e-06 0.001724 0.01065 0.0003119 0.0006539 6.295e-05 0.02758 0.03966 0.002751 0.4668 0.0004145 0.00584 0.0001706 0.009541 0.02045 0.007003 0.004512 0.3473 0.5746 0.001571 6.61e-06 0.0002553 0.3346 8.423e-05 0.281 0.005108 0.006186 0.01324 0.002031 0.004193 0.001204 0.0004955 0.003249 0.4377 1.162e-05 1.592e-05 0.003515 6.512e-06 0.2701 0.006492 0.003174 0.06104 0.001551 1.286e-05 4.727e-06 0.0002202 0.001626 0.0003927 2.745e-06 0.0003801 0.000249 0.001077 0.005826 0.006084 0.6197 0.005869 7.09e-06 0.6442 0.08898 0.0006782 0.003336 0.0001503 0.002415 0.5271 0.01344 0.003343 9.654e-05 7.638e-05 0.0002594 0.1482 0.0003532 0.005227 0.003208 0.5862 0.2917 0.0003695 0.004764 0.0005327 0.02466 0.00294 0.00838 0.0197 0.009982 0.001973 0.0003543 0.001412 0.001998 0.002787 0.0008478 0.0009146 7.498e-05 6.311e-05 0.0004707 0.008621 0.0006732 0.004517 0.01507 7.808e-05 1.222e-05 4.806e-05 0.002893 0.007772 0.4817 0.0002658 0.0009699 0.5799 0.01257 0.0003182 0.0009266 0.002832 2.563e-05 0.005066 0.001186 0.001938 0.0003348 0.0003331 0.01765 0.008415 0.0004009 0.004037 0.002978 0.003642 0.0002946 0.6621 0.009686 0.0024 0.3534 0.0001311 0.01744 0.004953 0.0003329 0.0001923 0.469 0.0005825 0.0008796 0.02387 0.0008058 0.01788 0.4611 0.001533 2.235e-05 0.3905 0.3899 1.1e-05 0.08075 0.000523 0.5114 8.164e-06 0.003299 0.0001464 0.0006558 0.0007085 0.002644 0.0264 7.721e-05 0.001398 0.003268 0.02193 0.01665 0.0001989 0.005426 0.4077 0.006958 0.139 0.5764 0.001022 0.003492 0.006375 0.0002799 0.0251 0.01164 0.08995 0.6081 0.1313 0.001752 0.06135 0.0007263 3.182e-05 0.008171 0.0008299 0.02247 0.002124 0.03227 0.002992 0.00548 0.005705 0.0004824 0.0001912 0.3577 0.3561 5.022e-05 0.0003673 0.0007277 4.234e-06 0.0005819 0.006524 0.007162 0.004743 0.02806 0.0001581 0.009295 0.001031 0.6281 0.5098 0.003952 0.1024 0.003141 0.0003973 0.5163 7.895e-06 0.01493 0.003807 0.0009066 0.0008787 0.009616 0.001049 0.003425 0.01501 0.006778 0.05395 0.5678 0.0003286 0.02049 0.00855 3.055e-06 4.578e-05 0.0001035 0.001836 0.000163 0.004015 0.008198 0.06533 0.5778 0.1451 0.001868 0.2376 0.0535 0.5603 0.006265 0.001683 0.00148 0.01593 0.001874 0.5423 0.0001102 0.003066 0.0004289 0.0007279 9.336e-05 0.002178 0.4466 0.0003862 0.009071 0.00251 0.003725 0.3771 0.02029 0.07364 0.0001024 0.0003793 0.004421 0.01451 0.001691 0.0006032 0.0007796 0.4527 0.09652 0.0002943 0.008238 0.006413 0.0211 0.0868 0.0003177 2.475e-05 0.3775 0.5705 0.001323 1.668e-05 0.009538 0.009432 0.0002066 0.03891 0.3982 0.07523 0.0009014 5.914e-05 0.0006602 0.007894 5.654e-05 4.205e-06 0.002657 9.803e-05 0.6305 0.008299 0.6292 0.009164 0.003822 0.3116 0.0001521 0.00113 0.001936 0.003376 0.000427 0.002435 0.0005001 0.002956 0.00017 0.001148 6.63e-06 0.0006732 0.01937 0.01241 0.6186 0.01576 0.5686 0.6038 0.03081 0.1372 0.003664 0.0006156 0.02757 0.009776 0.0007682 0.0005431 0.0004116 0.001276 0.01191 0.000104 0.5742 0.006577 0.00311 5.069e-05 3.564e-05 0.002074 0.002391 0.002468 0.006427 0.003667 0.2531 0.00106 0.002277 0.00249 0.06826 0.007366 0.005545 0.01375 0.0004273 0.001428 0.0002727 0.5042 0.006012 0.006658 0.592 0.001048 0.002487 0.5718 0.02022 0.0102 0.003702 2.541e-05 0.002934 0.01919 4.556e-05 0.003939 0.004119 0.001127 0.008572 0.007854 0.03273 0.000237 0.569 1.538e-05 0.001353 0.0005212 0.6508 0.002666 0.001084 0.00585 0.006461 7.247e-06 0.5835 4.307e-06 0.0001227 0.0118 0.01095 7.362e-06 0.002051 0.003081 0.002649 0.004714 0.001182 0.002145 9.594e-05 0.001372 0.005458 0.006886 3.031e-05 0.004248 0.00259 0.000434 0.004013 0.4803 0.01316 0.5463 0.08565 0.1193 0.01891 0.009975 0.004372 0.0001096 0.285 0.008711 0.03628 0.0009455 0.0004049 0.4167 0.0004182 0.001246 0.00386 0.002553 0.1064 0.002826 0.005483 3.537e-06 0.2561 0.000339 0.6683 0.5751 4.315e-05 0.5796 0.0001769 0.0004735 0.004244 0.0001916 0.0005377 0.0005446 0.0009394 0.4199 0.002384 0.003493 0.0004416 0.0004856 0.1082 3.762e-06 0.3094 0.006068 0.3123 0.008021 0.3802 0.005365 0.004767 0.001153 0.001664 0.01242 0.3315 0.001429 0.0004187 0.007218 2.797e-06 0.002688 0.0003125 0.007041 0.0005873 0.00108 0.01453 1.167e-05 0.006249 0.00344 0.0003794 5.915e-05 2.512e-06 0.0001943 0.1185 0.0004764 0.003748 0.01132 0.001349 0.008621 0.0004987 0.005563 0.003038 0.000638 0.0001636 0.0004713 8.533e-07 0.5425 0.00214 0.0002066 0.01087 0.0004743 0.003015 5.657e-05 0.0008555 3.793e-06 0.364 0.00752 7.609e-06 0.0005011 0.456 0.007862 7.218e-05 5.825e-05 0.5622 0.0006039 0.08705 0.574 0.001412 0.005677 0.0003962 0.00723 0.0005602 0.0001522 0.0002483 0.006479 0.0006316 0.0007319 0.007375 0.0002515 0.06846 0.5396 4.02e-08 0.01309 0.07565 0.001367 0.007699 0.000179 0.001955 0.03347 0.004629 0.0005192 0.00138 0.0004463 0.001705 0.004933 0.01317 0.0007653 0.0001804 0.06013 0.001613 0.07865 0.0006807 0.004171 0.002238 0.1568 0.007881 0.002082 0.009732 0.005057 0.001603 0.0003619 4.845e-06 0.001666 0.002208 0.003678 0.00246 0.5696 0.008396 0.1411 0.0005198 0.0003975 0.001888 0.004157 0.01186 0.669 6.205e-06 0.0002245 0.413 0.001723 0.0005341 0.002389 0.001169 0.5725 0.5718 0.5749 0.006459 0.0003838 0.005507 0.1428 3.726e-06 0.000662 0.003572 6.494e-05 0.0003991 0.0009931 0.06697 0.0005616 4.959e-06 0.0009253 0.6319 0.003104 0.03509 0.1767 0.0001887 0.001066 0.003253 0.01082 0.00525 0.0004251 0.0007239 0.000268 0.001338 0.01168 0.000514 0.3626 0.001441 8.81e-09 0.0009992 0.0005089 8.51e-05 0.5726 0.008949 0.002399 0.0009032 0.001075 0.005714 0.0006906 0.00855 0.0005196 0.001686 0.01177 0.000698 1.043e-05 0.001865 0.002015 0.0006765 0.01484 0.002293 0.0006573 0.0008036 0.02099 0.01337 0.3137 0.3158 0.002568 0.000104 0.02015 0.0005872 0.03638 0.02369 0.003358 0.001019 0.001091 0.4853 0.5953 0.005274 0.5665 0.00191 0.5624 0.0001886 0.007666 0.5748 0.2045 0.000152 0.0001577 0.01157 0.06487 0.0002323 0.01149 0.006102 0.3761 6.358e-06 0.5683 0.01212 0.0007083 0.001785 0.000964 0.003487 0.003229 0.0002681 0.01081 0.001455 0.0005484 0.009469 0.0007727 0.5885 0.0002056 0.5716 0.5489 0.001347 0.0007406 0.006758 0.006382 0.01577 0.03346 0.000306 0.408 0.5591 0.0004135 0.01124 0.001474 0.002391 0.5812 0.001402 4.126e-05 0.01761 0.0006931 2.306e-06 0.1158 0.001043 0.0001314 0.0008128 0.0004252 0.03271 0.003923 0.01237 0.05712 0.003476 0.001363 0.356 0.00187 3.213e-05 0.009497 5.709e-06 7.823e-06 0.5601 0.02028 0.0009493 0.0004783 0.006269 0.0003158 0.002798 0.5651 0.001018 0.6235 0.3569 0.6021 5.852e-05 0.01627 0.001105 0.02996 0.00669 0.007422 0.5913 0.006287 8.752e-05 0.000936 0.0002694 0.001501 0.3611 0.006483 0.0006586 0.008884 0.004259 0.0005571 0.5425 0.02073 0.003294 0.0002745 0.0005173 8.043e-05 0.0002558 0.009816 0.0001662 0.0004692 4.762e-06 0.0005725 0.0005167 0.3538 0.01627 0.003585 0.0009131 0.01595 0.0009364 0.0009667 0.001506 0.0006447 0.02243 0.114 0.4896 0.0004932 0.1354 0.001308 0.00713 0.000343 0.5716 0.2978 0.0001707 0.0006228 0.0004127 0.004233 0.008812 0.0007705 0.0001315 0.006927 0.001188 0.004046 0.2535 0.03715 0.005308 2.376e-05 0.01861 0.0007512 0.005223 0.0002039 0.01139 0.001258 0.002203 0.02422 0.001216 0.01441 0.001938 0.0003775 0.002828 0.002702 0.0002726 0.001311 0.001925 0.2717 0.002618 0.5526 0.004515 2.666e-06 0.0008748 0.007991 0.003192 0.00258 0.002622 0.005326 0.0002706 1.15e-05 0.002065 1.277e-05 0.001239 5.541e-07 0.002787 0.03024 0.006331 0.4106 0.0007155 0.007492 0.001802 0.4098 0.4497 0.0003149 0.002174 0.1063 0.4501 0.000263 0.004695 4.994e-08 0.0001081 0.001741 0.001526 0.0002101 0.006854 0.0005417 0.00398 0.000307 0.3759 0.03831 0.005533 0.00252 0.0001508 0.0002504 1.048e-05 0.00189 0.008324 1.381e-05 0.02665 0.004723 1.103e-05 0.008739 0.1315 0.0001244 1.742e-05 0.006134 0.6381 0.001142 0.000961 0.06016 0.001934 0.001383 0.006805 0.002882 0.1241 0.003519 4.611e-05 0.01262 0.0009609 0.4019 0.007076 0.002245 0.0001712 3.473e-06 4.703e-05 0.003379 0.5409 0.3774 0.2424 8.72e-06 0.4664 0.0001349 1.124e-05 6.536e-06 0.5115 0.004281 0.002111 0.01107 0.521 0.009496 0.0001807 0.5811 0.0002305 0.0002035 0.00273 0.006783 0.009782 0.0007579 0.01952 0.003954 0.4754 6.916e-05 8.585e-05 0.003035 0.006293 0.3248 0.3239 0.009498 0.002722 7.791e-06 0.01113 0.002859 0.3112 2.754e-05 0.01547 0.09952 0.001824 6.978e-06 0.003808 0.0001555 0.0005592 0.003548 1.967e-05 0.03438 0.5711 0.002197 0.006496 0.007728 0.04857 0.0002241 0.0008271 0.5698 0.01847 0.003093 1.354e-05 0.009719 8.721e-05 0.5776 0.001728 0.04752 0.003469 0.001011 1.039e-05 0.0009279 0.01718 0.001273 5.549e-05 0.0003263 0.6625 0.0003848 0.0001603 0.002282 0.00699 0.002211 0.006232 0.0007005 0.2707 0.5554 0.0005338 0.0009159 0.003291 0.05478 0.3346 0.002987 0.0007546 0.0004633 0.0009888 0.003449 0.0005315 0.01084 0.01639 0.004076 0.004427 3.639e-05 0.002078 0.005664 0.01009 0.0008698 0.001618 0.0003145 5.367e-06 0.001211 0.0005904 6.449e-05 0.004833 2.38e-05 0.5799 0.003095 0.000866 9.372e-05 0.003044 0.3898 0.3329 0.001968 0.462 0.0009507 0.0009337 0.4061 0.01151 0.01598 0.159 0.00024 5.776e-05 0.000736 0.01363 0.0004158 0.546 0.000339 0.001121 0.001063 0.4779 0.5344 0.0002453 0.0003688 0.002473 0.1792 5.782e-05 0.04383 0.5545 0.0009657 0.01191 9.372e-05 0.001535 0.3396 0.004188 0.572 0.5118 0.003768 0.002065 0.05403 0.002188 0.0001596 0.001195 0.0004185 1.613e-05 0.006221 0.007043 0.002192 0.00218 0.004138 0.0004848 0.4747 0.3692 0.00176 0.002551 0.01415 0.009405 0.1273 0.0006439 1.565e-05 0.001232 9.977e-05 0.000867 0.1394 0.6481 0.2979 0.01812 0.0007494 1.359e-05 0.0004385 0.0004424 0.004176 0.0001622 0.004477 0.3418 6.477e-05 0.43 0.005 0.005219 0.001413 0.0001378 0.001272 3.395e-06 0.00268 0.4591 0.005015 9.888e-06 0.008446 0.0003834 0.0001826 0.005064 0.00217 9.672e-05 0.0214 0.0001844 0.0006208 0.003676 0.002183 0.02028 0.00099 0.5657 0.003393 0.06398 0.0008283 0.007534 0.08482 0.6484 0.01251 0.2277 0.001455 0.0004265 0.001604 0.003153 0.0002174 0.007726 0.001199 6.521e-05 0.01429 0.0001499 2.837e-05 0.04713 4.044e-05 0.007384 6.481e-05 0.001945 0.000917 0.4551 0.0558 0.002069 0.488 0.005168 0.4453 0.01208 0.6073 0.002117 0.0005698 0.0012 0.008747 9.602e-05 0.06139 0.0062 0.002391 0.002078 0.4665 0.0006683 0.004221 8.815e-05 0.003312 0.0002577 0.0004667 0.361 0.0006522 1.557e-05 0.03728 0.0441 0.004698 0.01826 0.003258 0.003064 0.5118 0.01886 0.001458 0.00362 0.006822 0.003646 0.001765 0.1892 0.001111 0.002692 0.0002846 5.149e-05 0.5647 0.005183 0.6686 0.5899 0.489 0.5183 0.567 0.009938 0.0002677 0.001016 0.002373 0.001385 0.3703 0.01725 0.03324 0.0003202 2.377e-06 0.5678 0.0006349 0.003885 0.33 4.606e-06 0.5507 0.0002463 0.005657 0.01014 0.003932 0.5669 0.2563 6.568e-05 0.5787 0.03485 0.001884 0.01231 0.002608 1.213e-05 0.00258 0.01446 0.0007555 8.494e-06 0.002586 0.0007793 5.393e-05 0.02956 0.001847 5.624e-06 0.003131 0.005115 0.003483 0.03555 0.001019 0.4044 0.0002134 0.5698 0.5722 0.01088 0.0005009 0.05384 0.01962 0.5588 0.001259 0.0004262 0.04731 8.509e-06 0.4028 0.09268 0.004863 0.6379 0.00823 5.698e-06 0.4245 0.007468 0.002022 0.009531 0.01128 0.5784 1.086e-05 0.0103 0.5436 0.005315 0.6208 7.399e-06 0.0005175 0.0007741 0.0003546 0.06594 0.03134 0.0001084 0.00109 0.0005811 0.01081 2.865e-06 1.194e-05 0.003437 0.0001736 2.153e-05 0.001785 0.0007596 0.003543 0.004286 0.004403 1.436e-05 0.531 0.000682 0.0007923 0.002811 0.002578 0.0005418 0.001472 0.0001609 0.08935 0.001565 0.0009515 0.001546 0.007607 3.448e-06 0.002267 0.001081 0.009216 0.5441 0.01022 0.5294 0.02843 0.001079 0.001473 0.2227 0.006823 0.01569 0.007231 0.0014 2.623e-05 0.4151 0.4142 0.001989 0.003725 0.01596 8.459e-05 0.003852 0.001366 0.004766 0.02067 0.000201 0.000305 0.01811 0.001823 0.001755 0.0002876 0.003484 0.3692 0.007595 0.1568 0.00081 0.0009114 0.005938 0.5777 0.009363 0.5435 0.0571 0.2411 0.449 0.0007444 0.003091 0.003154 0.001885 0.005607 0.005387 0.0007662 0.4096 0.02024 0.0002792 0.6335 0.000233 0.6653 0.008319 0.01211 0.004162 7.688e-06 0.002323 0.01529 0.002458 0.01614 0.008071 0.5641 0.0001965 0.01685 0.003209 3.42e-06 1.167e-05 0.6197 0.003032 0.5712 0.4123 0.0002132 0.0139 0.5663 0.002399 0.02987 0.2306 0.5747 0.002646 0.002515 0.001746 0.003042 0.002441 0.001882 0.4204 0.003442 0.3809 0.6688 0.001124 0.5102 0.002031 0.0007839 0.0004218 0.001129 0.004129 0.0008321 0.001112 0.0001987 0.3785 0.1871 0.01327 0.007389 0.009363 0.0001484 0.08398 0.01009 0.005901 0.002812 0.0003781 0.5698 6.223e-05 4.575e-05 5.106e-05 1.433e-05 0.006804 3.602e-06 0.565 0.02971 0.0005489 0.06153 0.01239 0.002467 0.0004364 7.047e-05 0.0007384 3.839e-05 0.04761 0.006714 0.002314 0.004486 0.000599 0.001167 0.0005314 7.341e-05 0.001061 0.002182 0.001917 0.00264 0.001891 8.257e-06 0.0005226 0.00236 0.001014 0.0004573 0.005915 0.007181 1.961e-05 0.04267 0.005854 0.007138 0.0002234 0.01183 0.0006832 3.439e-06 9.4e-06 0.007258 0.0002974 1.963e-06 0.0004179 0.03333 0.0002124 0.005047 0.002902 8.58e-05 7.837e-05 0.01147 2.073e-06 0.04757 0.03183 0.004798 0.0002904 0.00806 0.005703 0.1343 7.065e-05 8.923e-06 0.004438 0.0009348 0.0004234 0.001203 0.01141 5.778e-05 0.001315 0.005406 0.007617 0.0611 0.3677 0.07906 0.002331 0.002494 0.0003996 1.1e-05 0.006608 0.5034 0.2763 0.002071 0.0004608 0.0007581 0.0009905 0.001651 0.002835 0.003 0.004152 0.5677 0.0003232 0.0002515 0.0006291 0.01743 1.138e-05 0.5183 0.004144 0.0002457 0.000676 0.005984 0.002721 0.001105 0.006534 0.003173 0.000108 0.004761 0.001288 0.0002415 0.008534 0.4977 0.001135 0.00579 8.578e-05 0.001409 0.001549 2.445e-05 0.01375 7.605e-05 0.0001111 0.004018 0.0002406 0.3674 4.109e-05 0.004496 0.02077 0.4098 0.0003777 0.0008652 0.0004811 0.002159 0.007966 0.004406 0.001038 0.01723 0.05201 0.0008253 9.834e-05 0.0001105 0.001449 1.068e-05 0.4144 0.001151 0.002494 0.6675 0.001933 0.001792 9.659e-05 0.5027 0.005517 2.149e-06 0.0005151 0.08525 0.001718 0.4171 0.02283 7.089e-05 0.0007217 0.008982 0.02167 0.01742 0.5852 0.003678 0.002079 0.005034 0.5068 0.0008564 0.0003388 0.4087 0.0001373 0.5694 0.002618 0.01367 0.001217 0.006688 3.311e-05 0.008471 1.04e-05 0.0004286 0.002732 0.007385 0.005242 0.003067 5.263e-05 0.05146 0.002311 0.003995 4.579e-06 0.005871 0.001692 0.6484 0.002602 0.0008757 0.0003181 0.002847 0.0004457 0.5499 0.001268 0.004788 0.01765 2.202e-05 0.00322 0.0003587 0.03541 5.073e-05 0.3888 0.4289 0.001288 0.04014 0.5072 0.008616 0.006838 0.0004231 0.001657 0.5283 0.006202 0.1633 0.0008147 0.003871 0.001042 0.0002747 0.5735 0.004086 0.01675 0.01796 0.0001549 0.5844 2.453e-05 4.011e-05 0.0002425 0.0001521 0.004324 0.0007286 0.000486 0.07162 0.5396 0.001366 0.000584 0.001717 0.0006788 0.003744 7.942e-05 0.03336 0.000586 2.453e-05 0.01524 0.03453 0.01331 0.002792 0.6459 0.01541 8.819e-05 0.06427 0.5415 0.0006648 0.008565 4.333e-06 0.009182 0.003099 0.0004082 0.007126 7.974e-05 0.008272 0.001182 0.001468 0.001106 0.002805 0.5551 0.546 0.0007824 0.001094 0.00181 0.571 0.007691 0.0001667 0.004336 0.0007862 1.417e-05 2.669e-06 0.436 0.5531 0.0008116 0.00287 0.0007082 0.5841 0.000158 0.002607 0.007136 0.002446 0.002248 0.0009097 0.001215 0.0003744 0.02536 0.05449 0.06574 0.0018 0.003589 0.0008693 0.0005883 0.002667 0.002554 0.002408 0.3722 0.578 0.4784 0.156 0.001584 0.001565 0.0002058 6.985e-05 0.01004 0.002399 0.009464 0.0005104 1.016e-05 0.5084 0.0005169 0.002663 0.002271 0.004508 0.3905 0.3905 5.916e-06 0.0006896 0.0007916 0.05892 0.4078 2.546e-05 0.0002196 3.382e-06 0.341 0.005154 0.0364 0.03163 0.0001487 0.002087 0.004997 0.01044 0.07194 0.0008514 0.002487 0.01895 4.655e-06 0.0002598 0.01653 0.004871 0.585 0.0002602 0.0005224 0.0002832 0.0009637 0.4465 0.0006157 0.0024 0.5775 0.004541 0.0004792 0.002343 0.00167 0.004704 0.00111 0.001482 0.03918 0.329 0.3764 0.001562 4.466e-06 0.1445 0.589 0.0005058 5.369e-05 4.902e-05 0.0004302 0.09581 0.5912 0.0007918 0.004128 0.003751 4.163e-06 0.007273 0.00244 0.5772 0.3662 1.027e-05 0.000195 3.922e-06 3.703e-05 0.002141 0.02254 0.0052 0.006194 0.0001624 0.00684 0.009233 0.001077 0.0005985 0.5721 0.0001221 0.002654 0.001008 0.1681 0.0133 0.0002531 0.2862 0.002704 0.0003854 0.01192 6.617e-05 0.0001725 0.001023 0.0003844 0.0007898 0.003086 0.004767 0.0002555 0.6144 0.01625 0.002419 8.032e-05 0.001062 0.0007689 0.000822 0.0003305 7.578e-05 0.004593 0.002119 0.003949 8.314e-05 0.2135 0.002516 0.00669 0.0006257 0.001532 1.432e-05 0.001476 0.0003852 0.0006183 0.01018 0.01255 0.009145 0.4441 0.01509 0.0004297 0.0001107 0.551 0.01148 0.003544 0.001107 0.02543 0.01252 0.004285 0.001674 0.01324 0.6193 0.00931 0.05365 0.007875 0.03065 0.0001638 0.5674 0.001161 0.01348 9.506e-06 0.03295 3.468e-08 0.4141 0.1006 0.0004184 0.009238 0.00771 0.0002869 0.0004741 0.006894 0.003954 6.533e-06 0.0003029 7.941e-05 0.00243 6.382e-06 5.564e-05 0.0002181 0.001406 0.001852 0.5777 0.4377 0.001432 0.01284 0.001805 0.0005067 0.01586 0.01079 0.007421 0.01469 1.167e-05 0.009618 0.009575 1.185e-05 0.006185 0.001701 6.602e-06 0.008501 0.001704 8.585e-05 0.004054 1.127e-05 1.072e-05 0.01567 1.047e-05 0.1807 0.0001504 0.0001938 0.0002224 0.001741 0.6531 0.5171 0.002397 0.0007476 0.0009039 0.002662 0.000512 1.063e-05 0.005237 3.561e-05 0.001323 0.5725 3.101e-06 6.26e-06 0.0005968 0.0009826 0.002777 0.3954 7.723e-06 8.696e-05 0.004171 0.0008976 0.00519 0.4054 0.01088 0.0009977 0.00515 0.0009201 0.2709 0.097 0.02668 0.05678 0.0004304 5.704e-05 0.004224 1.167e-05 0.0003675 0.03044 0.007332 0.006515 0.0002811 2.916e-05 0.005098 0.002152 0.0009537 0.006689 0.0005132 0.5915 0.0002556 0.4713 0.02337 0.5628 0.4378 0.002877 0.002697 0.0002453 0.5908 0.002448 0.0006396 0.01134 0.3432 0.002762 0.0001795 0.03179 0.02274 8.419e-05 0.002494 0.001946 0.3472 0.006379 0.0009085 0.003177 0.004788 0.007274 0.0003605 0.001035 0.0001373 0.0005801 0.04306 0.001778 0.008918 0.01276 0.6084 9.876e-06 0.005044 0.003033 0.0005009 3.877e-06 0.0002321 0.5406 0.002035 0.03917 0.4122 8.807e-05 0.000396 0.0001876 0.1038 0.2302 0.1699 0.02949 0.5689 0.002774 7.38e-05 0.002534 0.4118 0.01371 0.002786 8.645e-06 0.5661 0.0292 6.537e-05 0.0116 0.2545 0.001788 0.4587 1.178e-05 0.0004214 0.00304 5.894e-05 0.5938 0.01193 0.5004 0.0405 0.004018 0.02216 0.004924 0.001115 1.335e-05 0.009401 0.0226 0.401 0.001889 1.896e-05 0.0009966 0.0001203 7.384e-05 0.01593 0.5714 0.0003745 0.5022 0.3161 0.0009831 0.01035 0.01669 0.0005024 0.0003421 0.0006093 0.0004256 0.0001267 0.0001788 0.001604 0.5373 0.008974 0.3952 0.0004894 0.0002225 0.003879 0.5747 0.3428 0.002108 0.1636 0.007595 0.003143 0.0007377 0.03817 0.02202 0.002324 2.881e-07 0.008246 0.574 0.002607 0.004352 0.3411 0.002579 7.943e-06 0.000232 3.447e-05 0.02125 0.082 0.005951 0.4623 0.00409 0.002349 9.551e-06 0.02501 0.00181 8.4e-06 9.547e-06 0.001688 0.5006 0.0001863 9.509e-06 0.3418 0.004529 0.5522 0.01027 0.01881 0.0001969 0.0006916 0.000281 6.231e-05 0.574 0.006619 0.009811 0.0001879 1.19e-05 0.004311 0.08183 0.034 0.0008709 0.003196 0.002857 0.0008755 0.02628 0.001682 0.03591 0.0009861 0.001783 1.117e-05 0.07015 0.003932 0.02469 0.507 3.446e-05 0.02293 3.998e-06 0.00787 0.4341 0.002881 0.3704 0.001677 0.4089 0.001389 0.5542 0.00653 0.0132 0.01341 0.002988 0.4504 0.002652 0.00269 0.007207 0.0001994 0.6073 0.004766 0.002613 0.006739 0.009308 0.0002662 0.002103 0.002721 0.5121 0.6557 0.007102 0.004618 0.0007305 0.002227 0.006995 0.001366 0.001412 0.0001528 0.001328 0.004324 0.005122 0.002707 0.000203 0.01702 0.5682 0.4069 0.003382 0.0001907 0.5824 0.01864 0.0006882 0.4792 0.003778 0.568 0.01343 0.005681 0.6203 0.0007084 0.004504 0.009133 0.1722 0.002092 0.005655 2.438e-06 0.0007023 0.02217 0.4132 0.005003 0.02664 0.0002314 0.5745 0.001847 0.006092 1.921e-06 0.0596 0.4315 0.005229 0.003546 0.01178 0.3882 0.5171 0.4972 0.0343 0.0001854 0.411 0.001566 0.0119 0.001955 0.4434 0.01766 0.02143 0.01119 0.0005761 0.0001645 0.1645 0.6012 0.0005945 0.00378 0.0002482 0.57 0.004705 0.01181 0.001133 0.005161 0.007674 0.3646 0.3666 0.002112 0.1233 8.252e-05 0.002775 0.001372 0.05296 0.008219 0.0007681 0.001238 0.4632 0.0111 0.007781 0.0006536 0.007696 0.009775 0.0006024 0.006137 0.5104 0.02206 0.002917 0.0004081 0.5568 0.02903 0.007183 0.006274 0.001918 0.000994 0.0004783 0.008196 4.606e-08 5.23e-05 0.0001006 5.29e-05 0.0347 0.014 0.005117 8.624e-06 0.001005 0.0004651 0.002863 6.726e-06 0.008546 7.411e-06 0.002131 0.3984 0.3967 0.05059 0.0126 0.5767 3.756e-08 0.009381 0.4226 0.004801 0.0003939 0.3096 0.2147 0.015 9.134e-06 0.009348 0.001406 0.0004196 1.454e-05 0.002849 0.008764 0.5853 0.01405 0.0004407 0.3735 0.001862 0.007595 0.38 0.3377 0.00139 0.5689 0.000132 0.0007831 0.002023 8.345e-06 0.0006239 0.0114 0.005726 0.3147 5.656e-05 0.0001652 0.0006404 2.084e-05 0.02564 0.5857 0.0004104 0.004816 0.002146 0.3952 0.0006602 0.0003799 0.01512 0.002175 0.1374 0.006136 0.000164 0.0004291 0.0002288 0.001541 0.3613 0.1851 0.002948 0.01072 0.002687 0.0005175 0.00554 0.01711 0.01115 0.006227 0.005477 0.003345 0.007373 0.001701 0.01148 0.009316 0.5182 0.0003504 0.0002553 0.3672 0.004794 0.03476 0.6515 0.0009832 7.409e-06 0.005936 0.3453 0.6664 0.01962 0.01355 0.005725 0.03232 3.546e-06 0.0001056 0.0115 0.00349 0.09928 0.000132 0.00468 0.008829 0.5888 0.5031 0.002776 0.01205 0.01101 0.5725 5.947e-05 0.0006911 0.0001707 8.9e-05 0.0005118 0.0001846 0.008824 0.005445 0.5404 0.004964 0.01034 0.003049 3.607e-05 0.02445 2.356e-05 0.03079 1.432e-07 0.000604 0.5982 0.01265 0.02742 0.0009257 0.003824 0.0009361 0.02069 0.3438 0.001786 1.141e-05 0.0002891 0.002323 0.6513 0.0114 0.0003206 0.0002756 0.01657 0.1746 0.0005989 0.05329 0.1941 0.004358 0.0005193 0.5671 0.01494 0.0007123 3.298e-05 0.4949 0.0002592 4.108e-06 0.5653 0.05555 0.01373 0.005064 0.0001449 0.417 3.202e-08 0.009087 0.005548 0.007573 0.002459 0.5786 0.001545 0.008176 0.5213 0.001046 0.002183 0.5656 0.004639 0.01641 0.003185 0.03614 0.002534 0.3692 0.000676 0.3406 0.002764 0.005904 0.005005 0.0003536 0.00191 0.1602 0.0008168 0.0002338 0.6296 0.0004184 0.001014 0.5443 0.002245 0.2203 0.00219 0.08154 0.001418 0.003186 0.001113 0.002722 5.949e-05 3.822e-06 0.0004096 0.01735 0.0004476 0.003577 6.765e-05 0.00535 0.00108 0.5611 0.4957 0.01079 0.3719 5.895e-05 0.01397 1.195e-05 0.5313 0.56 1.439e-05 0.08773 0.0001042 1.457e-05 0.002343 0.4724 0.0003033 0.005457 0.0005306 0.0001526 0.2427 0.002689 0.4414 0.0007488 0.006091 0.06743 0.0001484 0.003226 0.5282 0.05069 0.001213 0.008222 0.0003252 0.001408 0.04135 0.02591 0.05588 0.0009023 8.108e-05 6.565e-05 0.001125 0.02127 0.007889 2.535e-05 0.5865 0.0004546 0.002289 6.075e-05 0.01033 0.0225 0.007968 0.001407 0.4653 0.00822 0.0003053 0.008048 0.5714 0.001471 0.01489 0.006765 0.2408 0.002018 0.01842 0.009059 0.0002557 0.01741 0.002411 7.633e-06 0.04435 0.000617 0.001242 0.003061 0.0002989 0.002963 0.001916 0.07189 0.00228 0.001105 0.0111 0.005752 0.001552 0.0005594 5.281e-05 0.002362 1.718e-05 0.0002306 0.5973 8.717e-08 0.03898 0.02922 4.776e-05 0.002865 0.0002726 0.001364 0.000398 0.007756 0.102 0.5606 0.002556 0.3086 0.0005205 0.003459 9.548e-05 0.4305 0.002477 4.076e-05 0.02555 0.0001633 0.0008342 0.0005201 7.754e-05 0.5804 0.00417 0.4242 0.5706 8.867e-07 0.03494 0.01087 4.619e-05 9.385e-06 0.004738 0.5835 0.001053 0.000214 0.0001793 0.0001405 0.1619 0.008226 0.003797 0.006831 0.005393 0.002595 0.0005925 0.01782 1.112e-05 4.575e-08 0.002889 0.002535 9.418e-05 0.4137 0.004645 0.000171 0.6339 0.001028 0.3686 0.00161 0.04489 0.000375 0.0003727 9.353e-06 0.3783 3.285e-06 0.00241 8.256e-05 0.001019 0.003754 0.001465 8.445e-06 0.004136 0.02045 0.0174 0.0001597 6.293e-05 0.003265 0.005665 0.5739 1.13e-05 0.2117 0.0001287 0.009061 2.099e-05 0.002591 0.0001576 0.0005158 8.721e-06 4.452e-05 0.4096 0.00313 0.008496 0.002664 5.596e-05 5.463e-05 0.01114 0.004629 0.3677 0.004171 0.002059 0.008534 0.08079 6.136e-06 0.001288 0.0006852 5.561e-05 0.3236 0.06053 5.499e-06 0.000743 0.01107 0.02819 0.001952 0.5327 0.004001 4.233e-06 0.01513 0.5346 0.0017 0.00704 0.001587 0.00922 0.009875 0.01022 0.0171 0.5248 0.0005349 0.01524 0.3601 0.001298 0.03318 1.008e-05 0.0006746 6.078e-06 0.5563 0.0008401 0.003334 0.0004734 0.001217 0.3451 0.002694 0.006183 0.1172 4.888e-06 0.4008 0.4008 0.0002197 0.007129 0.00361 0.5671 0.4709 0.002055 9.756e-05 0.0005794 0.5653 0.0002109 0.01071 0.6304 0.0002701 0.0002568 0.002652 0.3366 0.00145 0.03017 0.02088 0.3357 0.3407 0.001844 0.0006102 0.0007821 0.004332 0.001001 0.006069 0.004853 0.001125 0.0004595 0.2062 0.004875 0.0003145 0.2784 0.5667 0.0003457 0.0008503 0.01321 0.0005494 0.002822 0.01367 0.0002618 0.001356 0.008338 0.5493 0.05319 0.5762 0.1483 0.5077 0.5668 0.0008366 0.0002974 8.048e-06 0.003607 0.02489 0.02455 0.008523 0.003218 0.6529 0.0009349 5.556e-05 0.01036 0.5683 7.998e-06 0.4717 0.001435 0.001592 5.942e-05 4.148e-05 0.005761 2.783e-05 0.007967 0.0003059 0.04402 0.006642 0.08275 0.004809 0.002729 0.008052 0.0101 0.54 0.0369 8.906e-05 6.763e-06 0.0004768 0.000145 0.3506 0.04053 0.02176 0.0006438 4.9e-05 0.003451 0.0009328 0.007279 0.04752 0.001008 0.03205 0.0009124 0.0002026 0.0009751 0.00624 0.01734 0.3489 0.00522 0.01622 0.04141 0.0003892 0.5937 0.0003418 0.0005725 0.5739 0.003758 0.007301 0.006528 0.54 0.05973 0.01068 0.01092 0.3785 0.0005921 0.05799 0.01297 0.01437 0.0004527 0.02723 0.002889 1.124e-05 0.000114 9.855e-05 0.006465 0.01706 7.505e-06 0.006516 9.796e-06 0.3811 0.1302 0.03925 0.005974 0.0001269 0.000551 0.001567 0.001913 0.006709 0.05392 0.5548 0.002911 0.007134 0.569 0.3887 5.198e-06 0.0002891 5.263e-05 0.0004781 0.0004988 0.00815 8.046e-05 0.001808 0.5287 0.0006773 0.001889 0.0001064 0.01361 0.008797 1.094e-05 0.01543 0.01853 2.529e-05 0.009393 0.0213 4.573e-05 0.05548 0.0001095 4.039e-05 0.003059 0.001454 0.01727 7.839e-06 0.0001225 0.003919 0.2688 0.006333 3.819e-05 0.1472 0.003673 0.3334 0.00734 0.5729 0.0002151 0.0008993 2.306e-06 0.01744 0.00515 1.803e-05 0.0008394 0.0005735 0.01918 0.00824 1.136e-05 0.5635 0.0333 0.0003393 0.01 0.01397 0.01386 0.5677 0.5835 0.0006929 0.002752 0.5708 0.0002219 0.002618 0.002962 0.5777 0.002436 0.5726 0.0002463 0.002343 0.3993 0.001132 0.0005594 0.0001516 0.001159 0.4092 0.005386 0.004993 0.005839 0.6161 0.001151 0.5675 2.337e-06 0.08802 0.3133 0.004681 0.000982 0.01469 0.000336 0.6548 0.005599 0.001334 0.01135 0.01024 0.02753 0.01181 0.002237 0.4193 0.00133 0.0007954 0.006192 0.005945 4.208e-06 7.35e-05 0.000822 0.3563 0.0004752 0.005722 0.0001965 0.4211 0.01333 5.782e-05 9.912e-05 8.541e-06 7.752e-06 0.02564 0.04961 1.162e-05 4.367e-07 0.3195 0.3595 0.001641 0.4369 6.445e-06 0.000648 0.5615 0.008102 0.004578 0.003667 2.313e-06 0.001182 0.5717 0.0009383 0.002581 0.000294 0.0001585 0.03058 0.03024 0.3595 1.022e-05 0.0001526 0.01978 0.0001963 0.001376 0.3585 0.001056 0.05447 0.00215 0.0002052 0.001075 0.06594 7.703e-05 0.0005709 0.0003205 0.002051 0.0001663 0.001857 0.002995 0.0008166 0.002347 0.0002212 0.0006833 0.01395 0.0001298 0.004269 0.0007807 0.1983 0.3734 0.001635 0.003948 0.005428 0.0005034 0.5837 0.3233 0.0001981 0.4214 0.0009474 0.1159 9.926e-06 5.011e-06 0.5497 0.5874 0.004872 0.007232 0.0009904 0.0006029 0.2261 0.0001465 0.003159 0.007434 0.4828 0.5679 0.000259 0.01381 0.0001368 6.414e-06 0.001842 1.737e-05 0.008336 4.212e-06 0.0005206 3.95e-06 0.5569 0.04912 0.00436 0.06506 0.00022 0.0008906 0.005086 0.003414 0.1637 0.008126 0.02711 0.5536 0.0002198 0.0019 0.01369 0.002492 0.02877 0.4554 0.003617 0.3453 0.01001 0.5965 0.0004643 0.000983 0.0003139 0.000338 0.003991 0.01993 0.005266 0.000946 0.04992 0.001156 0.0359 0.008013 0.0002693 0.0001794 0.0001004 0.0002016 0.008932 0.001787 0.002037 0.363 0.006724 0.003904 0.4426 0.0008267 0.0002206 5.138e-05 0.009657 0.0236 0.5415 6.579e-06 0.000464 0.001424 0.0003883 0.002382 0.004688 0.002152 0.01033 0.01356 0.2724 0.00064 0.001963 0.0001919 0.009926 0.1071 6.086e-05 0.4102 0.0001882 0.0009124 0.4142 0.0006151 0.0936 0.0009865 0.00413 2.447e-05 0.0002989 0.002585 8.356e-05 0.0002659 0.009736 0.0005282 0.002002 9.737e-05 1.687e-05 0.0009175 0.000974 0.0002476 0.5512 0.006875 0.0007642 0.002028 4.528e-05 0.0002001 0.009886 0.0005667 0.001115 0.4631 0.003025 0.00301 0.007538 0.007558 0.009923 0.3875 0.6192 1.236e-05 0.01121 0.04171 6.029e-05 0.002901 0.006568 0.007113 0.001033 0.002507 2.404e-08 0.006497 8.942e-05 0.002596 0.003752 0.003569 0.008144 0.05468 0.03189 0.0004038 0.0009629 0.4194 0.003899 0.0008131 0.4262 0.002754 0.001339 0.0003242 0.01018 9.788e-05 0.003805 0.5001 0.4562 0.0004034 0.0006389 0.0002048 4.483e-05 0.0279 0.002826 0.5168 4.407e-05 0.007032 0.02165 0.0001414 0.0001892 0.002239 0.003729 0.0006113 0.007884 0.1456 0.1631 0.3987 0.002417 0.0004064 0.003201 0.002303 0.001516 0.4513 0.0001698 0.0009218 0.02664 0.00336 5.198e-09 0.002116 0.003877 0.5708 5.808e-05 0.5493 0.00036 0.01968 0.0001886 5.918e-05 0.5673 0.00189 0.004989 0.008818 0.0001466 0.0005583 0.001607 0.005239 0.007135 0.008547 0.0007283 0.566 0.0007669 0.006598 0.003657 0.0002268 0.0006723 0.04 2.58e-05 0.0006096 0.002267 0.444 0.0004455 0.001348 0.3721 0.07135 0.00162 0.001389 0.4423 5.237e-06 0.2957 0.3632 0.3594 0.01407 3.914e-06 1.043e-05 0.0007849 0.001542 0.01165 0.0004933 0.0004262 0.006181 0.000504 2.632e-06 0.5564 0.008044 0.000923 0.0002225 0.000216 6.6e-06 0.02143 0.0009307 0.004642 0.006682 7.74e-06 0.0009596 0.02655 0.001184 0.001891 0.001589 0.000102 0.0003005 0.01198 0.03229 0.002319 0.001583 0.01538 1.05e-05 0.07399 0.01197 0.2143 9.158e-05 0.01135 0.001808 0.003408 0.006434 0.0006187 0.5226 0.001109 0.006963 0.000376 0.006284 8.195e-05 0.001398 0.009889 0.0002603 0.006588 0.00211 0.002222 0.0002723 0.001977 0.417 0.01383 0.3792 0.3748 0.3698 0.001238 8.92e-06 0.007566 0.569 0.2532 0.01691 0.1704 0.005283 0.4535 0.5173 0.001419 0.07026 0.4289 0.2647 0.07473 8.498e-06 0.3611 0.2526 0.5177 0.001183 1.229e-05 0.001964 0.02803 0.009554 0.005655 0.02438 0.03437 0.221 0.0003628 0.0005111 0.001011 0.009374 9.924e-06 0.1159 0.0005389 7.368e-05 0.005679 0.0002004 0.6287 0.5173 6.174e-05 0.0005625 0.003057 0.01266 0.3314 0.000132 0.008552 0.0003538 0.008837 0.0005852 0.0334 5.752e-05 0.05105 0.0003207 0.0007472 0.0001841 0.003796 0.001108 0.511 0.005938 0.0009951 1.552e-05 0.06719 0.000189 0.002586 0.02004 0.002997 0.003126 0.001367 0.01324 1.108e-05 0.3613 0.6323 0.00106 0.001286 0.443 0.5734 4.569e-05 0.005478 0.05352 0.0001501 0.02677 0.0007059 0.0006066 0.007233 0.001531 0.0002506 0.001206 0.005705 0.04359 0.008907 0.6068 0.5794 0.5738 0.002699 0.222 0.4128 0.001096 0.001709 0.3 1.203e-05 0.001123 0.1273 0.001404 0.0003492 0.0004329 0.2948 0.003537 0.001281 0.105 6.678e-05 0.02986 0.1997 5.076e-05 0.1042 0.00599 0.00241 0.004388 0.001149 0.003237 0.04675 0.01854 0.001238 0.0001473 0.009706 0.04117 0.07419 0.0002824 0.3634 0.0003186 9.203e-05 1.315e-05 0.0002455 0.3285 0.0002707 0.002861 0.5835 0.0005166 0.6687 0.4501 0.000172 0.5536 0.6001 0.6667 0.001466 0.4985 0.0004336 0.006261 0.0002333 0.003162 8.485e-06 0.0009091 0.06805 0.03838 0.01313 0.0828 0.0001774 2.619e-05 0.0007559 0.0008357 0.006789 0.002665 0.02251 0.0003296 0.002998 0.002623 0.001014 0.0006737 0.0001785 0.0001659 0.5983 0.00118 0.003097 0.0002339 0.6479 0.002035 0.01464 0.0006068 0.01634 0.004155 9.154e-05 0.01161 0.001598 0.02116 0.01402 0.4628 0.003486 0.3989 0.007943 0.01283 0.01799 0.001897 0.002376 0.01874 0.1504 0.002351 0.01339 0.0487 8.487e-06 0.002336 0.002849 4.982e-05 5.662e-06 0.0002284 0.06088 0.0003275 0.006306 0.06593 3.465e-05 0.0006394 0.0001097 0.001122 0.006787 0.01874 0.5714 0.003528 0.0003705 0.004905 0.06675 0.001242 0.3982 0.003486 0.0009606 0.01026 0.005599 4.23e-06 0.3551 0.001358 0.004057 1.9e-05 0.004167 0.007295 2.757e-05 0.0009128 0.001713 0.01674 0.003666 0.0001916 0.000891 0.1932 0.0003135 0.3539 0.354 0.002428 0.004682 0.09239 0.0002158 0.0001098 0.01449 1.077e-05 0.1856 0.007724 5.729e-05 0.0002263 2.181e-06 0.576 4.847e-05 3.531e-05 7.458e-05 8.774e-06 0.0001346 7.667e-06 0.01447 0.5644 0.001543 0.003404 0.007846 1.257e-05 0.004762 0.0002412 0.02493 0.00424 0.001309 0.002242 0.0498 0.0007915 0.05143 0.0001235 0.007273 0.02835 0.4228 9.794e-05 7.802e-06 0.01159 0.01307 0.002201 0.01018 0.0003371 6.554e-05 0.0001266 0.002748 0.001565 0.5728 0.0009832 0.006266 0.002731 0.001321 0.01202 0.00915 0.001839 0.008037 0.556 0.01805 0.01162 0.00153 0.006566 0.0003432 0.01921 0.0006427 0.0003252 0.005868 0.01253 0.03999 0.01513 0.02002 0.02548 1.522e-05 0.05171 0.4258 0.00946 0.5877 0.001583 0.0009431 0.0008102 0.6682 0.02296 0.0406 8.007e-06 0.00907 0.001822 0.0002106 3.131e-05 0.04444 2.976e-06 0.3353 8.459e-05 9.937e-05 0.04953 0.5826 0.0003653 0.01214 0.009689 0.5742 0.002578 2.9e-05 0.00317 0.02111 0.07054 0.08752 0.0001923 0.001723 0.005326 0.002407 2.368e-05 0.001144 0.001943 0.1124 1.423e-06 0.001539 0.5082 0.006595 0.01551 0.001269 0.001269 2.408e-05 0.0009574 5.68e-06 0.004366 0.1177 0.003498 8.051e-05 0.001441 0.005396 0.003875 0.0002812 0.0007242 0.1417 0.3526 0.004899 0.5731 0.001389 0.3143 0.008078 0.0008828 0.03776 2.027e-06 0.6509 0.02796 0.0002687 0.02487 1.352e-06 0.0005115 6.101e-05 0.02751 0.04626 0.0001703 0.001107 0.00449 0.02683 0.005313 0.433 0.12 0.0019 0.5698 7.276e-06 0.005793 0.02785 0.05732 0.007457 1.473e-05 0.0003862 0.0006619 0.0002554 0.00454 0.04154 8.672e-05 0.005516 0.001735 0.576 0.008505 0.214 0.01089 0.4163 0.005426 1.032e-05 0.5687 0.004928 1.642e-05 0.0006568 0.5713 0.4501 2.548e-05 0.002661 0.0001351 0.0001093 0.0002797 0.02756 0.001811 0.002999 0.02833 0.00147 0.0008496 0.02456 0.004084 0.009124 0.005343 0.009888 0.000657 0.004814 0.04707 0.00141 0.000589 0.001593 0.5714 0.0002985 0.007934 0.000121 0.007096 5.899e-05 0.08864 0.006243 1.076e-05 0.003112 5.686e-06 7.52e-05 0.002275 0.1517 0.002111 0.006485 0.03529 0.001217 0.01928 0.001291 0.008274 0.0001801 0.0004231 0.001527 0.5855 0.005828 0.004043 0.0008734 0.004616 0.0002991 0.4457 0.01026 0.008932 0.5012 0.01815 2.49e-05 0.01137 0.00146 0.006646 0.0008045 0.0005917 0.0003462 0.001242 0.0004261 0.2835 0.0008132 0.0002228 0.1333 0.4142 0.001563 4.172e-05 0.0001439 0.0002809 0.001721 0.2891 0.5179 9.42e-06 0.4141 0.0006054 0.5717 0.5702 0.04667 0.001159 0.0001035 0.002529 0.2031 0.06676 0.523 0.0006083 0.3499 0.02635 0.0001819 0.6185 0.001912 0.5737 0.002601 0.002226 0.0115 8.577e-05 0.6473 0.6473 0.04134 0.002242 0.411 0.001096 0.003733 0.00334 0.559 0.0002246 0.0002972 0.0003377 0.5884 0.3725 0.01101 0.02069 0.05783 0.002712 0.00049 9.409e-05 0.0002552 0.0003767 2.801e-06 0.0002497 0.005243 0.0001959 0.008631 0.006416 0.01442 0.003164 0.0002516 0.003858 0.4179 0.005439 0.4066 0.0003901 0.6668 0.001649 0.5745 0.008154 0.007571 0.002477 0.008415 0.0002359 0.00104 0.000808 0.01882 0.0004768 0.001475 0.00358 1.269e-05 0.00445 0.5694 0.0005879 0.282 0.003779 0.004896 0.0009353 0.09167 0.0002891 0.0103 0.4905 0.007937 0.0005123 0.001863 8.923e-05 1.704e-05 0.0001975 0.5116 0.00303 0.0004688 0.0004147 0.001794 0.005785 2.814e-06 0.0772 0.001641 0.0002496 8.75e-05 0.006581 0.01554 0.5473 0.006249 0.0008868 0.00068 0.0002866 0.04845 0.001234 0.009222 0.001134 0.001397 0.02081 0.01483 0.008927 4.552e-06 0.4666 0.4046 0.00112 0.4448 1.309e-05 0.01535 0.1591 0.01183 0.002463 0.000817 0.001118 0.002097 0.02146 0.004159 0.00584 8.572e-05 0.5442 0.0002891 0.01565 0.0006741 0.0006146 0.0004798 0.001475 5.175e-05 0.05035 5.285e-06 0.0001071 0.01623 0.0005623 0.005937 0.3485 0.002536 0.003707 0.0002617 1.978e-08 0.001537 0.000359 0.003063 0.0003318 0.0003519 0.01753 0.000182 8.532e-05 0.01858 0.001579 0.5677 0.002905 0.01091 0.6067 0.01023 1.425e-05 0.09734 0.001568 0.0003153 0.000411 6.743e-05 0.1003 0.006508 0.004775 0.007487 0.001509 0.002472 0.6578 0.569 0.0006826 0.0007952 0.003848 0.4375 0.003903 0.001243 0.003675 0.0001923 6.213e-05 0.0002479 0.0009758 0.0009461 0.003292 0.03024 0.0005663 0.2453 0.002378 0.0003503 0.000742 0.008348 0.00695 0.01128 0.01126 0.0999 5.632e-05 0.021 0.003141 0.001595 3.262e-05 0.008071 0.008532 7.939e-05 0.02349 0.0005809 1.306e-05 0.003867 0.001048 0.0007389 0.005531 0.004675 0.003992 0.002694 0.0004616 0.003567 0.08216 0.003767 0.002462 0.0659 0.003141 5.361e-06 0.0116 0.0001256 0.0001779 1.385e-05 0.0001092 0.03025 0.0006108 0.001433 0.004889 0.001372 0.002958 0.02013 0.003003 0.0001525 0.5741 0.0005475 0.0294 0.0001759 0.03837 0.0009532 0.002436 0.00569 0.6604 0.5967 0.0005658 0.0001632 0.06414 0.01767 0.4129 0.02175 0.02628 5.471e-05 0.5842 0.003779 0.0005251 0.5829 0.02329 0.004252 0.5657 3.379e-05 0.004823 0.02344 0.04069 0.004642 0.0005381 0.00415 1.088e-05 0.4135 0.007458 0.0004416 0.007359 0.0007573 0.0006646 0.02461 0.000395 0.001748 0.002799 3.765e-05 8.951e-05 9.173e-05 0.6104 0.003357 0.01096 7.048e-06 0.003271 0.05362 0.002686 0.02399 0.5857 0.5003 0.0009844 0.007895 0.4426 0.009763 0.5541 0.0002896 0.06274 3.422e-05 0.009143 0.01277 1.519e-05 4.418e-05 0.04017 0.07057 5.568e-05 0.1988 0.000969 1.212e-05 0.0004885 6.677e-05 0.0006222 0.01891 0.09427 0.001217 0.001132 0.004229 0.001842 0.002341 7.956e-06 0.0008518 0.0001478 0.003198 2.17e-05 0.01065 0.002094 0.0002005 0.0003926 0.0001115 0.0008495 0.006247 0.000262 5.528e-05 0.0009142 0.003994 0.01592 0.02839 0.2962 0.0008418 8.243e-06 0.4557 1.773e-05 0.003246 0.004804 0.0008668 0.002086 0.5481 0.6483 0.6483 0.0003097 9.359e-06 0.001101 0.002062 0.00354 0.0005496 0.006968 0.5722 0.609 0.007836 0.02971 2.45e-05 0.001088 0.01767 0.009545 0.004239 0.005423 0.004913 3.243e-05 0.006689 0.001244 0.5839 0.0007285 0.001777 0.02615 0.4381 0.01218 0.01214 0.002862 0.01555 0.0008269 0.0008147 0.0022 0.5677 7.22e-06 0.001219 3.271e-05 0.0004589 8.707e-06 0.02648 0.0006186 0.001294 0.0001646 0.005003 0.001182 0.02198 0.05663 0.006037 1.213e-05 0.002596 0.002039 0.0005315 0.01272 0.1461 0.1744 0.0001931 1.342e-05 0.001522 0.0006461 0.0002044 5.871e-06 0.003475 0.3029 0.3028 0.01771 0.001789 0.2952 0.02912 0.01438 0.0006702 6.883e-05 4.662e-05 0.002517 0.001837 0.001751 0.0009337 0.0004721 0.01157 0.1998 0.05021 0.01155 0.004857 0.001499 0.4101 0.0203 0.01228 0.01409 3.244e-05 0.002491 0.299 2.182e-06 0.000374 0.5835 0.00016 0.02909 0.0003803 0.004746 0.000369 0.0004582 0.5763 0.02447 0.001543 0.0001644 0.1581 0.5341 0.534 0.006892 0.01412 0.01783 0.01259 0.0002785 0.001636 0.02565 0.005524 0.02117 0.002529 0.000248 0.004398 0.003079 0.1886 0.003178 0.5078 0.001619 0.09092 0.00631 5.759e-05 5.485e-05 0.002108 4.011e-05 0.001395 9.459e-08 0.002804 0.001332 1.005e-05 0.02271 0.004925 0.01389 0.005937 0.00268 0.001684 0.005643 0.009821 0.005095 0.002011 0.001914 0.001455 0.002244 0.007275 3.674e-05 0.002505 0.00136 0.0008995 0.00378 0.01162 0.001763 0.001772 0.006572 0.5587 0.01432 0.01691 0.008557 0.541 0.000102 0.004161 0.0004468 0.1361 0.363 0.5726 0.005079 0.0009405 0.03066 0.001858 0.000322 0.003455 5.988e-05 0.002823 0.1114 0.007627 0.005902 0.0005463 0.001592 0.04487 0.04301 0.005814 0.5933 0.005998 0.0004767 0.0003799 0.01165 0.001276 0.005619 0.5743 0.004279 0.000295 0.002337 0.3491 8.246e-06 0.5412 0.003006 0.05478 0.003289 0.008628 0.0003185 0.001933 4.603e-05 0.008868 0.003748 0.003816 0.003673 0.06396 0.1792 0.005361 0.00914 0.566 0.0005569 0.002905 9.309e-05 8.678e-05 0.4248 0.002402 0.002272 5.688e-06 0.01383 2.914e-06 0.0007561 2.999e-05 0.01121 0.3298 0.0003109 0.0245 0.0001106 0.002636 0.0001894 0.4869 0.5755 3.477e-05 6.161e-06 0.5685 0.001974 0.002966 0.01244 0.001005 0.0001107 0.1173 0.0009716 0.0002341 0.0006968 0.1479 0.06344 0.03105 0.0005626 0.002001 0.0174 0.001943 0.005988 6.306e-05 6.391e-05 0.123 8.431e-05 0.004513 5.602e-05 2.933e-06 0.004151 0.001652 0.0006317 0.001075 0.009435 0.02095 0.0009147 0.5677 0.0005607 0.00342 0.5673 0.004862 0.56 0.02694 0.004456 0.003716 0.001465 0.0009316 0.0003125 0.0243 0.00328 0.00227 0.001951 0.001648 0.2653 0.6347 0.001921 6.043e-05 0.00748 0.004776 1.209e-05 0.3369 1.039e-05 0.1065 0.002585 0.01311 0.002665 0.6014 0.001551 0.01342 0.01116 0.5626 0.0001931 0.007906 0.5671 0.002938 2.734e-05 0.004225 0.01138 0.0002064 0.1653 0.001835 1.458e-05 0.08803 0.01748 0.02461 0.003605 0.00685 0.004464 0.05095 6.897e-06 8.11e-06 0.0009041 0.002164 0.4784 0.01004 0.01626 0.0002006 0.5825 0.0006577 5.259e-06 0.0004378 0.05275 0.002179 0.0006359 1.276e-05 0.001144 0.007216 0.003243 0.1002 0.001185 0.05958 0.3525 0.1773 0.003708 0.001474 0.5741 0.0006057 0.000101 0.00053 0.0001611 0.0016 0.02488 0.5168 0.01166 1.035e-05 0.0191 0.02484 0.00125 0.4703 0.001514 0.01228 0.08798 0.007408 0.004115 0.0002605 0.3503 0.3509 0.0005845 0.001185 0.4748 0.0005938 0.0001506 7.935e-06 0.004833 0.3386 0.001986 0.0009373 0.004597 0.01253 7.983e-05 0.0003411 0.4513 0.003155 0.192 0.0006235 0.0144 7.595e-06 0.0005671 0.001954 0.1774 0.0001947 0.001908 0.0004328 0.5504 9.917e-05 0.495 0.0001674 0.006199 0.0004468 0.002808 0.0003205 0.007433 0.5941 0.02269 0.2894 0.2893 0.01793 0.05395 0.000805 5.891e-05 0.2188 0.07778 0.000941 0.0009028 0.004446 7.867e-06 0.0004122 0.001924 5.505e-05 0.003815 0.0005734 0.002727 0.5806 0.00664 0.01022 0.0006486 0.04753 8.924e-06 0.07958 0.0009195 9.681e-05 0.06611 0.5014 0.001265 0.005996 0.3909 0.006011 0.002066 4.369e-06 8.685e-06 0.003677 0.0002732 0.6037 0.003684 0.06638 0.4717 0.0003866 0.003048 0.0002786 0.0005851 0.0005296 0.5586 0.02302 0.00595 0.004018 0.1426 2.077e-05 0.0001676 0.0007254 0.007166 0.001492 0.002559 0.5766 0.01297 0.006928 5.863e-05 0.001214 0.08128 2.105e-05 0.02632 0.0003699 0.006199 0.1508 0.01922 0.0134 0.008375 0.0001813 0.0002398 0.01072 0.001679 0.6197 1.785e-05 0.0001758 7.18e-06 0.5489 0.102 0.002298 3.843e-06 2.234e-05 0.0001291 0.000124 0.5596 0.0004665 0.5632 0.0007332 0.002882 0.08454 0.0003144 0.5297 0.003241 0.01124 0.002229 0.01131 0.00306 0.3072 0.00344 0.007047 0.005986 0.001585 0.0004285 0.001587 0.002593 0.01684 0.000576 0.5667 0.0002185 0.008828 0.0009045 0.001273 0.005604 0.01111 0.07777 0.3531 0.5572 0.0009618 0.5629 0.002561 0.006137 0.000843 0.000989 0.2445 0.04448 0.005363 0.0003443 0.0005524 0.1493 0.002189 0.614 0.009873 0.002916 0.267 0.004815 0.005047 0.6476 0.4653 0.0005518 0.01438 0.00665 0.07155 0.01442 0.0005908 0.003678 0.02583 6.557e-05 0.003135 0.07029 0.3861 0.01719 0.0009032 0.5749 8.333e-05 0.004313 0.0004745 0.002666 0.1311 0.008792 0.6442 0.005579 0.0006261 0.0003354 0.003082 0.0002649 0.5774 0.007069 0.5612 0.1247 0.001228 5.065e-06 0.001279 0.0008835 3.825e-05 0.5792 0.0003074 6.053e-05 0.008269 7.937e-06 0.001849 0.0003817 0.001133 0.003679 0.001158 0.001899 0.4022 0.03913 0.3757 0.0006147 0.003963 0.07603 0.007155 0.001599 0.0004584 0.3551 0.005353 0.01262 0.0006876 0.3104 0.004674 0.006253 0.0001755 0.0004973 0.01698 0.0001054 0.0004731 0.00117 0.3312 0.0008972 0.001046 0.001446 0.5479 0.005559 0.00577 0.0274 0.0002185 9.797e-09 0.09141 3.288e-05 0.0003805 0.0653 0.0005273 0.0002776 0.02501 0.002715 0.0009791 0.003725 0.000387 5.248e-06 0.0003929 0.0002903 0.001665 0.006346 0.006992 0.5687 0.57 0.01298 0.001672 0.561 0.183 0.0002412 0.45 6.938e-06 1.218e-05 0.2068 0.0002341 0.006193 7.204e-05 0.001539 0.007281 0.0003882 5.472e-06 0.001862 0.0003043 0.004137 0.3866 0.001788 0.0001291 0.0006086 0.002527 0.001099 0.01854 0.09336 0.01767 0.07252 7.746e-05 0.0004785 0.0004328 0.0005019 0.0009191 0.003894 0.2613 0.0001046 0.02011 0.0008437 0.0003721 0.02125 0.5368 0.0009922 0.005179 0.009271 0.001632 5.89e-05 0.0001702 0.003902 0.0001451 0.006611 0.00366 0.004776 0.0004391 9.572e-06 0.001933 0.4341 0.5691 7.006e-05 0.002079 0.0004628 0.3132 1.557e-06 0.5662 0.004145 0.01607 8.401e-06 0.01185 0.00042 0.05808 0.008815 0.001815 1.903e-05 0.1089 0.004998 0.001009 0.3678 0.0001952 4.892e-05 0.02202 0.008181 0.01907 0.001684 0.002689 0.005775 0.0006234 0.001442 0.0005712 0.001302 0.002927 0.0004513 0.0502 0.5725 0.5721 0.00808 3.791e-06 0.0003981 0.0004571 0.002809 0.01573 0.009333 0.001331 0.02374 0.01373 8.375e-05 0.001068 0.3135 0.5357 0.0007227 0.004112 0.03015 0.00104 5.524e-05 0.003094 0.472 0.0006486 0.5604 0.0003922 0.01247 0.4014 0.01029 0.6676 0.0009975 0.008423 0.00181 0.009961 0.0008342 0.0008044 0.006026 0.0005756 0.001076 0.001705 0.009151 0.0004346 0.008702 0.01023 0.01405 0.0001423 0.1237 0.6105 0.5823 0.001058 0.01174 0.004475 0.003378 4.445e-06 0.0003981 1.084e-05 0.0006 0.003146 0.00372 0.001105 0.000407 7.067e-06 0.03644 0.003892 0.0012 0.007127 0.003492 0.5859 0.5556 0.002802 5.264e-05 0.001229 0.5824 0.004808 0.001216 0.5608 0.00181 0.01736 0.4646 0.00198 0.007934 0.0004119 0.001096 0.0002973 0.0002133 0.001797 0.4295 0.0009382 0.0002464 0.5794 0.01038 7.886e-05 0.004149 0.0005713 0.5013 0.03789 0.001282 0.5698 0.001655 0.4553 0.004146 0.003294 0.007076 0.0003234 0.0002449 0.0001014 0.568 0.51 0.552 0.008112 0.5612 0.003431 0.0001569 0.007774 0.001476 0.005279 0.4962 0.2444 0.0002712 0.02864 0.003677 0.001482 9.601e-06 0.0003432 0.0002445 0.01066 0.01624 0.0005484 0.3751 0.05147 0.002874 0.006709 0.004802 0.01342 0.00608 0.0006459 0.001112 3.759e-05 0.5516 0.001787 0.007887 0.4506 6.523e-06 0.00536 0.004985 0.001983 0.0003005 0.01089 0.3412 5.639e-05 0.03188 0.001027 0.0337 0.0003212 0.00244 0.5679 0.0004051 0.006423 0.5312 0.5818 0.0001748 0.0001467 0.00532 0.0004784 0.0004398 0.0001474 5.287e-05 6.38e-06 0.01258 5.019e-06 0.00274 0.003912 0.02208 6.489e-05 0.02848 0.002189 0.003222 0.006222 0.00114 0.0002043 0.5679 0.000641 0.009927 0.6382 0.0008598 0.0002437 0.006554 0.00977 5.732e-05 0.006421 1.243e-05 0.0007408 0.003503 0.001342 0.4068 0.0005638 6.684e-05 0.008321 5.971e-05 0.0007784 0.001278 0.003797 1.248e-05 0.006048 0.0003893 0.5669 0.04723 0.005181 4.444e-05 0.0008376 0.003276 6.482e-06 0.0001028 0.002387 0.4731 0.003815 0.4941 1.234e-05 5.344e-05 6.201e-06 0.003716 0.0002988 4.161e-05 0.004047 0.001132 0.02608 0.5936 0.008163 0.1271 0.001053 0.00276 0.362 0.6094 0.001317 0.003215 0.1032 0.05143 0.0008409 2.723e-05 0.0147 0.001431 0.5732 0.000371 0.005108 0.02298 0.0003852 0.0002184 0.00114 0.007072 0.4321 0.3612 0.002708 0.05228 0.0009383 0.001355 0.005749 4.942e-07 0.0002962 0.076 0.0002022 0.0008794 0.001148 0.5333 4.518e-05 0.005412 0.0007017 0.0009335 0.2872 0.2881 0.02909 0.00416 0.003328 0.001643 0.0003299 0.02648 0.001606 3.624e-06 3.841e-06 0.00446 0.5453 0.002454 0.5425 0.04084 0.1911 0.0005567 0.4204 0.006752 0.02843 0.001305 0.002327 1.042e-05 0.000341 0.002378 0.0003862 6.108e-07 0.02412 0.005876 0.0359 0.003982 0.0005128 0.0002485 0.004249 2.43e-06 0.002097 0.3495 0.002432 0.5972 0.006507 0.003437 8.049e-06 5.757e-05 0.005877 0.004871 0.0004302 0.03041 0.4773 0.26 0.006246 0.01095 6.617e-06 0.0001153 0.03037 0.008674 0.2467 0.0001921 0.5689 0.0004558 0.004497 0.02936 0.007419 0.003089 0.0005298 0.001231 0.5403 0.00105 0.006594 0.008918 0.00114 0.001545 4.551e-05 0.0002068 0.001042 0.09206 4.896e-05 0.002319 0.00568 0.003518 0.001495 0.000153 0.002022 4.015e-06 0.004768 0.00517 0.0001122 0.09184 0.2816 0.5558 0.1704 0.006308 0.004749 0.003407 0.0004336 0.001923 0.6273 0.5721 0.007109 7.188e-05 0.006689 0.577 0.04503 0.2452 0.004097 0.005056 0.01187 0.001581 0.2874 0.5424 0.1206 0.01744 0.000971 0.0006318 0.02153 0.001155 0.5827 0.0008015 4.805e-05 0.001272 0.01156 4.832e-05 0.001521 0.002801 0.5731 0.002977 0.0205 0.008505 8.892e-05 0.2481 8.279e-06 0.08747 9.17e-06 0.001487 0.004113 0.005539 0.001837 0.003888 0.5781 0.0555 0.007206 0.0009931 0.007517 0.001059 0.002345 0.097 0.001575 0.002055 0.003734 6.207e-06 0.006 0.2424 0.003945 0.000442 8.643e-06 0.008036 0.2898 0.01382 0.005955 0.0001733 0.002924 0.001895 0.007213 0.002827 0.0003142 0.001772 0.001972 0.0002942 0.6558 6.099e-05 0.004218 0.001146 2.356e-05 0.003508 0.0003723 0.006784 9.197e-05 0.4302 0.0003733 0.006285 0.005695 0.5318 0.02558 0.003212 0.007825 0.00118 0.001921 0.001329 0.0207 0.1084 0.01657 4.672e-05 0.0007183 0.001469 0.004149 0.0004301 0.003187 0.3549 0.00995 0.0007453 0.002682 0.001896 0.003547 0.000751 0.008275 0.55 0.5019 0.02802 0.0006705 2.178e-05 0.001102 0.001952 0.367 0.003175 0.0004924 0.1148 0.1971 0.2969 0.0006235 0.0002978 0.02556 1.283e-05 0.4333 0.03295 0.00303 0.5585 0.5745 0.005954 0.009886 0.0006127 0.1328 0.3955 0.003165 0.06806 0.004499 0.5375 0.000234 0.02722 0.0003495 0.0004702 0.08676 0.01573 0.6683 0.0016 0.002967 0.0002813 7.298e-06 0.001816 0.5669 0.002046 0.005244 0.0004692 0.0002452 0.0008869 0.3821 0.0005265 8.76e-05 0.3365 0.004578 0.00254 0.05311 4.085e-05 0.01087 5.944e-06 0.003587 0.002005 0.4938 0.5762 0.005357 0.002047 0.000301 0.0004868 0.01187 0.001994 2.578e-06 0.417 0.02997 0.002666 7.343e-05 0.0004601 0.0004535 0.5412 0.001477 0.5043 0.001129 0.6652 0.5846 0.1057 0.002671 0.004223 0.001278 0.0004512 0.09252 0.0004503 0.002725 8.957e-05 0.00298 0.2492 0.01705 0.0003461 0.0003157 0.0002477 0.009959 0.0001425 0.002591 0.6043 0.03266 0.5359 0.5358 0.0002095 0.02346 4.12e-06 0.002409 1.205e-06 0.01141 8.298e-06 0.000344 0.0006864 0.0008849 0.0001806 0.004417 0.06786 0.001622 0.003567 0.0005003 0.5069 0.0002138 0.01337 0.0001762 0.2069 0.009384 0.00402 0.002426 0.01294 0.5512 0.2797 1.37e-05 4.345e-05 6.6e-05 4.221e-05 0.0007628 0.03298 8.023e-06 0.0009167 0.1408 0.001067 9.28e-05 0.002207 0.002602 0.0001639 0.008169 0.0001977 0.3671 0.305 0.001025 0.5526 0.003519 0.001526 0.0004457 0.001852 0.4452 0.5174 0.00483 0.0006387 0.00244 0.000112 0.001481 4.295e-06 0.0009932 0.03038 0.2846 0.08758 0.0004186 0.0131 0.0005766 0.00148 0.001835 0.4605 0.0124 0.006145 0.0004129 0.0009332 0.001022 0.0002588 0.001797 0.001332 4.911e-05 7.685e-05 0.002248 0.001023 0.006087 0.002289 0.002808 0.00896 0.0007393 0.159 0.003569 0.001923 0.4127 0.003798 0.1988 0.6052 0.003477 0.00176 0.2338 0.1109 0.0005762 0.05367 0.0001913 0.02002 0.3497 0.01035 0.2031 0.0956 0.119 0.0002219 8.046e-05 0.002875 2.109e-05 5.088e-05 2.141e-05 0.002917 0.008402 0.342 0.004818 0.0006515 0.5439 0.007669 0.3544 0.0008499 0.000918 0.4046 0.003889 0.007018 0.002296 0.01568 0.002463 0.0004688 0.001397 0.001368 0.0004323 0.0009382 0.03238 0.5581 0.001787 0.03321 0.5787 0.000102 0.01401 0.6393 0.003032 0.003095 0.538 0.0008402 0.6 0.001465 0.002387 0.0003465 0.002124 0.001847 7.861e-05 0.5617 0.001162 0.0003715 4.244e-05 0.3286 8.457e-06 0.0009175 0.002806 1.045e-05 0.0002419 0.001182 5.248e-05 0.006502 0.01541 0.0006287 0.1597 0.002008 0.001907 0.003255 0.03306 5.285e-05 0.001247 0.005444 0.0354 0.004731 0.0002234 0.4516 0.000139 0.5741 0.001942 0.0009662 0.0041 7.099e-05 0.5044 0.0002907 1.003e-05 0.002598 0.03765 0.056 0.0001328 0.009953 0.4505 0.0003642 0.001426 0.4151 0.0103 3.727e-05 0.001018 0.0007692 0.002663 0.2942 4.088e-05 0.002535 0.01181 4.033e-05 0.0001391 0.0003595 0.0001327 0.01129 0.007906 0.0003473 0.0002312 0.004927 0.002199 9.71e-05 0.542 0.02082 0.0195 0.2919 0.01484 2.382e-05 0.0006881 2.536e-05 0.4378 0.04584 0.1145 9.147e-05 0.0003955 0.01884 0.05872 0.0007794 0.01636 0.006238 0.0002487 0.5752 0.0006564 0.2355 0.001848 0.001709 7.351e-05 0.02574 0.5656 0.002462 0.002493 0.001 0.0002111 0.002092 9.54e-06 5.924e-05 0.129 8.197e-06 0.001472 0.01195 0.000473 0.01009 0.002751 0.000303 0.002807 0.01463 5.16e-06 0.01356 0.4988 0.4186 0.01071 0.0006339 0.5804 0.0001352 0.0007354 0.3672 0.3645 0.01949 5.52e-05 0.5235 0.4138 0.000149 0.005589 0.0003696 0.5503 0.01004 0.008617 0.0001315 0.003495 0.1157 0.002432 0.0001528 0.0003123 0.599 0.0008367 0.003256 0.02838 0.0137 0.001634 0.006093 0.03393 0.001098 0.006428 0.498 0.003941 0.0004178 0.002911 6.472e-06 0.007346 0.0658 0.009169 0.575 0.01608 0.05856 0.5202 0.0001654 0.003405 0.002278 0.005159 0.0002569 3.894e-06 0.002 0.008455 0.01854 0.0005466 0.002454 0.1351 0.4931 0.008403 0.00455 0.01557 0.02126 0.05202 0.4053 0.009215 1.015e-05 9.219e-05 0.001231 0.0002593 0.05799 0.02583 2.863e-06 0.02847 8.911e-06 0.4059 0.02913 0.5687 0.3533 0.001692 4.078e-05 0.003184 0.03516 0.003257 5.518e-05 0.0001953 8.169e-05 0.007294 0.007324 0.009766 0.0008806 0.0005701 0.001092 0.0001753 0.0003202 7.79e-05 0.00322 0.01617 0.4029 0.01578 0.004922 0.01608 6.965e-06 0.003723 0.2942 0.000583 0.002944 0.0008127 0.002471 0.04762 0.5583 4.206e-06 0.003409 0.01196 0.008229 0.004497 0.003348 0.0003127 0.5081 1.012e-05 0.01113 0.0001394 0.0004457 0.006306 0.0005377 0.02088 0.005397 0.0002363 0.006212 0.001509 0.0005468 0.0003781 0.02538 0.08972 0.00034 0.4623 0.3635 0.3635 0.0004737 0.001944 0.5842 0.008809 1.016e-05 0.0004269 0.01766 0.003449 0.002412 0.3966 0.0006959 0.0001254 4.584e-06 0.0001097 0.0001886 0.002142 0.6655 0.2825 0.2824 0.0006241 0.01127 0.0003422 0.003685 0.000571 0.0002352 0.002788 0.0001351 0.03481 0.002995 0.0002003 0.0008055 0.00106 7.78e-05 0.4165 0.0002826 1.243e-05 0.05304 0.0008293 4.996e-05 0.004641 0.4225 0.01096 0.0004219 0.5714 0.001277 0.001375 2.399e-06 2.653e-06 0.01033 0.4951 0.04611 0.005903 0.5297 0.5294 8.238e-06 0.01212 0.01814 0.5929 1.01e-05 0.2755 0.003933 0.6228 0.0001055 0.005537 0.0007055 0.5033 0.3952 0.01303 0.00414 0.005196 0.00161 0.0009761 0.01833 8.587e-05 0.001028 0.003061 0.5459 0.006103 0.2965 0.0009206 0.003781 0.01048 0.0007522 0.5623 0.5779 0.0007933 0.006929 0.001104 0.3916 0.44 0.4279 0.01071 0.001624 0.002999 6.169e-05 0.02272 0.004631 0.5853 0.4968 0.0003682 1.569e-06 0.0003044 0.5547 0.001993 0.0003762 0.551 0.02086 0.0002981 0.02033 0.03253 0.0187 0.582 0.0009683 5.637e-05 0.001608 0.008019 0.001648 0.00146 0.0008596 0.005048 5.926e-06 0.4239 0.4661 0.01141 7.519e-05 0.0003928 0.5545 0.00564 0.3472 0.0001906 0.04306 0.003305 0.005643 8.488e-05 0.002847 0.000233 0.0002261 0.001554 0.003598 0.01211 0.5483 0.02918 0.0001122 3.391e-06 0.01221 0.02467 0.002404 0.3163 0.4645 0.111 0.001194 0.01308 0.01319 0.0006926 0.02176 0.3083 0.0004809 0.002381 0.0003779 0.01746 0.003702 0.04353 0.0007222 0.001792 0.05314 0.0006646 9.565e-05 2.568e-06 0.0001703 0.5784 0.009661 0.03282 2.842e-06 0.001046 0.004812 0.001257 0.0008163 0.04971 0.003864 0.0001932 0.002534 0.0413 0.002186 0.005323 0.0008278 0.001898 0.001902 0.000534 0.0006111 0.00758 0.000235 0.01315 1.162e-05 0.003968 5.071e-06 3.891e-06 3.68e-06 0.06576 0.003757 0.006503 0.03277 0.01777 0.0009549 9.95e-06 0.007542 0.0009329 0.4054 0.5736 0.004165 0.005094 0.008616 0.4833 0.0001194 0.002079 0.08932 2.637e-05 0.004332 0.0007665 0.0003661 0.005994 0.006576 0.001897 0.0008672 0.3647 0.002149 0.02457 0.005229 0.3699 0.0002722 0.0008606 0.01875 0.0006444 0.001353 0.0003625 0.0001764 0.003205 0.004225 0.001137 0.003129 0.001817 0.3743 0.0008781 0.00189 0.5445 0.001249 4.726e-05 0.5778 0.02004 0.3807 0.001304 0.0002447 0.00508 0.00518 0.0001853 0.6 0.6423 0.0004278 6.091e-05 0.0004008 0.3876 0.0001157 0.00905 0.006492 0.001801 9.429e-06 0.001831 0.004134 0.0007473 0.0003161 0.000306 0.382 0.0007534 0.0007854 0.0001635 0.001717 0.01477 0.003016 0.3257 0.04541 0.004014 0.01683 0.002033 0.06018 9.373e-05 0.004507 0.01502 0.0009697 0.4104 0.0003328 0.3703 0.008291 0.0001803 0.00305 0.481 2.576e-05 0.4841 0.02375 0.5741 0.0002434 0.008203 0.0006616 0.0003852 0.003718 0.4281 0.00832 0.3985 0.001274 0.01837 0.0001877 0.04487 0.001034 0.06768 0.1867 0.001587 0.002555 0.03066 0.001297 0.005684 9.915e-06 1.984e-05 0.3201 0.0008235 0.0004239 6.561e-05 0.5701 7.198e-06 0.06798 0.2726 0.0002619 0.08729 0.0004904 0.003706 0.0001561 0.01274 0.4842 0.0007617 0.004524 0.002847 0.001275 0.009051 0.001438 0.004946 5.801e-05 0.001988 0.0002062 0.1154 0.0009321 0.0007855 5.478e-06 0.002537 0.02614 0.001217 9.921e-05 0.1057 0.0003958 0.0008907 1.256e-05 4.054e-05 0.04164 0.0196 0.001657 3.409e-05 0.00651 0.5591 0.0002305 7.115e-06 0.006252 0.002677 0.007774 7.256e-05 0.0001894 3.689e-06 9.262e-06 0.002117 4.811e-05 0.003179 0.001745 0.0002089 0.3158 0.009121 0.001364 0.008863 0.3245 0.0003938 0.0002044 0.01075 5.05e-06 0.0002422 0.01338 0.09539 0.02556 0.007914 0.0005226 4.252e-06 0.0006165 5.744e-05 0.0002259 0.0005738 8.613e-06 0.009615 9.683e-06 0.0009011 0.004222 0.00204 6.712e-06 0.008387 0.0007653 0.0002436 0.00476 0.003354 0.001518 0.0002529 0.007621 0.0008244 0.002608 9.509e-07 0.5608 8.763e-05 0.002769 0.02618 0.0004641 0.5428 2.136e-05 0.0001705 0.004677 0.0005916 0.05711 0.002747 0.01 0.5464 0.002227 0.001034 0.1481 0.003384 0.0004017 0.00019 0.002328 0.01859 0.3036 0.01761 0.0007777 0.004326 0.0002079 6.468e-06 0.004043 0.0001507 3.67e-05 0.001447 0.00205 0.005068 0.003712 0.0003287 5.098e-05 0.657 0.005752 0.001249 0.002587 0.0154 0.004592 0.5526 0.00709 0.005194 4.569e-05 0.004589 0.0003769 0.001764 0.003221 0.005027 0.02023 0.002709 0.06979 0.0006484 0.0009888 0.000723 3.329e-05 0.0008532 0.00672 0.01182 0.001851 0.0002934 0.004362 0.001771 0.02714 0.0005865 0.0006173 0.0006386 8.345e-05 0.0002482 0.001013 0.41 8e-06 0.3204 0.002017 0.002743 0.002356 0.5745 0.0001522 0.002433 0.0002677 0.0001546 0.000875 0.0006633 0.00642 0.02044 0.001054 5.088e-05 0.004056 0.0005894 4.783e-05 0.0002538 0.0006574 0.003964 0.003559 6.226e-06 5.955e-06 0.08917 0.0007296 0.5758 0.3476 0.009076 0.0002506 0.001144 0.0009331 0.003261 0.001498 0.008269 0.04038 9.592e-06 0.0003392 0.000462 0.003617 0.001666 0.5763 0.001103 0.00286 0.002622 0.0007922 0.005678 0.4006 8.061e-06 0.07626 0.02216 0.002842 0.5926 0.3167 0.0008424 0.002314 0.001163 0.009061 0.001612 0.0001041 0.0002568 0.001749 0.006038 9.687e-05 0.4427 0.001455 6.793e-06 8.958e-05 0.002939 0.00432 0.00577 6.614e-06 0.009681 0.009485 0.0003789 0.01747 0.006781 0.02986 0.002998 0.007643 0.001239 0.02049 0.4152 0.002948 0.09087 0.04197 0.0003591 0.004106 0.5833 0.003087 0.001075 0.6628 0.0008565 0.001803 0.09503 0.009945 0.0001008 0.003113 0.002976 0.00131 0.0002582 0.02131 0.002716 0.0003476 0.4245 0.001244 0.5266 0.004462 1.292e-05 6.423e-05 0.0006681 0.04241 0.003415 0.006356 0.00408 0.02542 0.0005017 0.3999 0.006889 0.005425 0.03058 3.063e-05 0.004135 0.5837 0.0002828 0.607 0.004956 0.005768 0.005723 8.211e-05 0.03522 0.0006732 0.5704 0.001938 0.01085 0.0004892 0.5785 0.0001923 6.236e-05 0.01785 0.0002363 0.6276 0.004185 0.002598 0.003357 0.001036 0.0009058 0.0303 0.008787 0.00617 0.114 0.0005629 4.682e-06 6.661e-05 0.0008534 0.001034 0.001884 0.002305 0.01822 0.04251 0.007278 0.3911 0.01542 0.03275 0.4841 0.001021 0.4583 4.128e-05 0.02128 0.5489 0.006984 0.00511 0.1173 0.00574 0.005046 0.007014 0.005479 0.003595 0.006343 0.001573 5.263e-05 0.002335 0.02213 0.0004549 0.574 0.5896 0.0006371 1.68e-05 5.417e-05 0.02366 0.003904 0.005357 0.2753 0.001227 0.5768 0.0001861 3.576e-05 0.4134 5.033e-06 0.004445 0.001906 5.378e-06 0.02564 0.005262 0.0006562 0.0003442 0.00242 0.001175 0.002119 0.002583 0.0003225 0.002354 4.94e-06 0.4477 0.003501 0.0007556 0.00335 0.003179 0.0003859 0.5204 0.003333 0.0001457 0.0001084 0.0001475 8.916e-05 0.0001745 0.001499 0.0002221 0.004142 4.459e-05 0.002846 0.4715 0.00491 0.02711 0.0121 4.715e-06 6.087e-07 0.0001983 0.001019 0.2012 0.01633 0.0003351 0.01666 0.004072 0.004559 0.0004811 0.0002116 0.001599 0.0004371 0.00258 0.03661 0.0246 0.002229 0.002198 0.0351 0.0003463 0.02025 0.002306 0.007653 0.007376 0.0002072 0.002597 2.308e-06 0.01283 6.923e-05 0.5622 0.3405 0.3421 0.0002291 8.153e-05 3.641e-06 0.01972 0.002266 0.1945 0.001289 0.5743 0.01334 0.008045 0.0001657 0.02772 0.004976 0.5641 0.02691 0.001564 0.0001942 0.001223 0.004181 0.006324 0.4633 0.4647 0.0004246 7.644e-05 3.563e-05 9.983e-06 0.3293 0.003652 0.0002175 0.02337 0.0138 0.0003625 0.0009712 0.0004259 0.006048 3.223e-06 0.00147 0.6286 0.0001769 0.0001416 2.772e-06 0.0002216 0.000977 0.3223 0.0001154 0.01273 0.002184 0.002387 0.0004891 0.5367 0.0007272 0.006235 0.01274 0.01009 0.006644 0.4694 0.4092 0.008733 0.001769 0.0301 0.01223 0.3448 0.3705 0.008317 0.001931 0.001626 0.0008049 0.0006962 0.000481 0.001716 0.004528 0.001729 7.709e-05 0.1637 0.0008365 0.17 1.032e-06 0.5779 0.0006438 0.1567 0.001592 0.0008397 0.003988 0.01414 0.4181 0.007033 8.024e-05 0.0001124 8.874e-06 0.5329 0.002721 0.407 9.633e-06 0.3514 0.002414 0.002696 0.01019 0.5084 1.115e-05 0.006362 0.06576 0.103 0.02408 0.5676 0.001269 0.005516 0.0007467 0.0166 0.583 0.007475 7.814e-06 0.5965 0.00846 0.008062 0.01506 0.5866 0.001932 0.001174 0.5507 0.00497 0.5805 0.5716 0.003019 0.001346 0.0006951 0.0002167 0.007783 0.0002304 0.001353 0.436 0.09805 0.3039 0.005557 0.01777 0.0009306 0.008014 0.001215 0.003002 8.688e-06 0.004954 0.5664 0.000384 0.1022 0.6121 0.007077 0.5884 0.3906 0.00146 0.0003774 0.129 0.003151 9.954e-06 7.889e-06 0.09548 0.002306 0.07678 0.003157 0.001059 0.01091 0.0005861 0.0001048 0.006223 0.000304 0.002495 0.004102 0.0006402 0.001257 5.824e-05 0.2367 0.512 0.2691 0.5921 0.001756 0.5519 0.002919 0.007047 0.006513 0.0252 0.2789 0.001901 6.872e-06 0.0001087 0.607 0.0009424 0.5675 0.0002127 0.0001075 0.002908 0.001256 0.003681 0.001487 0.5294 0.0009968 0.00318 0.002516 0.0004026 0.0003414 0.0005442 0.0007646 0.002481 2.766e-06 0.1877 0.0008744 0.2376 0.001522 0.003846 0.01357 0.0008501 0.003088 0.003637 0.00262 0.01416 0.4086 0.5432 1.833e-05 0.000479 4.615e-05 0.001359 0.4797 0.000785 0.5536 0.4752 0.0004964 0.0008791 0.0434 0.2348 3.729e-06 0.0008745 0.4141 0.003666 0.0009388 0.0001814 0.005732 1.444e-05 7.551e-06 0.01944 0.008926 0.001064 0.004178 3.308e-06 0.002367 0.003864 0.0002801 8.165e-09 0.003699 0.1236 6.915e-06 8.728e-05 0.567 0.002327 0.0002676 0.0005168 0.5794 0.422 7.288e-05 3.487e-06 4.579e-05 7.336e-05 0.6555 0.002071 0.3919 0.4836 0.000707 0.0071 0.2083 0.0005057 0.583 0.04025 0.002305 9.285e-06 0.01669 7.232e-06 8.913e-05 0.0004756 0.006691 0.199 0.0009496 0.0001863 0.0009429 0.007239 0.01813 0.0001448 0.6006 0.000662 0.002359 0.001253 0.6315 0.04038 0.00182 0.01838 1.656e-05 0.1699 0.03895 0.002736 0.5867 0.00156 0.5837 0.003258 0.001729 0.0006124 0.1334 0.0001235 6.051e-06 0.01509 0.003785 0.0008832 0.00176 0.000184 0.0004844 0.002287 0.000545 0.003583 0.1183 0.001251 0.05546 0.5642 0.002104 0.0001953 8.344e-05 0.005669 0.05581 0.0007988 0.001409 3.956e-05 0.005766 0.001006 0.0008767 0.003397 0.5668 0.001165 0.5499 0.00683 0.3763 0.001583 0.0007775 0.1542 0.03986 1.305e-05 0.0001255 0.0004634 0.005192 0.5309 0.004379 0.002376 0.002102 0.09238 1.926e-06 0.0005474 0.0004335 0.5685 0.000197 0.4933 0.5175 0.424 0.02354 5.471e-09 0.0005684 0.0002872 3.661e-06 0.0004001 0.1565 0.06654 0.5733 0.0001121 0.004821 1.004e-05 0.5673 0.0007508 0.004598 1.018e-05 0.02096 0.01047 0.004666 0.0001256 5.225e-06 0.005761 0.5679 0.2458 0.0002346 0.0001161 0.0001886 0.000344 0.001416 0.6529 0.002569 0.0758 0.0007273 0.6167 0.02445 0.009481 0.07895 0.0003752 0.3322 0.5414 0.5344 0.001577 0.002017 0.00081 0.004563 6.506e-06 0.0006305 0.57 7.069e-05 0.06997 9.205e-05 0.00848 0.01044 0.01349 0.5497 0.00469 0.003958 0.007411 0.01545 0.5493 0.5082 0.0004247 0.004516 0.001496 0.004573 0.002619 2.956e-06 0.001531 0.002786 0.003047 0.003976 0.005425 0.0001971 0.002763 1.39e-05 0.003925 0.004576 0.003589 0.01523 4.467e-06 0.002292 1.673e-05 0.0002656 0.009062 0.0001976 0.0003612 0.002094 0.5847 0.001414 0.001265 0.003798 0.006033 0.01706 0.001339 0.0001799 0.001521 0.398 0.0009824 0.02508 0.01432 0.3915 0.01499 7.522e-05 7.56e-06 8.912e-05 0.005111 0.00211 0.001855 0.3956 0.0007253 3.288e-06 6.303e-05 0.001487 0.00596 0.03526 0.007495 0.08706 0.009009 0.0002071 0.3901 0.4027 0.0007437 0.5704 0.0002221 0.0606 0.0113 0.0003869 0.0001372 0.002512 0.001502 5.859e-06 0.2972 0.002491 0.01044 0.01511 0.01021 0.0009159 0.0002726 0.1401 0.005239 0.003548 0.5749 0.3388 0.3404 0.003273 0.001705 8.661e-06 0.2759 0.4463 0.3772 0.004232 0.0001533 0.001063 2.178e-06 0.007054 0.037 0.006796 0.003952 0.05421 0.004359 0.002996 0.08702 7.299e-06 0.003453 0.3133 3.869e-05 0.003791 0.5714 0.0006122 0.03058 0.001599 0.003039 0.002268 0.0009109 0.008006 1.745e-06 7.932e-05 0.0004966 0.0007815 0.4068 6.525e-05 0.0001889 0.4074 0.529 0.006381 0.0006091 0.04779 0.4023 0.0006133 0.0007515 0.004691 0.0003978 0.00194 1.506e-05 0.0006306 0.5704 0.0004473 0.6367 0.004511 0.003142 0.02589 0.1344 0.06838 0.0001048 0.000816 0.00236 0.000166 0.002095 0.006781 0.4654 0.0004413 0.009237 0.001054 0.03309 0.4067 4.365e-05 0.408 0.003826 0.01298 0.001962 0.002904 0.5589 0.03053 5.338e-05 0.0003232 0.105 0.0002832 0.4743 0.002951 0.001863 7.266e-05 0.007573 0.00944 0.02424 4.97e-05 0.002499 0.004802 0.0008066 0.000585 8.525e-06 0.002772 0.004156 0.0368 0.00511 0.01464 0.001157 0.0006941 0.002457 0.5586 0.002252 0.0127 1.08e-05 0.00276 0.004146 0.004507 7.033e-05 0.0003147 4.149e-05 0.002599 0.55 0.0003804 0.0009851 0.0004731 0.009808 4.212e-06 0.0002017 0.001857 0.0008287 0.4012 0.1061 0.001696 9.252e-05 7.656e-05 0.002673 0.005937 7.925e-05 0.01751 0.007943 0.02075 0.0007672 0.0001375 0.01957 0.02847 0.0245 0.000372 0.0001755 5.603e-05 0.004586 8.174e-06 0.0012 0.00501 0.007425 0.0004352 0.0006736 0.1878 8.158e-05 0.000216 0.004894 0.5794 0.01739 0.5643 2.506e-06 0.5922 0.00234 0.0003771 0.001032 0.01119 7.786e-05 0.00312 0.3475 0.03545 0.3411 0.003464 2.801e-05 0.0005707 0.579 0.01406 0.03894 0.03045 0.003693 0.5778 1.01e-05 0.004478 0.5718 0.06087 0.0003843 0.0005935 0.01423 5.759e-05 0.0007171 1.55e-05 0.564 0.02423 0.000275 0.002785 0.009316 0.05121 0.0008294 0.005264 0.002752 0.002094 0.0001519 0.001769 4.543e-05 8.42e-05 0.01775 0.2484 0.002004 0.003464 0.0008678 0.0195 0.5294 0.01098 0.002127 0.003988 0.0001909 0.03104 0.234 0.01782 0.5698 0.00651 2.921e-05 0.000442 3.79e-06 0.001383 0.4366 0.002772 3.884e-05 4.469e-06 0.0551 0.01416 0.00143 0.002102 0.003407 8.887e-05 0.00163 0.5739 0.002171 0.0001078 0.001905 0.0008857 0.002452 0.1888 0.0003023 0.0005194 0.00429 0.0002694 0.001762 0.4391 0.6671 0.0005033 0.66 0.5678 0.01663 0.5706 9.621e-07 0.0008558 9.865e-06 0.002561 0.001964 4.963e-05 0.003356 0.0006072 0.003635 0.0003246 1.074e-06 0.001182 0.01704 0.00221 0.0001225 0.001718 0.001061 0.001611 0.003115 0.2838 0.2841 0.02156 0.02001 0.0001217 0.0006108 0.5568 0.00514 0.007952 0.0004406 0.0192 0.002226 0.07969 6.694e-05 0.0002883 0.2836 6.133e-06 0.1424 0.01685 0.4143 0.04804 0.00608 0.5578 0.0007001 1.756e-05 0.01205 0.001201 0.002718 0.07078 0.25 0.001194 0.0013 0.00109 7.052e-06 0.002761 0.08553 0.001406 0.0008982 0.01077 0.08835 0.0006395 6.045e-06 0.003473 0.5941 0.0877 0.1801 0.1743 0.0009906 0.0013 0.5916 0.004711 0.0004488 0.03041 0.01808 0.382 0.009187 0.6003 6.056e-05 0.0005679 0.004289 6.614e-06 0.009492 0.5484 0.007827 0.5631 0.5601 0.001268 0.0008136 0.00412 0.0006714 0.00413 0.0004168 0.008758 0.0009255 0.01078 0.002788 0.00186 0.01007 0.0202 0.01002 0.01235 0.005445 3.979e-05 0.001586 0.0004175 0.007568 0.3217 0.5344 7.334e-06 1.166e-05 0.06603 0.006675 2.829e-05 7.659e-05 0.0003668 0.0062 0.004969 5.108e-05 0.006218 0.5349 0.00113 0.3234 2.84e-06 0.004254 0.007843 0.001468 0.0001106 6.387e-05 0.0003064 0.08625 0.01418 1.159e-05 7.396e-05 0.01357 0.001866 0.0003942 0.5027 0.0001667 0.005403 0.004154 0.003185 0.002169 0.5722 5.963e-06 0.01422 0.5675 0.0144 0.01156 0.0001792 0.006578 3.438e-05 0.02993 0.0004671 0.001831 0.002376 0.01115 8.036e-05 0.001398 0.6692 7.832e-05 0.001633 0.008615 0.0003529 0.002372 0.0005693 0.001375 0.000272 5.563e-05 0.005167 0.0007683 0.01145 0.002532 0.3694 0.02099 0.0007025 0.3827 0.000403 0.01553 0.1937 0.1113 0.0009655 0.0004702 0.1206 0.2761 0.001782 0.014 0.0005516 2.773e-05 0.1951 0.002529 1.466e-05 0.5751 0.0005653 0.003341 0.0003492 0.005217 0.354 0.003454 0.6668 0.002795 0.0005202 0.5834 5.57e-06 0.0002413 0.5981 0.04711 0.4035 0.002576 0.004578 0.0008855 4.074e-06 0.005304 0.02179 0.0003633 0.006748 0.006801 0.001353 0.01848 0.004179 0.006819 0.001733 0.0005428 0.007253 2.279e-06 7.5e-06 0.009129 7.445e-06 0.002462 4.644e-05 8.753e-09 0.0002344 0.001153 0.002573 0.01095 0.0004579 0.005192 0.001414 6.314e-06 0.01691 6.924e-06 3.208e-06 0.1932 0.5641 0.002579 0.003936 0.0005622 0.004984 1.204e-05 1.494e-05 0.0156 0.005923 0.002779 5.359e-06 0.009844 0.5709 0.02231 0.01415 0.02733 0.5047 4.851e-05 0.005275 0.0005539 0.5826 0.006878 0.006174 0.5865 0.001474 0.001483 0.3494 0.003333 0.0001481 3.999e-06 0.0005657 0.002034 0.001955 0.0009063 0.001179 0.04251 0.01174 0.01321 0.0004964 0.4427 0.02192 0.002096 0.0007176 0.0006393 0.006882 0.5686 0.001021 0.0009542 0.4297 0.3753 0.002788 0.3752 0.002882 0.01894 0.2388 0.2511 0.0003262 0.009776 0.001924 0.005417 0.0001935 9.078e-06 0.05923 0.0003221 0.01562 0.01128 0.35 0.669 0.02796 0.001187 0.00783 0.002437 0.3179 0.4116 0.003013 0.0001669 0.001438 0.5704 0.05783 0.001196 0.002865 0.005061 0.0007231 0.001285 0.0001856 0.5363 0.5258 0.0001176 0.003928 0.1507 0.0002041 0.006745 0.001218 0.5826 0.5742 0.0009732 6.998e-05 0.5704 0.6396 0.004206 0.009733 0.002114 0.0004235 0.0003372 0.02581 0.5552 0.002339 0.02933 0.0006853 0.0009989 0.06548 0.0008851 0.003931 0.001671 0.002109 2.127e-06 0.0005545 0.001162 0.0006361 0.001279 0.00517 0.0002079 0.001838 0.002799 0.004864 0.0002025 5.003e-06 0.3271 0.5567 0.0008231 0.1344 0.001034 0.01111 0.004956 0.5146 0.435 0.0005609 0.006759 0.008545 0.001297 0.0001047 0.005031 0.5881 0.008421 0.0174 0.008158 5.693e-05 9.106e-06 0.002208 0.005517 0.007531 0.0001254 0.6685 5.547e-06 0.002939 0.000264 0.0003651 0.002634 0.001216 0.0006735 0.0003327 0.6371 0.5305 0.002913 0.5427 0.5058 0.0003456 0.05166 0.002691 0.01407 0.4307 0.6518 0.003224 5.172e-05 0.001051 0.001042 0.001917 0.001133 0.01974 0.008811 0.01347 1.237e-05 0.00776 0.001735 0.4143 0.002119 0.5658 0.005436 7.044e-05 0.004691 0.5476 7.876e-05 0.0005106 0.001568 0.1193 0.1145 0.6682 0.3237 0.004334 0.6375 5.131e-06 0.003386 0.001781 3.739e-05 0.002312 3.784e-05 0.01438 0.00097 0.5698 0.5792 0.004732 0.00128 0.001266 0.000451 0.008606 0.001572 0.5843 0.00441 0.001969 0.2282 0.07766 7.479e-06 0.002364 0.0001473 0.009842 0.0007147 0.001194 0.02907 0.04906 0.03531 0.09413 6.584e-06 5.159e-05 0.002666 0.000912 0.005361 0.001892 9.441e-06 7.068e-05 5.308e-06 0.001634 0.02456 0.006414 3.959e-05 0.0001403 0.0002044 5.755e-06 0.004185 0.0007845 0.01407 0.0002321 0.4944 1.315e-05 0.01907 0.01369 2.76e-07 0.002439 0.002356 0.00698 0.006579 3.454e-06 0.0002888 0.08313 0.1476 0.008046 0.1123 0.009876 0.006322 0.0005094 0.5767 0.002179 0.004953 0.001174 0.4097 0.01114 4.125e-05 9.013e-06 4.514e-06 0.0002581 0.004331 0.3022 0.1112 0.564 0.0006971 0.4951 0.008277 0.0001367 0.002809 0.06288 1.074e-06 0.0004409 0.001032 0.0003075 0.001874 0.01128 0.09414 0.01162 0.000993 0.001959 0.004756 0.0001017 0.354 0.03686 4.592e-05 0.001157 3.782e-07 0.04912 1.555e-05 0.001595 0.001089 0.0002611 0.002008 0.00859 0.6516 0.5767 0.008209 0.006411 0.0001452 0.01528 0.001198 0.000198 0.0003341 0.6077 0.01767 0.0006788 0.5848 0.003438 0.01351 2.806e-06 0.01805 0.0001334 0.0009784 0.006501 5.227e-05 6.281e-06 0.01653 0.01253 0.0001755 4.174e-05 0.006889 0.004841 0.0009815 9.565e-06 0.5429 2.362e-06 0.0008318 0.001682 0.6521 0.3096 0.5302 0.1244 0.03468 1.601e-05 0.4761 0.0008945 0.001948 0.02718 0.001495 0.000687 0.5706 0.5622 0.0003654 0.001805 0.001599 0.008963 0.01365 0.006185 0.0004896 0.0403 7.084e-05 0.0003984 0.003101 0.0002605 0.01147 0.001595 0.004566 0.006737 0.5632 0.00338 0.5771 0.3663 8.465e-05 0.0004385 0.002188 0.02789 0.02139 0.01652 3.781e-05 0.001363 0.003046 0.008188 0.009433 0.002467 0.2798 0.0002349 5.451e-06 5.198e-06 0.005147 0.5741 0.5157 0.0657 0.01891 0.01084 0.003441 0.0007089 8.476e-05 0.0006723 0.01143 0.5667 0.001615 0.005824 0.009697 0.4995 0.0007915 0.001713 0.1147 0.004717 0.5707 0.0005567 0.381 0.01471 0.006627 0.002149 0.4818 0.00096 0.002141 0.2665 0.5513 0.00506 2.21e-07 0.01141 0.001718 0.003771 0.01504 0.001874 0.0004839 0.000813 8.585e-05 0.006151 0.005444 0.009585 0.5477 0.001839 4.493e-06 0.001127 0.003744 8.784e-06 0.07865 6.048e-06 0.006346 0.561 0.004184 0.004682 0.5785 0.005865 0.008155 0.0004402 0.02337 6.605e-06 0.0005503 0.0001964 7.358e-05 5.267e-05 0.3821 0.0235 0.00348 0.006103 0.11 0.00418 0.006975 0.0004305 0.0002518 0.001245 0.0001159 0.002697 0.5969 0.002629 0.0002157 0.00666 0.0005234 5.78e-05 6.182e-06 4.656e-05 0.004664 0.5901 0.000852 0.1716 7.684e-05 0.00409 0.006601 0.001524 0.436 9.079e-06 0.02804 0.04282 0.2301 0.5782 0.0001791 4.713e-06 0.003002 0.009414 0.000399 0.0002289 0.005683 2.974e-05 0.5725 0.002111 8.73e-05 5.084e-06 0.0006861 0.5511 0.0003795 0.3833 0.002445 4.59e-06 0.003039 0.006071 0.0008406 0.009602 0.01716 0.0009047 0.008929 0.0151 0.0006684 0.3718 0.6169 0.6169 0.005933 0.3731 0.005153 0.0003131 0.002269 8.053e-06 0.002398 0.423 0.00253 0.3824 0.007981 0.0002654 3.407e-05 1.008e-05 0.01542 0.3347 0.0007686 0.0001046 6.767e-06 0.0006287 0.002099 0.0303 0.003506 6.802e-05 0.09934 0.004859 0.0005116 0.001275 0.02085 0.0006879 0.0001425 0.01551 0.002946 0.5662 0.5482 0.02405 0.0003559 0.5341 0.4989 0.003797 0.002864 0.004471 0.006721 0.007843 0.001287 9.973e-05 0.00947 0.4971 0.001631 0.5719 0.07958 8.27e-05 0.001174 0.5114 0.0006199 5.495e-05 0.001043 0.01391 2.466e-06 0.001068 6.364e-06 0.002183 0.03555 0.009132 6.087e-06 0.3795 0.02548 0.0007962 0.418 0.000895 0.002725 0.01358 0.004313 0.007424 0.007375 0.001851 0.0001413 7.037e-06 0.001132 0.08376 0.1146 0.57 0.006471 0.002311 0.6054 0.5425 0.0006384 0.007478 0.3511 0.00527 0.549 0.01678 0.0001732 0.002639 0.002554 0.004235 0.01132 0.07799 0.006291 0.00158 0.3597 0.002717 4.623e-06 0.008727 0.01965 0.01456 0.000814 0.003978 0.5632 0.0009477 0.5782 0.01228 0.002267 0.001193 0.001766 0.009427 0.004198 0.0001113 0.003228 0.5756 0.004352 0.002473 0.4767 9.224e-07 0.002274 0.006335 0.001777 0.0001129 0.0002364 0.003017 0.0004614 6.467e-05 0.001328 0.0005752 0.002913 0.0002302 0.0001447 0.0331 1.202e-06 0.01342 0.5601 0.0003555 0.01279 0.002476 0.001258 0.0004484 0.6545 0.01571 0.002715 0.5679 0.006014 8.961e-05 0.01015 3.5e-06 0.01865 0.01655 2.052e-05 0.004109 0.005642 6.659e-05 0.002398 0.0003464 0.01121 7.788e-06 0.3564 0.0003623 0.01176 0.001153 0.01547 0.03854 0.2356 0.003404 0.5904 0.006653 0.0004089 0.002381 0.08125 0.001719 0.002518 0.006207 0.0001455 0.00188 0.01934 0.0006093 0.002188 0.2351 0.001882 0.001868 0.0002428 0.5916 0.0004045 0.00457 6.249e-06 1.946e-05 0.1508 6.355e-06 0.02505 8.309e-05 0.01168 0.0005888 0.0231 0.0001459 0.003247 0.652 0.0006611 0.002147 1.973e-05 0.0002983 0.0003824 0.5472 0.001763 2.676e-06 0.01304 0.01196 0.514 0.0378 0.5489 0.1717 0.02304 0.007015 0.0335 0.0004035 0.03668 0.002008 0.003819 0.01431 0.01063 0.0005725 9.401e-05 0.2846 0.5723 0.0003687 0.006849 0.0001082 4.036e-05 0.0007151 0.1363 6.175e-06 0.02449 0.0002332 0.0006005 0.0225 0.008008 3.969e-05 0.007462 0.001145 0.00108 0.002199 0.09578 0.0002347 0.0005329 0.000483 0.001339 0.5825 0.0031 0.009851 0.004584 0.001348 0.02392 0.0005503 0.008061 0.004019 0.001006 0.001191 0.0002072 2.96e-06 0.0002256 0.01035 0.1033 0.002037 0.005166 4.901e-06 3.056e-06 0.005318 0.0002633 0.3254 0.004099 0.0002366 0.5668 0.001744 0.003317 0.6207 0.0003223 0.007447 6.923e-06 0.006032 0.1134 0.3267 0.002206 0.5361 0.0003076 0.002042 4.177e-06 0.002745 0.0004415 0.3521 0.0001129 0.05224 0.01809 0.009636 0.002759 0.5822 0.0124 0.0007295 0.0118 0.01477 0.0009863 0.004561 0.2312 0.4067 0.02014 0.5623 0.00129 0.006896 0.001207 0.007753 0.3771 0.001218 4.699e-05 0.005878 3.647e-06 0.6658 9.314e-06 0.001576 0.00386 0.01472 0.001569 0.0001264 0.004896 0.4098 0.6388 0.0007687 0.0001713 0.0008406 0.0005211 0.006587 0.5602 0.0008787 0.001706 7.479e-06 0.001219 0.0004212 0.0004496 0.01569 0.0003921 0.009046 4.157e-05 0.0001709 0.3086 0.005825 0.005177 0.005198 0.0008284 0.0009755 0.4239 3.713e-06 0.0002297 0.005551 0.0001982 0.0006581 0.0003501 0.006672 0.1762 0.002353 0.0002365 0.1044 0.004158 0.004365 0.5474 0.0005459 0.002793 1.461e-05 0.0001868 0.0007927 0.004838 0.2127 0.06189 0.1627 0.013 0.02973 0.0006143 0.0002926 0.09502 0.001013 0.001739 0.001634 0.5629 0.004211 0.5676 0.002968 0.003054 0.02821 8.514e-05 4.618e-06 0.001908 0.0006804 0.01399 0.02791 0.000537 0.01013 0.0004955 8.904e-06 0.0008741 0.2678 0.00505 0.5718 0.00187 0.5743 0.2606 0.02241 0.1969 4.347e-05 0.01194 0.0005351 0.001636 0.0005351 0.02801 0.1448 0.0006017 0.0002435 0.586 0.01773 0.007285 0.0005438 0.01646 0.001112 0.005222 0.00877 3.564e-05 7.112e-05 0.007852 0.003589 0.003849 0.006432 0.0001385 0.5646 0.001291 0.5574 0.5647 3.172e-05 0.6026 6.473e-06 0.509 0.006771 0.002412 0.586 0.003134 0.001669 0.000946 0.05552 0.005319 0.0002218 0.003725 0.0003183 0.4019 0.5577 8.29e-07 0.004554 4.251e-05 0.02595 0.0007687 0.0004476 0.01733 0.5709 0.2793 0.0001725 0.0005883 0.0005151 0.002674 0.0009508 0.0008323 0.03109 6.414e-06 0.5666 0.001255 0.07275 0.001121 0.009102 4.744e-05 0.0002361 0.3158 0.4974 0.001551 0.000267 7.322e-06 0.009365 0.005368 0.004905 0.0007991 0.03918 0.002887 0.003141 3.738e-05 0.01978 0.02567 0.01019 0.0007009 0.4097 0.0004785 0.1893 0.002631 0.4092 0.01159 0.001172 5.308e-05 0.08638 0.0041 0.0003876 0.5693 0.006086 0.00963 0.003349 0.0181 0.01104 0.5084 0.3191 0.0001822 0.09825 0.003295 0.0001769 8.04e-06 8.992e-05 0.01167 0.05019 2.408e-05 0.001146 0.0002994 0.000149 0.0006245 0.4093 8.626e-06 0.001976 0.007949 0.002578 0.01124 0.003401 0.04956 0.001501 0.000632 7.614e-05 0.5616 0.0008301 0.002733 0.4208 0.004259 0.001528 0.4119 0.0002279 0.001142 0.0004228 0.000287 0.006032 9.881e-05 0.01523 0.01065 0.5632 0.000687 0.5642 0.009846 0.001652 5.458e-06 0.002319 0.003595 0.03099 0.01106 0.02863 0.004658 0.0002783 0.0003344 9.27e-05 0.2235 0.0008738 0.001134 0.3784 0.0126 0.002049 0.02598 0.0008135 0.02828 0.002184 0.003996 0.005542 0.0008354 0.001408 0.001048 0.5822 1.148e-05 0.4185 0.01068 0.02205 0.001285 0.07056 0.006822 0.2882 0.001237 0.0004932 0.005 0.0007074 0.2937 0.04039 0.0009827 0.01615 0.5686 0.00194 0.6161 0.5749 0.000906 0.001181 0.0004853 0.003804 0.0145 0.0006155 0.5584 0.0003571 0.00364 0.0004437 0.02017 0.0001383 2.357e-05 0.008563 0.01891 0.001106 0.4122 0.4126 0.04703 0.007415 0.3816 9.812e-06 0.0001399 0.5363 0.01003 0.002338 0.3912 0.001239 0.653 0.002514 1.963e-05 7.036e-06 0.02379 0.0005008 0.009219 8.486e-05 0.002463 0.0001578 0.007107 0.0002556 0.02113 0.006845 0.0009243 0.361 0.001055 0.0003067 0.004379 0.01505 0.0006669 6.851e-05 0.3938 0.01335 0.008507 0.0005491 2.807e-06 0.002449 0.01066 0.0001408 0.0002108 0.1652 1.083e-05 0.5028 0.5028 0.0001689 0.0002499 0.001637 0.006516 0.576 0.01643 0.002437 0.002899 0.007856 9.867e-05 0.003569 0.005324 0.002127 0.006741 0.009014 0.271 0.004341 4.955e-05 0.008014 0.5108 0.004628 0.002954 5.94e-06 0.003 5.134e-05 0.000727 4.769e-05 0.001844 0.0003272 0.1905 0.0005226 0.6016 0.0002512 0.597 0.0005134 0.001018 0.5831 0.001363 7.892e-06 0.006876 0.01421 0.008563 0.0005847 4.744e-05 7.372e-06 0.5195 0.0001409 0.6285 0.05535 7.962e-05 0.002916 0.09053 0.01427 0.03284 0.3456 9.278e-06 0.0004385 0.002335 0.3184 0.002707 0.001075 0.007194 0.004269 0.5752 0.3539 0.009835 0.02769 0.004894 0.01199 0.01086 0.5787 0.0004015 0.0007582 0.008833 0.009046 0.004888 0.001646 0.004913 0.01777 0.007139 0.0006098 0.003622 0.00122 0.0007791 0.5692 9.234e-05 0.5673 0.05384 0.002792 0.003986 0.05912 0.005253 0.003164 0.005814 0.02603 0.02134 0.6492 0.6492 0.0002121 0.0004411 0.007966 0.0001429 5.517e-06 0.05449 0.006139 1.019e-08 0.5451 0.001564 0.4163 3.321e-05 0.0003104 0.002115 0.02839 2.95e-05 0.0003262 0.001658 0.01173 0.01382 0.004756 6.229e-06 0.007594 0.0002987 0.5475 8.047e-06 0.006485 0.002699 0.003062 0.002267 0.003768 9.884e-06 0.5375 0.5672 0.003798 0.001219 0.002442 0.5506 0.007196 0.001402 0.000454 0.003058 0.3712 0.001338 0.001471 3.329e-06 0.004097 0.0004757 0.001983 0.00186 0.005887 0.000475 0.2492 0.007362 5.175e-05 0.00672 0.004107 0.04326 0.003865 0.0009299 2.159e-05 0.01361 0.004432 0.0001233 0.008133 0.002037 6.916e-06 0.002664 0.02659 5.405e-06 0.0009385 0.001591 1.711e-05 0.004166 0.004259 0.0002032 0.6575 0.1556 0.0004834 0.006225 9.066e-07 0.004157 0.001054 0.01696 0.0005004 3.191e-05 0.0006568 0.001581 0.5827 0.004101 0.001224 4.846e-05 0.001648 0.002526 0.3288 0.0004411 7.264e-06 0.07818 8.397e-05 0.009381 0.0239 0.007514 0.002575 0.04242 0.0004233 0.2006 0.001267 0.002427 0.008843 0.1456 1.324e-05 0.00335 0.006405 0.0135 0.00454 0.003453 0.05061 8.056e-06 0.0006427 0.006394 0.000641 0.003908 0.6316 6.178e-06 0.01234 0.5482 0.0009202 0.001729 0.001763 0.004586 0.1566 0.03551 0.0007825 0.5761 0.03843 1.172e-05 0.3398 0.3479 0.5687 0.001289 0.5316 0.001503 0.001591 0.002058 0.003067 0.002924 0.0001567 0.01465 4.723e-06 0.009244 0.001551 0.03199 9.177e-06 0.00173 0.002756 0.001818 0.5389 0.003784 0.01167 0.009418 0.000934 0.001552 0.003325 0.000627 0.01399 0.006597 0.01055 0.000647 0.0003771 7.71e-06 0.3925 4.396e-06 7.736e-06 8.847e-05 0.3222 0.003517 0.02861 0.02682 0.5718 0.0006547 0.0001528 0.5778 0.00143 0.001011 0.0002558 0.0003944 0.0106 0.002364 0.5701 0.00533 0.002456 0.01542 0.05367 0.001058 0.1864 1.448e-05 0.1094 0.0006193 0.2416 0.0003097 0.00326 5.725e-05 0.003371 0.5655 0.006511 0.004224 0.3734 0.0005322 0.002705 0.006572 0.0009244 0.003108 0.009147 0.0006874 0.1387 8.283e-05 4.178e-06 0.004518 0.004499 0.000329 6.249e-05 0.00122 0.2432 0.0003722 0.07856 0.001351 0.115 0.06823 0.0005941 0.01951 0.007481 0.001757 0.4224 0.2036 1.676e-06 0.4968 0.003546 0.009615 0.002625 0.0001019 0.00118 0.02088 0.3569 0.0008298 0.01311 1.582e-07 5.052e-05 0.006211 0.002294 4.211e-06 0.564 0.00285 0.0006036 0.08269 0.1008 5.541e-05 0.5478 0.005867 0.00208 0.5724 0.00198 0.59 0.0007022 3.91e-05 0.0005914 0.03458 0.003295 0.3782 0.4753 0.002169 9.729e-06 0.5699 0.009823 0.006436 6.293e-06 0.004588 0.0001891 0.0002294 0.0004649 7.723e-06 0.0001832 0.4365 9.31e-06 0.007782 0.008244 4.794e-05 1.476e-05 0.009167 0.00175 0.03385 0.0009293 0.0004638 0.4092 0.00889 0.002638 1.015e-05 0.001381 1.771e-05 0.005563 0.02626 5.068e-05 7.791e-06 0.003363 0.005296 0.01311 0.01034 0.0009663 0.002414 0.02 0.002371 0.004653 0.4114 0.002868 0.001201 0.001626 0.0003487 0.4011 0.005204 0.001347 0.01732 0.2094 0.003948 0.0006693 0.0009337 0.007989 0.008171 0.001051 0.419 0.000221 4.3e-05 0.02403 0.0009216 0.001535 0.5994 0.0005782 0.0003907 0.0002764 0.1313 0.0002937 9.553e-06 0.4097 0.001706 0.02156 0.004328 0.002797 0.5708 0.007306 0.007561 0.001019 0.0003808 0.007748 1.13e-05 0.0001634 0.002805 0.001716 0.2573 0.0004279 0.3116 2.126e-05 0.006167 0.008651 0.01492 0.03212 0.02881 0.5634 0.02118 0.0003365 2.068e-06 0.001944 4.571e-06 0.003925 0.0008453 0.391 0.0002277 0.001865 3.845e-05 0.0002123 0.0006584 0.0002146 5.867e-05 0.3936 0.0004802 0.0009875 0.004551 0.001922 1.884e-05 0.04221 0.3898 0.001463 0.02348 0.0002576 0.0001074 0.0007517 0.001942 0.0301 0.5811 0.002502 4.965e-05 0.006359 0.632 0.0211 0.0003053 0.009266 7.042e-06 0.001243 0.004493 0.002908 0.4597 0.01093 0.001812 0.0002902 0.2993 1.939e-05 0.001566 4.991e-05 0.0001756 0.0006227 0.004777 0.0002654 0.2898 0.00204 0.0004507 0.03801 0.002416 0.002347 0.001715 5.189e-05 0.0002287 0.001095 0.001925 0.4802 0.3857 0.02184 0.0005602 6.09e-05 0.5464 0.0003556 5.628e-05 0.002945 0.02981 0.01948 0.0004705 0.03098 0.0003086 0.03258 3.662e-05 0.001824 0.004404 0.0007073 0.5961 0.3464 0.05986 0.005927 0.1586 0.0004932 0.0003621 2.953e-05 1.57e-05 5.714e-05 0.009946 0.01348 0.0001415 0.0016 0.5688 0.5044 0.00232 0.5746 3.31e-05 0.241 0.6098 2.692e-06 3.837e-07 0.004918 0.0008317 0.003115 0.0005593 0.00375 0.0001195 0.5934 0.0006339 0.004416 0.002077 0.4002 9.944e-06 0.3146 0.02464 0.008198 0.0004691 0.005666 0.004127 0.0014 0.0004322 7.602e-06 0.01901 4.072e-06 0.0009239 0.0001643 0.0004415 0.01594 0.5813 1.069e-05 0.3999 0.001235 0.0283 0.00206 0.0001078 0.5891 0.002875 0.003471 0.003539 0.002644 0.001022 0.006517 8.718e-05 4.257e-06 0.5149 0.004707 0.001368 0.01374 5.589e-05 8.292e-05 0.0007674 0.01367 0.0004551 0.004907 0.004323 0.5305 0.0139 0.0006059 7.139e-06 0.007258 0.001842 0.0004832 0.002146 0.000336 0.0001602 0.0003819 7.067e-05 0.0001297 0.002577 0.000856 0.3731 0.002245 0.1761 3.821e-06 0.005708 0.0001188 0.009433 0.000244 0.0009173 0.05491 5.257e-05 0.0001659 0.1831 0.03064 0.0006892 0.5298 0.01894 0.001632 8.12e-05 6.135e-05 1.178e-05 0.003324 0.00923 0.001755 0.007642 0.003133 0.0001073 2.476e-06 0.002169 0.001044 0.1008 0.5698 0.0005667 0.01579 0.003144 0.003413 0.0231 0.004155 0.002463 0.02222 0.5094 2.056e-05 0.001033 0.03894 0.5735 0.001271 0.0002301 0.001282 0.0008407 1.239e-05 0.002104 0.525 7.879e-05 8.213e-06 0.01124 0.5754 0.01836 0.0006364 0.001038 0.001378 0.02525 0.3318 0.004307 0.002457 0.1558 0.06483 0.009259 0.005213 0.001499 0.1015 0.0005563 0.0005378 8.113e-07 1.756e-05 0.5226 4.814e-06 0.5721 0.0005285 0.5052 0.03049 0.01363 0.06963 0.0006216 0.000105 0.0009852 0.0006099 0.4371 0.007718 0.05114 0.03457 0.0008901 0.002385 0.001831 0.0003196 0.5718 0.01765 0.0005893 0.2229 0.01168 0.226 0.001911 0.05549 0.0001144 0.002053 0.0004611 0.01164 0.0008091 1.977e-05 0.0009095 0.01347 0.01177 8.665e-06 0.3017 6.13e-06 0.0194 0.0006959 0.001112 0.04138 0.006436 0.004854 0.006686 0.001148 0.0003994 0.001808 0.01205 9.103e-06 0.6512 0.6511 9.831e-06 1.146e-06 0.01915 0.5126 0.0005022 0.0002038 0.002569 1.405e-05 5.077e-05 9.069e-06 0.0008358 0.6202 0.0001901 0.0006357 0.0007362 0.0004803 0.0003496 7.622e-06 4.105e-05 0.01288 0.007178 5.731e-06 5.583e-05 0.01759 0.005401 9.055e-05 0.0009977 0.002575 0.008321 0.002477 0.5698 0.003511 1.609e-06 5.08e-06 0.2172 0.005398 3.857e-05 0.001176 0.003898 0.5731 0.0002355 0.3276 0.105 0.002375 0.01362 8.973e-06 4.359e-06 0.002606 6.086e-06 0.009608 0.01502 0.01555 0.0007289 0.0001929 0.001087 8.915e-06 0.003045 6.159e-06 0.0002291 0.002177 0.5329 0.2584 0.001177 0.417 0.009067 0.0001954 0.01584 0.001512 0.004042 5.027e-05 0.001388 0.09245 0.0006448 0.001211 6.754e-05 0.03093 0.00292 0.00728 0.0131 0.0001263 0.6084 0.576 4.151e-06 0.0003903 0.0001685 1.205e-05 0.5933 0.1081 0.001781 0.004592 5.661e-05 0.0002616 0.00192 0.3027 0.00414 0.1419 0.001139 0.001653 0.002492 0.002492 0.0103 0.009834 0.0001021 0.003631 0.003341 5.518e-05 0.00218 0.006645 2.594e-06 0.002255 5.212e-05 0.003207 0.01951 0.02463 0.008183 0.5747 0.00126 0.009836 0.001958 0.01052 0.006565 0.004165 4.094e-05 0.5636 4.862e-05 0.007973 0.001652 0.4053 6.108e-06 5.902e-05 0.5741 0.006413 0.09382 0.0001937 6.635e-05 0.03076 0.4368 5.938e-05 0.005268 0.0008755 0.2362 0.01838 0.00234 0.1968 3.943e-05 0.4791 0.004296 0.006253 0.001915 5.121e-06 0.004144 0.0006356 0.0001079 0.006924 0.01976 0.0006064 0.2956 0.001946 0.002424 0.008148 0.5739 0.001013 0.01836 0.002163 0.0004538 0.0003374 0.1555 0.0001544 0.007817 0.0004774 0.01676 3.048e-05 2.843e-05 0.00173 0.571 0.0009234 0.0004071 0.001525 0.4405 5.379e-05 0.0001675 0.00256 3.193e-05 0.00206 5.404e-07 0.008458 7.696e-06 6.213e-06 0.001796 4.991e-06 0.002687 0.005684 0.002686 6.013e-05 0.5862 0.001247 0.5734 0.5664 0.0003724 0.002884 0.01803 0.0008031 0.02073 4.577e-05 0.006987 0.006457 0.005644 0.004186 0.4189 0.001107 0.0008157 0.001398 0.0004566 0.3746 0.004268 0.0005359 4.006e-05 3.559e-05 0.5639 0.0005701 0.00814 0.0001497 6.56e-06 0.0009316 0.5256 0.1275 0.1087 0.005877 0.4483 5.473e-05 0.005015 0.000257 0.167 0.00115 0.0845 0.005317 0.07846 0.0002987 4.687e-05 0.006545 0.007912 0.001837 0.0004711 1.343e-05 3.893e-06 0.5519 0.001429 0.003058 0.5831 0.008932 2.692e-06 0.0006684 0.174 0.02962 0.0008443 0.00281 7.37e-06 0.004893 0.02661 0.0004456 0.0005177 8.751e-06 0.001205 0.0205 0.5418 0.0006052 0.001851 0.0003492 0.5861 0.001005 0.5541 0.005737 0.5728 0.002291 3.582e-05 0.03105 0.04389 0.5488 0.006614 0.001484 9.303e-06 0.007923 0.004037 0.007314 0.5709 0.01438 4.068e-05 1.022e-05 0.3233 0.5879 0.004999 3.599e-06 0.003859 0.001486 0.0004695 0.001717 0.5133 5.037e-05 1.275e-05 5.983e-06 1.088e-05 0.003327 0.0002519 0.5159 0.00178 0.007544 0.5631 0.0002163 0.0006675 6.596e-06 0.00136 7.169e-05 0.001735 0.426 0.00423 0.007685 0.01209 0.007821 0.00265 0.00737 0.005844 6.959e-05 0.02549 0.0008063 0.6254 7.494e-06 0.003583 9.978e-05 0.005494 0.4198 0.0205 0.0001786 0.004458 0.0001959 3.426e-05 0.05876 0.002312 0.0005557 0.01013 0.003246 0.6396 0.00562 0.0005303 0.0001839 0.005456 0.04317 0.0001341 0.6496 0.4101 0.001194 7.291e-06 0.002095 0.003446 0.1532 0.007054 0.0517 0.0629 3.69e-05 0.584 0.002447 0.00175 0.0002827 0.4454 0.006102 0.002218 9.293e-05 0.003319 0.002451 0.003534 0.006385 0.5725 0.01713 0.01258 0.001905 0.01829 0.009604 0.0006077 0.5713 0.001611 0.006507 0.01366 0.6095 0.0006737 0.008557 0.002132 0.0001938 0.0002467 0.00114 4.166e-06 0.0005665 0.003105 0.02099 0.1338 0.3898 0.3898 0.001769 0.004977 0.009009 2.168e-05 0.5615 0.0006445 0.002406 0.00465 0.003124 0.004277 0.001598 0.0001594 0.005208 0.3015 0.5879 0.2275 0.002466 0.003479 0.0002623 0.0003714 0.5677 0.5676 0.5919 7.347e-06 0.009264 0.5595 0.5804 0.3152 0.101 0.005804 0.0004072 0.5033 4.938e-06 0.003886 0.00825 0.3169 0.0004582 0.03017 0.01612 5.604e-06 7.058e-05 0.008526 0.003944 0.02776 0.5673 4.144e-05 0.1021 6.504e-06 0.00686 9.141e-06 0.003459 0.00456 0.01248 0.000634 8.431e-06 6.786e-06 0.01427 0.6313 0.1465 7.287e-06 6.47e-09 0.001981 0.0005216 4.387e-05 0.000152 0.0001423 0.0002165 0.003638 0.001484 0.01577 0.005022 0.5723 0.01159 0.004323 0.003398 0.0009162 0.002315 0.0004787 0.003195 0.0001075 0.3099 7.061e-06 0.0004702 3.208e-05 0.0004581 0.0008339 9.299e-05 0.0006276 1.445e-05 0.003854 0.2855 0.001636 0.1475 0.3985 8.24e-06 0.00154 0.007919 7.21e-05 0.0001931 2.117e-06 0.004226 0.001373 0.0007762 0.02899 0.5996 0.001686 0.0005583 0.0008741 0.3385 4.12e-05 0.0621 7.333e-06 0.07102 0.002218 0.117 0.0008606 0.0005456 0.03135 5.282e-06 0.5199 0.4782 0.0003309 0.01032 0.0001596 1.427e-05 0.01031 5.379e-05 0.004564 0.0001561 0.00155 8.094e-06 0.5695 0.00144 0.0004081 0.001334 0.5228 0.001794 9.88e-05 1.557e-05 5.601e-05 0.5724 4.756e-05 0.0008597 0.001443 0.01349 8.605e-05 0.0001702 7.291e-05 0.003437 0.001738 0.0364 0.02287 0.003841 6.082e-05 0.00118 0.0006093 0.006452 0.004918 0.5607 0.02524 0.007323 0.09486 0.0005205 0.004439 0.0006846 0.0001638 0.006025 0.0006291 0.001792 0.02614 0.01419 0.0002757 8.379e-06 0.0003457 0.005575 3.728e-06 7.043e-05 0.0001172 0.03721 0.0007125 0.00311 0.0003084 0.01202 0.000227 1.3e-05 0.001875 0.0004965 0.006155 5.501e-06 0.4691 0.0002795 0.003683 0.3661 3.72e-05 6.272e-05 0.0005643 0.002402 0.3902 0.001138 1.08e-05 0.001715 9.946e-06 0.000925 0.03805 0.0009595 0.005582 0.0002826 0.0001074 0.004439 4.477e-05 0.003166 0.004341 0.001798 0.002887 0.003059 0.0006719 0.1038 0.02459 1.615e-05 0.001416 0.003734 0.004162 0.0008619 0.001558 0.0134 1.751e-05 0.1439 0.02339 0.005415 0.02401 0.0003699 0.01704 0.001976 0.07108 9.384e-06 0.0016 0.001163 0.0433 0.0009407 0.007552 9.781e-06 0.3214 0.0004319 0.001611 0.01029 0.003629 0.4145 0.004339 5.352e-05 0.0006403 0.06002 0.004175 0.001339 0.0003042 0.06917 3.074e-05 0.0006626 4.992e-06 0.02956 0.00279 0.05608 0.001939 0.0003533 0.001754 0.005272 0.02781 0.01761 0.002812 0.006573 0.00125 0.001195 0.004342 3.21e-07 0.002235 0.004437 1.16e-05 0.0002905 0.003181 0.5096 0.0006601 2.137e-05 0.01226 0.001318 0.001109 0.0009976 0.004749 0.002616 0.5394 0.3395 0.0009748 0.0004024 0.02788 0.0003102 0.01675 0.001244 0.001897 0.3481 0.0003053 2.27e-05 0.005298 0.001066 0.0003524 0.004795 0.00476 0.0009293 0.0009511 0.000282 0.0002783 0.0007717 0.0009485 0.01453 1.368e-05 0.001877 0.001692 0.4741 0.0005702 0.003936 3.643e-06 0.6333 0.0004968 0.0009144 0.01169 0.5738 0.06771 0.008065 0.06364 0.002776 0.002195 0.6022 0.004242 0.004676 0.0003226 9.464e-06 0.002403 0.5454 6.566e-06 0.0009847 0.0003787 0.00643 0.003281 0.03555 0.0003631 0.4068 0.4087 0.005911 2.712e-06 0.05753 0.0006392 9.001e-05 0.5619 0.3701 0.002659 0.002955 0.3146 5.033e-06 4.838e-05 0.5258 0.009772 4.695e-06 0.0005422 0.005166 0.006627 0.0778 1.401e-05 0.0001333 0.002902 5.514e-06 8.065e-06 0.002099 0.000699 0.04082 0.02498 0.005105 0.1104 0.0007804 0.5663 0.005437 0.0005826 0.006499 0.001265 0.001413 2.345e-06 0.03004 0.04429 0.003963 0.001976 0.01194 0.0147 1.385e-05 0.4413 0.0007687 1.379e-05 6.074e-05 7.41e-06 0.003701 5.548e-06 9.095e-05 0.01452 0.002441 4.022e-06 0.5243 0.07127 0.2492 0.5575 0.003832 1.184e-05 0.0004326 0.03345 0.007275 0.001726 0.0009259 0.01367 0.005443 0.001592 0.002078 0.0004106 0.00446 0.002977 0.02216 0.002227 0.0008587 0.5392 4.909e-06 4.651e-06 0.001938 0.001643 0.1328 0.001252 0.002404 2.976e-06 0.5873 0.001345 0.002109 0.01076 0.01311 0.002196 0.002403 0.0002018 3.613e-05 0.006758 0.002346 0.4155 0.1197 0.009278 2.936e-05 0.1257 0.5719 7.315e-05 1.167e-05 0.0243 0.006729 1.857e-05 7.613e-05 0.06678 0.1652 0.002689 0.001459 0.003526 0.004365 0.008214 0.044 0.4082 5.389e-05 0.4243 0.0001566 0.01384 0.4073 7.398e-06 6.296e-05 0.0003118 0.01377 0.01102 0.003293 4.325e-06 0.0003359 1.077e-05 0.01222 0.6411 1.086e-05 3.224e-05 0.0001079 0.005691 0.2808 0.001409 0.0003376 0.002537 0.02039 0.00552 0.001229 0.4793 0.0002473 0.004466 0.0005099 0.0001252 0.01394 0.556 0.5746 0.0007861 0.004905 1.135e-05 0.01192 7.208e-06 2.734e-06 7.348e-06 0.4005 0.02985 0.5699 0.01686 0.02841 0.153 0.3908 0.0002494 0.0007248 0.5771 0.3788 0.01408 4.39e-06 0.0009542 7.256e-05 0.5101 0.0002221 0.002523 0.0002 0.5695 0.000972 0.0002495 0.003796 0.008634 4.995e-06 0.002501 3.534e-05 0.0004029 0.006664 0.0001335 3.666e-05 0.002113 0.01864 0.0151 6.788e-06 1.232e-05 0.0002929 0.5303 0.002409 0.003994 1.261e-05 4.153e-05 0.01036 0.002545 0.006614 0.006985 0.5612 0.0003267 0.02973 0.002303 0.3331 0.009834 0.0002261 0.4917 0.006328 0.005054 0.001596 4.656e-05 0.02801 0.007327 0.000738 8.575e-06 0.02811 0.0007191 6.696e-06 0.008074 0.005395 4.56e-05 0.0001073 0.01966 4.443e-05 0.06083 0.0066 4.481e-05 0.0001219 6.033e-06 0.0007681 0.4854 0.002707 0.0005067 0.01289 0.002264 0.001912 0.5997 0.005211 0.002263 0.000461 0.0009568 0.0002177 0.000279 0.000396 6.758e-06 0.006938 0.001498 0.008563 0.4743 0.5699 0.004126 0.009255 0.004419 2.588e-05 0.0002573 0.1487 0.004616 0.00161 0.01517 0.1993 0.002337 0.0003761 0.002524 0.002308 0.09336 0.1353 0.003725 0.0199 0.0003393 0.04945 6.084e-05 0.5565 0.00102 9.625e-05 0.001954 0.001658 0.0002862 0.3817 0.0006865 0.02072 0.001744 0.001202 8.587e-06 0.002027 0.5677 0.004075 0.0002139 9.345e-05 0.007344 0.00394 0.002599 0.0007568 0.0009766 7.989e-06 0.0001347 0.05151 1.302e-05 0.005885 0.001119 0.003373 0.001809 0.02952 0.03409 0.2695 0.00153 0.0008462 5.163e-05 0.001239 0.02573 0.0002381 0.01604 3.167e-06 0.006378 3.144e-06 0.001411 3.88e-06 0.01791 0.0005131 3.52e-06 0.004793 7.072e-05 0.003457 0.0006431 0.5745 0.01747 0.4042 0.006588 0.01752 0.001899 0.0003663 6.6e-06 0.001887 0.007612 0.005904 0.0001225 0.2412 0.006635 0.4167 0.5642 3.542e-06 0.02193 0.0223 7.24e-05 0.06641 0.001089 5.345e-06 0.0002009 0.008258 0.002054 0.0002716 0.01282 0.003928 4.382e-05 0.4533 6.725e-06 0.0001568 5.57e-06 0.00314 0.02017 0.004366 0.004702 0.003233 0.000804 0.002134 2.863e-05 0.003513 0.002849 7.871e-06 9.764e-06 0.001488 0.0004556 0.005984 0.001959 0.00191 0.1959 0.006806 0.02312 0.546 0.001929 0.0007605 0.1054 5.951e-06 0.00604 0.002964 0.003646 0.009836 0.004552 6.995e-06 0.000234 0.0006371 0.5608 5.296e-06 0.04629 0.5518 4.707e-06 0.0437 0.001299 0.009032 0.3564 1.325e-05 0.0007712 0.0004449 0.01442 0.2496 0.007076 0.02676 0.006791 0.0005019 0.001781 0.005087 0.3907 2.243e-05 0.007277 6.554e-05 7.428e-06 0.002926 0.002492 0.003979 0.003574 7.569e-06 0.01136 0.0004712 0.009339 0.0003758 0.001262 3.141e-06 0.07355 0.004881 6.132e-06 0.0002731 0.04642 9.065e-05 7.084e-06 0.01297 0.001547 0.007726 0.5482 0.05589 0.000415 0.0005295 0.003435 0.008715 0.1116 0.03217 0.02226 0.003899 0.5695 0.0009893 8.865e-05 0.0489 6.309e-06 6.901e-06 0.0003722 5.071e-06 0.5358 0.0009493 0.0002191 9.653e-06 0.000629 0.001894 0.003755 0.01833 0.002951 0.004361 0.01864 0.00233 0.001436 0.003108 0.00158 1.994e-05 0.001204 0.02391 0.005592 0.001382 4.57e-06 0.002692 8.16e-06 0.003607 0.001557 0.003534 0.007737 0.01868 0.0005726 1.521e-05 0.01643 0.02456 0.2596 0.003875 0.004584 0.3601 0.0003501 0.008933 5.838e-06 0.001352 0.008895 0.000683 0.4078 0.001273 0.02257 8.769e-05 0.5679 0.0008416 0.000203 0.003305 0.006126 0.00221 0.01562 0.004686 0.00139 1.166e-08 0.0001049 4.911e-06 0.0005202 0.0008638 0.000633 0.04273 0.06345 0.001102 4.256e-06 0.005941 0.0145 0.5707 0.5387 5.331e-06 0.007637 0.004676 4.981e-06 6.873e-05 0.005083 0.00284 0.00234 6.268e-06 0.1043 0.003574 5.847e-05 0.0005483 0.001696 0.5702 0.003749 4.885e-06 0.03606 0.0007055 0.5819 2.541e-05 0.02008 0.008251 0.0009359 0.1094 0.00408 7.586e-06 7.136e-06 0.004065 0.02848 0.6661 0.2346 0.009189 0.5005 0.0006651 0.001997 0.0113 5.394e-06 0.0007721 0.6337 0.0001511 0.009132 0.01571 3.807e-05 0.0002496 0.5708 0.01511 0.614 0.01201 0.0005197 0.5628 0.0001173 0.015 5.354e-06 0.004334 0.005444 6.755e-05 0.004138 0.0001199 0.0002232 0.573 0.0004507 6.312e-06 2.541e-05 0.5099 0.00685 0.008061 0.01985 0.001524 0.004177 7.126e-05 0.002261 0.002188 0.000649 0.001615 0.0009229 0.02722 0.002662 3.793e-05 0.01214 0.02326 0.000227 0.00306 0.3133 0.005115 0.02713 0.008508 0.0009754 0.3798 0.284 0.002486 5.988e-05 0.002494 0.009681 0.1019 0.001922 0.003295 0.282 4.559e-06 0.003791 0.003879 3.463e-06 0.0001701 0.004986 0.001994 0.0002943 0.00204 0.0001065 0.01334 0.000524 0.5378 3.588e-05 0.003641 5.864e-05 0.001334 0.3467 5.856e-05 0.0002382 0.001791 1.104e-05 0.003279 0.0001773 0.0003687 0.001925 0.0006732 0.01137 3.825e-06 0.0001506 0.0005031 0.003377 0.001118 0.0006315 0.5595 0.01034 0.0009956 0.01016 1.874e-05 0.545 0.0008883 0.008156 0.4748 0.00556 0.6158 0.002004 0.004943 5.822e-06 0.001738 0.4014 0.002604 5.498e-06 0.002154 4.564e-06 0.01246 0.5397 0.0001334 0.0007957 0.01206 0.0002083 0.5686 0.5464 0.5718 0.000873 6.543e-05 3.785e-06 0.0005731 0.3657 8.466e-06 0.001157 0.003905 0.0016 0.0008483 0.001418 0.04651 5.696e-06 0.004087 0.5813 0.006092 1.098e-05 0.0004146 0.0009638 0.005249 0.2201 8.028e-06 0.008748 0.0002604 0.05766 0.001043 5.076e-06 0.0001012 0.3769 0.5712 0.0002667 6.107e-05 0.0005659 0.01057 0.001977 0.002426 0.001863 0.000722 8.048e-06 0.03388 0.001469 0.07828 0.00594 0.01115 0.416 5.302e-06 0.001582 0.006637 0.001255 0.0003633 6.399e-06 0.2563 0.0007591 0.008293 0.0001701 0.001638 0.001361 0.3542 0.4103 0.003849 0.0002125 0.001409 8.868e-06 0.009464 0.004886 0.0001281 0.03842 0.004785 0.1653 0.0003043 0.0006184 6.356e-06 4.721e-06 0.191 0.5784 0.0007685 0.2755 0.0001873 3.023e-05 0.006624 0.5589 0.002033 0.00423 0.001696 0.06715 0.001147 3.903e-06 0.000122 0.2264 0.004023 0.00115 0.003688 0.5204 0.1763 6.577e-05 0.02538 0.0009624 0.5688 0.137 0.002488 0.0007242 0.0005456 0.001307 0.004711 0.1147 0.006494 0.5689 5.909e-05 7.509e-06 1.84e-05 0.004351 0.1183 0.0001267 0.001527 0.0002475 0.5768 0.00609 0.3659 0.00792 0.001912 0.001476 0.03403 0.007255 0.65 0.001752 0.0002624 0.001625 0.001009 0.0005731 0.0001973 0.004001 5.924e-05 6.182e-06 0.04124 0.0001131 0.00558 0.01406 0.002921 7.843e-06 0.03949 0.01053 0.003476 0.3701 0.0611 0.003125 0.004605 0.00324 0.5362 0.0002968 0.00168 0.4311 0.5663 0.000522 0.007279 0.0568 0.2679 0.0002327 0.0851 1.296e-05 5.948e-06 4.802e-05 0.0002874 0.001611 0.0002839 0.1472 0.3489 0.5573 0.004239 0.004995 0.5456 0.03964 0.004464 0.0003073 0.1025 7.528e-05 2.649e-06 0.5161 5.629e-06 0.001757 0.004773 0.01019 0.5652 0.01224 1.079e-05 0.3618 0.004183 0.001516 0.0004828 8.422e-05 0.0372 0.0002713 0.002221 0.0002967 0.001198 0.3312 9.781e-05 0.00495 0.02313 0.3917 0.6595 6.461e-06 7.957e-05 0.5604 0.02948 0.005777 0.00839 0.0006216 0.001042 0.00483 0.552 1.961e-05 4.562e-06 0.00384 0.4517 0.0006073 0.0003481 0.008956 0.5702 0.0005103 3.525e-05 0.0001667 0.5061 0.001503 0.001339 0.5753 0.004888 0.0007708 0.0003624 0.0009982 0.001139 0.4471 0.003943 0.3197 0.002268 7.391e-07 0.003 0.003641 0.004906 0.355 0.3308 0.008625 0.003253 0.007896 0.003767 0.06671 0.0006779 0.04811 0.01237 0.0002534 0.4129 0.4233 0.07111 0.002802 0.0007574 0.001785 0.002586 0.00976 0.0003439 0.006326 0.008267 0.3721 0.0007271 0.0005474 0.01591 0.004431 0.006309 0.4361 0.001809 0.4134 0.00175 4.575e-05 7.77e-06 0.4744 5.731e-06 0.0003416 0.002769 0.0071 0.3932 0.3855 0.5429 0.5617 9.614e-06 0.05558 7.149e-05 2.499e-06 9.6e-06 0.3134 0.05241 0.001818 0.06763 0.0057 0.5708 7.062e-06 0.00238 0.009584 0.001698 0.59 0.0003923 0.0736 4.912e-06 0.004365 0.5658 0.5681 8.289e-06 0.001735 0.4072 0.164 0.0464 0.00069 0.01962 0.001292 0.002587 0.00106 0.00108 0.002354 0.0005214 0.007102 0.001599 0.002631 0.00193 0.5647 0.006377 0.0002191 0.005328 0.0002533 0.003318 0.001963 0.01396 1.468e-05 0.004004 0.00218 4.812e-06 0.0005513 1.169e-05 5.946e-06 0.006773 1.13e-05 0.01777 0.0187 0.3288 4.456e-06 0.0008261 0.0007675 3.148e-05 0.01244 0.6154 0.002683 0.03101 0.5845 0.002945 0.005526 0.005094 0.0002691 0.6663 1.353e-05 0.6324 0.001003 0.0006485 0.563 0.001048 0.01818 0.6489 0.5504 0.001814 0.05919 0.03146 0.5621 3.871e-06 0.001989 0.4216 0.005127 0.4534 4.116e-06 0.002766 0.02562 0.0003151 0.002138 0.01737 0.001932 0.001766 0.1629 7.577e-05 0.0008109 0.004463 0.002287 5.698e-05 0.0004736 0.008546 7.226e-05 0.0001408 0.5556 4.558e-05 0.001125 0.005168 0.00882 0.002111 0.007885 0.002657 0.002677 0.01895 0.05741 0.002391 0.005653 0.0001911 1.676e-05 0.342 0.05477 0.01037 7.042e-06 0.007876 0.001341 0.07081 0.0004061 9.495e-05 0.004824 0.003807 0.002186 0.4936 0.5721 0.0121 0.0006333 0.5519 0.002496 0.0026 0.003315 0.01913 0.001164 0.0007513 0.5683 0.5515 6.588e-06 0.06584 0.0004822 0.002077 0.0003289 0.08201 0.0001854 0.007757 0.006779 0.001996 3.297e-05 0.009033 0.02622 0.001732 0.0162 7.859e-06 6.86e-05 0.0004357 0.5878 6.959e-06 0.004005 5.904e-06 0.002071 0.02243 0.002822 0.00413 0.0001713 0.0007164 0.003413 0.5874 5.555e-06 0.009204 0.005176 0.00062 0.1055 0.1561 0.1382 0.0001541 0.02117 9.545e-05 0.08162 0.000415 0.6037 0.01258 0.5663 0.581 0.02005 0.2966 0.5218 0.004397 0.000946 0.02427 0.0004378 0.005824 0.0008358 0.004837 0.001967 0.007434 7.294e-05 0.005931 0.0002 0.5511 0.0005279 0.004162 0.6327 6.43e-06 0.003198 0.2279 0.001992 0.005104 0.005111 4.863e-06 0.005869 0.02512 0.01433 0.01055 0.001371 5.935e-06 0.0008152 0.01306 0.002166 0.0001613 0.001036 0.003877 0.01605 0.0002153 0.3592 0.007623 0.5771 6.429e-06 6.51e-06 0.4176 0.4175 0.003176 4.93e-06 0.172 4.4e-05 0.002605 0.09622 0.001597 4.286e-05 0.006877 0.002587 0.00123 0.04055 0.01901 0.3829 0.004012 0.02255 0.5731 0.002314 0.0006183 6.934e-06 0.008041 0.00177 0.02365 0.008313 0.2145 0.007076 0.0002022 0.04246 0.07331 0.003838 8.094e-06 0.009904 9.55e-05 0.458 0.001887 0.007567 0.3464 1.229e-05 0.0003009 0.0002449 5.711e-05 0.1056 0.002715 4.236e-06 0.000264 0.004372 9.354e-06 0.01325 0.5523 0.001167 0.0003587 0.5564 0.1056 0.0009855 0.0002845 0.002146 0.004357 0.0004321 0.001767 0.001308 0.0003459 0.008296 0.0004239 0.001754 0.0001326 0.01271 0.002541 0.01386 0.09145 0.0005466 0.01113 0.1082 0.00769 6.523e-06 8.777e-06 6.217e-06 0.5476 0.0008374 0.003233 0.4354 0.0003136 0.01349 3.343e-05 0.6265 9.457e-06 0.000743 0.004063 0.002162 0.0002779 0.000287 0.002881 9.566e-05 0.05092 0.003082 6.114e-06 0.2644 0.002503 0.0002578 0.00363 0.3859 0.07629 0.0007991 0.01628 0.5836 0.0002577 0.002896 0.5744 0.0007761 0.004329 0.001798 5.828e-05 0.001069 0.0002089 1.514e-05 0.002103 0.001445 0.006166 0.001231 0.2997 0.002581 0.004384 7.437e-06 0.002386 0.6005 0.1328 0.01431 0.004555 0.002699 0.1071 0.0009535 0.001514 0.0001408 0.001574 2.872e-06 0.0003464 0.02771 0.5777 6.271e-06 0.03983 0.567 0.000781 0.0007087 4.399e-06 0.002254 0.04658 0.08138 0.0006615 4.784e-09 0.004498 0.004337 0.0009079 0.02693 0.001684 0.0005712 0.01224 0.002806 0.5122 6.213e-05 0.509 0.536 8.759e-06 0.001807 0.001359 0.002354 0.0002105 0.007566 0.003212 0.001597 0.0002116 0.001004 0.0008012 4.238e-05 7.162e-06 0.4196 0.0001843 0.005351 0.0004743 0.002579 5.152e-06 6.024e-06 0.00059 0.001805 0.003719 0.009381 0.0001491 0.01062 0.001468 0.0002726 0.007533 0.1645 0.0004569 0.001136 0.003892 0.5464 0.000349 7.972e-06 0.01095 0.004855 0.0007398 0.0003985 0.5707 0.01922 0.001049 0.0005206 0.01223 0.000977 1.534e-06 0.0003586 0.0001735 0.4989 0.0003546 0.008587 0.01707 0.0106 5.83e-06 0.003214 0.3875 0.005119 0.02667 0.01096 0.001695 2.358e-08 0.0005804 0.0007109 0.5115 0.0001317 0.0001907 0.004788 0.3225 0.000288 0.0007073 0.5139 0.0001097 0.002111 0.0007841 0.0001702 0.5354 0.1616 0.001258 0.004141 0.0003975 0.0005629 0.4104 0.0001999 0.00317 0.00422 0.02088 0.001225 0.0007382 0.008925 0.6125 0.001905 1.448e-06 0.0001561 0.00219 0.004782 5.059e-06 0.6064 0.004455 0.4134 0.003169 0.01032 0.002134 0.0006696 0.0006377 0.002123 0.003244 0.01967 0.02991 0.005309 0.001384 0.005697 0.01614 6.383e-06 0.0002788 0.001714 0.003513 0.03052 0.07733 0.5642 0.01065 0.0006859 0.0009468 0.003546 0.002601 0.02147 0.01287 0.0002893 0.001635 3.84e-05 0.006123 0.001446 0.002198 3.136e-06 0.5705 0.0009927 0.01554 0.003507 2.691e-06 0.6237 0.5828 0.0127 0.00384 6.118e-06 0.3686 0.005838 0.02634 0.0001248 0.00652 0.0001921 0.0009628 0.004886 0.002602 0.0003486 0.05638 0.1349 0.03338 0.002962 0.1861 0.02311 0.002014 1.322e-05 0.04739 5.022e-05 0.00652 0.04127 0.0001081 0.0008409 0.0001007 8.325e-05 0.003063 0.0007635 0.001171 0.05555 7.441e-06 0.000405 0.0009997 0.5173 6.266e-06 0.001782 3.905e-05 0.007868 0.01267 0.0003257 0.0001096 0.001321 0.0006718 0.003367 0.000434 0.01927 0.1074 0.001945 0.0002405 0.001063 0.01141 0.0008913 0.0002109 0.0004944 0.01432 0.02096 0.1407 0.007085 0.009403 0.3568 0.002542 0.001633 0.0005676 0.00256 0.5736 0.0006332 0.0007652 0.4176 0.006656 0.002311 0.1046 0.4402 0.5399 0.002445 0.0005473 0.002184 5.146e-06 3.917e-05 0.008048 0.001982 0.000742 0.001709 0.009498 0.0004999 0.009919 2.359e-05 0.04939 0.0017 0.0002515 0.003569 0.1248 0.431 0.005937 0.008514 9.259e-05 0.001328 0.0006603 7.341e-06 1.788e-06 0.00157 6.774e-06 0.02142 7.654e-06 0.5138 9.538e-05 0.001125 0.00492 0.02555 0.000206 0.4399 0.0001547 0.2962 0.000349 0.0006146 0.000227 0.0003096 0.0003485 0.001752 4.958e-05 0.00175 0.0002726 0.002793 0.00309 0.0003669 0.0006237 5.213e-05 0.0001257 0.5752 9.066e-06 5.788e-05 0.0007148 0.001457 0.003728 0.00323 0.01166 0.007898 0.0007235 0.004078 0.2385 0.07954 0.001569 0.01488 0.001309 0.0005021 7.189e-06 3.525e-05 0.4778 0.001404 0.0001784 0.0008899 0.0005247 0.004967 0.5723 0.008092 0.00172 0.1206 0.0005615 0.01586 0.3413 0.1888 4.744e-05 8.511e-05 0.008974 0.007396 0.4055 0.003301 0.04033 0.0008318 0.001757 0.5746 0.1726 0.0004371 0.3961 3.059e-06 0.009982 0.3119 0.03399 0.00103 0.0004044 0.08484 6.549e-06 0.002068 7.265e-06 0.001874 0.01141 4.829e-06 0.006122 0.6666 0.01733 3.795e-05 0.06829 0.002373 0.001225 0.0008995 0.001833 0.4328 0.0002834 0.01165 0.00629 0.3971 0.3996 0.008734 0.0006859 0.01016 0.0001466 0.004128 0.00702 2.3e-06 0.001472 0.002309 0.06134 0.5613 0.5697 0.0005846 0.02865 0.5704 3.258e-05 0.001526 0.3035 0.008742 0.3604 0.3678 0.002899 0.003082 0.05382 0.08306 0.0001753 0.05849 0.03254 1.024e-05 0.0003404 0.0007469 0.000716 0.02975 0.0004187 0.5766 0.5973 0.002478 0.002148 0.3766 0.3777 8.164e-05 0.1126 0.004395 0.007905 0.0005294 1.593e-07 0.0005313 1.933e-05 0.0008077 0.007219 0.006649 6.062e-05 0.0006227 0.004182 0.037 0.002603 0.005234 0.511 0.0004688 0.001225 0.008917 0.00684 0.003525 7.342e-06 0.008306 0.4802 0.01188 0.4381 6.299e-05 0.02165 0.1186 7.066e-06 0.01086 0.6361 0.0004692 0.007673 0.3911 0.009243 0.0006361 1.051e-05 0.01169 0.6448 0.008892 0.0003063 0.007825 0.001899 0.00295 0.0001454 0.000289 0.007028 0.002729 0.003912 1.203e-06 0.001038 0.007484 0.002619 0.006903 7.141e-05 0.003979 0.0009404 0.005397 0.0001584 0.5925 0.0006731 0.008164 0.02707 0.0003096 0.01167 0.0002919 0.009818 2.792e-06 0.5127 0.04061 0.3407 0.003203 0.01262 8.431e-05 0.0004352 0.5355 0.02465 2.89e-06 0.007387 0.001231 1.749e-06 0.0006294 0.002961 0.1665 0.567 0.6521 0.00834 0.006197 0.0004511 0.0009426 0.4897 0.001358 0.01392 7.832e-05 0.04512 8.408e-06 0.1981 0.004265 0.0008328 0.005259 0.00299 0.5676 0.01333 0.595 0.001939 0.0002558 0.002273 0.4562 0.005462 0.0009446 6.282e-05 0.01797 5.861e-05 0.02047 0.0003355 0.001499 0.001094 7.094e-06 0.01605 0.5725 0.485 0.000231 0.0003221 0.005242 8.718e-06 0.001806 0.003299 0.002145 0.4049 0.1577 7.797e-05 0.04692 0.4459 0.0005843 0.07997 0.001406 0.0001052 0.004562 0.0002376 0.001103 0.592 0.005107 0.0001034 9.338e-06 0.0007154 0.008259 3.624e-06 0.004816 0.5868 0.0426 0.008058 0.01028 0.05639 0.001437 0.01369 0.01534 0.4938 0.007641 0.0002657 0.03166 0.0006866 0.06219 0.001629 0.002217 7.873e-05 0.0004246 0.004655 0.001432 0.006905 0.00135 0.003761 0.002614 0.005362 0.01969 0.0003366 0.0005357 0.0709 0.4069 0.4971 0.002837 0.003908 0.0455 0.000779 0.01801 0.000739 0.009041 0.006769 0.0024 0.0001896 0.001299 0.004471 0.004863 0.01524 0.001892 0.0002469 0.004226 0.002742 0.01095 0.01602 0.002224 0.002787 0.2549 0.0009898 0.001608 0.006144 0.009703 0.01867 0.001629 0.003983 0.5726 0.005354 0.0007427 0.02036 0.002413 0.003301 0.5903 0.001768 0.001448 0.0004076 0.008683 0.004665 0.2332 0.02237 0.3095 0.3147 0.0164 0.001941 0.0003539 0.03429 0.002313 0.004697 0.4424 0.0003611 0.05357 0.00561 0.03364 6.415e-06 0.0001424 1.09e-05 0.008397 0.003332 0.09297 0.3923 0.4162 0.4157 0.03669 0.07411 0.4178 0.5103 4.297e-06 0.4527 0.5305 0.002863 0.001522 0.003273 0.005517 0.0004023 0.0001489 0.06911 0.01423 0.06049 0.0007659 0.002648 0.005349 0.002993 7.654e-05 0.1517 0.01247 0.002642 0.0006036 0.5971 6.834e-05 0.002699 0.0032 4.753e-05 0.005544 0.004984 0.5859 4.329e-06 0.006158 0.005425 0.5747 0.001005 0.00662 0.01251 0.5492 0.0004331 0.001907 0.008464 0.002313 0.0003835 0.01115 0.0005834 0.01389 0.3363 0.002326 0.00203 3.46e-06 0.001301 0.002252 0.002685 0.04986 0.000322 0.0007976 0.000214 3.154e-06 0.008859 0.0002152 0.009063 0.00184 0.003436 0.0002261 0.5681 0.4064 0.001882 7.475e-05 0.006137 0.08172 0.008003 0.3218 0.001149 0.0001658 0.00393 0.558 0.0002718 4.8e-05 0.0001992 0.002882 0.00104 0.09795 0.08301 0.5877 0.03605 0.0003299 0.0006885 0.002833 0.007414 0.007596 0.0002119 0.5707 0.01395 0.004853 0.22 0.006387 0.008615 0.003348 0.000689 0.0006182 0.001315 0.01035 0.002859 0.1724 5.209e-05 0.02831 5.484e-05 0.0001912 0.0007338 0.007941 0.0004833 0.001329 0.002867 0.5769 2.378e-05 0.04161 0.000401 0.0001784 0.0007877 0.0001663 0.02516 0.0005597 5.615e-05 0.003396 0.0006365 0.5693 0.07052 0.01569 0.0007433 0.1275 0.01495 0.02678 0.5809 0.06393 2.375e-07 0.000716 0.06451 0.01165 4.847e-06 0.005012 0.0007407 0.001188 0.000169 0.009164 4.517e-05 0.004043 0.2942 2.997e-05 0.006518 0.005017 0.5885 0.0001559 0.0002239 8.813e-05 0.0001869 0.001244 0.0001306 0.006484 0.0003834 0.0008932 0.01713 0.007103 0.0008895 0.005816 0.5974 0.02164 0.001348 0.5312 0.01054 0.01318 0.0004981 0.0007182 0.002634 0.005317 0.001229 0.00887 0.001161 0.0001693 0.003455 0.001239 0.14 0.0004275 0.0003066 0.586 0.0129 0.008701 0.08609 0.02508 0.003255 0.004649 0.0002963 6.21e-05 0.01225 0.0002109 0.5763 0.07237 0.007927 0.003348 0.6206 6.208e-05 0.02217 0.5446 0.009505 0.0167 1.853e-05 0.0005956 9.986e-05 0.001149 0.0003054 0.002175 0.1316 0.003626 0.04824 4.546e-05 0.5795 0.001035 0.001898 2.331e-06 0.1007 0.004883 3.479e-05 0.002203 0.003725 0.3392 0.3373 6.788e-05 0.004915 1.309e-05 0.0003025 0.3882 0.003913 2.973e-06 0.01223 0.005728 0.001835 0.006165 0.0001296 3.234e-05 0.564 0.004946 0.001704 0.001805 0.0997 0.003512 0.09063 0.01716 2.855e-05 0.004028 0.0008206 0.01022 0.007666 0.01653 0.0002365 0.0003705 0.001239 0.0004944 0.00975 1.009e-05 0.0002287 0.009345 0.0001558 0.005231 0.00276 0.008912 0.007039 0.001223 0.003942 0.007715 0.004815 0.001004 0.4703 0.00337 3.592e-05 0.3151 0.2603 0.004527 4.781e-05 0.01778 4.706e-06 0.003258 0.01099 0.0005852 0.5729 0.001388 0.001839 0.3187 0.03892 0.007744 0.001853 0.0001496 0.108 0.003583 0.002001 2.719e-05 0.01065 0.0002306 1.34e-05 0.05043 4.37e-05 3.661e-05 0.577 0.004281 0.5907 0.00123 0.5689 0.002339 0.0007736 0.001497 0.00729 0.001943 0.5679 0.2499 0.007433 5.623e-06 3.456e-06 0.2182 0.0001759 0.001603 0.02569 2.691e-05 0.002524 5.641e-07 0.0005643 4.384e-05 0.005144 0.522 0.0001969 0.001807 0.004571 0.003683 0.4274 0.001688 0.007172 0.02992 0.004573 0.000262 0.5459 3.056e-06 0.565 0.02373 2.528e-06 0.00155 0.5651 0.0001701 0.009241 0.01895 0.01474 0.003964 0.001018 0.1608 0.005358 6.356e-05 0.5587 8.891e-05 0.0004597 0.0005418 0.0001487 2.756e-05 0.01055 0.001613 0.478 0.0006012 8.606e-05 0.008257 0.004406 0.0002804 0.02157 0.3632 0.0005104 0.0004989 0.08896 0.003396 0.003815 0.02 2.361e-06 0.00764 0.408 0.408 0.005684 0.0007171 0.002668 0.0008001 5.68e-05 0.002473 0.5099 0.0006537 0.006355 0.5826 0.0002576 0.004439 0.00142 0.00101 0.0104 0.006289 0.1032 3.6e-06 5.74e-05 4.87e-05 0.0006856 0.0157 0.00186 0.5627 4.617e-05 0.00732 0.0004251 1.522e-05 0.002059 0.00195 0.2631 2.813e-06 0.001416 0.5436 0.0207 0.0004191 0.0004126 0.5587 0.00291 0.006707 1.594e-05 0.008412 0.1431 2.506e-06 1.051e-05 0.01169 7.433e-06 0.008862 7.165e-05 0.0003858 6.431e-06 0.00128 3.233e-06 0.002799 0.003852 0.006702 0.006998 0.3108 0.002008 0.4302 0.001084 0.5336 0.007493 0.2272 3.304e-05 0.1247 0.0003103 0.5487 0.00492 5.455e-05 0.0002422 9.266e-05 0.0004596 0.003896 0.0001034 0.3842 0.001837 0.003147 0.008138 0.5454 0.003688 0.02155 0.0002028 0.004716 0.0004773 0.00977 0.004737 0.00209 0.0003577 0.001037 0.005241 0.002236 0.009387 0.04425 0.4796 0.0001648 0.0004559 0.001027 0.005105 0.6195 0.0008864 0.002522 0.02635 0.002232 0.3002 0.006569 0.004826 1.91e-05 0.008474 7.197e-05 4.403e-06 0.007873 0.00242 0.0003431 0.006353 0.0001593 1.177e-05 0.002678 1.142e-05 0.001787 0.06637 0.001701 0.003836 0.007122 0.01282 0.001813 0.05677 0.0002957 0.004707 0.002912 0.3875 0.007948 0.006859 0.002844 0.01508 7.192e-05 0.4086 9.658e-05 0.01251 0.005537 1.993e-05 0.0519 0.001845 0.001372 0.03836 0.0006299 0.01711 1.402e-06 0.0004986 0.007988 0.0002884 0.01396 0.005237 0.000217 0.01034 0.0002469 0.0008985 0.3124 0.006025 0.5685 0.03685 0.002149 0.01308 0.002996 0.003896 0.003401 0.1212 0.001606 0.002765 0.01034 0.02949 0.003127 0.0002559 4.999e-05 0.003797 0.001196 0.00246 0.01947 0.004228 0.01793 0.002143 0.001826 0.2501 0.002959 0.5712 0.0003634 0.000352 0.003432 0.001583 0.003474 6.962e-05 0.002209 9.689e-07 0.1857 0.002727 0.3755 0.008086 0.001024 0.5701 7.196e-05 0.001086 0.001351 0.1688 0.001205 0.4888 0.0009006 0.01456 9.347e-06 0.004767 0.004896 0.1337 0.01429 0.01073 0.001707 0.06294 0.0006912 0.003958 0.004034 0.001576 0.002991 0.002988 6.253e-05 0.0005726 1.041e-08 0.000525 0.0005655 2.736e-05 0.001844 0.001954 0.333 0.001396 0.008023 9.33e-09 2.806e-06 0.0002296 0.005831 0.0006221 0.01449 0.000561 9.326e-06 0.4584 0.03416 3.284e-06 0.001872 4.018e-05 0.01587 0.5696 0.01131 0.001297 0.01767 0.003064 0.3211 0.005617 0.571 0.6099 3.606e-05 0.0003919 0.5481 0.5678 0.001129 0.003089 9.932e-05 0.579 0.01555 0.0001926 0.003913 0.0001925 6.328e-05 0.1151 0.009331 0.00208 0.00251 0.0011 0.5508 0.0567 3.343e-08 0.00522 3.067e-05 0.007423 7.733e-05 0.003555 0.004275 0.1037 0.1577 0.01344 0.0006617 0.0208 0.5575 0.002915 3.474e-05 0.0003186 0.0006775 2.852e-05 0.0009874 0.01576 0.0002436 0.0006523 0.001439 0.000183 0.007376 6.072e-05 0.003231 0.01499 0.001319 0.007011 0.5743 4.515e-06 8.638e-05 9.602e-06 0.007362 0.3862 0.000235 0.00382 0.0004452 0.000495 0.3022 0.002446 0.0003258 0.001054 0.000262 0.002745 0.008422 0.001215 0.313 0.0012 0.1646 0.004069 0.002565 0.005726 0.0001975 0.6457 0.000166 0.003267 6.628e-05 0.001401 1.168e-06 0.002059 0.003292 0.008668 0.01542 0.02362 0.0003781 0.0001276 0.3038 0.002207 0.0125 0.001434 0.2932 0.0004903 0.0104 0.5471 0.5582 0.0004933 0.001158 0.01261 0.0006098 0.0002106 0.0007199 0.1405 0.5741 0.009843 0.03863 0.03753 0.0004924 0.0005031 0.567 0.004863 0.0008706 1.616e-06 0.5327 0.003638 0.009453 0.4116 0.01641 0.4115 0.0008899 0.003477 2.799e-06 0.0004846 0.00421 4.58e-05 0.0002756 0.008348 0.06671 0.002368 0.00192 0.5407 2.718e-06 0.002455 0.06945 0.0006476 0.1543 0.005495 0.07486 0.002783 0.0127 0.1736 0.5632 2.4e-05 0.001319 7.25e-05 0.005441 0.01254 0.01664 0.008181 0.002342 0.005738 0.4128 0.4114 0.01326 0.0004808 0.09267 0.001195 0.006654 0.001261 0.04761 0.003059 0.0003404 0.02054 0.001177 0.1817 0.02039 0.004234 0.0006106 0.01003 0.003505 0.5527 0.4079 6.012e-05 0.587 0.0004701 0.005394 0.01977 0.05205 0.003695 0.0006405 0.01391 2.712e-05 0.0004486 0.04215 0.07304 0.004812 0.0034 0.000569 0.003266 0.005675 0.00029 0.001608 8.928e-05 6.092e-05 0.03968 0.2747 0.1387 0.008382 0.00256 0.0001314 0.00896 0.02106 0.3796 0.004128 0.01552 0.0006103 0.5685 0.001628 0.001383 0.004034 0.02586 0.1293 0.002612 0.0001355 5.197e-05 0.0004054 0.004177 9.604e-05 0.001316 0.01091 0.005979 0.007122 0.2391 0.0007726 0.002382 0.005696 0.6408 0.008779 0.0005239 0.004063 0.369 0.0028 0.3847 0.004112 0.5577 0.00157 0.003113 0.1293 0.004018 0.01031 0.001812 0.0003981 0.01299 0.519 0.002857 0.001704 0.01896 0.008162 0.0002211 0.5042 5.322e-05 0.002268 0.01038 0.00113 0.0003943 0.002885 0.001416 0.0002025 1.34e-05 0.007597 1.944e-05 0.005345 0.1482 0.4597 0.02672 0.01659 1.187e-05 0.001447 0.001456 0.0001129 8.729e-05 0.3092 0.0007433 0.0007148 0.01233 0.00165 0.5711 0.01077 0.001553 0.003378 0.5989 0.0003269 0.5375 6.445e-05 0.04576 0.01755 0.5163 0.009508 0.003143 0.0006308 0.00135 0.009111 0.005374 0.0007354 0.0006592 0.6345 0.0145 0.5545 0.5589 0.01779 0.003489 0.02595 0.01381 0.5962 0.2133 6.398e-05 5.804e-05 0.0002851 0.0009014 0.0004966 0.4844 0.004424 0.01902 0.000478 0.005741 0.5677 8.856e-05 0.06333 0.2997 0.0004391 0.03763 0.001479 0.5602 0.0002944 0.6017 0.563 0.01353 0.006254 0.0002952 0.0002976 2.31e-05 0.00354 0.5539 0.001204 8.941e-05 0.3498 7.184e-05 0.01386 0.001411 0.0002085 0.001968 0.003236 0.1362 0.0001237 0.6107 0.007286 0.0001256 0.6542 0.000364 6.071e-05 0.0002848 0.04849 1.318e-05 0.164 0.01134 0.3933 0.002129 3.24e-05 0.09071 0.003148 0.004496 0.006727 0.008477 0.003933 0.003899 0.003657 0.1021 0.3958 0.002276 0.003839 0.5813 0.6266 0.5702 0.007739 0.2821 0.01229 0.0009048 0.0009193 0.002553 0.003486 0.0005175 0.4003 0.002174 0.005681 0.001635 0.0003568 0.5858 0.5124 0.02117 0.002811 0.01633 0.6087 0.005285 0.006758 0.004321 0.004373 0.3044 0.00347 0.00436 0.0004275 0.4766 0.5709 0.002075 0.01241 0.01222 0.1142 0.1877 0.01706 0.001848 0.007096 0.02799 0.007064 0.005132 0.002556 0.001576 6.687e-07 0.01195 0.001595 0.0002148 0.001086 0.001073 0.3999 0.5708 0.4621 0.6141 3.941e-05 6.64e-05 0.006793 0.00322 0.3755 0.3597 0.0007518 0.006094 0.003069 0.002579 0.007859 0.001817 0.00213 0.0005491 0.001049 0.001624 0.001759 6.9e-05 0.003734 0.005894 0.0003048 0.01352 0.0007911 0.00061 0.001583 5.724e-07 2.48e-06 0.01055 0.003796 0.5148 0.003686 0.6038 0.4842 0.4726 0.0003968 0.03486 0.5563 0.0007454 0.001241 0.3205 0.003216 0.216 0.3725 0.0002521 0.0005021 0.2043 0.000918 0.5728 0.0009677 0.004543 0.0001329 3.366e-05 0.001489 0.00195 0.001466 0.5537 0.001178 0.0004957 0.009867 0.5126 0.01097 0.5366 0.008569 0.0009621 0.005732 0.0126 0.001266 0.003338 0.1729 0.0001494 0.0008084 0.02188 0.06301 0.2379 0.01882 0.3321 0.0003079 0.0034 0.0009216 0.008664 0.556 0.0009657 0.0006006 0.0002502 0.001127 0.001452 0.0007358 0.0003287 0.5122 0.002039 0.0003828 0.001095 0.0004497 0.0003916 0.5679 0.03526 0.0003594 0.3274 4.627e-05 0.000955 0.006728 0.0002497 0.0006729 0.003857 0.01199 1.13e-06 0.009788 0.0001744 0.5195 0.1876 0.002561 0.004129 0.617 6.82e-05 0.6594 0.0004518 0.007249 0.02328 0.2678 0.0008334 0.002477 0.007411 0.00223 0.2287 0.0002749 0.01946 0.3462 0.3462 0.007526 0.001137 0.00445 9.438e-05 0.007781 0.0002663 0.0007665 0.003375 0.005299 0.01044 0.003794 0.4486 0.002949 0.5466 0.008533 0.002028 8.716e-05 0.007123 0.000159 0.001125 0.3945 0.00238 0.00149 0.002837 0.004367 0.001323 0.003007 0.0219 0.003169 0.02395 0.009201 0.02011 0.0001706 0.01185 0.003211 0.002405 0.02028 0.1241 0.5709 0.5626 0.4286 0.3806 0.0007433 0.002171 2.4e-05 1.45e-05 0.01074 2.208e-05 0.00107 0.005608 0.0004485 0.002749 0.004069 0.548 0.002074 0.01066 0.0007824 0.0009578 7.16e-05 8.318e-05 0.01331 0.3742 0.02032 0.1586 0.004724 0.5695 3.72e-06 0.0003664 0.3755 0.0003239 0.0002402 2.988e-06 0.007795 1.554e-05 0.0001927 0.000908 0.01107 4.966e-06 2.28e-05 0.0211 0.07996 0.001953 0.007002 0.0008546 0.004599 0.0001444 0.001167 1.043e-05 0.002283 0.001127 0.001203 0.02004 0.008319 0.008291 0.0003966 0.5786 0.0001509 0.02294 0.4193 0.5622 0.0001905 0.009195 0.004414 0.008802 4.555e-06 8.824e-06 4.469e-05 0.002759 0.002937 6.921e-05 0.0002075 0.003585 0.002771 0.0003637 0.5689 8.956e-05 1.765e-05 0.001066 0.0002563 0.001286 0.5756 1.177e-05 0.0004017 4.127e-05 0.0004731 0.0009731 0.001946 0.001759 0.002152 2.068e-05 0.005123 0.0005456 4.456e-05 0.3829 0.002834 5.493e-05 0.001071 0.002367 0.0002437 0.007695 0.0005092 0.005276 0.5628 0.004661 0.005848 8.984e-05 0.004845 0.0005892 9.922e-06 9.749e-05 0.007602 0.00245 0.5684 2.285e-05 9.841e-05 0.01795 0.0007608 0.0002875 0.01725 0.0004741 0.003634 0.1952 0.002414 0.002277 0.0002223 0.0006619 0.000863 0.0003323 0.0007881 0.0005686 0.003337 0.004068 0.5538 0.002987 0.003297 0.01711 0.0003148 4.05e-05 0.009228 0.5398 3.175e-05 0.001327 0.001232 0.005541 0.205 0.003346 0.0002488 0.1503 0.001753 0.005897 0.0009556 0.002077 0.001491 0.0187 0.02696 0.01521 0.00828 2.164e-05 0.2944 0.4585 8.17e-05 0.4093 0.02822 0.0005128 0.02707 0.002413 0.5267 6.149e-05 4.832e-05 0.005539 0.005802 0.0001295 0.4025 0.0002984 0.01121 0.491 0.0001183 6.897e-06 0.06948 0.001385 0.0003693 0.5347 0.007265 0.0006189 0.0006733 0.01471 0.08631 0.006265 0.5751 0.0004929 0.006841 0.0008071 0.5988 0.5455 7.245e-05 0.005131 0.02081 0.0004715 0.008786 0.002428 0.008638 0.0008859 0.000232 0.001514 0.07047 0.008094 0.5642 3.2e-05 0.006706 0.5712 0.00287 0.0003408 0.0003048 0.5548 0.0001331 0.404 0.0003355 0.561 0.004184 0.0628 0.09936 0.001618 0.007544 0.003231 0.0005202 0.09822 0.0003377 0.5697 0.002562 0.0007538 6.516e-06 2.515e-05 7.031e-05 0.0012 0.001448 0.0008138 0.0007436 0.4141 0.003295 0.01336 0.002447 0.3149 0.1057 0.001517 4.222e-05 0.6554 0.01215 0.000481 0.008614 0.004164 4.101e-05 0.0002313 0.0137 0.0006721 0.0005496 0.006063 0.0821 3.237e-06 0.001139 0.0001582 0.002815 0.0002275 0.005012 0.01591 0.03672 0.447 0.0002273 0.002385 0.01313 0.4971 0.02672 0.00186 0.0001432 0.5647 0.00331 0.2543 0.0006699 0.003545 0.002214 0.0159 0.01066 0.002695 0.4508 0.03691 0.001193 0.1038 0.083 0.008293 0.000279 0.002188 0.03012 0.001591 0.01076 0.1027 0.005959 0.007072 0.5526 0.002558 0.001797 0.00254 0.05535 0.5719 0.0001967 0.02897 0.007776 0.0002068 6.953e-05 0.5753 0.5156 0.00188 0.005192 0.05916 0.16 0.005403 8.745e-05 0.009367 0.2998 2.926e-05 0.002984 0.4605 0.06316 0.0007098 0.002694 0.03157 0.005869 0.01159 0.0007999 0.00574 0.000191 0.5754 0.0008321 0.003202 0.001539 0.0003401 0.004461 0.004895 0.002278 5.577e-05 0.0008692 0.0003068 0.5666 0.0008778 0.02006 0.005596 0.0003107 0.001493 5.94e-06 0.007562 6.413e-06 0.0003808 0.001149 0.5772 0.004545 0.01107 0.5528 0.001283 0.0001169 0.0007623 6.226e-09 0.4272 6.988e-06 0.01622 0.0008607 0.3632 0.09142 0.5726 0.00987 0.1108 0.002348 0.008307 0.0003286 0.5743 3.297e-05 0.0007556 0.001736 0.005868 0.0003437 0.01959 0.3234 0.5682 0.5691 0.000502 0.001151 0.5085 0.003663 0.01472 0.01051 0.3972 0.0002493 0.5655 0.01299 0.006888 0.07337 0.0005553 0.007009 0.5444 5.158e-05 0.003519 0.0001506 0.3452 0.5839 3.666e-05 0.0002848 0.0009573 0.0001166 0.4032 0.001003 0.00404 8.085e-06 0.001178 0.08408 0.006282 0.006951 0.000375 0.003892 0.00361 0.0001117 0.009577 6.821e-05 0.01572 6.781e-05 0.3816 0.5704 0.01361 0.0003597 5.212e-05 0.002589 0.001028 0.583 0.006509 0.02758 0.0005676 0.5588 0.0009663 0.00126 0.0377 0.0008861 0.3735 0.004776 0.0171 0.00324 0.04716 0.5781 0.007384 0.003034 0.4918 0.005408 0.04013 0.008247 0.02493 0.001042 0.0179 0.002243 0.1813 0.5706 0.05357 0.0001267 0.0004595 0.1325 0.01964 0.0002125 0.006526 0.001772 0.0007983 0.005746 0.006421 4.362e-05 5.793e-05 0.5489 0.001135 0.0004454 0.0007997 0.3316 0.006155 0.007407 0.007504 0.001644 0.006218 0.003294 0.0006114 0.5691 6.494e-05 0.02444 0.007336 0.04443 0.0001113 2.353e-05 0.01347 0.6419 0.0001314 0.3651 6.048e-05 6.262e-05 3.151e-05 5.868e-05 0.001736 0.0003871 1.025e-05 0.0004755 0.008589 0.001526 0.01919 0.001004 0.005828 0.01656 0.0001734 0.07333 0.008007 0.001023 6.155e-05 0.001393 0.001783 0.003077 0.000566 0.004283 0.0009057 0.03153 0.001898 0.3901 0.002277 0.5349 0.001116 0.002143 0.5779 0.007242 0.004579 0.008307 0.006663 0.1694 0.5584 0.001112 0.0004707 0.4542 0.09869 0.5735 0.379 0.0002107 0.001381 0.3774 0.01514 0.3836 0.00594 4.681e-07 0.01778 0.0002885 0.002317 0.4821 0.4347 0.001564 0.05878 0.009145 0.0003341 0.007806 0.0006659 0.006175 0.000374 0.001167 0.002315 0.3985 7.113e-05 0.01078 6.179e-05 0.09105 0.5372 0.01019 0.003319 0.3936 0.5687 0.002104 0.007742 0.0002606 1.271e-06 0.0007005 0.002104 0.01073 0.0006645 0.001063 0.007044 0.003478 0.02116 0.04847 0.0193 0.5642 9.759e-05 0.0003276 0.000545 0.01551 0.006569 0.0294 0.02231 0.005728 0.01546 0.0007167 0.003356 0.0004036 0.000198 0.2546 0.02117 0.1647 0.0002228 0.003861 0.5649 0.00881 0.01242 0.3886 0.000459 0.5127 0.008427 0.002574 0.08882 0.001058 6.214e-05 0.001173 0.4305 0.2765 0.002129 0.000472 0.005063 0.0003532 0.004423 0.004483 0.3801 0.38 0.0001726 0.003769 0.01846 0.0001262 0.005145 0.002256 0.4059 0.5729 0.5217 0.00566 0.0006076 0.0257 0.003455 0.0003109 0.01002 0.002414 0.6302 0.3275 0.0003361 0.5651 0.05605 0.0002931 0.000298 0.3016 0.002349 0.003075 0.001925 0.004274 0.5075 0.0003166 0.4565 0.005204 0.1281 0.003042 0.01625 0.009893 0.001088 0.4452 0.003397 0.1127 0.3672 0.0001136 0.5602 0.005539 0.009963 0.0003109 0.001076 0.003588 0.519 0.01348 0.01945 0.5514 0.006133 8.45e-05 0.1406 0.004293 1.777e-05 0.0001626 0.0004409 3.937e-06 0.009015 0.1106 0.0001558 0.631 0.4775 0.0064 0.001548 8.422e-05 0.0003912 0.0122 0.003422 0.0006312 6.105e-05 5.119e-05 0.002866 0.0004514 0.5288 0.0009195 0.2722 0.5337 0.002213 0.0009407 0.000162 0.00814 0.006877 0.566 0.4754 0.005526 0.5383 0.001811 0.00443 0.4197 0.01652 0.5779 0.02773 0.03871 6.143e-05 0.002554 0.001244 0.0004887 0.05695 0.0001402 0.01521 0.002571 1.667e-05 0.003625 0.003718 0.0002862 0.001402 0.002688 0.002316 0.5872 1.669e-05 0.02859 0.0008455 0.3113 0.004778 2.227e-06 0.2096 2.636e-05 0.0001455 0.0005914 0.001339 0.004331 0.001275 0.5773 0.0001471 7.184e-05 0.0002004 9.682e-05 0.0005895 0.1901 0.01145 0.0003658 0.0002018 1.671e-05 0.007942 0.008599 0.001062 0.00643 0.005529 0.0002011 9.227e-05 0.4579 0.04343 0.01955 0.000746 0.04262 0.00755 8.387e-05 0.0001007 0.05237 0.0002968 9.842e-05 0.01124 0.0004395 0.001789 0.002531 0.002161 0.5645 0.01355 2.658e-05 6.921e-05 0.5648 0.003328 0.491 0.6156 0.001844 0.0004422 0.00194 0.000208 0.01961 0.000415 1.647e-05 0.0006849 0.03381 0.03253 0.1486 0.001733 0.000122 0.0002757 0.009339 0.4857 0.0003059 0.0001597 0.3141 0.007726 0.0004666 2.781e-06 0.01483 0.04469 0.01069 0.001765 0.341 0.0008036 0.01106 0.001835 0.0003361 0.0001741 0.006414 0.05144 0.01969 0.0006664 0.006918 0.001045 0.5748 0.0002262 0.002727 0.002201 0.005213 0.003434 0.004977 0.1296 0.004993 0.5429 0.009993 0.4896 0.5973 0.0004035 0.004673 0.6129 0.05268 5.965e-05 0.003923 0.4415 0.0009801 0.004724 0.01487 0.0007662 0.003508 0.5419 0.004228 0.05617 3.714e-05 0.00276 0.0006033 0.000505 0.002164 0.0002004 0.008384 4.279e-05 0.01417 0.4989 0.005589 0.005382 0.01475 0.0002214 0.0006067 2.927e-05 0.0001737 0.604 0.008614 0.6448 0.001054 0.000331 0.3391 4.249e-05 0.0002255 0.006257 0.02841 0.4546 0.03223 0.5734 0.003489 0.004659 0.01181 0.001106 0.002298 0.000156 0.01315 0.001997 0.0087 0.5649 0.02158 0.01666 0.007142 1.368e-05 0.01491 0.009647 1.143e-05 0.002485 0.3867 0.1762 0.4828 0.008432 0.5434 0.5736 0.3371 0.000742 0.008526 0.4409 0.002641 0.0003934 0.006266 9.681e-06 0.001275 0.1466 0.5892 0.000481 0.001152 0.000792 0.004314 0.07426 1.292e-05 0.0226 0.0007459 0.001005 0.002794 0.0008142 0.02067 3.484e-05 0.001127 0.002876 0.004531 0.0005653 0.0007304 0.006048 0.0003512 0.01759 0.4485 0.4424 0.3112 0.3116 0.07676 0.006515 0.003579 0.1429 0.0004729 0.03095 0.005754 0.1623 0.0109 0.5517 0.002342 0.0004633 0.001706 0.01094 7.801e-06 0.6296 0.4862 0.001916 0.6511 0.004559 9.796e-05 0.0347 0.0009636 0.0008542 0.002589 0.01524 0.002171 0.004663 0.5518 0.4803 0.0004315 0.003497 2.644e-05 0.0005713 0.000511 6.276e-05 0.01662 0.05534 0.003729 0.002691 3.081e-05 0.01433 0.0005358 0.005108 0.003306 0.005258 0.427 0.001541 0.04515 0.4471 0.0007264 1.765e-07 0.5676 0.0003951 0.5649 0.1302 0.0396 1.667e-05 0.0003812 0.01368 0.00997 0.002802 0.0001349 0.004224 0.002383 0.0684 0.5124 0.5122 0.002196 0.004558 0.009897 0.0121 0.04699 0.007091 0.0008021 0.0004268 0.001029 0.001004 0.001069 0.0001614 0.0001002 0.0003127 0.006772 0.5574 0.002626 0.01268 0.001067 0.5593 0.004916 0.001194 0.05545 0.0008507 0.0049 0.0002812 0.3812 0.001659 0.1001 6.039e-05 0.007226 0.002194 0.5849 0.00991 0.005271 0.03818 0.001473 0.007794 0.01122 0.6133 6.343e-05 0.1894 0.0002992 0.002116 0.01973 0.0009849 1.617e-05 0.0004318 0.01377 0.000467 0.0007483 0.004673 0.0009362 0.06064 0.002025 0.3367 0.3381 0.007247 0.00846 0.5703 0.002116 0.002856 0.5193 0.4398 0.01345 0.0004547 0.001131 0.5853 0.0003579 4.858e-05 0.1155 0.0005456 0.5498 7.552e-05 0.0004557 0.01227 0.01271 0.002128 0.001204 1.16e-06 6.388e-05 0.5287 0.0007185 0.0004813 0.0008011 0.0009265 0.001211 0.001001 0.0001172 0.01486 0.03787 5.137e-05 0.001093 3.271e-06 0.001266 0.001752 0.005756 0.001184 0.01034 7.168e-06 0.00286 0.573 0.0003248 0.0005959 0.1639 0.0005649 0.008782 0.01605 0.01056 0.005072 0.0227 0.007205 0.001455 0.3572 0.00188 0.1094 9.482e-05 0.0002417 0.0003727 0.0002347 0.001481 0.004011 0.1605 0.00306 0.002155 0.4186 0.005125 0.002299 0.003031 0.0113 0.576 0.001287 0.003953 0.5702 0.01158 0.007514 0.518 9.216e-05 0.0005273 0.0007154 0.002751 0.0007962 0.002684 0.0001321 0.0368 0.001862 0.001276 0.2952 0.002077 0.001289 0.01591 0.0002922 0.551 0.005087 0.002939 0.02187 0.002878 0.007565 5.649e-05 0.001337 0.166 0.00786 0.5732 0.01122 0.5712 0.007764 0.01399 0.1687 0.01089 0.00319 0.003726 0.003102 0.001966 0.002263 0.001373 0.002043 0.5697 0.001344 0.3547 0.0004798 0.2683 0.01897 0.01318 0.0008515 0.05005 0.0005187 0.1145 0.1184 0.01479 0.3306 0.001926 0.01984 0.009228 0.3019 0.01684 0.004774 0.02431 0.01282 0.4037 0.0205 0.001064 0.5403 0.008484 0.5848 0.5445 0.4949 0.189 0.002543 0.002568 0.000137 0.002425 0.003677 0.1009 0.0008145 0.001954 0.008874 0.02301 0.005242 0.002305 0.005444 0.03403 0.008968 0.009118 0.001663 0.0001902 0.007353 2.948e-05 0.001119 0.3903 0.004773 0.0001536 0.6215 7.149e-05 0.001022 0.002039 0.5641 0.003516 0.009536 0.0002953 0.1984 0.005996 0.4189 0.01418 0.008028 0.04597 4.037e-09 0.009471 6.374e-05 0.005837 0.001716 0.033 0.003114 0.0002823 0.02185 0.002265 0.06414 0.5672 5.772e-05 0.003952 0.5698 0.002037 0.008548 0.001232 0.002554 0.007516 0.001801 0.001156 0.5703 0.0001369 0.002621 0.5965 0.002225 0.252 0.001801 0.5679 0.001125 0.5249 0.003256 0.0004332 0.001815 0.001104 0.04597 0.001186 0.002566 0.002708 0.0006118 0.004239 8.065e-05 0.3746 6.74e-05 0.01059 0.03583 0.0003226 0.02939 0.005224 0.5359 0.005247 0.0002067 0.01903 0.007716 0.01535 0.4818 0.02056 0.5284 0.5684 0.007524 0.01515 0.003034 0.08412 0.01047 0.01846 0.002557 0.492 9.59e-05 0.002984 0.5032 0.000346 0.0008343 0.004018 8.068e-05 0.01058 0.5636 0.00609 0.03583 0.0005432 0.00067 0.0003828 0.0003918 9.259e-05 6.511e-05 0.03028 6.924e-05 0.002898 0.01223 0.0009425 8.009e-05 0.00047 0.006178 0.3216 0.09529 0.003133 0.005011 0.05785 0.01859 0.0005097 0.006715 0.03747 0.4486 0.002761 0.002182 0.004311 0.002666 0.4939 9.74e-05 0.002041 0.0006723 0.005314 0.5749 0.5685 0.002836 0.01036 4.411e-05 0.02033 0.5978 0.0001403 0.0008436 2.897e-05 0.4879 6.914e-05 0.4771 0.001276 0.5431 0.0001503 0.0004112 0.5597 0.501 0.01516 0.05202 0.003745 0.04004 0.05364 0.001492 0.01281 0.5705 0.000365 1.029e-05 0.009705 0.00498 0.656 0.3384 0.006425 0.0001296 0.3645 0.2825 0.001632 4.425e-05 0.002101 6.191e-05 0.00108 0.6661 0.002578 0.576 0.1446 0.3125 0.093 0.006985 0.0005441 0.0006779 0.5466 0.01191 0.0009464 0.005723 0.003714 0.5451 0.5807 6.668e-05 0.0001457 0.1722 0.0002582 5.286e-05 0.009311 0.02496 0.00213 0.00257 0.002888 0.3988 0.02046 0.05666 0.0009775 0.5704 0.01831 0.0003411 0.03071 0.000115 0.003445 0.003491 0.0001803 0.003451 0.004652 0.3266 0.3259 0.00256 0.002999 0.1885 0.002301 0.01882 0.0003226 0.3135 0.01573 0.02533 0.001037 0.004174 0.01038 1.103e-05 0.006544 5.942e-05 3.232e-05 0.006505 0.4319 0.002333 0.3927 0.01357 0.5778 0.0009793 0.0003302 0.007984 0.002243 0.07014 0.4071 0.005956 0.001445 0.04521 0.005874 0.4046 0.00071 7.051e-05 0.1151 0.005651 0.5513 0.003293 0.003192 0.001529 0.002345 0.03007 0.006026 0.002715 0.6352 0.0086 0.01162 0.002915 0.002106 0.01155 0.006944 0.006354 0.0004221 1.349e-05 0.0005405 0.0006462 0.001159 0.5692 6.07e-05 0.0002432 5.911e-05 0.002851 0.4769 0.003007 0.01068 0.00854 0.007757 0.002406 0.001438 0.003463 0.5705 0.001094 0.5291 4.576e-05 0.3591 0.02359 0.002982 0.001099 0.01562 0.119 0.03877 0.007834 1.845e-05 0.0002181 4.928e-05 0.007636 0.06146 0.003897 0.0008554 0.447 0.0749 0.504 0.02624 0.1927 0.3604 0.0007092 0.5739 0.004268 0.003598 0.002082 0.0001936 0.0156 0.5107 1.758e-05 0.002185 0.02762 0.002359 0.0117 0.0001202 9.317e-05 0.6052 0.0005941 0.008801 0.02552 1.387e-05 0.5067 0.04738 1.99e-05 0.0003651 0.1134 0.002963 0.0001376 0.0976 0.0008427 0.00416 0.002372 0.0003132 0.005164 4.007e-05 0.001925 0.000206 0.01608 4.078e-05 0.0007219 0.3353 0.3308 0.003726 0.002287 0.01872 0.001391 0.5387 0.0008929 0.0001743 0.002336 0.002425 4.699e-07 0.0001411 0.0004163 0.0006024 0.01093 0.008365 0.0005539 0.01448 0.01608 0.0005949 0.000128 0.4288 0.2687 0.423 0.0007676 0.1526 0.005089 4.732e-05 0.003675 0.007399 0.005118 0.01139 0.00292 0.558 0.01424 0.001887 0.5532 0.577 7.885e-05 0.5945 0.00809 0.007988 0.03032 0.2948 0.004714 0.5751 0.01757 0.004792 9.757e-05 0.5367 0.0004323 0.01092 0.517 0.02443 0.5561 0.007769 0.0007271 0.01513 0.0007044 0.617 0.4272 0.579 0.0002132 0.571 0.02336 0.000621 0.0001516 0.01645 0.001159 0.3756 0.05122 0.4879 0.002735 0.0004381 0.00139 0.002921 0.002081 0.3246 0.001087 0.01057 0.04937 0.001868 0.05471 8.49e-06 0.2213 0.06089 0.0002104 0.007871 0.000336 0.09376 0.1077 0.3123 6.091e-05 0.4777 0.004095 0.4519 0.001791 0.004874 0.001089 0.004333 0.5707 0.0005699 0.002863 0.0005328 0.1712 0.003412 0.00969 0.001297 0.01483 1.777e-05 0.5728 0.003327 0.001143 0.001141 0.003441 0.001459 0.001864 0.05863 0.01158 0.01733 0.0624 4.01e-05 0.2803 0.4253 0.001101 0.09048 0.0006419 0.004395 0.5519 0.0001802 0.5774 0.1497 0.000218 0.0136 0.001572 0.01311 0.5805 0.5617 0.3984 0.006115 0.1809 0.5725 0.001214 0.003768 0.0002911 0.01038 0.003159 0.0002214 0.001496 0.0004224 0.001598 0.007679 0.006537 0.0002887 0.1135 0.004026 0.002598 0.004921 0.001109 0.01189 0.0002778 0.02707 0.0009945 4.378e-07 0.0006419 1.118e-05 0.005674 0.0002083 3.846e-05 0.004054 0.0006163 6.655e-05 0.008262 0.1115 0.5701 4.001e-05 6.005e-05 1.095e-05 8.991e-05 0.000371 0.0005556 0.002013 0.002904 0.002281 0.004129 0.5754 0.5174 0.01157 0.003968 0.04536 0.01213 0.4868 0.564 0.003877 0.02406 1.633e-05 0.01015 0.001597 0.000367 0.0028 0.0004342 0.001277 2.554e-05 0.3901 0.001019 0.01538 0.007321 0.0005618 0.0001539 0.0007987 0.00146 0.003679 0.0002032 0.004811 0.5704 0.04253 0.3356 0.000724 0.001577 0.5721 0.001028 0.003314 6.956e-05 0.0009094 0.5584 0.1222 0.0009496 0.363 0.0009977 0.006243 0.01048 0.02463 0.0009997 0.6269 0.004548 0.001102 7.017e-05 0.01222 0.576 0.002011 0.002649 0.003711 0.5807 0.003644 0.01636 0.0006161 0.001613 0.001174 0.0195 0.0004779 0.01347 8.415e-05 6.899e-07 0.001058 0.001154 7.462e-05 0.02855 0.007601 0.5857 0.06292 6.177e-05 0.000651 0.003476 0.0008736 5.953e-05 2.91e-05 0.4986 0.01342 0.004355 0.0004495 0.001224 0.1819 0.001664 3.367e-05 0.0008483 0.5451 0.005764 0.00577 0.003234 0.005709 0.04268 0.004088 0.03129 0.001564 0.003105 0.4183 0.5539 0.0003099 0.2288 0.006463 0.02143 0.000895 0.001417 0.01612 4.525e-05 0.0008424 0.5675 0.002912 0.0002189 0.006753 0.007294 0.0001083 0.004576 0.0009485 0.0001242 0.0002746 0.002569 0.02234 0.001146 1.61e-05 0.3074 0.0007381 7.729e-05 0.0002739 0.00856 0.0009222 0.001533 0.01759 0.03231 0.02135 0.001664 0.0003584 0.0002419 5.496e-05 0.0003822 0.008095 0.5168 0.003367 0.000732 0.01207 0.0006559 0.4819 0.0007186 0.1085 0.004871 0.0006086 0.002899 0.001277 0.3259 0.0174 0.00421 0.03903 0.0004428 0.4128 0.003224 0.5339 0.004436 9.463e-05 0.001854 0.001802 0.0001728 0.00252 0.0006465 0.001232 0.0009075 0.07828 0.0003853 0.006436 0.03712 0.2059 0.003121 0.0009853 0.04559 0.1236 0.007172 0.007547 0.4085 0.4097 6.172e-05 0.4375 0.001441 0.5197 0.2776 0.0001274 6.547e-05 0.001641 0.007897 0.03589 4.674e-05 0.004435 0.004604 0.0176 0.01027 0.00745 0.001595 4.594e-05 0.0008077 0.5094 0.003484 0.002712 0.0007542 0.002447 0.5567 0.000386 0.0005535 0.1509 0.0006627 8.716e-06 0.007283 0.0002535 0.007915 0.6204 0.009531 0.002218 0.0005096 0.0002788 0.005166 0.003086 0.001157 0.002693 0.002322 0.002503 0.002275 0.01434 0.3703 0.0008578 0.007846 0.01278 0.00425 0.02155 2.128e-05 0.003373 0.003064 0.000868 5.576e-05 0.0001347 0.04533 0.0002853 0.001798 0.004703 0.5411 0.546 0.003515 0.0004999 0.07692 0.001901 0.0005225 0.01404 0.02926 4.23e-05 5.11e-05 0.0003364 0.0003529 0.6217 0.517 4.712e-09 0.0007078 0.5477 0.01593 0.001349 0.001074 0.2536 3.772e-06 0.0002471 0.006611 0.008456 0.6059 0.0007499 0.001635 0.0003232 0.135 0.005578 0.00248 0.001299 0.01912 0.001841 0.01558 0.002991 0.0005225 0.5596 0.5686 0.0006472 0.03933 0.0167 0.01416 0.0003812 0.1034 0.000312 0.0003553 0.001272 0.0001838 0.003306 0.001357 0.01132 0.002738 0.001808 0.554 0.5642 0.005938 0.01059 0.02137 0.6474 0.02614 3.735e-05 0.001829 0.006067 0.0443 0.0008478 0.008507 4.259e-05 0.1255 0.304 0.000558 0.008794 0.02255 0.003587 0.2223 0.0005633 0.0006147 0.1954 0.001146 0.00832 0.007058 0.004922 0.0166 0.01213 0.006641 0.0172 4.149e-05 0.003433 0.002345 0.04567 0.006406 0.0002763 0.002097 0.006144 2.568e-06 0.005048 0.03194 0.02782 0.0001336 0.1618 0.0001181 4.577e-06 0.4699 0.01036 0.01215 0.001544 0.0004594 0.004764 0.007938 0.0005614 4.406e-05 5.004e-05 0.08098 0.5481 0.0003409 0.1966 4.437e-05 0.3661 0.03616 0.0212 0.001064 0.6592 0.002928 0.001123 0.01266 0.09485 0.0007687 0.003672 0.001724 0.2639 0.0009763 0.000654 0.002235 0.1303 0.4282 0.009557 0.001894 0.005806 0.004491 0.002955 0.0004174 5.459e-05 7.135e-05 0.002847 0.007318 9.745e-05 0.00738 0.000717 0.004031 0.008113 0.007016 0.04205 0.0002609 0.0007374 0.05338 0.0002577 0.008242 0.002646 0.00209 0.6071 0.0002169 0.00096 0.09733 0.002499 0.5742 0.001175 0.001961 0.04947 0.001522 0.5753 0.005634 0.00416 3.037e-05 0.0051 2.009e-05 0.0003886 0.0006899 0.008807 0.002462 0.5583 0.5743 0.008197 0.02373 0.1229 0.003292 0.5708 0.003572 0.008443 0.0005241 0.1066 0.07452 0.03029 0.008109 0.2521 0.3331 0.004257 0.0001186 0.409 0.006624 0.001383 0.01473 0.2576 0.4645 0.3731 0.006473 0.003237 0.5746 6.952e-05 0.0006991 0.02581 0.004183 0.002491 0.01524 0.002073 0.002686 5.263e-05 0.02492 0.009561 0.0003081 0.5674 0.01266 0.02799 0.001822 0.005802 0.0006573 0.002513 0.001723 0.003037 0.07763 6.873e-05 0.0004793 0.0007169 0.0002634 0.05586 0.02082 0.0003345 0.001263 0.004333 0.0002099 0.6184 5.731e-05 0.002078 0.4094 0.001426 0.0006228 0.002622 0.009519 0.002192 0.0006746 0.008204 0.00532 0.001483 0.0006576 0.4722 0.007927 0.0001593 0.005289 0.001547 0.5017 0.004518 0.007392 0.0303 0.02818 0.01401 5.25e-06 0.01655 0.0007314 0.3167 0.0007081 1.957e-06 0.008987 0.4721 0.5751 1.224e-05 0.01583 0.004881 0.0008958 0.0004894 0.002747 0.01626 0.0009819 0.003214 0.003059 0.3993 0.007884 0.5306 4.17e-05 0.0009824 0.6488 0.002402 0.0009113 0.5941 0.003824 0.0008218 0.009518 0.001474 0.0008085 0.001134 0.002284 8.367e-05 0.01611 0.001805 0.003427 0.4 0.001861 0.004664 0.009248 0.5727 0.006525 0.001937 0.002298 0.02062 0.4949 0.004049 0.5353 0.004182 0.001702 0.5968 0.001781 0.0172 0.0003807 0.04166 0.001573 0.371 0.0005364 6.316e-06 0.6098 0.01685 0.002489 5.442e-05 0.01436 0.5743 0.1694 0.02411 0.01388 0.4585 0.00816 0.0001218 0.007415 0.0003723 0.001222 0.006406 0.43 0.006523 0.002116 3.035e-06 0.003664 0.01713 0.001665 0.007996 0.008972 0.5904 0.0008837 0.5569 3.227e-05 0.003339 7.554e-05 0.5389 0.001254 0.0009891 0.001705 0.001456 0.001068 0.4553 0.1081 0.001144 0.02012 0.5764 0.01027 0.09611 0.04075 0.01045 0.0001846 0.0005813 0.0012 0.06025 0.001405 0.004597 0.009426 0.05553 0.01515 0.002018 0.02291 0.0002774 0.06003 0.005399 0.2313 0.0006694 0.02189 0.0001619 0.00291 0.002506 0.01295 0.001255 0.001134 0.5937 0.3104 5.24e-05 0.0006591 0.003991 0.005663 0.4404 0.001269 0.5543 0.03853 7.473e-06 9.612e-05 3.885e-06 0.001319 0.01794 0.002473 0.000448 0.004812 0.0008142 8.345e-05 0.09882 0.0001652 4.104e-05 7.305e-05 0.0001009 0.0002055 8.96e-07 0.4038 0.000859 0.009594 0.5702 0.2053 0.00542 2.155e-05 0.005038 0.0007114 0.0006332 0.01592 0.0002329 0.0004414 0.07479 0.1063 0.002378 0.0001058 9.825e-05 0.006097 3.797e-05 0.001003 0.02467 0.02411 0.5002 0.1718 0.008038 0.001541 9.597e-05 0.000995 0.5816 0.5596 0.07543 0.0497 0.003627 0.4576 0.0001279 0.2579 0.00277 0.001703 0.005001 9.701e-05 0.01118 0.004651 0.4012 0.0002589 0.5702 0.0009925 0.001698 0.02448 0.3657 0.01407 0.01135 0.00303 0.008696 7.652e-05 0.0005488 0.0002991 9.026e-06 0.002068 0.01285 0.3734 0.002 0.1334 0.0128 0.000458 0.0002981 0.01398 0.3746 3.732e-05 0.002981 0.006746 0.01578 0.003445 0.01439 0.00668 0.0002281 0.01412 0.009378 0.573 0.08049 0.0001432 0.005224 0.01258 0.003685 0.002233 0.5722 0.009406 7.059e-05 0.0237 4.271e-05 0.0005092 0.004526 0.342 0.0001899 0.006692 0.2856 0.5411 7.847e-06 0.0004062 0.03284 0.07929 5.634e-05 0.005805 0.006147 0.4335 5.412e-06 0.008694 0.001261 0.0006066 0.01296 0.004314 0.0002032 0.007746 0.5732 0.002563 0.01383 0.004471 0.01001 0.1547 4.426e-05 0.001578 0.002728 0.005708 0.01487 0.03025 0.001391 0.5773 0.0003927 0.003735 0.5722 0.004855 8.242e-05 0.1042 0.0006317 0.004088 0.3201 0.5727 0.3907 0.002658 0.0004644 0.4296 0.1373 0.001636 0.004533 0.0001168 0.001386 0.008704 0.008196 0.6287 0.0001204 0.02191 0.6098 0.1262 0.03562 0.6236 0.001774 0.001108 0.0002056 0.2237 0.001934 0.001472 0.5702 0.008179 4.022e-05 0.4275 0.1499 1.84e-05 0.01428 0.5667 0.009913 0.007586 0.002169 0.0001521 0.04604 0.006071 0.002466 7.493e-05 0.001608 0.07332 0.5719 0.5461 0.002764 0.0004966 0.5586 0.009374 0.5156 0.006693 0.2061 0.2314 0.001122 0.003506 0.08697 0.000272 0.407 0.5788 0.006921 0.0005047 0.0004981 0.03179 0.007325 0.5747 0.4222 0.002358 0.06486 0.002775 0.002037 0.0001055 0.007946 0.002845 0.008801 0.002092 0.002511 0.0005575 0.006382 0.3306 0.0005416 0.001261 0.0001711 0.01806 0.03998 0.6311 0.0003821 0.002284 0.01422 6.61e-05 0.008222 0.156 0.01885 0.00494 0.003481 0.01571 0.0006647 0.006087 0.5724 0.0004441 0.001322 0.01795 0.00213 9.121e-05 0.1521 0.004287 0.003161 0.002959 0.01079 0.0006059 0.6009 0.00057 0.001126 0.5141 0.002557 0.03837 0.001354 0.00792 3.862e-05 0.0003786 0.00687 7.056e-08 0.004744 0.006701 8.226e-05 0.5886 0.003133 0.004493 0.0009274 0.0004993 0.119 2.142e-05 0.02809 0.00119 0.008168 0.0009707 0.03548 0.0009091 0.01917 0.004125 6.702e-05 0.5725 0.01256 0.2197 4.107e-05 9.148e-05 0.04584 0.0003442 0.003851 3.652e-07 0.0006352 5.937e-05 0.5136 0.0004272 0.004313 0.007476 0.0006424 0.01202 0.102 0.002207 0.3863 0.3875 0.01477 4.893e-05 0.5329 0.0003867 0.5795 0.038 4.67e-05 0.00221 0.00139 0.2528 0.04451 0.01994 0.000446 0.00809 0.00481 0.0138 0.006191 0.01138 0.005093 8.022e-05 0.01321 0.0003198 0.5658 0.3319 0.0007673 0.01492 0.1207 0.0005692 0.02932 0.006158 3.446e-05 0.4253 0.001856 0.004954 0.01454 0.004306 0.5101 0.4036 0.003109 0.001121 0.003682 0.02237 0.5205 0.001524 0.01369 8.069e-05 0.0006049 0.5676 0.01107 0.006231 0.01071 0.01121 0.5491 0.006452 0.5919 0.00223 0.4554 0.001373 0.001739 0.0001386 0.004426 0.0001102 0.0001493 0.002604 0.0003184 0.0002149 0.001347 0.000162 0.001436 7.561e-05 0.0006462 0.3504 0.002332 0.001599 0.003665 0.001406 0.01767 0.001804 0.0002565 0.00113 0.002322 0.01236 0.002282 0.5732 0.01563 0.02059 0.007093 0.01243 0.006726 0.01875 0.00513 0.009173 0.0003313 0.001374 0.003177 0.00202 0.5814 0.03866 0.4154 0.002765 0.408 0.3864 0.08699 4.563e-05 0.01165 0.000781 0.0003083 0.001759 0.00131 0.5437 0.005905 0.001529 0.006497 0.003017 0.001574 0.007711 8.945e-05 0.633 0.1438 0.002561 0.02299 0.0006766 0.0004782 0.001287 0.01213 0.001994 2.357e-05 0.003449 0.001958 0.0006315 0.0002532 0.0004604 0.002451 0.002814 0.007442 0.006344 0.5517 0.0004642 0.03166 0.6276 0.4564 0.0006541 0.001082 0.002179 0.008876 0.001258 0.002566 0.0003676 0.003959 0.001319 0.004121 0.004993 0.5713 0.003476 0.002057 0.001923 0.006953 0.003534 0.05787 0.000101 0.01102 0.00357 0.03958 0.005048 0.03064 0.4617 0.001346 0.002448 0.003251 0.01929 0.389 0.0502 0.0006138 0.0008282 0.05388 4.156e-05 0.002625 0.003458 0.0004983 0.002236 0.002823 6.129e-05 0.0008662 0.0008368 0.004099 0.06745 0.001227 0.00722 0.0003832 3.962e-05 4.295e-05 0.001438 0.001791 0.002092 0.0004333 0.00028 0.00431 0.0003442 0.0001336 0.001115 0.1586 0.002056 5.73e-05 0.003833 0.0001359 0.001083 0.001702 0.001513 0.4367 0.0002663 0.5764 0.0002038 0.0006185 3.987e-05 0.007745 0.000243 0.5919 0.0002268 0.01172 0.0001315 0.01204 0.0007098 0.01211 0.008441 0.3282 0.01012 0.06785 0.001338 0.0003555 0.001586 0.001944 0.003165 0.004595 0.0009213 0.0001766 0.5676 0.0003152 0.04094 0.005628 0.01446 0.4961 0.5544 5.483e-05 0.1029 0.4996 0.002759 0.001391 0.0004537 0.001269 0.00111 0.0006749 0.006875 0.001765 0.0018 0.5314 0.0002168 0.0004249 9.455e-05 0.006943 0.005561 0.002952 0.0002418 0.5386 1.684e-05 0.0001039 0.0177 0.0002458 0.4863 0.003848 0.004043 0.004464 5.396e-07 1.367e-06 0.0008069 0.0004436 0.0006043 0.002372 5.691e-05 0.004103 7.32e-05 0.04926 2.5e-05 0.003609 0.01321 0.0004882 0.003394 0.03138 0.001149 0.5634 9.522e-05 0.007545 2.72e-05 5.113e-05 0.007945 0.002639 0.0007302 0.006776 0.0002179 0.0589 0.4213 0.002288 0.01778 0.0002251 4.449e-05 9.154e-06 0.382 0.5954 0.001589 0.002435 0.003057 1.997e-05 0.007182 0.007932 0.3893 0.0003646 0.0002823 0.0002186 2.68e-05 0.5392 0.0001468 0.00366 0.0007918 0.5557 0.001618 0.03372 0.002914 0.5736 0.001696 6.453e-05 0.01787 0.002128 0.001405 0.002519 0.0002189 0.5707 0.002759 0.004041 0.004032 7.539e-05 0.0002173 0.006153 0.5176 0.0677 0.001937 0.01973 0.0001306 0.6271 0.006322 2.351e-05 0.001102 0.5517 0.04549 0.01614 0.01822 0.0003134 0.5003 3.206e-05 0.0002513 0.002738 0.01324 0.008967 0.002882 0.0068 0.03698 0.0171 0.114 0.004724 0.0002652 0.2487 0.001181 0.0229 0.2474 0.003959 0.005551 9.303e-05 0.004616 0.002976 0.0009707 0.002433 0.006594 0.000246 0.0007075 0.003337 0.004535 0.535 0.0004238 0.0001845 0.0003555 0.02551 0.005907 0.06031 0.001968 0.0009267 0.006035 0.02141 5.506e-05 0.01141 0.001253 0.002467 9.465e-05 0.000703 1.192e-05 0.02013 0.01366 0.04393 0.005801 0.009652 0.0002073 0.0003437 0.00623 0.08676 0.5708 0.02728 0.0001637 0.01162 0.004082 0.0004299 0.003792 0.5683 0.0001467 0.00263 0.0007944 6.751e-05 0.02174 0.001252 0.004826 0.001528 0.2897 0.5736 0.03524 0.00133 0.00756 0.0007738 0.6522 0.002042 0.3455 0.01038 0.001573 0.00226 1.471e-05 0.005031 4.811e-05 0.4445 0.3696 4.345e-05 0.01475 0.0008006 0.001247 0.003502 0.0006404 0.6267 0.001619 0.02225 0.0003343 0.0001879 0.004955 0.3714 0.001334 0.009352 3.634e-05 0.0003476 0.02005 0.0006016 0.01092 0.0008877 0.007663 0.001691 0.002182 0.569 0.5765 0.002044 0.009237 0.002825 0.008095 5.142e-05 0.2829 0.0006047 0.001662 0.004114 0.6042 0.3489 0.3194 0.01402 0.0005377 4.202e-05 0.002778 9.774e-06 0.001503 0.004168 0.0176 0.003901 0.5186 0.5414 3.746e-05 0.6016 0.2106 0.001512 0.00297 0.4283 0.0006777 0.008275 0.001551 0.002063 0.09854 0.02062 0.0001592 0.5116 0.3838 0.002279 0.4971 0.003424 0.05695 0.001432 0.001135 0.0467 0.01209 0.005552 0.00645 0.3951 0.0003923 0.435 0.5739 0.2564 1.251e-05 4.699e-05 0.003542 0.002207 0.001408 0.5857 0.02425 0.001305 0.0003819 0.0008472 0.00118 0.001318 0.4443 0.3375 0.1029 0.01096 0.001214 0.01757 0.005084 0.008785 0.002174 0.5918 0.004511 0.3726 0.01218 0.01025 0.006002 0.02025 7.275e-05 0.003542 0.5707 0.1633 4.984e-05 0.001196 0.002809 0.001615 0.06611 0.0006385 0.5819 0.01156 0.4098 0.0002638 0.001773 0.02187 0.0009357 0.0001111 0.004182 0.01109 0.001324 0.0002246 0.0007113 0.01138 0.5375 0.0001884 0.0002287 0.01718 0.002235 0.01395 0.02489 0.003921 0.5941 0.08825 0.0004769 0.001035 0.002688 0.1546 0.002545 0.001148 0.001245 0.5679 0.002591 0.008709 3.822e-05 0.5344 0.0009145 0.0004408 0.1233 7.546e-06 0.0006429 6.75e-05 0.002109 0.006669 5.348e-05 0.006608 0.002232 0.0006913 0.0002879 0.001795 0.1811 0.379 0.1029 0.006741 0.5769 0.6227 0.001856 0.01548 1.442e-05 0.0006384 0.3821 0.004398 0.01358 0.002822 0.002495 0.02257 0.0007562 0.007221 0.09388 0.02001 0.04656 0.06913 0.3154 0.3602 0.0628 0.4143 0.0006003 0.004706 0.0001268 0.000963 0.0001329 0.006132 0.001881 0.005735 4.588e-05 0.007548 0.00213 0.01469 1.084e-05 0.1847 0.5448 0.002558 0.001649 0.02553 0.0006698 0.006897 0.008162 0.003554 0.4842 0.0118 0.007549 0.002968 0.0008945 0.1223 0.2176 0.5523 0.5135 0.001518 0.005311 0.0009289 0.008393 0.6027 3.931e-05 0.001977 0.08346 0.01294 0.0001309 0.0001574 0.5486 0.1064 0.1076 0.001869 0.4947 0.0001163 0.6111 0.4848 0.5645 0.0001564 0.005978 0.1931 4.918e-07 0.5996 0.2844 0.2848 7.68e-05 0.582 0.01039 0.5746 0.2187 0.0002283 0.003313 0.0005639 0.01542 3.07e-05 0.001936 0.000266 0.004807 0.0007313 0.02703 8.071e-05 0.1189 0.07365 7.932e-05 0.5674 0.0003644 0.0007168 0.3616 0.0002322 0.001935 2.179e-05 0.1518 0.00772 0.5829 0.003863 0.001247 4.881e-05 0.001691 0.003133 0.02238 0.001066 0.003722 0.5736 0.0001852 2.37e-05 0.0006834 0.0003532 0.000255 8.41e-05 0.0003523 0.5936 0.5734 0.000167 0.009328 0.00104 0.307 0.1848 0.001741 0.0006031 0.01016 6.975e-05 0.0006672 0.5672 0.001428 0.0009021 0.0004763 0.04128 0.0009589 0.1784 0.01335 0.005453 0.003832 0.09225 0.004227 0.001176 0.0005553 0.4781 0.01556 0.0009134 0.0004278 0.0006499 0.000709 0.559 0.01301 0.0008015 6.525e-05 0.006738 0.00267 0.003209 0.002156 0.01886 0.5512 0.008938 0.0002623 0.04611 5.22e-05 0.003923 0.005415 0.003687 0.0001146 0.6194 0.01825 0.6315 0.0001417 0.5703 0.3293 0.6494 3.947e-06 0.02349 0.0001228 0.002221 0.5152 0.001691 0.002782 0.0003374 0.00312 0.0222 0.002926 0.003634 0.5365 0.001712 0.002051 0.01419 0.001846 0.0004232 2.268e-05 1.361e-05 0.5739 0.01511 0.006367 8.145e-05 6.977e-05 0.0009918 0.0008844 0.006036 0.008359 0.01237 6.983e-05 0.0006784 0.1538 0.000211 0.0006493 0.00922 0.001721 0.0005398 0.004647 0.001315 0.004407 0.003398 0.04747 0.003974 5.498e-05 0.01124 0.007766 0.008844 0.0004623 0.0001424 0.4052 0.4077 0.001514 0.02187 0.002505 0.007508 0.0001024 0.004357 0.007344 8.576e-05 0.006166 0.001028 0.002842 0.003399 0.1478 0.3561 0.01732 5.925e-05 0.3491 7.95e-05 0.006591 5.031e-06 0.00196 0.0007883 8.162e-05 0.001827 0.001869 0.005613 0.01691 7.347e-05 0.007453 0.002857 0.001729 0.3878 0.3797 4.073e-05 2.297e-05 0.001659 0.002008 0.008697 0.0005614 0.01801 0.0001252 0.0007461 0.002446 0.0005642 0.03307 0.0429 0.0003095 0.001047 0.0009633 0.004576 0.5992 0.002696 0.0005112 0.0004051 0.2876 0.001906 0.663 0.006652 0.01468 0.002294 0.003717 5.395e-05 6.936e-05 0.0006401 0.01124 0.005081 4.51e-05 0.0561 0.008964 0.009651 0.0006388 0.0006757 0.002116 0.5753 0.004072 0.008867 0.007352 0.0003434 0.000656 0.001291 0.03349 4.869e-05 0.009341 0.0006999 0.001869 0.001273 0.5791 0.003286 0.03751 0.01234 0.003604 0.001327 0.001886 1.486e-05 0.4927 0.006292 0.008921 0.4051 0.5325 0.0006577 0.03075 0.5402 0.016 0.0005294 0.0001859 0.0002755 0.001268 0.4136 0.003586 0.0009032 0.0009267 0.0003219 0.01639 0.01407 0.6346 0.002666 0.4082 9.633e-07 0.0156 0.4285 0.001007 0.007465 0.0001606 6.553e-06 0.005323 0.3283 0.3185 0.008437 0.1775 0.4416 0.0001849 0.331 0.002076 0.006235 0.004226 0.02183 3.465e-05 0.3501 0.002146 1.094e-05 0.003694 0.004548 0.5562 0.0001182 0.5747 0.1763 0.0005132 0.5674 0.01407 0.5651 0.3429 0.001538 0.007197 0.0006687 0.002112 7.749e-05 0.004452 0.0004368 0.01452 5.468e-05 0.008651 3.85e-05 0.4051 0.002009 0.5947 0.007704 0.004195 0.001821 0.001093 0.009531 0.002411 0.0005541 0.001837 0.6247 0.004649 0.00278 0.443 0.001289 0.005947 0.0006126 0.001278 0.001053 0.001445 0.2715 0.5891 0.001305 0.005051 0.5749 0.001089 0.2724 0.2735 0.1674 0.0007606 0.004624 0.0006185 0.006173 3.38e-05 0.5588 0.0003849 0.002506 0.0001995 0.08104 0.249 0.00155 0.04719 0.001315 0.008473 0.002846 0.4942 0.00152 0.001804 0.3908 0.5708 4.13e-05 0.009065 0.0004425 0.001123 0.03908 0.0002718 0.000101 0.0002343 0.005344 0.001426 0.02952 0.00149 0.0004544 0.3345 0.3329 0.0146 0.009778 0.01709 0.3203 0.01385 0.1117 0.0001367 0.002982 0.0003001 2.636e-05 0.001539 0.3039 5.208e-05 0.003624 0.01142 0.005611 0.0004926 0.01552 0.00583 0.0003411 0.006557 0.002491 0.003484 0.007581 0.0008174 0.5133 8.848e-05 0.007803 0.007524 0.000425 0.03537 0.0003025 0.00214 0.01182 0.0004073 0.001984 0.003369 0.3205 0.001219 0.007564 0.01123 0.5797 0.01496 0.0003319 0.004425 0.003063 0.002027 0.01181 0.0001142 0.1252 0.0178 0.04466 0.0006163 0.000125 0.4822 0.003836 4.922e-07 0.01688 0.03536 0.002416 0.4432 5.01e-05 0.0006408 0.5103 0.0008087 0.0003636 0.001682 0.0005959 0.5013 0.5841 5.838e-06 0.02331 0.001265 0.001973 0.5171 0.4825 0.008251 0.002144 4.813e-05 0.1009 0.0126 0.000352 0.5721 0.0005316 0.02061 0.00079 0.06635 0.000336 0.0003013 0.0006576 0.01691 0.01074 0.1471 0.0006434 0.004681 0.0008241 0.02134 0.0005376 0.02245 0.0006122 0.001036 0.05963 0.0009915 0.003517 0.02408 0.0005549 0.007054 0.1668 0.004157 0.0201 0.003072 0.01388 0.009866 0.0004752 0.0002782 0.01819 0.001375 0.005189 0.1316 1.126e-05 8.779e-05 0.00357 9.98e-06 0.002098 0.001134 0.002314 0.001332 8.923e-05 0.01956 0.4371 0.008601 0.0006532 4.523e-05 0.1343 0.007236 0.0001236 0.008537 0.004749 0.002737 0.02321 6.58e-05 0.002924 0.0003652 0.3182 0.000101 0.009029 0.0002008 0.0006924 0.0001838 0.0006816 0.003943 0.001589 0.002853 0.0003097 0.000385 0.0006693 0.5675 0.01283 0.401 0.001902 0.001841 0.01317 0.0002164 0.01141 0.001846 0.003569 0.001211 1.367e-06 0.002331 0.1012 0.01226 0.002119 0.006026 0.0002243 0.002633 0.567 0.0009096 0.005092 0.5642 0.0007676 0.0002472 0.002262 0.01086 0.0003642 0.0001982 0.003142 0.003758 0.01689 0.5151 0.5942 0.003957 8.309e-05 0.004233 0.01062 0.007938 0.0003022 0.006735 0.006247 0.001414 0.007777 0.006094 0.006677 0.0004832 0.006833 0.0002358 0.01119 0.4887 0.6223 0.009073 0.0003333 0.006031 0.0007108 0.572 0.02143 0.01438 0.004025 0.5651 0.5529 0.004267 0.6298 0.001425 0.0001187 0.006419 0.006252 0.0001902 0.009264 0.003388 0.3449 0.5029 0.0005668 0.004748 0.04888 0.002049 0.555 0.0953 0.5549 0.001266 0.4917 0.002357 7.847e-05 0.0001774 0.001972 0.001127 0.0002018 0.0009266 0.568 0.5646 0.02383 0.001613 9.318e-05 0.02105 0.6092 0.00962 0.015 0.5629 0.3659 0.003362 0.00989 0.001725 0.0003844 0.03798 0.1052 0.001662 0.0003892 0.0005841 0.355 0.003289 0.0002097 0.0003909 0.0003048 0.5661 0.5773 0.01328 1.31e-05 0.01017 0.005709 0.572 0.005826 0.3137 0.00917 0.007858 0.0006231 0.001386 0.00116 0.5749 0.003631 0.5504 0.004979 0.5114 0.0004488 0.3993 0.254 0.02397 0.5768 0.008639 0.6152 0.002155 0.0128 0.01636 0.008574 0.002687 0.0003763 0.002775 0.002788 0.0001521 0.002253 0.0003718 0.01685 0.5217 0.3317 0.002187 0.006887 0.001674 0.05687 0.4503 0.001371 0.5634 0.0009989 0.02925 0.0001251 0.002714 0.0002294 0.5468 0.07559 0.001253 0.0205 0.001671 0.003958 0.0007387 0.002246 0.2085 0.003077 0.6319 0.007296 0.3079 0.000553 0.0002419 0.3843 0.4448 0.01055 4.231e-05 0.002339 0.003588 0.00299 0.002286 0.004381 0.5412 3.57e-05 0.006383 0.003195 0.008463 0.02371 0.4266 0.0009558 0.003551 0.0001861 0.004579 1.543e-05 0.001917 0.05665 0.0006139 0.1576 0.5689 0.008775 0.3311 0.001525 0.0003751 0.4428 0.292 0.4926 0.0001616 7.532e-06 0.009353 0.0001285 6.32e-05 0.0009421 0.00473 0.006384 0.002833 0.004908 0.005019 0.5556 0.003187 0.0004431 0.5637 0.04767 0.002453 0.004349 0.008845 0.5657 0.0006813 0.0004302 0.572 0.001153 0.01341 0.006581 0.0005042 0.00287 0.003676 0.009926 0.006678 0.2483 0.004107 0.003941 0.02483 0.007257 0.001019 0.000647 0.004234 0.0009722 0.01819 1.331e-05 0.009084 0.01917 0.001512 0.3766 0.000801 0.0007896 0.001454 0.01623 0.563 0.01175 0.5626 0.4928 0.002262 0.02749 0.0007515 0.0005408 0.0004099 0.0003943 0.4411 0.6399 0.207 0.004005 0.007291 0.04016 0.0004608 0.4194 0.003227 0.0008745 0.5589 0.5507 0.001514 0.06243 0.002382 0.05324 0.3884 0.4162 0.06277 0.5659 0.002367 0.002269 0.02215 0.5542 0.0002189 0.01079 0.0006027 0.001024 1.045e-05 0.007007 0.001788 3.719e-05 0.3303 0.004545 0.000867 0.003884 0.09883 0.02634 0.01111 0.00212 0.5811 0.007312 0.03351 0.005206 0.001441 0.0003523 0.0003382 0.01522 0.001961 0.005702 0.003552 0.3986 0.001827 0.02074 0.0003071 0.004844 0.007385 0.001703 0.00211 0.002488 0.2004 0.5768 0.4897 0.5706 0.5939 0.001634 0.5709 0.01827 0.02583 0.5843 0.001651 0.001082 0.4339 0.001636 0.000235 0.0008755 0.01348 0.001694 0.4743 0.001224 0.004811 0.5308 0.000254 0.00133 0.001122 0.04353 0.007781 1.151e-05 0.002486 0.001113 0.001333 0.007362 7.336e-05 0.0001403 3.729e-05 0.003911 0.003731 0.002645 0.004944 0.01119 0.006794 0.009441 0.001046 0.003419 0.006936 0.004214 0.568 0.4501 0.4985 0.5738 0.07581 0.0005095 0.0004939 0.02654 0.02163 0.03593 0.003999 0.0001226 0.001835 0.004528 1.938e-05 0.0002429 0.001017 0.002282 0.0163 6.443e-05 0.2462 0.07004 0.5018 0.004545 0.0005568 0.2782 0.007128 1.605e-05 0.007688 0.006608 0.01165 0.006491 4.673e-05 0.000367 0.001203 0.0007205 0.5623 0.008794 0.0005958 0.000924 0.002009 0.3989 0.002602 0.0006005 0.02169 0.3909 0.0006464 0.00161 0.02277 0.3457 0.04269 0.001787 0.0005674 7.282e-05 0.001535 0.002578 0.003158 0.5737 7.124e-05 0.0003693 0.0002132 0.0001201 0.0002184 0.04545 0.0001614 0.00465 0.006625 3.892e-05 0.00156 0.5679 0.6212 0.009511 0.02137 0.008763 0.003624 0.002183 1.023e-05 0.0003481 0.001572 0.0001688 0.5965 8.125e-06 0.003106 0.01606 0.001169 2.833e-06 0.5565 0.0002328 0.06398 0.007396 0.0101 0.007902 0.001953 0.002197 0.008613 0.5589 0.5755 0.001856 0.001496 0.02185 0.00868 0.00625 0.00476 0.001896 0.004993 0.004355 0.001361 0.0004586 0.5811 0.002346 0.009156 0.571 0.5733 0.0005413 0.04746 0.006366 3.901e-05 0.01959 0.1 0.007559 0.4099 0.0006383 0.0008239 0.00208 4.798e-06 0.0004181 0.0001674 0.001388 0.001781 0.001924 0.0002073 0.00131 0.0007174 0.0002405 0.0006265 0.003602 0.1175 0.02313 0.0004233 0.0001981 0.001386 9.003e-05 0.00195 0.001638 2.891e-05 0.001682 0.569 0.002891 1.403e-05 0.0008856 0.001611 0.003731 6.263e-05 0.2606 0.3973 0.0009369 0.0003287 5.541e-05 0.01317 0.008244 0.0252 0.6009 0.002028 0.002716 0.001032 0.011 0.001201 2.314e-05 0.003346 0.00377 0.005064 0.01357 0.2885 0.0005821 0.02666 0.002062 0.4527 0.4016 0.001782 0.008493 0.004396 9.939e-05 1.284e-05 0.5076 0.01361 0.0004579 0.0001579 0.003756 0.0142 0.0007168 0.3397 0.2992 0.003225 0.09225 0.001932 4.789e-05 0.5647 0.008565 3.459e-06 0.03105 0.001586 0.01675 0.0007411 0.001115 0.002932 0.003272 0.5743 0.1702 5.416e-05 0.0105 0.5713 0.009471 0.01867 0.000124 0.008429 0.0005912 0.001936 0.01266 5.398e-05 0.4915 0.002614 0.002581 0.0008378 0.003846 0.01345 6.739e-05 0.001727 0.01028 0.01124 0.0002142 0.002698 0.001329 0.01584 0.002066 0.01071 0.001886 0.0003356 0.002031 0.0003565 0.0002972 6.894e-05 0.005683 0.0005659 0.001103 0.003147 0.5804 0.254 0.006079 0.05065 0.01175 0.3514 0.5015 0.0001746 0.004227 0.00104 0.4117 0.008564 0.001269 0.006388 0.3994 0.007367 0.4522 0.5887 0.03087 0.5762 0.01788 0.007033 6.711e-05 0.001694 2.363e-06 0.005324 0.005513 0.0005103 1.429e-05 0.0007324 0.003503 0.00757 0.001681 0.3538 0.008799 0.008253 0.6154 0.0002444 0.1481 3.299e-06 0.006874 0.565 8.5e-05 0.5553 0.4825 1.805e-05 9.081e-05 0.03248 2.811e-05 0.0004948 0.5314 0.5551 0.008827 0.03172 0.0005459 0.02132 0.01114 0.01795 0.000692 0.0008448 0.5566 0.0002758 0.5775 0.4135 0.569 0.4274 5.476e-06 1.031e-05 0.1773 0.0001439 0.01583 7.949e-05 0.5343 4.457e-05 0.3363 0.003468 0.558 0.004967 0.005487 0.001235 0.009071 7.291e-05 0.4125 0.002236 0.0005657 0.005152 0.00821 0.4114 0.0005873 0.01667 0.00339 0.02753 0.00131 7.161e-05 0.0004335 0.00185 0.03169 0.003423 0.2297 8.146e-06 0.0008336 0.0009533 0.0008955 0.01115 0.003447 0.03233 0.4481 5.751e-05 0.5696 0.000572 0.03996 0.001166 0.02453 0.03822 6.546e-05 0.0007063 0.01267 0.2722 0.3108 0.3052 0.001524 0.001923 0.1632 0.001641 0.003151 0.5266 0.01591 0.5544 0.004325 1.212e-05 0.0504 0.3875 4.002e-06 0.1385 0.01687 0.0007409 0.0001873 0.002197 0.04144 0.005656 0.001478 0.5685 0.0006347 0.001306 0.008021 0.01433 0.009471 0.003565 0.000283 0.2136 0.0004678 0.0002992 0.0158 0.001579 0.0008126 0.0001518 0.01646 0.0005182 0.003372 0.04964 0.0001093 0.001262 0.5092 0.0002484 0.002371 0.5766 7.76e-05 0.001705 0.008795 0.004322 0.4354 0.00778 0.01483 0.00289 0.07509 0.5685 0.0001261 5.657e-05 0.004327 0.01745 0.007429 0.0003921 0.0003147 2.051e-05 0.0006487 0.0001373 0.004501 0.4533 4.886e-05 1.7e-05 0.5213 0.3564 0.01805 0.1042 0.01256 0.004745 5.827e-06 0.04977 0.005746 0.5442 4.246e-05 0.5322 0.0003145 0.009801 0.002794 0.000122 0.02375 0.001824 0.008513 0.007578 0.0004717 0.4429 0.001583 7.588e-05 0.1195 0.006261 0.002144 0.1972 0.0003642 0.5473 0.001301 1.065e-06 6.033e-06 0.00249 0.5739 1.522e-05 0.0007124 0.0003332 0.001068 0.032 0.00115 0.0105 0.0005799 0.001381 0.002226 0.01316 0.01055 0.000129 0.0001638 0.002404 0.004839 0.004618 0.0134 0.6232 0.1952 0.01049 0.2584 0.002916 0.003596 0.0005684 0.0005604 0.0002364 0.0006784 0.0004021 0.001207 0.001936 0.4797 0.003637 0.002056 0.001049 0.004713 0.001834 0.4783 0.0004467 0.002712 0.004649 0.008905 0.0006803 0.004059 0.107 0.001915 0.00943 0.5703 0.004038 0.0002218 0.001736 0.0001198 0.001671 0.5847 0.001612 0.001201 0.07976 0.000212 6.503e-05 0.0233 0.005361 0.001519 0.352 0.00666 0.001005 0.01733 0.000942 0.0006174 0.002951 0.001235 0.3221 0.0008893 7.728e-06 0.0004051 8.673e-05 0.0002171 0.01488 0.001761 1.102e-05 0.01488 0.01119 0.02352 0.008944 0.03294 0.003511 0.6292 0.03399 0.001703 0.001604 0.01072 0.5777 0.005811 0.4183 0.003552 0.0134 7.31e-05 0.09479 0.01274 0.5765 0.5048 0.003359 0.002698 0.000424 0.0001356 0.0002336 0.0009823 0.0008139 0.006151 0.0002053 0.006984 0.3528 0.002666 5.606e-05 0.0009611 7.045e-05 1.327e-05 0.01001 0.004104 0.0009261 0.0005411 0.006836 3.235e-07 0.0003867 0.003548 0.008975 0.00471 0.4125 0.0001608 0.02085 0.01408 0.0003413 0.001588 3.777e-05 0.01773 0.6202 0.2375 0.007969 0.0001218 0.0007638 0.5749 0.4268 0.005897 0.0003271 0.0003148 0.0009211 0.03217 0.006747 0.01844 0.5092 0.003226 0.0003122 0.0007695 0.004942 0.6344 0.001205 0.003155 0.00564 0.3463 0.03426 0.007252 0.5857 0.001793 0.002583 0.0003544 0.004415 0.004257 0.004438 0.005916 4.827e-05 0.0005098 0.003024 0.003482 0.0003484 0.003873 0.006257 0.001501 0.0009794 0.003764 0.00931 1.715e-05 0.009461 0.001475 0.001408 0.000235 0.000801 0.0002324 0.1062 0.004506 0.00239 0.0006395 0.002341 0.01473 1.579e-05 0.01349 0.001589 0.006158 0.0005925 0.002172 0.004382 0.02403 0.008924 0.001929 0.01489 0.0009693 0.01335 0.002651 0.08261 0.004673 0.002971 0.0009887 0.003571 0.002798 0.009215 3.041e-05 0.001551 0.007532 0.5701 0.007266 0.000167 0.002978 0.07238 0.001882 0.06897 0.5775 0.003585 0.005263 0.2988 0.003154 0.4621 0.002025 0.001333 0.002093 0.0134 0.04141 0.005007 0.05436 0.0004466 0.009211 0.004316 0.003171 0.5416 0.001613 0.0003642 0.0001093 0.0002558 0.0001495 0.0004487 0.001918 0.1214 0.01086 0.004861 0.08392 0.5447 0.001326 0.5642 0.007831 1.367e-05 0.5381 0.005639 0.002158 0.0004435 0.02553 0.5488 0.0007176 0.006013 1.549e-05 0.005274 0.001096 0.0009827 0.004342 0.001291 0.00185 0.01416 0.0003242 4.485e-05 0.009959 0.007703 0.02046 0.0006831 0.000479 0.001557 0.4444 0.002185 0.001312 0.004388 0.0003743 0.001114 0.01756 0.002538 0.0005211 0.008868 0.5225 0.5957 0.0004717 0.3015 0.001257 0.007803 2.848e-05 0.000695 0.5341 0.002054 0.007574 0.5616 0.0001597 0.0004944 0.008654 0.003541 0.04747 0.00129 0.008691 1.867e-05 0.003369 0.002169 0.5118 0.001177 0.004152 0.0295 0.0006469 0.0006796 0.4265 0.0001813 0.004707 0.03394 0.0007021 0.0016 0.06575 0.01586 0.0005394 1.401e-06 0.02347 4.031e-05 0.004228 0.4569 0.556 0.001256 5.339e-05 0.004021 0.0006062 7.905e-05 0.5434 2.222e-05 0.005213 0.004602 0.002909 0.57 0.002146 0.001967 0.001545 8.363e-05 0.003036 0.0001356 0.001545 0.006591 0.00141 0.2947 0.00376 0.5536 0.0009342 0.01115 0.007486 0.000588 0.5854 0.00144 5.769e-05 5.191e-05 0.008625 0.106 0.0003157 0.006181 0.0002639 0.08471 1.217e-05 0.001073 0.0003188 0.004904 0.0004332 0.009936 4.446e-05 0.576 0.002833 0.005236 1.016e-05 0.003992 0.001223 8.349e-06 0.002696 0.002479 0.4398 0.5757 0.009786 0.1101 0.0002274 0.3892 0.2998 0.002451 0.02281 0.002219 0.001119 0.00515 0.002217 0.4991 0.1284 0.003489 0.5162 0.01115 0.3982 0.392 0.00409 0.004685 0.002262 0.003038 0.01501 0.4175 0.001939 0.6241 0.5235 0.00627 0.4939 0.001005 0.00068 0.003025 0.009542 0.000692 0.0007482 1.018e-05 0.5501 0.5446 0.003942 0.3531 0.01019 0.0007273 0.0003828 0.1754 5.019e-05 0.5636 0.00166 0.004646 0.02573 0.002136 0.3996 0.005556 0.001222 3.688e-05 0.002475 0.007723 0.2648 0.0003291 0.006553 1.704e-06 0.002382 0.5698 0.003545 0.007971 0.4434 0.0001735 0.003885 0.002005 0.5946 0.01818 0.002532 1.069e-05 0.003194 0.001139 0.0621 0.007621 0.06045 0.6319 0.01391 0.5503 0.2058 2.782e-06 0.5611 0.4423 0.000948 0.0855 0.5761 9.022e-06 0.003606 0.0007868 0.002801 0.0006164 0.004114 0.2526 0.4536 0.0007062 0.001348 0.5066 0.00134 0.01894 0.001148 0.003169 0.634 0.0008467 0.02672 8.153e-05 0.6219 0.002832 0.03068 0.5552 0.003802 0.5195 8.128e-05 0.009117 0.5686 0.0001247 0.1511 0.00176 0.002971 0.0009769 0.001445 0.5224 1.13e-05 0.4444 2.986e-05 0.002868 0.0002872 0.001548 0.000129 0.0008054 0.02724 0.001189 0.3911 0.001262 0.3882 0.0235 0.01117 0.0003745 7.546e-06 0.02291 8.149e-06 0.003064 0.1077 0.0001538 0.003036 0.1021 0.3817 0.0002411 0.0683 1.355e-07 0.0002238 0.3862 0.0004131 0.003423 0.05348 0.0007755 3.139e-05 1.193e-05 0.3792 0.6313 0.001876 0.006291 0.001155 0.001271 0.001125 0.005216 0.01037 0.003977 0.08971 0.1085 0.1402 0.5029 1.254e-05 0.005484 0.1026 0.002676 0.007653 0.4091 0.0007883 0.01063 0.6541 0.005342 0.03841 0.00563 0.4465 4.682e-05 0.0003795 0.03129 0.00732 0.005013 7.037e-05 0.003959 0.004501 0.005345 0.01484 0.497 0.002806 0.5372 0.5611 0.002269 0.0206 0.06981 0.003381 0.008294 0.003194 0.002786 9.066e-05 0.0001999 0.003364 8.071e-05 1.007e-06 0.4456 0.001526 0.5669 0.001501 0.001817 0.0006917 0.07239 0.0007523 5.424e-05 0.00091 0.00235 0.003 0.2085 0.0001245 0.01415 0.0005842 0.001147 0.5068 0.001687 0.007104 0.001038 0.00409 0.01486 4.905e-05 6.885e-05 0.01172 6.282e-05 0.006957 0.3176 0.07093 0.002534 0.004514 0.00176 0.4921 0.009339 0.001032 0.0001928 7.047e-05 0.0002858 0.001023 0.0003219 0.0009006 0.003399 0.000126 7.27e-06 0.01492 0.5724 0.5767 0.0006046 0.005428 0.0009792 0.004889 8.361e-05 0.1515 0.002457 0.00587 0.01012 0.5643 0.03379 0.002233 0.001807 0.5065 0.5857 0.003803 0.0001526 0.01212 0.002436 0.000461 0.0006679 0.006322 0.004265 0.01094 8.633e-06 0.0005318 0.0003303 0.000102 0.0008574 0.5141 0.4849 0.005832 0.3426 0.005399 0.001238 0.4559 0.01235 0.001666 0.0004443 0.001049 0.003126 0.002047 9.471e-05 0.002156 0.09512 0.01141 0.002738 0.0002804 0.0001554 4.523e-05 0.003166 0.0002557 0.006656 0.00779 0.002229 0.005464 0.5757 0.01317 0.01009 0.0004801 0.4489 0.01186 0.001331 0.001932 0.001474 0.5756 0.002215 0.002097 0.07378 0.004426 0.0018 0.002469 0.01225 0.002175 0.004785 0.05737 0.09661 6.077e-06 0.0001004 0.003989 0.009464 0.0005085 0.4835 0.5833 0.001177 0.001868 2.211e-05 0.02105 0.239 0.0687 0.002457 0.04307 4.944e-05 0.001235 0.0001015 0.002003 2.69e-05 0.03239 0.2724 0.04551 0.0006106 0.0002414 0.0001803 0.0006408 0.00052 0.0003044 0.006435 0.003435 0.3357 3.095e-05 1.648e-05 0.01997 0.02556 0.0005436 5.757e-07 0.002478 0.002208 0.01218 0.007075 0.003379 0.07387 0.003462 0.001813 0.03247 0.0118 0.4132 0.005404 0.0003645 0.0001289 0.0005973 0.4943 0.01861 0.000291 0.0105 0.0017 0.004469 5.595e-05 0.0001855 7.047e-05 0.005836 0.001816 0.5969 0.0005537 0.3672 0.006383 0.1442 0.004064 0.004553 0.01836 0.06335 5.946e-06 0.4436 0.004111 1.911e-05 0.02196 0.3724 0.5694 0.002405 0.001117 0.0001066 0.06598 0.001537 0.004724 0.5815 0.000564 0.1272 0.0001388 0.01347 0.0007727 0.01395 0.0005721 0.0004261 0.4296 0.002581 0.0003857 0.0002879 0.004682 0.00367 0.00178 3.565e-05 5.294e-05 0.01215 0.002057 0.004013 0.002981 0.02046 0.002963 0.5807 0.001644 0.1515 0.05341 0.0003214 0.004288 0.001692 0.3087 0.000388 0.5698 0.00378 0.001596 0.002528 0.006441 4.876e-05 0.2859 0.001126 0.00258 0.4964 0.5702 0.002397 0.0001729 0.00093 0.02632 0.015 0.000631 0.01014 0.08366 0.3645 8.265e-05 0.001783 0.4122 0.07489 0.3885 0.1551 0.008163 0.01178 0.005308 0.007294 0.0236 0.00712 0.001332 0.0001208 0.004083 0.0003145 0.001125 0.0001449 0.005606 0.02707 1.919e-06 0.003338 0.01327 0.002217 0.004101 0.5931 5.669e-05 0.0002013 0.0116 0.3698 0.001893 0.001414 0.009966 0.02081 5.46e-06 0.4912 0.03208 0.003368 0.01379 0.06399 0.0173 0.007115 0.000554 0.001326 0.005194 0.0004707 0.002244 0.000359 0.001848 0.5345 0.005614 0.3738 0.2269 0.01003 0.0007102 4.128e-05 0.004061 0.0005336 0.57 0.003226 0.01264 0.004231 5.438e-06 0.016 0.009474 0.004283 0.6109 0.001427 0.007343 0.0181 0.2099 0.0003041 0.005516 0.008062 0.01146 0.004973 0.0003564 0.009066 0.002155 0.001656 2.564e-05 0.006731 0.001171 0.000686 0.001781 0.01112 0.5708 0.003728 0.01149 7.221e-05 0.5388 0.001162 0.001157 0.00753 0.00112 0.0406 0.0003268 0.0009653 0.001541 0.002218 0.003554 0.001229 0.002844 0.625 0.02189 0.5751 0.0003885 0.0002551 0.1104 0.001004 0.002456 3.465e-05 0.0059 0.003495 0.0008402 0.000232 0.006273 0.0001017 0.6352 0.001442 0.01727 0.3261 0.0719 0.002747 0.00214 0.01512 1.971e-05 0.01215 0.007183 1.632e-05 0.01124 0.002131 0.5428 0.000383 0.05569 0.4562 0.5625 2.072e-06 0.001188 0.00446 0.0002044 0.001519 0.01706 0.4998 0.02982 0.0007496 0.1521 0.0008385 0.01407 0.002031 0.0456 0.001669 0.5686 0.04735 0.002371 0.002414 0.0002659 0.3923 0.00363 4.443e-05 0.003812 0.01474 0.0155 0.01059 0.03944 0.0006479 0.005347 0.004777 0.5094 0.01536 0.00424 0.006201 0.006443 0.1752 0.001711 0.00361 0.3902 0.01331 0.003224 0.04182 0.0005804 0.001418 0.5938 0.05231 0.3175 0.05824 0.0001336 0.001416 0.02511 0.001795 0.01662 0.001856 0.4552 0.0006903 0.0001102 0.002096 0.001133 0.001872 0.0316 5.645e-05 0.0003529 0.002707 0.0006313 0.001303 0.5788 0.6225 0.1228 0.06659 0.004251 0.01238 0.02585 0.01667 4.15e-05 0.00351 0.001245 0.5469 0.003088 0.08871 1.291e-05 0.008062 0.003257 1.309e-05 0.0002104 0.1463 0.01099 0.0008118 0.3004 0.0005213 0.0001637 0.4176 0.0005772 1.18e-05 7.738e-05 0.02504 0.5542 0.0009931 0.00811 0.0003851 0.001296 0.4041 0.02417 0.01492 0.09885 0.002302 0.01598 0.0003941 0.5192 0.004374 0.0004266 0.0003111 0.0005737 0.0006655 0.000986 0.001063 0.02362 3.52e-05 0.001711 0.2448 0.5811 0.008715 0.0006497 0.0007314 0.0001087 0.000221 0.07981 0.0006039 8.993e-07 0.001219 0.01333 0.006299 1.155e-05 0.001139 0.006448 2.484e-05 0.001796 0.0002402 0.0005721 0.0006004 0.3162 0.000565 0.009311 0.0001403 0.002782 0.001332 0.0009416 0.4301 0.001007 0.004771 0.003525 0.003979 0.002711 0.003245 0.000483 0.006279 0.0004589 0.01176 0.003438 0.002476 0.001352 0.05868 0.0002416 0.002169 0.0001491 0.0007319 0.00148 0.000187 0.4083 0.579 0.003649 0.0004987 7.494e-06 0.0005867 0.003346 0.0009609 0.0005798 0.009902 0.0355 0.3692 0.000361 0.0006984 0.004949 0.306 0.001083 0.001701 0.5634 0.004395 2.22e-05 0.589 0.002899 0.005949 0.0003188 0.4283 0.001946 0.002845 0.004128 0.3539 0.006496 0.5215 0.01781 0.00123 0.5016 0.405 0.006497 0.004637 0.5676 0.005282 0.04103 0.3157 0.4492 0.45 0.0005294 0.4491 7.269e-05 0.003373 0.03183 0.3954 0.004899 0.06478 0.3272 0.001936 0.0003063 0.5557 0.001807 0.007406 0.004186 7.122e-05 0.0008112 0.009623 5.497e-05 7.504e-05 0.01231 1.016e-05 0.00263 0.00068 0.001399 0.0004277 5.99e-07 0.4067 0.01166 0.4561 0.04454 0.0002361 0.4979 0.01617 0.3623 0.01013 0.0004388 0.0009298 2.396e-05 0.0002889 0.001513 0.0009472 0.006639 0.0006419 0.0003935 0.01057 0.002409 0.5825 0.002071 0.0001449 0.001481 0.0008249 0.003588 0.01212 0.1739 0.00316 0.001962 0.0022 0.5761 0.004841 0.00835 0.001221 0.5686 0.2994 0.005845 0.03109 0.004094 0.000647 0.0002998 0.0004034 0.002308 0.006905 0.5505 7.067e-05 0.00162 0.0005508 0.001692 0.5062 0.5663 0.007759 0.0004091 1.845e-05 0.003625 8.995e-07 0.2949 0.0003014 0.02104 0.0007772 0.2644 5.275e-05 0.573 0.02484 0.0002111 0.04685 3.38e-05 0.001565 0.000503 0.001175 0.0004043 0.2548 0.0111 0.004696 0.555 0.00201 0.002472 0.0003418 5.346e-05 0.003511 0.001642 0.3955 1.62e-05 0.03296 0.5706 0.04507 9.436e-05 0.03372 5.788e-05 0.05996 9.302e-05 0.008127 0.003502 0.351 0.001846 0.5494 0.5492 0.5891 0.02285 0.03223 0.568 0.004174 0.00389 0.008711 0.001329 0.005559 0.05237 0.02214 0.0006327 0.01752 0.003058 0.01159 0.06431 0.01535 0.002147 0.0005452 0.004217 0.004787 0.004644 0.0003337 0.2084 0.5095 0.4787 0.002024 0.001125 0.001252 0.0004268 0.007118 0.0001419 0.4504 1.099e-05 4.974e-05 0.000334 0.0005343 0.08112 0.002761 0.002666 0.0002402 0.001146 0.0003853 0.005726 0.001201 0.3999 0.4329 0.0005884 0.5501 0.001642 0.5931 0.0119 0.0001061 0.5739 0.0124 0.1277 0.003476 0.006845 0.5742 0.001951 0.007648 0.008627 0.003101 0.008889 0.0006211 0.0008925 0.004158 0.007414 1.703e-06 0.002822 0.538 0.008491 0.5684 0.0001596 0.01852 0.02226 0.001085 0.04402 0.5717 0.008135 0.0001594 1.956e-05 0.4921 0.0007453 0.1998 0.005125 0.006501 0.4491 0.5719 0.001203 0.008811 0.0006099 0.008824 0.0004097 0.007442 0.4708 0.001759 0.005266 0.574 0.5633 0.006958 0.002675 0.007845 0.017 0.001405 0.003429 8.694e-06 0.0001631 0.1549 0.02699 0.1168 0.0002249 0.0161 0.009474 0.002621 0.0009513 7.118e-05 0.0007506 0.1602 0.007431 0.02281 0.0006201 0.5585 0.01557 0.011 0.007956 0.009847 0.0002363 5.105e-05 0.003352 0.1764 0.004213 0.000349 7.739e-06 0.1799 7.945e-05 0.0009596 0.02049 9.316e-06 0.003659 0.001985 0.01281 0.537 0.003735 0.02908 0.0007329 0.003362 0.01325 0.0001652 0.02395 0.002518 0.02197 0.0008005 0.4538 0.0004571 0.003012 0.3615 0.3987 0.01282 0.002756 0.03215 0.005354 0.00404 0.0005354 6.472e-05 0.0009045 0.1191 0.01525 0.002488 0.003713 0.005862 0.02564 0.00484 0.002158 0.001612 0.02181 0.01121 0.02717 0.0005336 0.00079 0.0001576 6.109e-05 0.4294 0.005372 0.0005262 0.5357 0.5616 9.568e-05 0.007424 0.003386 0.001073 0.008412 0.000479 5.978e-05 0.002388 0.002088 0.0004096 0.005685 0.5593 0.0004706 0.002181 0.0002858 0.3092 0.01035 0.006677 0.0005889 1.288e-06 0.5758 0.004596 0.3996 2.54e-06 0.4554 0.3869 0.0002636 4.903e-05 0.001536 0.0143 0.494 0.01367 0.4803 0.01006 0.03201 8.262e-06 0.0007369 0.1234 0.00265 0.001457 0.01096 0.004612 0.002482 5.717e-05 4.317e-05 0.004203 0.05288 0.01065 0.001174 0.001834 0.0005357 0.003483 0.009067 6.676e-06 0.0009377 0.002228 0.0249 0.001258 0.01239 0.02608 0.00328 0.1955 0.259 0.0008812 0.0004237 6.119e-06 0.02418 0.5666 0.2265 0.3982 0.002462 0.004084 0.5559 0.004644 0.001977 0.06019 0.002443 0.2883 0.006198 4.323e-06 0.0001242 0.006469 0.001509 0.0004144 0.06149 0.5671 4.452e-05 0.423 0.000707 0.0005034 7.213e-05 0.5722 0.09537 0.3543 0.001106 0.001723 0.01176 0.02417 0.01645 0.001068 0.004483 0.001631 0.005823 0.00201 0.01117 0.003966 0.0697 7.928e-05 0.008276 0.6561 0.01373 0.0001567 0.0001498 0.001135 0.3508 0.0005728 0.3947 0.0007756 0.0009717 0.0006783 0.0009818 0.02355 3.435e-05 0.003758 0.0003372 0.002956 0.0002225 0.002693 0.2855 0.0404 7.468e-05 0.003354 0.01277 0.0157 0.0004272 0.0003476 0.0009793 0.571 0.003208 0.002244 0.0001751 0.0003525 0.003113 0.3074 0.003783 0.08134 0.0003621 0.0006869 9.297e-06 0.02776 0.4158 0.5679 0.4132 0.007424 0.01234 0.411 0.5618 0.0006605 0.006356 0.008822 0.001897 0.01381 0.009374 0.002293 0.622 0.3555 0.002198 0.02707 6.379e-06 0.00656 0.00176 0.4116 0.0007106 0.003323 0.00811 0.004565 0.003911 0.000214 0.003948 0.5702 0.4089 0.1195 0.0006325 0.004382 0.001476 0.001475 0.007973 0.0002653 0.0002634 0.009163 0.008193 0.02807 0.479 0.00625 0.005418 0.01542 0.001406 0.01192 0.01181 0.341 0.0207 0.002582 0.000277 0.5655 0.5379 0.3897 0.4138 0.0005212 3.765e-07 7.297e-05 0.01842 0.002429 0.001317 0.0006045 0.0002004 0.00313 0.02345 0.004701 0.004269 0.0005653 0.006859 0.002046 6.41e-05 0.001092 0.01314 0.5735 0.02985 0.002726 0.5949 0.006571 0.02479 0.00139 0.001023 6.842e-06 0.03018 0.003569 0.001105 0.001723 0.002499 0.5764 0.0007959 0.001349 0.004933 3.865e-05 0.02841 0.2771 0.03647 1.504e-06 0.0003539 0.01262 0.003774 0.008632 0.6277 0.2829 0.1395 0.003247 0.004017 0.000683 0.002205 6.902e-05 0.0009026 0.001899 0.04161 0.003373 0.005036 0.002803 0.03608 0.000551 0.6273 0.005035 0.0007956 0.01766 0.01031 0.02425 0.003773 0.01186 0.0007238 0.002058 0.001166 0.0006335 0.0002063 0.001529 0.001473 0.0007047 0.0007544 0.004221 0.1755 0.001039 0.6419 0.1045 0.001128 1.495e-05 1.548e-05 0.003084 0.0007159 0.01434 0.002684 0.09149 1.219e-05 0.008565 0.005223 0.4087 0.0001022 0.01394 0.01033 0.0311 0.002442 0.0003945 0.122 0.5005 0.002005 0.0001987 0.005441 0.0007679 6.464e-06 0.00157 0.4783 0.006254 0.02979 0.000718 0.007986 0.5916 0.007897 0.0008979 0.01431 0.004926 0.026 0.07696 0.0003208 0.001481 0.1488 8.512e-05 0.001559 0.009228 0.009202 0.02267 0.0009841 0.3653 0.0001526 0.0009753 0.505 0.001242 0.00147 0.3177 0.0003574 0.003299 6.694e-05 0.002451 0.002341 0.5749 0.00146 0.5997 0.0006585 0.0001236 0.005065 0.0003861 0.0004422 0.0018 0.05745 0.01183 0.008162 0.06833 0.2902 0.0001369 0.001529 0.0003913 0.001907 0.0002314 0.001087 0.0117 0.00702 0.00494 0.007735 0.007223 0.03203 0.005359 0.001618 0.003565 0.0002467 0.5166 0.02736 0.06011 0.0003458 5.5e-05 0.03463 0.002229 0.03538 0.0008118 0.0004402 0.0001128 4.283e-07 1.077e-05 0.008168 0.001855 0.007562 0.0002379 0.4032 0.08016 0.006815 0.001385 0.001432 0.00324 0.5722 0.0006076 0.0008316 6.178e-05 0.003066 7.887e-06 0.00152 0.009095 1.695e-05 0.2149 0.02116 0.003738 0.1556 0.004381 0.004623 0.01219 0.005445 0.002595 5.825e-05 0.009926 0.5145 0.001338 0.002581 0.005685 0.007308 0.0007404 0.001773 0.3664 0.01355 0.004611 1.17e-05 0.0004025 4.173e-05 0.4269 0.01378 0.001264 0.007833 0.00313 0.01161 0.003959 0.002478 0.5578 0.004542 0.004691 0.002076 0.001543 0.5014 0.5765 0.0003849 0.002035 0.004435 0.1951 0.008936 0.0002381 6.338e-06 0.3157 0.006477 0.000664 0.007471 0.000124 0.2365 1.946e-05 0.00351 0.01296 0.5134 8.238e-05 0.01487 0.02392 0.05587 0.002543 0.4452 0.0006044 0.01747 0.001252 0.002066 0.011 0.01097 0.3191 0.01028 0.3926 0.0832 0.001697 0.005443 0.5644 0.002938 0.5705 0.5731 0.001635 0.002755 0.3025 0.5503 0.6243 0.001872 0.00283 4.803e-05 0.008951 0.01244 0.001024 0.00122 0.001244 0.05785 0.01264 0.0001497 0.6608 0.0005925 0.00223 0.4379 0.6194 0.0003904 0.0009117 7.247e-05 0.003537 0.001456 0.6474 0.0003039 0.005588 0.0002976 0.0005219 0.001029 0.0002572 0.005629 0.001639 1.086e-05 0.01511 0.001145 0.0006259 0.007776 0.01277 0.5262 0.1155 0.5451 0.00267 0.5556 0.02912 0.0005132 1.474e-05 0.003857 0.02422 0.01029 0.00143 0.0006858 0.000652 0.6537 0.0001205 0.2331 0.002548 0.6222 0.09768 0.001155 0.5759 0.009932 1.372e-05 0.007237 0.000821 0.0001974 0.01743 0.4949 0.0002137 0.005332 1.634e-06 0.4677 1.449e-05 0.02991 0.0003563 0.0009539 0.568 0.002925 0.0006276 0.5709 0.003857 0.002494 0.0002286 0.002742 0.001216 0.002176 0.05923 0.00845 0.0008784 0.0009437 0.0121 0.0007351 0.001228 0.0004636 0.004649 0.02545 0.004751 0.005877 0.00222 0.03959 0.002903 0.09461 0.001918 0.004501 0.02147 0.009529 6.937e-05 0.0004132 6.955e-05 0.003712 0.004882 0.002657 0.008338 0.004543 1.873e-05 0.01636 0.3497 0.0003137 0.5362 3.653e-05 0.000727 0.1924 0.0001187 0.0009393 0.004564 0.4924 0.003886 0.0008837 0.04073 0.005273 0.4432 6.445e-05 0.007017 0.00266 0.6502 0.003419 0.01316 0.0001947 0.01198 0.003439 0.05538 0.01212 0.001003 0.006293 0.0001454 0.2003 0.001194 0.001513 0.01101 0.01496 0.004045 0.004072 0.0002533 0.0001234 0.01013 0.01403 0.0003864 0.0006474 0.0002406 8.283e-06 0.5728 0.002809 0.01753 0.006763 0.0007503 0.0002279 0.00661 0.0004956 0.002655 0.003058 6.796e-06 0.02007 0.1669 0.001451 0.002799 0.006061 0.003634 0.004987 0.01265 0.0009111 0.002254 0.08593 0.5819 0.0275 0.0004595 0.0005402 3.813e-05 0.5455 0.02109 0.000923 0.0007484 0.004697 0.001716 0.001984 0.01727 0.4113 0.0002591 0.3679 0.01304 0.5581 2.632e-05 0.001198 0.5873 0.01412 0.01446 0.0007892 0.004485 0.007066 0.005579 0.0004895 0.006846 0.004513 0.4186 2.503e-05 0.000316 0.5212 0.0004944 6.37e-05 0.00186 0.2224 0.4105 0.01857 0.0006641 0.0002059 0.1144 0.00152 0.5764 0.002756 0.01231 0.0004967 0.0006787 0.02717 0.008528 0.2267 0.005399 0.001238 0.000162 0.03457 4.601e-05 0.007834 0.0001185 0.1526 0.001316 0.00133 0.1064 0.3292 0.02613 0.5655 0.001827 0.004495 0.5801 0.007739 5.841e-05 7.534e-05 1.335e-05 0.03009 0.02217 0.5954 0.00247 0.003497 0.0002048 0.4128 0.004637 0.01084 0.004797 0.0004612 0.0008734 6.42e-06 0.001816 0.0007919 0.0008446 0.0006767 0.001442 0.00101 0.001694 0.001574 0.002419 0.001305 5.821e-05 0.000297 0.1016 0.0008263 0.002988 0.0004956 0.0549 0.002489 0.007708 0.3007 0.008413 0.0037 6.796e-05 0.0001867 0.04441 0.5586 0.0001019 0.5711 0.5475 2.562e-07 0.01582 0.001219 0.003659 0.001006 0.02317 0.003976 0.005256 0.01426 0.005672 0.01249 0.4878 0.02572 0.5034 0.5691 0.5738 0.302 0.004174 0.000198 0.006439 0.001326 0.003795 1.226e-05 0.001553 9.899e-05 0.00131 0.05706 5.704e-05 0.02257 0.003564 0.001146 0.004661 0.0004525 0.01052 0.001318 1.105e-05 0.02326 0.003794 0.02351 0.4108 0.009248 0.4076 0.4317 0.04353 0.2727 0.001897 0.002269 0.0005021 0.001513 0.0001497 0.3755 0.4066 0.0006391 0.5637 0.5617 0.00378 0.0005485 0.001351 0.002822 0.1521 0.005211 0.008283 8.007e-05 0.001481 0.003631 0.5099 0.0004834 0.003861 0.0001678 0.002715 0.008298 0.4222 0.01044 1.767e-06 0.01188 0.001716 0.001238 0.5726 0.01404 0.002217 0.0002323 0.001959 0.03924 0.005484 0.000661 0.0005292 0.0001662 0.0009978 0.001134 5.622e-05 0.1603 0.5836 0.0004223 0.004124 0.0007472 0.009439 0.003455 0.005993 9.35e-06 3.322e-05 0.0009511 0.000442 0.5718 0.002278 0.3963 0.5691 0.001343 0.3991 0.4816 0.001273 0.000931 0.0242 0.02068 0.001246 0.001046 0.0007673 0.02721 0.01737 4.467e-06 0.2015 0.2952 0.445 6.379e-05 0.01256 0.567 0.0006004 0.3799 1.131e-05 0.06057 0.0004569 0.0003819 1.37e-05 0.002961 0.5182 0.001687 0.02467 0.0153 0.0228 4.856e-05 0.00202 0.002299 3.669e-06 0.5728 0.0003203 0.0004201 0.0009485 0.0001655 0.001102 0.001988 0.0005133 0.00527 0.0007246 0.007776 0.001728 0.5718 0.001595 0.001582 0.004908 0.5721 0.001547 0.001578 7.288e-05 0.575 6.699e-05 0.002573 0.1171 0.0001 0.009194 0.0005003 0.01619 0.1285 0.002438 0.00233 5.73e-06 0.002487 0.00198 0.01791 0.0009674 0.003267 0.5783 0.003155 7.407e-06 0.0006663 0.002076 0.003174 0.04893 0.00221 0.009212 0.0009994 0.006422 0.6564 0.1815 0.0239 0.002306 0.0006303 0.004079 0.01331 0.0001414 0.0002938 3.648e-07 0.01398 0.001906 0.0008285 0.6274 0.007247 0.3771 0.03124 0.05677 0.00068 0.3509 0.568 0.002604 0.00281 9.803e-05 0.06169 0.002479 9.368e-05 0.0002148 0.0006532 0.002504 0.005774 0.001061 0.003805 0.003284 0.2546 0.0006794 0.3632 0.1365 0.009226 0.004337 0.001716 0.003311 0.004689 0.001042 0.003208 0.01229 0.01333 9.316e-05 0.000548 0.2845 0.002437 0.0008426 0.01654 0.01513 0.0002124 0.006675 0.01076 0.002078 0.0008891 5.902e-06 0.002198 0.3433 0.3384 0.004956 0.5809 0.0001973 0.6241 0.623 0.01177 0.0006479 0.002426 0.002552 0.5752 0.008482 0.2496 5.929e-05 0.001622 0.5687 0.0146 0.01427 0.004397 0.006096 6.248e-05 0.002223 0.001586 1.036e-05 0.0005755 0.001985 0.01093 0.0008516 0.4292 0.005248 0.0008234 0.0004367 0.01013 0.0006122 0.00832 0.000475 0.02663 0.002672 1.207e-05 0.2114 5.949e-05 0.2026 0.002224 0.002969 0.5559 0.105 0.4992 0.0004878 0.2687 0.00129 0.04774 0.003004 0.0007406 0.0001056 0.02039 0.01455 0.000123 0.0007318 0.3828 0.02744 0.003317 1.233e-05 0.006959 0.01441 0.008379 0.005454 0.03052 0.005131 0.0001942 0.002449 0.06456 0.00212 0.0001231 0.0008303 0.003794 0.002296 0.0003151 0.001875 0.00199 0.0002882 0.002946 0.0006999 0.5761 0.04146 0.5713 0.5536 0.001571 5.693e-05 0.001453 0.001895 0.0007023 0.5767 0.006519 0.05043 0.002102 0.004 0.00106 0.003731 0.005025 0.3357 0.001305 5.039e-05 0.006095 0.0006898 0.002454 0.0104 0.001345 0.5469 0.02661 0.1655 0.004069 0.0007806 0.632 0.001922 0.001788 0.01057 0.002391 0.4352 0.014 0.09743 0.04007 0.6233 0.0003415 0.0002333 0.0006077 0.0004039 0.2768 0.6041 0.004517 0.01581 0.0003073 0.04616 0.02697 0.02057 0.5608 0.007173 0.0004387 0.007342 0.5764 0.0001274 0.0005937 0.03472 0.02226 0.01931 0.01496 0.000433 0.00652 0.007461 1.203e-05 0.04732 0.01151 0.001876 0.008109 0.1826 0.001471 0.001125 0.0007798 0.0002191 0.0001089 0.001646 0.6393 0.002277 0.004346 0.001238 0.001918 0.001298 0.02302 0.3835 0.0377 0.001228 0.4026 0.0001242 0.001999 0.02258 0.005241 0.01937 0.00322 0.001014 0.3897 0.1089 4.171e-05 0.3675 0.0006033 0.07967 0.0004817 0.6233 0.008629 0.003859 0.004515 0.009819 0.0006897 0.007883 0.007054 0.003032 0.006669 0.006065 0.004772 0.001856 0.5688 5.911e-05 1.173e-05 0.02064 0.001015 0.0004598 0.004276 0.3697 0.419 0.00278 0.0004725 0.5698 4.383e-05 0.001445 0.02552 0.0002672 0.3918 0.007168 0.002706 0.001476 5.447e-05 0.0004962 0.006578 0.01826 0.0169 0.002845 0.001961 0.0006756 0.002536 0.007673 0.003205 0.3515 0.004761 0.1818 0.005005 0.001523 0.06698 0.00265 0.0491 0.265 0.007134 0.0008149 0.2817 0.001761 0.0006244 0.4315 0.0007949 0.04574 0.006964 0.01096 0.5814 0.0002686 0.5666 0.01054 0.002678 0.5693 0.002125 0.01406 0.5705 0.01268 0.08082 0.001059 0.0006805 0.01057 0.004242 0.001735 0.001746 0.000567 0.002943 0.001215 0.003499 0.001353 0.009302 0.009427 0.5685 0.0002613 0.555 0.07675 1.168e-05 0.0008757 0.0008104 0.001367 0.5568 0.00103 0.005677 0.5944 6.09e-05 0.004986 0.03922 0.0003987 0.004324 0.1073 0.0003491 0.005671 0.0003576 0.01224 0.004192 0.5618 0.0009165 0.01059 0.006283 0.07698 0.02366 0.5442 0.003875 0.5625 9.586e-05 0.04997 0.000693 0.0002775 0.003855 0.001974 0.4075 0.001461 0.0001464 0.003293 0.0002871 0.0005603 2.602e-05 0.001389 0.000774 0.02779 0.07241 0.008654 0.0007923 0.3587 0.006408 0.008289 0.005118 2.237e-06 0.001272 0.002442 0.003751 0.005873 8.196e-05 0.003338 0.4082 0.005796 0.002689 0.002637 0.005312 0.000412 0.0008339 0.006425 0.0005071 0.05713 5.766e-05 0.5847 0.01849 3.436e-05 0.001903 0.01282 0.000568 0.002098 0.008858 5.905e-05 0.004807 0.0005217 0.005944 0.003145 0.01089 0.001133 6.086e-05 0.0004395 0.105 9.327e-05 0.001333 0.5691 0.01003 0.01375 0.02915 0.001966 0.005658 0.002396 0.4954 0.0002515 0.001743 2.408e-05 9.02e-06 0.00113 0.005055 0.002245 0.009539 0.6262 0.02985 0.001165 0.0086 0.01143 0.001608 7.773e-05 0.0001574 0.09366 0.000298 0.5339 0.0001915 0.0001947 9.286e-06 0.005781 6.497e-05 0.005455 0.008958 0.298 0.001606 0.05995 1.678e-05 0.002971 0.0006108 0.5733 0.5485 0.5957 0.001083 0.001953 0.002911 0.004484 0.001439 0.003075 0.0005478 0.002254 0.007693 0.01522 0.002558 0.012 0.001132 4.642e-06 0.0002049 0.003711 0.0001137 0.006296 0.02945 0.000248 0.0007273 0.0001634 0.003778 0.001415 0.006484 0.5517 0.002619 0.005204 0.0009669 0.0002602 0.001369 0.0001975 0.02217 0.3432 0.343 0.003785 0.02267 0.0002748 0.418 0.001012 0.0002102 0.02475 0.4055 0.002324 0.005655 0.002417 0.007764 4.643e-05 0.00739 0.005238 0.4122 0.0001978 0.006581 0.003874 0.003064 0.004429 0.341 0.3369 0.001799 0.5675 0.04048 0.3942 0.004771 0.001234 0.0004531 0.5624 0.03333 0.001585 0.004189 0.5547 0.001217 0.00309 0.00239 0.0003935 0.0005063 0.0117 0.07297 0.2204 0.001408 0.01284 6.831e-06 0.001456 0.002256 0.0005655 0.004753 0.01054 0.001286 0.0008448 0.0373 0.007297 0.001642 0.0007387 0.00305 0.003913 0.00599 0.008694 0.000137 0.6282 0.002035 0.002491 0.005335 0.01238 0.1072 0.001667 0.003507 0.001022 0.007896 0.5765 0.5731 0.0009812 0.08094 0.003925 0.00293 0.526 0.0001003 0.01256 0.002808 3.378e-05 0.004496 0.0006642 0.01039 0.02625 0.008613 0.4773 0.561 0.01731 0.0003855 0.08552 0.03629 0.001257 0.165 0.00275 0.3785 0.000531 0.6302 7.058e-06 0.004473 0.1494 0.001794 0.02281 0.004153 0.002176 0.0003259 0.001716 0.001615 0.0006801 0.5166 0.01152 0.005363 0.000195 0.5751 0.001012 0.002651 0.535 0.4994 0.001362 0.568 0.003904 0.002091 0.001869 0.0008645 0.2648 0.02564 0.0001727 0.002365 0.477 0.0001264 0.1061 0.003377 0.01016 0.008923 0.003803 0.5723 0.5006 3.411e-06 0.568 0.006181 0.0004339 0.6264 0.006219 0.03895 0.475 6.257e-05 0.3287 0.001661 0.001131 0.008018 0.004856 0.003008 0.006116 0.00206 0.001215 0.187 0.0001145 0.003668 0.0005724 0.002522 0.002042 0.02666 0.01077 0.002421 6.137e-05 0.6146 0.04075 0.4019 0.01942 0.0009839 0.001712 0.008 0.414 0.0003905 1.418e-05 0.0002095 0.003908 3.042e-05 0.0006926 0.004828 0.0001002 0.01179 0.0187 0.5081 0.001281 0.1833 0.0001183 0.0609 0.5714 0.0077 0.002368 0.02593 0.004099 0.01069 5.347e-05 0.009081 0.00248 0.5072 0.006547 0.09238 0.007844 0.004526 0.0003349 0.0001841 0.00358 0.1883 0.0006708 0.3946 0.0007115 0.01014 0.004462 0.001263 0.002269 0.1297 5.042e-05 0.0002795 0.5758 0.00837 0.004163 0.0003004 0.00505 0.0001387 0.1251 0.00351 0.02149 8.15e-05 0.001706 0.0007489 0.00202 0.001853 0.5576 0.003469 0.002726 0.007303 0.0006706 0.007181 0.00207 0.003313 0.03445 0.2957 0.001249 0.5684 0.0006434 0.007979 0.002762 0.001141 0.3965 0.006816 0.5659 9.75e-05 0.6241 0.00367 3.108e-07 0.01021 0.009187 0.4256 0.213 0.01166 0.003323 0.3279 0.00226 0.01322 0.5541 0.4202 0.005464 0.004754 0.0001955 0.00186 0.04364 0.004381 0.001684 0.007185 1.677e-05 0.5697 0.007849 0.008396 0.003375 0.01082 0.001534 8.819e-05 0.3517 0.005812 0.1107 0.0008195 0.001448 0.004647 0.003044 0.001191 0.0601 0.005466 0.0003624 0.001533 0.002051 0.5674 0.0304 0.004496 0.00824 0.0004304 3.398e-07 0.04174 0.007586 0.5703 0.001784 0.07394 0.002748 0.0002164 0.002845 0.001025 0.0002884 0.008237 0.002342 9.485e-06 0.003885 0.05967 0.001234 0.04643 0.1699 0.5614 0.008938 0.01133 0.001034 0.079 0.0001443 0.006785 0.3989 0.0001921 0.0004692 0.002485 0.3999 0.001568 0.05389 0.0001127 0.5686 0.0018 0.5434 0.001549 0.003534 0.007429 0.0006324 0.5483 0.001457 0.001885 0.4706 0.02609 0.01023 0.0003915 0.0021 0.003666 0.003949 0.01361 5.881e-05 0.02441 0.003314 6.412e-06 0.00588 0.02131 0.005362 0.001716 5.974e-05 0.0001756 0.000368 0.008292 0.575 0.0002829 0.0226 0.000502 0.002969 0.006822 0.01882 0.0004713 0.001684 0.00107 0.0005353 0.0009012 0.001157 0.003904 1.049e-05 0.000907 0.5614 0.001392 0.0002334 0.0005587 0.003526 0.006519 0.0001824 0.3008 0.04006 0.001201 0.02116 0.002644 0.0002382 1.184e-05 0.001445 0.0004196 0.07339 0.008911 0.0002039 0.5642 0.005865 0.001983 0.572 0.000314 1.515e-05 0.004186 0.0007887 0.009749 0.01582 0.002266 0.1809 0.002578 0.0005619 0.4052 0.4832 0.007947 0.4637 6.406e-05 0.0002108 0.0002023 0.0008809 7.929e-05 0.3 0.008188 0.001323 0.5516 0.0001712 0.001113 0.005733 0.0005726 0.001649 0.003921 0.1714 0.509 0.0002178 0.01136 0.007973 0.001782 0.4617 0.6303 0.2245 0.326 0.01694 0.01799 0.004813 0.05554 0.04729 0.02282 0.245 0.01188 0.01585 0.5547 0.0004364 0.001108 0.3042 0.00245 0.003643 0.00757 0.001651 0.001422 0.0001462 0.043 0.00101 0.0004059 0.004101 8.086e-05 3.697e-05 0.1267 0.3127 0.001829 0.001147 0.0002838 0.5957 0.008643 0.5641 0.0003346 0.5711 4.966e-05 0.5665 0.07944 0.001715 0.0291 0.001227 1.383e-05 0.001156 0.4054 0.0009753 0.01 0.009468 0.005112 0.001399 0.007009 0.6385 0.1498 0.001473 0.2169 0.0215 0.0007824 0.001373 0.1823 0.0001089 0.00249 0.003919 2.92e-05 0.002069 0.5493 0.005697 0.001544 0.009416 0.022 0.000534 0.6058 0.0003805 0.2144 0.003921 0.000733 0.001163 0.01193 0.01015 0.004747 0.01655 0.0001382 0.001793 0.0002347 0.001133 0.04342 0.005487 0.006566 0.0008636 0.004937 0.009289 1.057e-05 0.4885 0.001727 0.001815 0.3974 0.00283 0.0592 0.5493 0.5733 0.007663 0.0002135 0.001244 0.005795 0.0006846 0.6279 0.008896 0.003937 0.00222 0.001085 0.0008529 0.01423 0.5305 0.0052 0.007514 0.03111 0.006039 0.07733 0.004288 0.00678 0.0001415 0.001209 0.01257 0.0008247 0.0006895 0.002004 0.3951 0.0009601 0.01088 0.00238 0.0004739 0.0004701 0.00035 0.002395 0.3506 0.05891 0.0004904 0.01558 0.0002911 0.02965 6.856e-05 0.3362 0.01051 0.00455 0.5745 0.0005975 0.04429 0.04098 0.001341 0.0259 6.142e-05 0.007085 0.0006433 0.5753 0.001549 0.008156 0.09457 0.02244 0.001353 7.858e-05 0.5766 0.06209 0.001816 0.009973 0.5711 0.5663 0.4221 0.002363 0.0003042 0.006991 0.0005881 1.339e-05 0.001141 0.0005488 0.0003531 0.4818 0.003202 0.001459 0.338 0.00611 0.01063 0.01434 0.008409 0.6211 0.001456 0.5692 0.5128 0.1226 1.009e-05 0.004982 0.004945 1.074e-05 0.0003513 0.009053 0.009185 0.002512 0.003923 0.00292 0.5832 0.008946 0.003119 0.002328 0.0003359 0.01533 9.788e-05 0.003434 1.171e-05 0.006299 0.01165 0.5449 6.165e-05 1.191e-05 0.003507 0.5749 0.5283 0.3392 0.4326 0.03327 0.01159 0.001832 0.000366 0.01121 0.008463 0.001806 0.004104 0.001011 0.004455 0.574 0.02337 0.01422 0.4643 0.4058 0.0124 0.0156 0.001582 0.005275 0.007377 0.0006611 0.003394 0.3414 0.002999 0.02529 9.792e-06 0.001961 0.007062 0.2791 0.003938 0.007511 0.0849 0.000181 0.2554 0.0007858 0.004512 0.005218 0.005594 0.0005519 0.00196 0.003283 0.006912 0.5245 0.5709 0.005981 0.0009933 0.006154 0.0009378 0.6348 0.001106 0.3103 8.522e-05 0.01886 0.0009659 0.000146 0.5063 0.0005744 0.003426 0.5702 0.00578 0.0006168 0.006855 0.001981 0.2559 0.002227 0.004004 0.001832 0.5209 0.0008561 0.09462 0.004402 0.01092 0.01525 0.01365 5.284e-05 0.03054 0.01259 8.063e-05 0.003713 0.01087 0.001499 0.006039 4.566e-05 0.0005979 0.000155 0.0002232 0.007362 0.00442 0.463 0.004433 0.002173 0.003979 0.00213 0.0002762 0.00372 0.1106 0.0001556 0.004656 0.0009258 0.5682 0.0006676 0.00827 0.09142 0.008322 0.003809 0.00752 0.5778 0.0004688 0.0008966 0.4741 0.01349 0.3277 0.0009648 0.0003853 0.01437 0.0008183 3.934e-06 0.03367 0.4945 0.002697 0.01008 5.403e-05 0.004071 0.01307 0.2901 0.2902 0.01258 0.009388 0.004838 0.5647 0.541 0.0003213 0.03993 0.001769 9.378e-05 1.234e-05 0.02452 0.6329 0.001476 0.0005564 0.04405 0.000199 0.5727 0.005103 0.3961 0.04363 0.3942 0.002676 0.006999 0.004248 0.4794 0.3253 0.002324 0.001403 0.002387 0.5755 0.0002548 0.01101 0.006154 0.009505 0.000862 0.3713 0.01196 0.004767 0.002362 0.02268 0.01202 1.043e-05 0.0001554 0.007941 0.01681 0.6024 0.00141 0.0005399 0.005781 0.5165 0.004115 0.001801 0.5091 0.00131 0.5454 0.003717 0.6637 0.00197 0.5855 0.007128 0.0009093 0.001426 0.0005414 0.0104 0.000223 0.0001109 5.282e-05 2.284e-06 0.004648 0.000765 0.4053 0.001427 0.0004559 0.01446 0.02051 0.0009019 0.001248 0.0009761 0.004892 0.007254 0.0004285 0.002358 5.912e-05 0.001625 0.4189 0.0006616 0.4456 1.059e-05 0.003233 0.01137 0.0002839 0.001287 0.5161 0.00231 0.002942 0.5716 0.001547 0.0009506 0.0001045 0.02503 0.002397 0.001143 0.0004657 0.0008706 0.57 0.4313 0.004118 0.003533 0.000212 0.006601 0.008372 0.003891 0.536 0.01685 0.001388 0.5257 0.001683 0.04743 0.001825 0.0007883 0.0004575 0.009271 4.213e-06 0.02501 0.007051 0.01006 0.566 0.01896 0.5574 0.0189 0.01154 0.002668 0.001405 0.0005006 3.513e-05 0.0009976 0.2582 0.01838 0.001538 0.004166 0.5707 0.0007255 0.02031 0.00154 0.001943 0.008394 0.4021 0.0004607 3.641e-07 0.0001422 0.02867 2.891e-05 0.0006352 0.007313 0.0001025 0.001144 0.001659 0.0007031 0.1644 0.0002789 0.0003902 0.01058 0.5626 0.006482 0.01437 0.007132 2.772e-05 0.007375 0.004541 0.0001342 0.07186 0.5793 1.123e-05 0.001068 0.005658 2.802e-05 0.0007692 0.5553 0.008773 0.001716 0.008048 0.0002936 4.464e-05 9.98e-06 0.01586 0.002262 3.672e-05 0.001873 4.808e-07 0.01432 0.5272 0.4686 0.002747 0.5003 0.004979 0.01546 0.3391 0.001389 0.01509 0.03914 0.0001903 0.09933 0.03998 0.0774 0.007906 0.002088 0.008426 0.001441 0.0007532 0.09084 3.763e-05 0.02263 0.01126 0.0002259 0.004115 0.0007999 0.002322 0.07765 0.003247 0.001546 0.008216 6.629e-05 0.007633 0.008979 2.141e-05 0.001392 0.4054 1.121e-05 0.0002342 0.001428 0.001431 0.001825 0.007346 0.002428 0.001783 0.02105 0.001487 0.0004073 0.04715 0.0002309 0.1044 0.5106 0.005995 0.001975 0.002288 0.0008855 0.01515 2.199e-06 0.03957 0.001324 0.3507 0.5588 0.0009055 0.001961 0.5791 0.00153 0.0002759 0.0001049 0.007749 0.5374 0.0009246 0.03357 5.526e-05 0.1128 0.5183 0.00833 0.001549 0.002267 9.658e-06 0.000535 0.0008822 0.002098 0.006775 0.001131 0.03566 0.0006574 0.005948 0.003498 0.5642 3.643e-07 0.5693 0.09098 0.04226 0.0001199 0.5643 0.01052 0.2875 0.2884 0.003781 0.0001802 7.163e-05 0.006659 0.2874 0.5876 0.01803 0.01605 0.01012 1.794e-06 0.0002599 0.01404 0.000241 0.01604 0.4624 4.487e-07 0.00457 0.005541 0.009869 0.0004227 0.0003165 0.00586 0.001982 0.06115 1.488e-05 0.01198 0.002925 0.002198 0.0005262 0.01338 0.3628 0.003302 0.006562 0.01368 0.2728 0.007262 0.0001015 8.164e-05 0.03559 0.002412 0.003786 0.000204 0.01964 0.009224 0.0004143 0.5703 0.0004472 0.0062 0.001736 0.0001617 0.0007359 2.561e-05 0.003476 0.03183 0.004872 0.001778 0.004308 0.001987 0.004226 0.4332 0.0001971 0.001533 0.0007941 0.5648 0.0004005 0.5696 0.001752 0.004589 0.03641 0.0001476 6.807e-08 0.01896 0.5752 0.0004131 0.000703 0.004271 0.003597 0.01995 0.02914 0.00896 0.07171 0.003647 0.05864 0.001232 0.03482 0.001722 0.003833 0.00107 0.001095 0.004465 0.005761 0.01144 0.05753 0.07412 0.003883 0.001249 0.004099 0.0004593 0.02667 0.001208 0.000399 0.5949 0.0003734 0.0009778 0.007319 0.3668 0.5688 0.103 0.286 0.0001623 0.05272 0.001014 0.005718 0.562 0.6251 0.02134 0.05995 0.002009 0.0009246 0.002275 0.002492 0.00159 0.002184 0.1389 0.01918 0.4865 0.4934 0.01697 0.0003061 0.00119 0.5747 0.002272 0.03567 0.07944 0.00346 0.3036 0.3039 0.0001837 0.03294 0.573 0.003783 0.09173 0.004895 0.0004709 0.5769 0.005616 0.004633 0.001269 0.001924 1.099e-05 0.009626 0.0009776 0.01819 0.000538 0.005512 4.501e-07 0.009306 0.004584 0.4645 0.001873 0.001354 0.0212 0.05442 0.5116 0.004807 0.009168 0.0006862 0.002205 0.0008363 0.006085 0.002533 0.005489 0.001328 9.745e-06 0.005171 0.01175 0.0008241 0.5359 0.004915 6.802e-07 0.002705 0.001449 0.3979 0.005569 0.003863 0.007787 0.0007294 0.02968 0.008011 0.4356 0.1095 0.005779 0.01503 0.5682 0.01348 0.001068 0.002794 0.6313 0.01108 0.006626 0.0009323 0.002335 0.007923 0.09044 0.08793 0.2855 0.5726 0.0002801 0.5758 0.002737 0.00379 0.4077 0.0009964 0.002771 0.003029 0.006052 0.01115 0.004145 0.001219 0.002665 0.5722 0.005783 0.003867 0.608 0.001066 0.0005542 0.001505 0.2027 0.00476 0.002685 0.004286 0.0004431 0.0137 0.002324 0.568 0.0001588 0.003647 0.5276 0.652 0.3577 0.3891 0.004205 5.938e-05 0.007451 0.01757 0.0001551 0.02611 0.002429 0.01021 0.007441 0.001452 0.0003145 0.009015 0.3936 0.0004121 0.079 0.003998 0.002311 0.0002716 0.009743 0.008278 0.001455 0.0003445 0.009867 0.5542 0.006658 0.0002118 0.0005315 0.02257 0.0005146 0.0006204 0.001919 0.003219 0.0005328 0.0001593 0.007417 0.0005344 0.4103 0.4091 0.0001009 2.883e-05 0.4082 0.0004714 8.07e-05 0.09535 0.09173 0.5852 0.008147 0.03529 0.5675 0.5135 0.5704 1.341e-05 0.009229 0.00842 0.0003986 0.5834 0.2634 0.01573 0.002391 0.5714 0.001226 0.02641 0.22 0.6202 0.001623 0.001369 0.008032 0.001569 0.3224 0.5169 0.003652 0.5638 0.001118 0.0002757 0.0003322 0.01124 0.01294 0.1497 0.08578 0.005774 0.0001841 0.033 0.003224 0.005015 0.003133 0.4101 0.0001137 0.573 0.0003587 0.4722 0.001114 0.002342 0.4456 0.001672 0.5661 0.02485 0.5777 0.004004 0.01457 0.006887 0.006711 0.6467 0.226 0.0002294 0.1079 0.0003538 0.4462 4.326e-05 0.6407 0.004837 0.5015 0.006615 0.02343 0.004951 0.0007263 0.006888 0.2256 0.01099 0.001861 0.0212 7.235e-06 9.877e-05 0.5215 0.02968 0.00406 3.096e-05 0.0001998 0.3574 0.0003264 0.5446 0.06288 0.002414 0.0005298 0.0004918 0.001187 0.0207 0.3604 0.004523 0.0001882 0.006159 0.0005846 0.009007 8.343e-05 0.001587 0.001039 0.00817 4.5e-06 0.5834 0.01551 0.01608 0.001704 0.003721 0.001259 0.4875 0.01503 0.4199 0.0004665 0.5563 0.2634 0.5541 0.001399 0.0006627 0.01374 0.004177 0.07946 0.01225 0.005512 0.0809 0.0004255 0.001796 0.004105 6.745e-05 0.4712 0.0006247 0.01238 5.173e-05 0.02571 0.001709 0.02196 0.000294 0.005726 8.894e-06 0.0001719 0.005181 0.0007574 4.765e-05 0.006926 0.000388 9.583e-06 0.001511 0.007274 5.039e-06 6.419e-05 0.001262 0.5698 0.002836 0.008239 0.5685 0.0003809 0.5814 0.0001458 0.004598 0.01005 0.587 1.159e-05 0.0002646 0.5454 0.005719 0.0616 0.001307 0.5342 0.01555 0.5238 0.5816 0.3768 0.0017 0.0008634 0.002116 0.599 0.001643 0.002998 0.004924 0.002744 0.0007354 0.05725 0.004741 0.04588 0.0007372 4.711e-06 0.001799 0.02292 0.03677 0.0006543 0.557 0.002175 1.18e-05 0.0005073 0.0002328 0.0001576 0.002259 0.001321 0.0006542 0.518 0.06312 0.5003 0.1125 0.2694 0.0006034 6.436e-05 0.01199 0.558 0.00366 0.000581 0.0009199 0.00768 9.554e-05 0.004214 0.01169 0.3091 0.007899 0.3073 0.002783 0.2208 0.01776 0.001499 0.003144 0.009018 0.5655 0.006995 0.004849 0.000447 0.01808 0.0003866 0.2895 0.2907 0.0009551 0.4911 0.009687 0.2316 0.0007411 0.006849 0.0001463 0.002295 0.04828 0.001054 0.003131 0.00146 0.003044 0.001534 0.4172 0.4178 0.5556 0.05816 0.0002368 0.5694 0.004925 0.009257 0.3418 0.2732 0.004423 2.055e-05 0.0002507 0.2992 0.005439 8.745e-05 0.003083 0.001673 0.5712 0.0008382 0.08321 0.1134 0.0001262 0.0002153 0.006431 0.001852 3.065e-05 0.03224 0.001453 0.0004136 0.4437 0.02127 0.07629 0.006624 0.0005531 0.002909 0.000313 0.3135 0.4578 0.5592 0.007497 0.003239 0.5719 0.5639 0.0151 0.00925 0.01252 0.00269 0.0007926 0.002051 0.0001591 0.0008768 0.02782 0.001522 0.2454 0.0005613 0.4916 0.5915 7.755e-06 0.1742 0.00868 0.002279 0.003169 0.5699 0.0002099 0.001669 0.1251 0.001301 0.5672 0.2788 0.0003006 0.0003626 0.004799 0.5513 0.1873 0.006712 0.001388 0.0009883 0.02064 0.005382 0.001229 0.4021 0.02951 0.001597 0.0007365 0.5758 0.4719 0.009196 0.002825 0.00466 0.4016 9.655e-06 7.81e-05 0.4867 0.0001873 0.4455 0.1058 0.007336 0.5996 0.0008335 0.002242 0.0006546 0.004083 0.007328 0.000688 0.00179 0.0004578 0.00248 0.04063 0.0004892 0.004088 0.04851 8.886e-05 7.919e-06 0.0002917 0.0007686 0.002485 0.001987 0.001358 0.0008318 0.6271 0.001837 0.5785 0.0001809 2.161e-05 0.003147 0.0002906 0.001976 0.5223 0.4778 0.0008573 0.2237 0.001113 0.004404 0.08275 0.0008229 0.09572 2.954e-05 0.03054 0.001929 0.001452 0.0002151 0.006325 0.001013 4.282e-05 0.03958 6.809e-05 0.005545 0.003758 0.5785 0.04308 0.004625 1.628e-05 0.001389 0.3168 0.5443 0.0004997 0.2833 0.5062 0.01578 0.00647 0.6112 0.0002391 0.004072 0.002638 0.006861 0.4331 0.02315 0.5701 0.006011 0.004909 0.0001621 0.2266 0.0007516 0.0003988 0.0004265 4.823e-07 0.002802 0.007127 0.3549 0.1848 0.5559 0.002088 0.0004616 0.01668 0.001071 0.001333 0.5739 0.0006075 0.002207 0.007034 0.003365 0.001162 0.00373 0.02904 0.3091 0.004414 0.0005547 0.0009839 1.755e-06 0.0009175 0.02367 0.0007559 0.004569 0.5143 0.5493 0.3206 0.02327 0.5341 0.005455 0.00442 0.04417 0.01772 0.001094 0.3573 0.0007303 0.5204 0.004994 0.008285 4.112e-05 0.00119 0.01409 0.0004075 0.0025 0.3946 0.005727 0.02342 0.04471 6.402e-05 0.0007255 0.0002499 0.003749 0.000447 0.00901 0.0003714 0.2264 0.01899 0.5564 0.003317 0.5776 0.02453 0.004991 0.005298 7.417e-06 0.0006295 0.01049 0.005012 0.001711 0.001243 0.2433 0.001603 0.002984 0.002763 0.009978 0.007184 0.001886 0.005606 0.0003677 0.00202 0.158 0.01952 0.001452 0.0679 0.58 0.004648 0.003144 0.56 3.06e-07 0.001601 0.0003718 0.0995 0.4056 3.204e-05 0.002249 0.0008086 0.002846 0.001062 0.5283 0.003457 0.006707 0.001633 0.004035 4.256e-05 0.002775 0.000199 0.008644 0.001949 0.5223 0.009424 0.04881 0.4096 0.0009929 0.5704 0.0003353 0.01055 0.003123 0.0002451 2.996e-06 0.005173 0.0008751 0.5671 0.0002291 0.002854 0.01081 0.02485 0.57 0.5828 0.0005691 0.0003367 0.4335 0.001631 0.01884 0.2905 0.00139 0.5235 0.02366 0.0003408 0.001219 0.3253 0.03197 0.5655 5.773e-07 0.004461 0.0008479 2.785e-06 0.1608 0.002062 0.02061 0.002163 0.1668 0.007951 0.3185 0.0001526 0.02262 0.003745 0.4384 0.4574 0.02859 0.0001528 0.0007826 0.0006077 0.007917 0.005418 0.0006507 0.2766 0.001485 0.2117 0.008489 0.0004784 0.5735 0.003088 0.001097 0.01051 0.000698 0.01715 0.0003019 0.01612 0.1571 0.008251 0.0002156 0.5702 0.006164 0.008015 0.009114 0.001019 0.005677 0.0005605 0.004751 0.006104 0.000876 0.006647 0.00132 0.1512 0.002177 0.5752 0.0003412 0.0002493 0.008371 0.01169 0.01533 0.05072 0.001456 0.0001064 6.803e-05 0.008061 0.002863 0.02289 0.01351 0.0222 1.332e-06 0.0002711 0.4116 0.0006449 0.02919 0.007109 0.003252 0.0058 0.004654 0.1022 0.001417 0.0006996 0.5164 0.5735 0.5465 0.009045 8.634e-05 0.2235 0.01448 0.5861 0.002077 0.002209 0.005016 0.004256 0.002827 0.002489 0.5698 0.007433 2.017e-05 0.008921 0.004265 0.001575 0.01145 0.005254 0.00363 0.1305 0.002044 4.922e-05 0.004157 4.984e-05 0.06974 0.004921 0.02113 0.0008778 0.0004193 0.009055 8.608e-05 0.003214 0.5891 0.3378 0.0005121 5.275e-05 0.013 0.0002822 7.532e-05 1.099e-05 0.0007347 0.03912 0.5963 6.065e-05 0.4134 0.002077 0.3816 0.4693 0.6464 0.01 0.001636 0.004826 0.0005246 0.003811 0.001936 0.0006245 0.564 0.008059 0.0003563 0.04729 0.1206 0.001483 5.799e-07 0.2842 0.2846 0.5779 0.002045 0.01829 0.4553 0.01396 4.772e-05 9.949e-05 0.004199 0.01177 0.009934 0.009885 0.01604 0.002552 0.002983 0.007353 0.01126 0.0005328 0.0105 0.0003144 0.002418 0.005144 0.001549 0.001673 0.5835 0.006165 0.001227 0.3938 0.3425 0.0002951 0.4287 0.01253 0.0001249 0.009504 0.0003246 0.0003352 0.003194 0.0005887 0.001802 0.005272 0.5803 0.5394 0.5434 0.00379 0.00256 0.1548 0.0859 0.02847 0.5747 0.004306 0.00105 0.05462 0.004373 0.004712 0.00396 0.0004121 0.003072 0.0002378 0.01126 0.00171 0.0009144 0.0009819 0.008304 4.713e-05 0.02567 0.002135 0.01302 0.2341 0.0109 0.0002518 8.598e-05 0.0005966 5.813e-05 0.2663 0.001111 0.2809 0.002333 0.00123 0.008394 0.0003579 0.009753 0.01459 0.00125 0.01421 0.2967 0.5721 0.01445 0.0002601 0.0004091 0.0005546 0.001094 0.0003382 0.02229 1.985e-05 0.003996 0.0208 0.001896 0.001578 0.003786 0.006306 0.5343 0.0006614 0.0002919 0.0002514 0.06379 0.0006695 0.004079 0.001097 0.0131 0.3113 0.398 0.0009132 0.005238 0.002636 0.2491 0.009222 0.006787 8.869e-06 0.4742 0.0005188 0.01027 0.0005751 0.00157 0.4732 5.44e-06 0.0004257 0.003128 0.5719 4.709e-05 7.275e-05 0.002646 0.08591 0.0005424 0.005012 0.01066 0.3628 0.4909 0.0004156 0.00151 5.426e-05 3.85e-05 0.01196 0.001975 0.0005832 0.0002801 0.5239 0.01514 0.3057 0.001972 0.007761 2.63e-07 0.001542 0.001979 0.006089 0.002801 0.004032 0.0002431 0.01254 0.0006591 0.1367 0.001565 0.087 0.5219 0.5706 0.006744 0.2568 4.663e-06 7.09e-07 0.07052 0.001774 0.0159 0.00105 0.001589 0.0008 0.001548 0.391 0.008909 0.0008254 0.002771 0.5101 0.007607 0.009296 0.00153 9.812e-06 0.5229 0.0005868 0.01261 1.1e-05 0.4406 0.0288 0.01463 0.001263 0.01132 0.000161 0.3907 0.09307 0.3347 8.046e-05 0.002742 7.167e-05 0.03006 0.00765 0.4893 0.02864 0.3091 0.008926 0.02425 0.02493 0.004329 5.315e-05 0.4306 0.005916 0.5203 5.943e-07 0.0005268 0.005999 6.463e-05 0.0103 0.3904 0.3888 0.00526 0.5694 0.00518 0.0002641 0.0001378 0.05088 0.6121 0.0002836 0.0005504 0.0004739 0.0001931 0.04351 0.001395 0.0001431 0.0005004 0.5516 0.008558 0.00375 0.5641 0.01811 4.549e-06 0.1749 0.00319 0.5069 0.00139 0.001723 0.003007 0.009699 0.009386 0.01625 1.551e-05 0.0009918 0.005831 0.4503 0.001115 0.01516 0.002189 0.001131 0.002572 0.0001154 0.6474 0.4992 0.0001618 0.0002269 4.076e-05 0.3283 1.011e-05 0.0002451 0.04426 0.007874 0.01109 0.001095 0.002233 0.001223 0.01424 0.001637 0.5263 0.002352 0.001326 0.01415 4.916e-05 0.0005658 0.001238 0.0002965 0.0004332 0.5253 0.004074 0.0006506 0.0006369 0.1155 0.005118 0.00161 0.4294 9.996e-05 0.001363 0.01348 0.002064 0.0004127 0.4016 0.002685 0.01084 0.0003252 0.01008 0.01505 0.03853 7.887e-05 0.05242 0.01713 0.01863 8.17e-05 0.0003135 0.5335 0.02893 0.5706 0.0005989 3.462e-05 0.01337 0.0006987 0.0009913 0.0003395 0.0002347 0.001113 0.002169 0.003324 0.01043 0.0008909 1.794e-07 0.001119 0.00872 0.001735 0.001362 0.6281 0.4534 0.5555 0.02369 0.0001978 0.0008429 0.01023 0.03898 0.007345 0.01797 9.38e-05 5.627e-05 0.01803 0.00863 0.001065 0.0003267 0.1138 0.0007358 0.001847 0.01352 0.02534 0.001048 4.327e-07 6.23e-05 0.01578 0.007586 0.1769 0.003917 0.5731 0.003802 0.003131 0.5598 0.001421 0.2353 0.00102 0.0001844 0.539 0.0002477 0.001427 0.001437 0.004139 0.02531 0.0007493 0.01998 0.4143 0.01375 0.0003278 0.2154 0.5601 0.001368 0.007113 0.6115 0.01804 0.001733 0.06159 0.5853 0.005255 0.01529 0.001802 2.395e-05 0.0001436 0.003927 0.1846 0.5615 0.07946 0.6414 0.02624 0.02411 0.0004074 0.01811 0.00243 0.001455 0.004268 0.005207 0.0001489 0.03311 0.0011 0.001794 0.004091 0.0001972 0.01027 0.00131 0.0005905 0.3606 0.002121 0.02217 4.147e-05 0.002012 3.418e-05 0.5723 0.0009657 0.003167 1.257e-05 0.1031 0.0001509 0.4191 0.0002114 0.0003715 0.0002973 0.3643 0.08046 0.08884 0.04074 0.01325 7.021e-05 0.003088 0.003914 0.5206 0.04358 9.584e-05 0.3976 0.3957 4.183e-06 0.35 0.0005036 9.522e-05 0.004557 0.01808 1.126e-06 0.01447 0.01052 0.003124 0.003435 0.0001107 0.0103 0.001778 0.0004102 0.5894 0.2902 0.001204 0.6191 0.4637 0.001656 0.283 0.5262 0.003908 0.004607 0.001299 0.0366 0.04077 0.006265 0.5599 0.00318 0.02838 0.0006932 0.2911 0.0003073 0.01001 0.04023 0.005089 0.02903 0.5186 0.01173 0.003644 0.003814 2.771e-06 0.003212 0.06789 0.002891 0.001927 0.01579 0.5877 0.008501 0.0009991 0.003613 0.002235 0.4884 0.009023 0.07373 0.0365 0.4926 0.5506 0.0003782 0.01004 6.752e-07 0.4126 0.01937 0.0173 0.001254 0.0236 0.0001198 0.00959 0.0005961 0.007057 0.000293 0.002608 0.002012 0.5203 0.003611 0.5279 0.005544 0.2399 0.4954 0.3934 0.006338 0.0002994 0.01142 0.008803 0.5713 0.006113 0.000554 0.001384 0.00264 0.002702 0.0003659 0.002723 0.555 0.005102 0.008632 0.006063 0.5328 0.003701 0.005616 0.001499 0.346 0.005905 0.4501 0.5456 0.002158 0.01132 0.002395 0.002662 0.3766 0.01286 0.00906 0.0003294 0.08569 6.858e-05 0.0005042 0.0004734 0.004881 4.32e-06 0.0005097 0.007867 0.0119 0.005027 0.5696 0.1958 0.3893 0.392 0.3675 0.3355 0.03233 5.673e-06 3.476e-05 0.4071 0.01193 0.0007148 0.05653 0.01563 0.0008464 0.4371 0.2944 0.2939 0.3904 0.01521 6.51e-05 0.009808 0.001663 0.001827 0.008719 0.006666 0.003996 0.1578 0.0001171 0.0002983 0.08169 0.0009092 3.514e-05 0.00614 0.2831 0.002332 0.57 0.006241 0.06034 0.0001823 0.01017 0.004573 0.004425 0.01694 0.001723 0.004736 0.0299 0.0001418 0.0009847 0.001534 0.5551 0.0009085 0.002707 0.0005355 0.05183 0.4161 0.007021 0.0009322 0.0002641 7.774e-06 0.0002432 0.1421 0.012 0.00757 0.01312 0.1489 0.5563 0.0009661 0.0005864 0.0004293 0.1497 0.0008391 0.003539 0.5832 0.0052 0.003452 1.256e-05 0.001587 0.005666 0.2345 0.002339 0.00106 0.005605 1.686e-05 0.0004926 0.002617 0.0001367 0.3195 0.06385 0.01741 0.0008726 0.001484 0.002167 0.00262 0.0245 0.01127 0.003413 0.01953 0.001614 0.001197 0.5956 0.004054 0.00662 0.001998 0.01266 0.03456 0.0003123 0.5703 0.5539 0.001345 0.1137 0.0008519 0.0004253 0.57 0.002353 0.001825 0.5637 0.01848 0.0001508 0.01611 0.0006333 0.0187 0.06896 5.445e-05 0.6114 0.001146 0.01012 0.0007845 0.0008646 0.01178 0.005233 0.5555 4.95e-05 0.03648 0.03337 0.002434 0.004092 0.005816 0.5705 7.621e-06 0.0003851 0.002782 0.0003482 0.0001603 0.003372 0.5719 0.005202 0.0007216 0.01795 1.47e-05 8.365e-06 0.006395 0.01016 0.01356 0.006605 0.01897 2.452e-05 0.002573 0.003766 4.075e-05 0.0006631 9.252e-06 0.001179 0.003045 0.004761 0.001068 0.003472 0.0003748 0.01272 0.0001705 8.319e-05 0.00344 0.07897 0.001593 0.5108 0.001671 0.001965 0.0005604 0.00114 0.0009833 0.004849 0.01253 0.2397 0.001806 0.06994 0.0008706 0.5408 0.6449 0.002722 0.2832 0.1229 0.567 0.0003647 0.5563 0.004481 0.0871 0.01044 0.3883 0.001445 0.03008 0.01262 0.4837 0.00155 0.0473 0.4198 0.004789 0.0494 0.05211 0.005288 0.0006585 0.0004513 0.01905 0.002367 0.57 0.004255 7.977e-05 0.004933 0.001027 0.004447 0.6248 0.2728 0.005341 0.5562 0.001367 0.0004385 0.04953 0.1622 0.00271 0.4851 0.0002269 0.01803 0.004116 0.003151 0.003693 0.001404 0.01788 0.006301 0.01298 0.4519 0.002464 0.001851 0.001176 0.04055 0.4887 0.004237 0.02031 0.00045 0.3768 7.549e-05 0.0009114 0.008578 0.0001728 0.0005979 4.926e-05 6.323e-06 0.009931 0.02896 0.008128 0.6564 0.5622 0.00144 0.0009572 0.00103 0.08212 0.01254 0.002895 0.0009196 0.006026 0.1557 0.0003512 0.03222 0.00191 0.004029 0.001683 0.02154 0.005949 0.002018 0.2771 0.0108 0.002926 0.005178 4.978e-05 0.0474 0.003688 0.002873 0.0002326 0.0001773 0.000274 0.00781 0.4607 0.00208 0.3437 0.02617 0.004793 0.001922 0.0002497 0.006945 0.0001032 0.3961 0.0006809 0.001212 0.0005391 2.907e-05 0.002002 0.02733 0.002462 0.000388 0.0001721 0.0001659 0.002409 0.2013 0.6598 0.5387 0.5701 0.001382 0.0004344 0.0005045 0.0008262 0.2731 0.001542 0.001136 0.003661 0.008243 0.002566 0.0006041 0.002962 0.0001934 0.0006459 0.004031 0.00784 4.552e-05 0.008223 0.06518 0.5416 0.02351 0.00216 0.003839 0.4268 0.0008085 8.339e-06 0.00274 0.07859 0.0009555 0.002359 0.0001976 0.0006319 0.5958 3.623e-05 0.185 0.003134 6.762e-05 0.003376 0.0008622 0.5526 0.0009851 7.585e-06 7.267e-05 0.0005849 0.0004709 0.004383 0.00521 0.601 0.008313 0.197 0.04553 0.07818 0.001381 2.905e-05 0.001273 0.002108 1.845e-05 2.263e-05 0.3876 4.933e-05 0.001493 0.0006257 0.1024 0.5485 0.01731 0.001753 0.01091 1.115e-05 0.5578 0.003688 0.1607 0.00153 0.00101 7.299e-05 0.000932 0.001361 0.004813 0.0002811 0.0004332 0.5754 0.004872 0.0154 0.01102 0.0001439 0.000347 0.002355 0.0005431 6.29e-05 0.06952 0.0009077 0.0007078 0.00136 0.003101 0.0002574 0.001183 5.336e-05 0.001544 0.5698 0.5556 0.00167 0.5518 1.912e-06 0.0001196 0.2716 0.003307 0.433 0.03916 0.000235 0.0001004 0.05499 0.002422 0.1913 0.001466 0.008657 0.004601 0.001126 0.001733 0.006876 0.001396 0.0002483 0.005609 0.005402 0.006403 0.02316 0.001063 0.003808 0.0001223 0.5572 0.007227 0.006 0.0009837 0.01021 0.0006582 0.01886 1.597e-05 0.0007946 0.1775 0.001874 0.007241 0.003847 0.0423 0.5459 0.001074 0.428 0.3808 0.0001245 0.5695 0.01463 0.4641 0.001893 0.4945 0.003639 0.009818 0.5736 5.167e-05 0.01006 0.1759 7.136e-05 0.3933 0.0332 0.02622 0.1634 0.4515 0.008939 0.001684 0.003369 2.127e-06 0.004281 5.292e-05 0.5607 1.014e-06 3.536e-05 0.0001117 0.002863 0.01069 0.0003607 0.001563 0.0001362 0.0001638 0.01028 0.5129 0.5632 0.002026 7.362e-05 0.03162 0.003497 0.00562 0.2622 0.001636 0.5725 0.003578 0.03832 0.0009336 0.001495 0.000223 0.0008055 0.01439 0.4103 0.0001049 0.5721 4.876e-05 0.003768 0.3958 0.004954 0.01072 0.5101 7.224e-07 0.001797 0.4461 0.0154 0.002237 0.0002149 0.379 0.004877 0.001478 0.00598 0.0007668 0.0004636 0.002932 0.003925 0.002898 0.3956 0.003046 0.00425 0.002093 0.0003495 0.5781 0.001657 0.2693 0.02412 0.01747 0.005192 0.002348 0.001725 0.006322 0.08073 0.002189 0.08282 0.0001827 0.004165 0.01346 0.001781 0.01007 0.001516 0.00141 0.0001287 0.02312 0.001613 0.4841 0.5868 0.002061 0.02181 0.5811 0.001341 0.001918 0.002759 0.001634 6.248e-05 0.005786 0.007919 5.864e-05 0.005542 6.786e-05 0.0001642 7.339e-07 0.004276 0.4481 4.447e-05 0.00611 0.5697 0.0007653 0.009461 0.001457 0.007959 0.004161 0.0003653 0.0001384 0.0005037 0.0004606 0.02835 5.99e-05 0.01801 4.522e-05 0.575 0.05611 0.0009971 2.221e-06 0.001773 0.5757 7.863e-05 1.384e-06 3.642e-05 0.002822 0.0007839 0.002197 0.001324 0.002378 0.007741 0.002674 0.0005546 0.008684 0.3145 0.3135 0.004306 6.946e-05 0.02586 0.5492 0.001863 0.3718 0.007528 0.004976 0.003653 0.5769 0.0003536 0.2279 0.0002329 0.001498 0.003032 0.0008412 0.001927 0.04634 0.0002047 0.01935 0.1222 0.5257 0.01042 0.0002204 0.001718 0.01871 0.01309 0.4991 0.03634 0.003823 0.0001578 0.01709 0.0003625 0.001063 0.001897 0.009965 0.00013 0.003127 0.007268 0.002266 0.01577 0.002395 0.003279 0.005593 0.5632 0.08963 0.02894 4.772e-05 9.896e-05 0.00335 0.01312 0.0002597 0.01164 4.871e-06 0.0006907 0.003219 0.006814 0.04728 0.01419 0.001489 0.001149 0.5905 2.606e-06 0.0002051 0.0001954 0.0001689 0.161 0.002081 0.0002211 0.1205 0.4095 0.001562 0.5714 0.1094 0.01098 3.485e-05 0.000924 0.0001398 0.2665 0.004558 0.0002728 0.005516 0.0025 0.007967 0.001522 0.001663 9.36e-05 0.001814 0.1338 0.0009479 0.0005174 0.01492 0.04933 0.4906 0.0009159 0.004155 0.001554 0.02391 0.003201 0.003651 0.004964 0.3445 0.0008114 0.3444 0.008252 0.0004704 0.0005107 0.001544 0.002412 0.001023 0.005334 0.1115 0.317 0.4856 0.01071 0.2533 0.03015 0.002923 0.2079 0.00243 0.03832 0.08924 0.0362 0.0001769 0.07922 0.1217 0.1215 0.003708 5.822e-05 0.5676 0.005455 7.858e-05 0.007667 0.0005619 0.00428 0.002746 0.1848 0.002415 0.02029 0.03167 0.0002224 0.001388 0.0003155 0.02978 0.004263 0.5943 0.4743 0.0002458 0.000257 7.977e-05 0.01468 0.0004117 0.001469 0.01343 0.003532 0.5409 0.3958 0.07446 0.007359 0.005608 0.5828 0.008377 0.5923 0.06185 3.522e-06 0.0002341 4.389e-05 0.0003864 0.02691 0.5983 0.00135 0.01377 0.001802 0.02062 0.003582 0.007756 0.01175 0.5635 0.03919 0.008209 2.502e-05 0.01635 8.591e-06 0.01961 0.5285 0.008268 0.001555 0.0002446 0.0008516 2.767e-05 0.4803 0.01309 1.016e-05 0.002759 0.3975 0.0001463 0.00187 0.002968 0.01102 0.002813 0.000479 0.001427 0.1915 0.0006244 0.004629 0.5647 0.5296 0.5615 0.009827 0.3984 0.5715 0.0001971 0.0005993 8.389e-05 0.5885 0.02293 5.869e-05 0.001535 0.003588 0.001009 7.513e-05 3.385e-05 0.000888 0.005584 0.005209 0.002587 0.3946 0.5467 0.01696 0.575 0.0008037 0.001112 0.004034 0.001953 0.007117 0.0008376 0.0005977 0.0006942 0.001595 0.001852 0.0109 0.0364 0.01202 0.5423 0.001128 0.01146 0.6484 0.001554 0.0001888 0.002187 0.000168 0.4243 0.0009992 0.003308 0.2834 4.314e-05 0.01785 0.0004122 0.03177 0.00774 0.003501 0.003097 0.07765 0.03134 0.5331 0.0005076 0.005456 0.001887 0.001245 0.01122 0.2325 0.004859 0.00137 0.5133 0.003872 0.001595 0.0007324 0.0003306 9.425e-06 0.0006701 0.005114 0.01341 0.0007877 0.5852 0.00207 0.01201 0.006318 0.03615 0.5789 0.253 0.01105 0.003672 0.4727 0.002102 0.0006958 0.3278 0.2034 0.01106 0.002962 0.01634 0.003538 0.01106 9.538e-05 0.01298 0.0009409 0.0004998 0.3478 0.009451 0.001443 0.00105 0.532 0.002267 0.001177 3.226e-05 0.2957 0.0007454 0.006941 0.04625 0.4017 0.3968 0.001225 0.001055 0.5734 0.5687 0.06523 0.001295 0.00514 0.0004861 0.0006433 0.5525 1.324e-06 0.002925 0.03618 0.3387 0.01268 0.003744 0.02642 7.787e-05 0.0008739 0.004788 0.009047 0.001814 0.0005987 0.004807 0.2232 0.5719 0.002102 0.0001611 0.0003095 0.3015 0.3016 0.2822 0.0004754 1.387e-05 3.291e-05 0.01745 0.003098 0.4364 0.005299 0.003851 0.2661 0.0001676 0.0009591 0.01856 0.004692 0.002399 0.01129 0.02401 0.05481 0.01195 0.04198 0.3834 0.009018 0.5477 3.199e-06 0.001972 0.01028 0.0001071 0.01402 0.007993 0.005871 0.04513 0.2806 0.1404 0.004238 0.0002392 0.0004498 0.06617 0.006409 0.4543 0.02749 0.004223 0.01294 0.0005917 0.0008908 0.0001172 0.5682 0.3431 0.3159 0.0005418 0.01286 0.001612 0.0009733 0.004181 0.01625 0.0433 0.5612 0.0005389 0.002704 0.4973 0.006919 0.00569 0.004069 0.5026 0.04706 0.004221 0.0579 1.983e-05 0.0006088 0.5903 0.4134 0.002384 0.004496 0.02258 0.001455 0.004779 0.0008193 0.00943 0.0005329 0.0004951 0.006041 0.6276 0.1522 0.001269 0.6212 0.5061 0.01867 0.2431 0.0002355 0.004097 0.0005339 0.4347 0.08835 0.02226 0.0007064 0.001064 0.001295 0.5493 0.002718 0.01375 0.0009645 0.1344 0.4095 0.4091 1.055e-05 0.0001226 0.08083 0.3984 0.1643 0.4897 0.002841 0.4322 0.003089 0.006079 0.002206 0.005259 0.01693 0.05019 0.00459 6.281e-05 0.004636 0.009336 0.005624 0.001569 0.001022 0.002585 0.003277 7.182e-05 0.1027 0.0005849 0.00557 0.03673 0.06753 0.0008176 0.4451 0.003092 0.008666 0.02448 9.658e-06 0.0002175 0.001729 0.0005382 0.003571 0.08121 0.008817 0.003045 0.005222 0.001329 0.002811 0.004332 0.07918 0.562 0.5 0.0006013 0.01018 0.5203 0.0005934 0.02969 0.446 0.01039 0.001 6.501e-05 0.02497 2.426e-05 0.0009237 6.146e-05 0.007153 0.6538 0.02338 0.0004206 0.00587 0.001287 0.01928 0.4238 0.0006245 1.157e-05 0.006044 0.0008902 0.001848 0.2961 0.004811 0.003137 0.0007444 0.172 0.01229 0.09231 0.001805 0.0001137 0.0221 0.4956 0.001312 0.00114 0.01035 0.001922 0.5611 0.4329 0.007977 0.2811 0.0006918 0.3973 0.002106 0.4031 0.5766 0.009017 0.5705 0.008861 0.4795 4.283e-05 0.009397 0.001554 0.4099 0.5891 0.03319 0.002973 0.001006 0.5543 0.5526 0.003789 0.002557 0.001283 0.002631 0.004254 0.5903 0.0001404 0.0004354 0.0003048 0.3817 0.0002327 0.0427 0.05871 0.5584 0.003741 0.005024 0.002146 0.003324 0.003322 0.57 0.0007691 0.00019 0.0003178 0.01226 0.3117 0.03775 0.007929 0.006408 0.58 0.3307 0.6095 0.3323 0.001293 0.3487 0.004985 0.01428 0.03237 0.0001098 0.001443 0.007126 1.55e-05 0.005166 0.001027 0.329 0.4483 0.0002236 0.004894 0.3985 0.00495 0.206 0.004873 4.305e-05 0.09145 0.0001428 0.5627 0.007194 0.001472 0.002107 0.002907 0.007184 0.005297 0.002717 0.001294 0.6 0.001548 5.191e-07 0.5718 0.0003626 0.007495 0.01436 0.0007864 0.0001374 0.406 0.009609 0.003475 0.00677 0.5236 0.01983 0.001835 0.01247 0.008144 0.003673 0.5701 0.03791 0.007217 0.528 4.514e-05 0.5556 0.002553 0.1239 0.05199 0.000217 0.001972 0.4059 0.008548 0.01177 0.003815 0.0006697 0.5925 0.5563 0.3457 0.006737 0.00841 0.01509 0.005182 0.0002495 0.02027 0.001281 0.03267 0.005844 0.000643 0.2693 0.0006694 0.000958 0.000703 0.1934 0.5173 0.000638 0.008823 0.566 0.0007869 0.0001706 0.02152 0.04432 0.0003966 0.1633 0.0007863 0.0001607 0.04251 0.01881 9.536e-05 0.001209 0.573 0.0008373 0.002529 0.002916 3.931e-05 0.1717 0.0008336 0.0003904 0.1638 0.005506 0.001306 0.5542 0.5625 0.0001202 0.0003498 0.01492 0.001643 0.004481 0.004921 0.3029 8.122e-06 0.008137 0.01562 0.0003063 0.001187 0.004718 0.006836 0.5711 0.000607 0.5721 0.08095 0.0001248 1.242e-06 0.488 0.5703 0.3043 0.007687 0.001601 0.00248 0.004946 0.002755 0.0003199 0.00314 0.001367 0.0001707 0.5715 0.5992 0.01706 2.334e-05 0.0005974 0.005505 0.3593 0.5521 0.0001314 0.02615 0.002601 0.5602 0.5925 0.00773 0.00212 0.5762 0.0002201 0.01058 0.006896 0.002681 0.001798 0.000244 0.009706 0.0003235 0.003127 0.001547 0.004616 0.1957 0.001322 0.0008943 0.5475 0.00338 0.003913 0.0026 0.00189 0.009007 0.0002153 0.001179 4.358e-05 0.5725 0.005416 0.2791 0.08353 0.004412 0.001791 0.005277 0.00136 0.5795 0.000663 0.0007455 0.592 0.01317 0.007602 0.1207 7.619e-05 0.001881 0.0009552 0.01785 0.001372 0.6245 0.6271 0.1573 0.004349 0.03552 0.003315 0.0001369 0.0001829 0.03681 0.001602 0.0001378 0.000495 0.4764 0.6119 0.0007266 0.5774 0.004315 0.0004355 0.00169 0.4547 2.631e-07 0.06745 0.01013 0.5676 0.00325 0.01015 0.007166 0.01792 0.01611 0.004352 0.01035 0.04171 4.292e-05 0.002501 0.008838 0.0007918 0.003771 0.0001493 7.488e-07 1.34e-05 0.3978 6.903e-05 0.001476 6.942e-05 0.0003358 0.0001854 0.2934 0.5238 0.0004213 0.0007484 0.001039 0.002112 0.0004888 0.02556 0.03266 0.01405 0.007738 0.00261 0.001318 0.01242 0.0006104 0.01004 0.003934 0.001689 0.0008383 0.0008424 0.5925 0.002737 0.002075 0.006364 0.0002998 0.001152 0.009867 0.00317 0.0001737 0.0005275 0.02049 0.002094 0.00829 0.008778 0.0002169 0.000162 6.791e-05 0.5637 0.005032 0.4437 0.002675 0.0002992 0.004302 0.002907 0.002213 0.0002295 0.5621 0.5386 0.0004879 0.0002083 0.001061 0.003886 0.0009643 0.03796 0.0004227 0.002043 0.003488 0.007158 0.5706 0.005473 0.001607 0.014 7.347e-05 0.002648 0.08205 0.001488 0.3843 0.002427 0.4706 0.001839 0.06532 0.02744 0.3981 0.002377 8.434e-06 0.1819 5.436e-05 0.02665 0.0002766 0.4717 0.00052 0.001106 0.0006905 0.02793 0.0007209 0.001543 0.0002799 3.981e-05 8.784e-05 0.0005518 0.0006988 0.5344 0.001753 0.003287 0.000128 2.377e-05 0.00213 0.001672 0.04971 0.0125 0.0001959 0.00169 0.001576 0.0002463 3.56e-05 0.004857 0.005189 0.00462 0.5555 0.5663 0.0008562 0.01624 0.004004 0.001651 0.005791 0.005263 0.5705 0.5725 0.000637 0.001123 0.002694 0.5714 0.0022 0.0009824 0.00844 0.003679 0.008641 0.4201 0.01106 0.0001657 0.007845 0.006308 0.0001306 1.769e-05 0.007446 0.001216 0.009269 0.5182 7.188e-07 0.001161 0.000354 0.001491 0.0002805 0.003338 0.0003712 0.0008487 0.00153 0.1773 0.002796 0.5571 0.4077 0.02621 0.0001381 1.049e-05 0.00235 0.01885 0.3986 0.0001583 0.0004326 0.0006921 0.01308 0.001408 0.5485 0.003181 0.002282 0.004109 0.01104 0.005127 0.0004696 0.0004319 3.633e-05 0.02641 0.004617 0.003625 0.01063 0.0005684 0.05073 0.08273 0.35 0.01004 0.005307 0.5682 0.004649 0.002164 0.001446 0.00206 0.008476 0.002382 0.004585 0.001485 0.005493 9.578e-06 0.009359 0.4693 0.2925 0.585 0.1258 0.5447 5.712e-05 0.007755 0.000475 0.003441 0.0006422 0.0004443 0.02119 0.1194 0.004104 0.01581 0.003819 0.004909 0.06553 0.001529 0.001356 0.06983 0.5696 0.4984 0.009662 0.01001 0.1208 0.4232 0.0006829 0.05448 0.0004332 0.004753 0.0001722 0.001892 0.00055 0.002313 0.1097 0.05668 0.001893 0.2994 0.002775 0.0005297 0.1048 0.0008262 0.0001627 0.3521 0.002705 0.5906 0.5916 6.69e-05 0.004491 0.02359 0.01015 0.0001169 0.0004257 0.001737 0.0006018 0.000198 0.007797 0.0003884 0.0002319 0.5709 0.03844 0.001885 0.0008758 0.5729 0.002446 0.007569 0.002499 0.03329 0.0009931 0.0003638 0.0001019 0.4799 1.001e-05 0.0002587 0.0101 0.001877 0.02398 0.01081 0.003088 1.165e-05 0.0001551 0.01475 8.688e-05 0.001022 0.004483 0.1789 0.007229 0.0002825 0.5143 0.4773 0.002197 0.4062 0.4022 0.02736 0.3894 0.0001747 0.001473 0.0006629 0.0009002 0.005673 0.0004573 0.001537 0.02997 0.006927 0.2671 0.001988 0.4252 0.001989 0.001661 0.006068 0.002107 0.0009795 0.5323 0.5533 0.007421 0.0008816 0.00476 0.5762 0.002527 0.0007396 0.002674 0.5267 0.00203 0.1404 0.3366 0.0067 0.6665 0.000878 0.005117 0.004857 8.737e-06 0.4133 0.0004013 0.002006 0.402 0.4015 1.186e-05 0.000874 4.361e-05 0.002526 0.0005352 0.001105 0.5778 0.02748 0.003161 0.004268 0.003236 0.08171 0.03511 0.4667 0.5986 0.00582 0.004335 0.006796 0.002067 0.0005698 0.07604 0.003918 0.001616 0.0003159 0.5726 0.0001941 0.002064 0.0006001 0.464 9.436e-06 0.0003555 0.001184 0.5299 0.01987 0.01311 0.3869 0.006584 0.4879 0.0001189 0.0003607 0.0004099 0.1006 0.1585 7.977e-05 0.03284 0.0004991 0.000137 0.04338 0.5067 0.004252 0.0002879 0.0291 0.0003689 0.001342 0.004456 0.000149 0.002146 0.01092 0.0008154 0.0113 0.5832 0.0001198 0.0004422 0.0006536 4.412e-06 0.01015 0.0313 0.005113 0.00804 0.3727 0.002995 0.0001906 0.466 0.0174 0.001314 0.0004048 0.0002713 0.01491 0.003429 5.431e-05 0.5709 0.001667 0.002577 0.0001973 0.575 3.486e-05 1.113e-05 0.001594 0.002234 0.0002522 0.0128 0.3779 0.0002188 0.4785 0.0008478 0.2295 0.004415 0.0001679 0.006532 0.0002432 7.474e-05 0.005459 8.566e-06 0.004766 0.005201 0.02746 0.04262 0.5172 0.346 0.572 0.5119 0.003521 0.007414 0.0004014 7.186e-05 0.00446 0.2807 0.002175 0.1268 0.0001432 0.008674 0.00109 0.3506 4.142e-05 0.04309 0.006166 0.001686 0.01071 0.0005561 0.002125 0.6256 0.01795 0.0002126 0.01627 0.0002704 0.01234 0.0006013 0.002193 0.0004751 0.004404 0.01066 0.4527 0.1489 0.01116 0.000142 0.004881 0.0008589 0.002906 0.00035 0.001564 0.4338 0.00298 0.1994 0.003787 0.002248 0.006813 0.001872 0.004771 0.2682 0.001065 0.01464 0.0006071 0.001362 0.002201 0.03289 0.0002506 0.002543 0.03332 0.0001105 0.008465 0.5717 0.0008794 2.829e-05 0.53 0.01573 0.00103 0.003498 0.02993 0.0003784 0.003607 3.017e-05 0.008661 0.005182 0.001627 0.1524 0.0145 8.845e-06 0.002155 0.01223 0.0001731 0.0004267 0.5557 0.004897 0.03422 0.1061 0.4094 0.5489 0.02042 0.07458 0.001588 0.0001175 0.002657 0.0005683 0.0001759 0.03086 0.0006442 0.4891 0.001303 0.000198 0.562 0.03435 8.849e-05 0.003993 0.008133 0.0001378 0.0001402 0.0007754 0.5912 0.004532 0.00016 0.001262 0.334 3.213e-05 0.001364 0.06255 0.003381 0.5573 0.2091 0.0007279 0.001792 0.6265 0.0002936 0.002597 0.0327 0.006652 0.001418 0.01893 0.006181 0.003148 0.02532 0.000828 0.3269 0.009036 0.001135 0.0412 0.5755 0.3145 0.001183 0.003794 0.001857 0.0007136 0.0002779 0.000603 0.005649 0.5799 0.008562 0.008217 0.004138 0.001466 0.2338 0.01278 0.3957 0.005443 0.01413 0.3222 0.000334 0.001301 0.1742 0.005974 0.002442 0.001102 0.001768 0.5778 0.07193 0.5933 0.3749 0.0005435 0.001882 0.006645 0.3648 0.002584 0.00349 0.003494 0.0001652 0.4471 0.005281 0.4994 0.006944 0.5837 0.5766 0.0015 1.018e-05 0.003176 0.004787 0.01545 0.001286 0.0009965 0.02043 0.04762 0.01637 0.0007803 0.01064 0.01426 0.08725 0.004065 0.3014 8.192e-05 0.001978 0.004918 1.432e-05 0.007321 0.4714 7.853e-05 0.003081 0.001195 0.5786 0.1828 0.002259 0.5701 0.01904 0.3953 0.3985 4.451e-05 0.0004045 0.005244 0.4052 0.4037 0.001331 0.004646 0.4159 0.001181 0.0003265 0.4519 0.0006591 0.4056 0.00659 3.083e-05 0.5694 0.5699 0.000427 0.001106 0.3075 0.002347 0.5501 0.002342 0.0008217 0.07973 0.01439 0.001323 0.01084 0.5361 0.6136 0.5389 0.002393 0.002638 0.008087 0.01205 0.01179 0.002396 8.035e-05 0.000781 0.0601 0.0008155 0.3125 0.3155 0.0003464 0.0437 0.02882 0.006064 0.01214 0.002898 0.06686 0.0001824 0.0009447 0.5832 3.076e-05 0.3659 0.004595 0.6597 0.01836 0.0002051 0.5865 0.01685 0.0001891 0.0003362 0.01255 0.2773 0.009475 0.04169 0.003082 0.005496 0.01958 8.569e-05 0.1151 0.004964 0.01353 7.328e-05 0.4785 0.002884 0.0004113 0.01269 0.004638 0.03665 0.002051 0.008764 0.0004338 0.005635 0.007461 0.009922 0.009821 0.4194 0.001649 0.5724 0.5926 0.005456 0.0009706 0.01604 0.02074 0.09944 0.001581 0.5252 0.003672 0.0006013 0.004873 0.004699 0.0003685 0.0006707 0.01001 0.0005115 0.004266 0.1459 0.5486 0.002002 0.002058 0.0002611 0.561 0.0004512 0.001913 0.002189 2.372e-05 0.5606 0.0005022 0.0007915 0.1147 0.2724 8.884e-05 0.001222 0.004568 0.008982 0.001752 0.0002719 0.0332 0.0004007 0.05617 0.0005783 0.0001228 0.009316 0.001035 0.4293 0.5801 7.328e-05 1.922e-05 0.05209 0.002476 0.0001707 0.0004377 0.02539 0.0004317 0.01996 0.0005265 0.03432 0.004625 0.03328 0.001237 0.00174 0.06079 0.4646 0.0001409 0.163 0.0003273 9.341e-05 0.004861 0.01028 0.5596 0.04308 0.003883 8.733e-05 0.0001838 0.004983 0.0118 0.5713 0.007102 0.02118 0.5348 0.0001505 0.002005 0.004282 0.0009789 0.0001235 0.0004365 0.3359 0.0005002 0.5932 0.01513 0.0006856 0.006857 0.333 0.000925 0.008195 0.004488 0.3679 0.01807 0.004574 0.008401 0.0144 0.01878 0.0002014 0.005714 0.003963 0.0003552 0.008623 0.001313 0.0001226 0.07874 0.4888 0.004131 0.003997 0.0004372 5.617e-05 0.1167 0.009097 0.004585 0.0007146 0.002038 0.0003047 0.00107 0.002674 0.3722 0.5731 0.09768 0.0002054 0.561 6.644e-05 0.5915 0.0002225 0.0003551 0.0005367 0.007421 0.003638 0.0008466 0.5291 0.0913 0.005598 0.01023 0.005275 0.02793 0.0005736 0.001122 0.5757 0.5891 0.572 0.5856 0.00103 0.5999 1.405e-05 0.4465 0.0003788 0.001693 0.0006461 0.5684 0.0002629 0.01032 9.347e-05 0.01958 0.3867 3.853e-05 0.5749 0.004445 0.001665 0.0003908 0.0003856 0.1137 0.0501 0.002735 0.006452 0.01391 0.08419 0.0008506 0.0797 0.004853 0.002904 0.01065 0.000307 0.002115 0.004914 0.007304 0.003899 0.004795 0.006441 0.2061 0.008205 0.01253 0.03942 0.01997 0.003693 0.6432 0.6202 0.0003976 0.001018 0.0004405 0.6067 0.5354 0.4236 0.001339 0.009634 0.5728 1.676e-06 0.5958 0.01686 0.0004738 0.001293 0.003348 0.4016 0.0002259 0.00204 0.005962 0.0005722 0.03333 0.0003502 0.0001262 0.002978 0.3986 0.01411 0.07584 0.5909 0.0109 0.003625 0.00137 0.000401 0.002504 0.004562 0.002128 0.5559 0.00184 0.004962 0.0005214 0.001461 0.4084 0.05238 0.03845 0.002736 0.005486 0.009214 0.001946 0.001173 6.008e-06 0.007666 0.4321 0.002983 0.0002413 0.000292 0.3497 0.01834 0.000707 0.003962 0.3868 0.002016 0.03305 0.1441 0.5719 0.01665 0.0001399 0.002786 0.4498 0.002855 0.003266 0.5204 0.001773 0.0006745 0.002026 0.0003929 0.02668 0.004518 0.4081 0.0002221 0.5775 0.00473 0.0133 0.0003864 0.0006827 4.678e-05 0.01583 0.009261 0.0004628 0.01197 0.004783 0.5385 0.001363 0.0003297 0.00604 0.5723 6.212e-05 0.000245 0.0003608 0.5817 0.01604 0.1982 0.004585 0.005924 0.4507 0.5813 0.00149 0.004954 0.001757 0.03175 0.003817 0.0008856 0.001792 0.3017 0.003396 0.0002681 0.203 0.2429 0.4935 0.0005297 0.008416 0.0007564 0.005811 0.001369 0.02419 7.496e-06 0.008877 0.001515 0.004279 1.152e-05 0.02397 0.001963 0.006023 0.5232 0.005429 0.003334 0.01306 0.01651 0.4084 0.01061 0.006632 0.2922 0.003698 0.005861 0.0005236 0.00117 0.01277 0.001615 0.0003691 0.5972 0.5865 0.002724 0.004811 0.01933 0.03968 0.5792 0.06741 0.0001164 0.004923 0.002398 0.0001284 0.0003843 0.0006326 0.06868 7.88e-06 0.01018 0.002225 0.002988 0.006369 0.004009 0.005761 0.0014 0.007788 0.00677 0.004848 0.5595 0.001326 0.0003602 0.00232 0.005807 0.0001696 0.000173 0.001725 0.005801 0.01146 0.1962 0.03826 0.0004755 0.003325 0.000189 0.4742 0.0004405 0.001614 0.0005177 0.006313 0.006551 0.3741 0.001722 0.002042 0.0009553 0.6246 0.0004976 0.02846 0.2051 0.004336 0.0006953 0.0004366 0.00194 0.5753 0.003448 0.09433 0.00043 0.001144 0.007391 2.179e-06 0.004783 0.008485 0.5764 0.002505 0.3752 0.5761 0.006986 0.0009457 0.009791 0.004533 0.5412 2.353e-06 0.2675 0.005687 0.009406 0.002142 0.00113 0.002933 0.01052 0.5831 0.5954 0.006076 0.003551 0.01591 0.0162 0.002106 0.002761 0.004051 0.04497 4.47e-06 0.0001193 0.4544 0.002031 0.004368 0.001889 0.04691 0.0009988 0.009198 0.005633 0.0009724 0.005651 0.001818 0.4874 0.4713 0.01116 0.001371 0.5909 0.001935 0.01144 0.01209 0.005273 5.897e-07 0.004341 0.004523 0.001674 0.001961 0.009643 0.001679 0.001195 0.367 0.003701 0.002102 0.02892 0.007027 0.004309 7.495e-07 0.5753 0.005232 0.0003508 0.000353 0.001416 3.783e-05 0.0001371 0.6045 0.001987 0.5504 0.001898 0.0327 0.00144 0.005591 0.0004929 0.5171 0.0001662 0.009868 0.002786 0.0256 0.002183 0.0004395 0.0008853 0.003558 0.0001628 0.01092 0.007749 0.003528 0.0007114 0.002808 0.1437 0.006143 0.00216 0.0004872 0.0008917 0.001019 0.001547 0.04713 0.02124 0.0147 0.00125 0.003417 0.0002927 0.001855 0.003542 0.007283 7.343e-05 0.00387 0.0004559 0.006638 0.5433 0.003892 0.003736 0.006727 0.01408 0.5861 0.001088 0.004456 0.0001795 0.06119 0.003473 0.006208 0.0104 0.007746 0.03119 0.03729 0.0125 0.001944 0.0005693 0.4195 0.0005372 0.001368 0.5235 0.008236 0.001407 0.03744 0.003402 0.3637 0.01049 0.006803 0.00133 0.0009528 0.02869 0.0001349 4.035e-05 0.02956 0.5611 0.006105 0.5647 7.307e-06 0.0004436 0.274 0.01494 5.439e-05 0.005891 5.601e-05 0.0005445 0.01344 0.541 0.004127 2.769e-05 0.082 0.4517 0.0008425 0.008774 0.001224 0.0008071 0.01046 0.007673 0.03266 0.002047 0.0005982 0.0003764 0.008044 0.587 0.6207 0.01098 0.4446 0.1258 0.002278 0.03066 0.0006727 0.5732 0.0006781 0.2778 0.4645 0.007826 0.0002948 0.5675 0.00242 0.001612 0.002637 0.001284 0.0008486 0.003903 0.5393 0.02598 8.797e-06 0.003959 0.004195 3.333e-05 0.0003432 0.4108 0.0004122 0.03864 2.527e-05 0.3613 0.3613 0.001775 0.4077 0.002981 0.01183 0.004479 0.009037 0.0003429 0.001928 0.005055 0.02347 0.008992 0.02192 0.008407 0.0002831 0.004877 0.09203 0.5555 0.000338 0.007451 0.001752 0.01301 0.5707 0.005458 0.0005499 0.01363 5.686e-05 0.004157 0.5633 0.000151 0.003204 0.03941 0.1919 0.00115 0.1703 0.2512 0.01954 0.0009523 0.4857 0.573 0.0008523 0.03264 0.0035 0.5707 0.001879 0.002652 0.0166 0.0009387 0.3572 0.001155 0.001808 0.5575 0.4371 0.06861 0.4281 0.007592 0.5667 0.04852 9.106e-05 0.0001882 0.0001813 0.002267 8.67e-05 0.0002048 0.009327 0.3556 0.004621 0.000593 0.009955 0.01746 0.4007 0.3985 0.0019 1.496e-06 0.5383 9.747e-06 0.09622 0.0007862 0.0009622 0.001435 0.0007989 0.001343 0.0004557 0.0001776 0.0005306 0.03515 0.001993 0.02222 0.08577 0.5721 0.0005997 0.1207 0.0351 0.008684 0.004871 0.02029 0.08628 0.001945 0.0005394 0.001583 0.001826 0.01364 0.3621 9.512e-06 0.008558 0.0001394 0.000277 0.002518 0.003265 0.5755 7.43e-05 0.00877 0.02583 0.0004082 0.5932 0.004847 0.0009602 0.005139 2.741e-06 0.000979 0.00207 0.009788 6.102e-05 1.827e-06 0.003942 0.02849 0.002662 0.007899 0.005933 0.5673 0.00511 0.09247 0.4076 0.002899 0.006808 0.002001 0.0004637 0.00167 0.5727 0.002159 0.002915 0.01948 0.4416 0.005546 0.0004097 0.0003263 0.08599 0.007052 0.03694 0.419 0.0001373 0.005554 0.002712 2.55e-05 0.003859 0.0003829 0.4759 0.006857 0.0008896 0.009621 4.718e-06 0.007549 0.0092 0.0004327 0.0008307 0.3768 0.007874 0.03436 0.268 0.0001965 0.00236 0.09439 0.01173 0.5262 0.03517 0.0003288 0.004722 0.001388 0.02404 0.01268 0.002851 2.453e-06 0.001 0.07851 0.007047 0.0008366 0.016 0.0007372 0.002571 0.006425 0.01522 0.1253 0.01598 0.5573 0.0001386 0.1058 0.0003785 0.004714 0.05085 0.004586 0.0001368 0.001516 0.01952 6.194e-06 0.4014 0.001243 0.001545 0.004229 0.5745 0.003451 0.01144 0.2026 0.0007713 0.002179 0.002578 0.0001408 0.5506 0.5741 0.115 0.03779 0.0008875 0.002441 0.08567 0.0003466 0.0004379 0.001295 0.001857 0.0001504 0.006236 0.04524 0.5226 0.001305 0.001573 0.01129 0.03003 0.00845 0.008947 0.5566 0.1161 0.006125 0.5755 0.001978 0.5695 0.5727 0.000728 0.0001528 0.008206 0.001158 0.003859 0.5514 0.0007068 0.02867 7.724e-05 0.0005922 0.02691 0.0301 0.04291 0.001243 0.01321 7.641e-05 0.0002837 0.002937 0.002089 0.0059 0.008573 0.3222 0.01004 0.5571 0.0002125 0.0001371 0.01177 0.003595 0.001827 0.0004153 0.5744 0.0008075 1.636e-05 0.4215 0.008415 0.004538 0.0004399 9.908e-06 0.5729 0.0003296 0.02923 0.2886 0.008168 0.2241 0.07128 0.0009837 8.07e-05 0.009471 0.0001952 0.0004319 0.00416 0.003813 0.002071 0.0006015 0.003327 0.3711 0.00196 1.565e-05 0.003187 0.0008429 0.001385 0.00178 0.006099 0.2758 0.0003258 0.006217 0.09385 0.00749 0.5057 0.04902 0.0004655 0.001521 0.4025 0.002014 0.4553 0.001974 0.002258 0.005539 0.2719 0.4296 0.001132 0.002512 0.0009863 0.0002346 0.5582 0.02197 0.001324 0.01211 0.01336 0.008423 0.0001243 0.0001567 0.001594 0.008979 0.4999 0.000125 0.0002785 0.3415 0.07878 0.003284 0.001518 0.01107 0.0005266 0.03454 0.001163 0.01449 0.3355 0.005781 0.09028 0.0036 0.6 0.4194 0.0007181 5.83e-05 0.3747 0.5706 0.002572 0.1547 0.5682 9.504e-06 0.1242 0.01658 0.0119 0.004555 0.5734 0.02913 0.0003061 0.2776 6.618e-05 0.01787 0.3415 0.5746 0.00501 0.006473 0.02073 0.1515 0.001473 0.288 0.004621 0.007197 0.2379 0.3372 0.0003311 0.003875 0.004053 0.002441 0.4541 0.009372 0.5707 0.009879 0.0003759 0.01311 0.005092 0.004063 0.01045 0.003464 8.248e-05 0.01974 0.05489 0.00309 0.0004435 0.005509 0.004617 0.01007 4.29e-05 0.01153 0.0001505 4.79e-05 0.01726 0.001388 0.0001942 0.05029 0.001243 0.00269 0.03059 0.0002556 0.0001312 0.001581 0.002409 0.0332 0.4938 0.00165 0.004731 0.01056 0.02048 8.628e-05 0.00121 0.003818 0.009287 8.821e-06 0.002993 0.005413 0.0007375 0.1124 2.901e-05 0.01449 0.004072 0.0005023 6.742e-05 0.00235 0.004579 0.006541 0.00137 0.006166 0.003319 0.001315 0.00312 0.004819 0.001762 0.0009904 0.006809 0.2767 0.007334 0.04535 0.006791 0.007137 0.0006542 0.0003107 3.639e-07 0.0008428 0.0006805 2.233e-05 0.5315 5.536e-05 0.2312 0.008682 0.0243 0.0647 5.909e-05 0.2095 4.525e-05 0.0004608 0.006734 0.002238 0.001832 0.001223 0.001927 4.455e-05 0.01843 0.0004106 0.05721 0.02924 0.2141 0.0005992 0.3738 0.005069 0.002253 0.5678 0.0008422 0.5717 0.0006076 0.5729 0.5582 0.009849 0.004299 5.539e-05 0.4653 0.000443 0.07709 0.5674 0.5916 0.0002825 0.01621 0.008453 7.691e-05 0.002336 0.5043 0.02938 0.5378 0.000297 0.001584 0.002927 0.0001641 0.2797 0.006505 1.425e-05 0.002557 3.075e-05 7.459e-05 0.005442 0.009862 0.0001556 0.001241 0.5901 0.000498 0.001519 0.007344 0.00658 0.003973 0.4055 0.02167 0.0044 0.00489 0.007294 0.005295 0.006058 0.000323 0.01177 0.3938 0.002871 0.007013 0.002257 0.01548 0.009933 0.003411 0.0002302 0.006433 0.0001761 4.011e-07 0.0007567 0.4926 0.4724 0.5793 0.01406 0.1023 0.0004908 0.001986 0.4747 0.0006567 0.6591 0.002499 0.2438 0.001673 0.02938 0.001578 0.0003363 0.0004518 0.0004397 0.02578 0.4804 0.0007584 0.03343 0.008196 0.5696 0.5721 0.01197 0.002486 0.0001388 0.4679 0.4678 0.00163 0.0219 0.008205 0.001354 0.2441 0.5218 0.0001156 0.5806 0.01323 0.003628 4.008e-05 0.6462 0.5756 0.0002829 0.003979 0.429 2.611e-05 0.3978 0.3979 0.3796 0.3881 4.422e-05 8.635e-06 0.00364 0.0007224 0.0485 0.003922 0.0005696 0.007774 0.4825 0.5475 5.337e-05 0.02929 0.0003102 0.002277 0.4739 0.005659 0.3528 0.0001079 0.0004114 0.342 0.02502 2.986e-06 0.0006254 0.0003801 0.0002774 0.003535 0.001689 0.0008908 0.004745 0.00209 0.5812 0.004137 0.006137 0.001541 0.5299 0.0002612 0.004729 5.558e-05 0.03804 0.0004588 0.006763 0.005895 0.0135 0.005268 0.341 0.001056 0.000164 0.5624 0.001269 0.003323 0.001922 0.006624 0.003609 0.0009287 0.0001551 0.006661 0.03092 0.02367 0.0002082 0.006507 0.006849 0.007281 0.5704 0.005271 0.004303 0.1805 0.4744 0.000465 0.005469 0.0004492 0.001456 0.5668 0.0175 0.0004994 0.0003026 0.0002925 0.1436 0.01001 0.001483 0.5741 0.005713 0.0005168 0.001824 0.005202 0.5718 0.004051 7.145e-05 0.002015 3.019e-05 0.001819 0.4478 0.08902 0.01948 0.0008262 0.5719 0.5823 0.007906 0.0009976 0.004279 0.008457 0.006944 0.005399 0.001558 0.001468 0.000364 0.0004441 0.002948 0.004866 0.01464 0.02437 9.354e-05 0.001902 0.5528 0.0005395 0.001512 0.009549 0.02307 0.0004323 0.03904 0.02754 0.3313 0.01678 0.001363 0.002967 0.01635 0.004465 0.5513 0.5755 0.005207 0.01216 0.004765 0.5362 0.001003 0.003965 0.5719 0.01138 0.009889 6.646e-05 0.0003985 0.01977 0.5734 0.0007068 0.582 0.002213 0.005781 0.002438 0.001467 0.009914 0.0004677 6.793e-05 0.5724 0.0008254 6.299e-06 0.002517 0.001838 0.5027 0.00388 0.002564 0.0003829 0.0002032 0.01967 0.04535 0.03917 0.5801 0.0002851 0.001014 0.01344 0.002166 0.166 0.02466 0.5769 0.1048 0.5194 0.008043 0.00409 0.002046 0.6551 0.02166 0.002539 4.483e-05 0.1991 0.5709 0.0003657 0.01652 0.2271 4.699e-06 0.006567 0.00861 0.004663 0.006636 0.002374 0.03906 0.007393 0.08481 0.003886 0.6625 4.132e-05 0.0003413 0.02951 0.001787 0.01861 0.005237 0.5878 0.5667 0.002367 0.03326 0.000305 0.0004693 0.008487 0.001154 0.0003419 0.003103 1.263e-05 3.684e-05 0.02898 0.02893 6.979e-05 0.524 4.086e-05 0.5802 0.001843 3.857e-05 0.04674 0.01276 0.0001796 0.602 2.596e-06 0.0001422 0.01087 0.4379 0.001148 0.003785 0.5466 0.0004426 0.01066 0.004177 0.5616 0.02565 0.006082 1.056e-05 0.007791 2.605e-05 0.007596 0.002891 0.4345 0.0003232 0.001609 0.0004488 0.4925 0.3293 0.008654 0.5232 5.919e-05 0.5129 0.00121 0.004412 0.002798 0.00163 3.332e-06 0.01265 0.0008886 0.003519 6.321e-06 0.03614 0.01699 0.4497 0.01172 0.0003331 0.0002238 0.4995 0.3663 0.004891 8.856e-05 0.0002565 0.008813 0.3401 0.3458 0.003181 0.001669 0.007563 0.004541 0.5263 0.007372 0.003955 0.5236 2.042e-06 0.0004036 0.001535 0.002178 0.5433 0.001386 0.002316 0.001683 8.037e-05 0.01105 0.001884 0.0003038 0.007826 0.005685 0.00171 0.021 0.5721 0.003438 0.05096 0.002272 0.002976 0.0009068 0.5712 0.0005167 0.0008528 0.02853 0.002255 0.01276 0.002325 0.001587 0.5735 7.231e-05 0.00208 0.006945 0.00525 0.01268 0.5159 1.301e-05 0.004953 0.00973 0.5745 0.0005409 0.002499 0.002721 0.5918 0.001427 0.5456 0.5877 0.01201 0.001392 0.1992 0.001173 0.004187 0.5646 0.0006273 0.03476 0.00317 0.006333 0.000358 0.005195 0.0006822 0.03961 0.06982 0.0003569 0.0008656 0.001089 0.01813 0.0006197 1.471e-05 0.2828 0.0002567 0.0005867 0.02261 0.4672 0.0006765 0.002469 0.5329 0.4982 0.4981 0.006663 0.471 0.009785 0.5683 0.0007171 0.5729 0.003575 0.001222 0.002407 0.002587 0.002584 0.01104 0.4304 0.001455 0.002926 0.0007619 0.002606 0.006096 0.01405 0.06424 0.00183 0.0001486 0.0004109 0.0005398 0.5743 0.0003296 0.1084 0.004377 0.02355 0.02676 0.007704 0.009838 0.4082 0.5966 0.1233 0.001026 9.701e-05 0.211 0.01411 3.43e-05 0.002953 2.79e-05 0.009653 0.5708 0.0008994 0.014 0.01978 0.002254 0.5919 0.555 0.05979 0.003111 0.0005788 0.04896 0.08798 0.0001336 3.339e-05 0.007118 0.005149 0.4802 0.5652 0.005462 0.001845 0.0913 0.003528 0.0167 0.001012 0.004681 0.02952 4.286e-05 5.652e-05 0.002591 0.007048 0.002211 0.2098 0.5525 0.3896 0.001443 0.006766 0.0003658 1.588e-05 0.0001531 0.5745 0.0002964 6.236e-05 0.07565 0.5547 0.0008653 3.807e-05 0.006683 0.001002 0.3873 0.01083 0.4277 0.5703 0.004272 0.002774 0.001011 0.03771 0.01033 0.002367 0.001858 0.02304 0.5972 0.01207 0.003935 0.00264 0.5604 0.0004338 0.002007 0.3028 0.001955 0.04965 0.002562 8.152e-06 0.001814 0.005966 0.002973 0.02127 0.001208 1.099e-05 0.001224 0.0003318 0.001781 0.001261 0.004789 0.0005388 0.0005062 0.01118 0.001825 0.4381 0.6022 0.006762 0.003455 0.002383 0.005024 0.003462 0.5914 0.07089 0.4179 0.000121 0.08936 0.02289 0.5133 0.003713 0.00482 0.6021 7.63e-06 0.000146 0.0002324 0.007597 0.2484 0.002067 0.01622 0.3324 0.006401 0.001861 0.001291 0.0074 0.0001994 0.5687 0.01034 0.02269 0.001841 4.644e-05 0.002016 0.007046 0.01334 0.004127 0.00213 0.002643 0.003835 0.001475 0.0005652 0.0007047 0.005006 0.3763 0.0001992 0.01248 0.5557 0.007909 0.3939 1.559e-05 0.007629 0.4779 0.0006323 0.00168 0.07261 0.0005555 0.006493 0.07516 0.01329 0.0009296 0.002914 0.007248 0.5756 0.09559 0.002012 7.951e-06 0.005278 0.1542 0.5927 0.008238 0.339 0.0003567 0.0264 0.001518 0.00363 0.004667 0.333 0.04451 0.0005462 0.4408 0.5673 9.877e-05 0.0005887 7.755e-07 0.04865 0.002519 0.007434 0.003023 0.0004823 0.003274 0.0344 0.02574 2.805e-05 0.5712 0.003294 0.3894 0.005808 0.6011 0.002836 0.001796 0.005873 0.004479 0.001478 0.000573 0.5761 0.5287 0.0003812 0.005006 0.0001691 0.3025 0.001046 0.4409 0.004074 0.0008698 0.001287 0.5011 0.4949 0.0003647 0.038 0.1906 0.0351 0.03382 0.0005868 0.004165 0.01341 8.109e-06 0.004393 0.002151 0.0003751 0.3615 0.3494 0.001663 0.009603 0.0001017 0.4954 0.01584 0.01363 0.0206 0.0105 0.00716 0.3476 0.0001914 0.08279 0.001859 0.000595 0.5603 0.3648 0.007761 0.02345 0.002868 0.07698 0.008514 0.1622 0.02057 0.004325 0.3718 0.006851 7.46e-06 8.179e-06 0.0937 0.03344 0.001208 0.0006138 0.0004757 0.5707 1.718e-05 0.01452 0.4738 0.0003273 0.0007035 0.005194 0.006802 0.00439 0.0001807 0.005098 0.5403 0.0001978 0.008668 0.0005295 0.005546 5.128e-06 0.000372 0.0002765 0.002584 0.001259 0.00228 0.0002289 0.02341 0.001126 0.004852 0.001182 0.005765 0.03573 0.5536 0.00391 0.0001373 0.002852 0.5925 0.0008295 0.2257 0.004085 0.001111 0.001059 0.002688 0.004647 0.001248 0.1814 0.005324 0.0005205 0.0003868 0.0004586 0.5494 2.571e-05 0.0008096 0.00461 0.000534 0.4946 0.00323 0.05912 0.285 0.01016 0.02292 0.2073 9.261e-05 0.004159 0.01262 0.00188 0.0004796 0.002248 0.01073 0.01543 0.002619 6.145e-05 0.03001 0.00749 0.406 0.4049 0.006648 0.02094 0.5312 0.0005159 0.003102 0.5354 0.01715 0.5667 0.00154 0.002579 0.000257 0.00431 0.05399 0.003987 0.5119 0.002002 0.01469 0.0003128 4.406e-05 0.003494 0.4019 0.0006969 0.0006643 0.0001272 0.0519 0.001028 0.00102 0.5282 0.0004531 0.007505 0.03433 0.1542 0.003013 0.4429 0.0022 0.5434 0.0003181 0.003471 0.09496 0.005346 0.3514 0.0009503 0.01334 0.0002109 0.1335 0.02478 0.00315 0.05625 0.03109 0.006105 0.01353 0.05596 0.001492 0.6092 0.56 0.0006061 0.064 0.3713 0.5525 0.006051 0.008556 0.548 0.5661 0.003482 0.006582 0.004617 0.3424 0.00169 0.002232 0.01207 0.0001434 0.0008559 0.003664 0.5709 0.0006577 0.006868 0.0001222 0.02323 0.01225 7.753e-05 0.006727 0.1848 0.007438 0.5718 0.007243 0.002861 0.5715 0.003418 0.5027 0.584 0.005226 0.0001412 0.06614 0.002737 0.4167 7.203e-05 0.5541 0.004374 0.01022 0.09915 0.01166 0.004827 0.0006168 0.0001918 0.4371 0.001095 0.2504 0.0002876 0.1486 0.001875 0.0001082 0.02315 0.002151 0.5366 0.005695 0.002316 0.001758 0.00237 0.0004786 0.5924 0.003096 0.009049 0.0001191 0.0022 0.3727 0.3296 0.004636 0.00172 0.2435 0.003828 0.0004813 0.01672 0.001357 0.06874 0.542 0.06915 0.007699 0.3314 0.01387 0.03626 0.05076 0.01145 0.003441 0.045 0.001141 0.0002296 0.002669 0.0002335 7.796e-06 5.319e-06 0.005057 0.01154 0.06281 0.01238 0.0003329 0.04455 3.85e-05 0.03634 0.01238 0.3962 0.01315 0.0002759 0.0006071 0.0002515 0.006159 0.5625 0.002052 0.00366 0.0006166 0.00315 0.006201 0.5913 0.0155 0.03544 0.006991 0.001268 0.04655 0.001028 0.0004289 0.0004456 2.555e-05 0.007398 0.004802 0.003581 0.0003897 0.546 0.0008535 0.01122 0.00781 0.01712 0.01035 0.5816 0.00075 0.0004551 0.0001546 0.006293 0.008132 1.674e-05 0.001189 0.00348 0.0008408 0.001274 0.4529 0.006508 0.002838 0.01102 0.008649 0.02313 0.0001736 0.01579 0.007084 0.01596 0.006956 0.02072 0.0004722 0.0003984 0.002776 0.05941 0.001452 0.0004556 0.0005599 0.004938 0.00628 0.002074 0.01795 0.001755 0.000678 0.001195 0.002557 0.01258 0.02853 0.006985 0.0212 0.01396 0.000608 0.0002929 0.0001418 0.005017 4.42e-05 0.02946 0.01609 0.3372 0.003733 0.1007 0.5659 1.217e-05 0.0106 0.3628 0.4155 0.5447 0.0001257 0.5705 0.0007352 0.002914 0.3761 0.005659 0.5029 0.3314 0.000542 0.002945 0.01144 0.006225 0.002977 0.03915 0.03675 0.0004262 0.004759 0.00827 0.008452 0.001805 0.02438 0.005211 4.483e-05 0.03406 0.06814 0.0002932 0.02017 0.002423 0.5385 0.0008344 0.01442 0.00268 0.001928 0.002476 0.3613 0.0013 0.3859 0.003103 0.003814 0.5716 0.006013 8.479e-05 0.0007674 0.4409 5.645e-06 9.807e-06 0.5667 0.07804 0.01247 0.003993 0.01197 0.01947 0.0004047 0.0009912 0.003823 0.5584 0.003313 0.5441 0.5441 2.741e-05 0.008835 0.0253 0.0003773 0.001668 0.00607 0.565 0.00409 0.377 0.08517 0.003035 0.002204 0.002628 7.449e-06 3.622e-05 0.01006 3.838e-05 0.497 0.0002326 0.004583 0.4814 0.005025 0.01007 0.07012 0.004193 0.4498 0.006196 0.0007245 0.007179 0.002543 0.006524 0.0009318 0.0004747 0.01006 0.0009967 0.4515 0.02297 0.001098 0.4463 0.03699 0.0008247 0.001861 0.03025 0.00463 0.568 0.006803 0.003222 0.0001974 0.4336 0.0208 0.0002361 8.858e-06 0.02589 0.03066 0.5306 0.0003446 0.0007553 0.01011 0.0006124 0.0008485 0.0005091 0.000591 0.00948 0.5758 0.005046 0.002025 0.01124 0.005749 0.0006382 0.0506 0.005245 0.003658 0.09498 0.001415 0.5668 0.5572 0.5747 0.001547 0.4472 0.0004251 0.0034 0.5716 0.01306 0.0936 0.05127 0.002153 3.624e-05 0.01439 0.0324 0.003971 0.003309 1.702e-05 0.02964 0.08371 0.001358 0.0001778 3.673e-05 0.03655 0.000592 0.0008278 1.306e-05 0.0004972 0.0004809 6.441e-05 0.001041 0.001471 0.02165 0.01468 0.1497 0.004689 0.002166 0.5982 0.5545 0.002128 9.763e-05 0.0008354 0.001729 0.006485 0.002022 0.4409 0.001759 0.005705 0.03149 0.008696 0.01174 0.0002788 0.002141 0.15 0.0007895 0.5584 0.00555 0.002785 0.549 0.03063 4.631e-06 0.3393 0.002077 0.0002215 0.0003077 1.14e-05 0.5557 0.008182 0.001076 0.3803 0.003491 1.212e-05 0.005303 0.01238 0.09037 0.004976 0.01145 0.0004899 0.01028 0.3634 0.0002506 0.001572 0.00553 0.0002317 0.4027 0.001927 0.0001862 7.675e-05 0.0062 0.00199 0.6348 0.002657 0.002381 0.002244 0.005244 0.07438 0.02144 0.003018 0.5708 0.07293 0.00685 0.2872 0.006291 0.0005243 0.04534 0.3309 3.764e-05 0.00522 0.05157 0.371 0.0005771 0.03775 0.006682 0.5713 0.01461 0.0005398 0.01457 0.0003731 0.04355 0.0009062 0.0001751 0.001567 0.1101 0.0005386 0.5807 0.01564 0.0001223 0.01804 0.0216 0.3829 3.64e-06 0.3791 0.001127 0.003798 0.001164 0.000585 0.5451 0.5168 0.003912 9.43e-06 0.0007511 0.006581 0.002023 0.158 0.4939 0.3659 0.004268 0.4196 9.743e-06 0.006769 0.001735 0.01484 0.007927 0.001966 0.000381 0.0006646 0.05983 0.01611 0.000211 0.003683 0.002683 0.5711 0.5741 0.00636 0.3766 0.002229 0.0005409 0.001266 0.03899 0.00351 0.007845 0.0006246 8.019e-05 0.00259 0.5576 0.004965 0.001243 0.008535 0.3778 0.5932 0.0001339 0.4894 0.0001399 0.004068 0.0004964 0.007584 0.02138 0.4173 0.002169 0.0001689 0.0004164 0.06883 0.0002486 0.007432 0.5717 0.0006765 0.4347 1.118e-05 0.005231 0.003797 8.475e-06 0.003885 0.0002319 0.5717 0.001115 0.01109 0.0005681 0.2077 0.002297 0.000299 0.05725 1.076e-05 0.3827 0.006679 1.505e-05 0.006861 0.0003858 7.69e-06 0.02821 0.003839 0.02107 0.00151 0.03178 0.001208 0.0002441 1.014e-05 0.005033 0.006856 0.0008226 6.526e-06 0.003884 0.311 0.003305 4.043e-05 0.02524 0.5765 0.6105 0.01811 0.002708 0.01318 0.00276 0.4228 0.0005156 0.0009353 0.001303 0.5282 0.002452 0.5835 0.4033 0.006768 0.5718 0.0009803 0.00424 0.006379 0.008517 1.159e-05 0.002719 0.003761 0.555 0.5278 0.007867 0.5434 0.0007398 0.0002622 0.004709 0.006857 0.006918 0.002693 0.5554 0.001746 0.01438 0.003152 0.1359 0.009138 0.587 0.003522 0.0006934 4.47e-05 0.0002759 0.0004213 0.002148 0.000825 0.0006019 0.003264 0.005813 0.001175 0.0004612 0.03921 0.002783 0.00831 0.002494 0.6029 0.002259 0.5798 0.0005986 0.03627 0.2072 0.399 0.01004 0.008912 0.5704 0.009581 0.004184 0.009078 0.02569 6.251e-06 0.0008789 0.04069 0.06069 0.000521 1.618e-06 0.0006208 1.116e-05 0.5747 0.0003502 0.003004 0.007242 0.00597 0.5297 0.004447 0.00551 0.003116 0.2309 0.002326 0.0037 0.02178 0.5458 0.03055 0.0004054 0.001855 0.0139 7.921e-06 0.5839 0.03242 0.001994 0.0003921 0.000678 0.0004036 0.3632 0.2824 0.001525 0.4297 1.059e-05 0.003942 0.001543 0.3716 0.04038 0.0003188 0.568 0.3954 0.5651 0.005981 0.0755 0.0003577 0.5817 0.008793 0.01441 0.5841 9.296e-06 0.5747 0.0005486 0.007259 0.002731 0.23 0.02343 0.007092 0.002659 0.004782 0.00408 0.0001367 6.837e-05 0.002167 0.0004514 0.002824 0.004747 0.001087 0.08524 0.005658 0.0018 0.02224 0.002062 0.0007337 0.001019 0.008176 0.001629 0.01311 0.001597 0.0005547 0.0001697 0.001107 0.0005813 0.0005316 0.5549 0.0006612 0.0007608 0.003808 0.03166 0.3976 0.003386 0.005236 0.01155 0.5587 7.695e-06 0.4737 0.004228 0.3356 0.004887 3.379e-05 0.01632 0.00861 0.001603 5.545e-05 0.002142 9.624e-06 0.5242 0.007514 0.3781 0.3807 1.018e-05 0.03961 0.559 0.001209 0.001864 3.739e-05 2.971e-05 0.0004362 0.00141 0.02439 0.001385 0.08283 0.00803 0.4878 0.3771 0.01106 0.01063 0.0003894 0.0025 0.00105 7.199e-06 0.5368 0.09997 0.003541 0.003563 0.4253 0.5052 0.007259 0.0002186 0.5761 0.0004152 0.0008344 0.000126 0.5715 8.882e-06 0.4478 0.004488 0.001222 0.01357 0.0013 0.004994 0.002011 6.711e-06 0.001004 0.0005544 0.001461 0.0008065 0.006081 0.001718 0.1597 0.002063 1.564e-05 0.0005267 0.01457 0.005243 0.006717 2.973e-05 0.0001058 1.196e-05 0.0009431 0.0105 0.5114 0.5747 0.4183 0.008718 2.326e-05 0.04551 0.008914 0.006894 0.001111 0.00138 0.0007279 0.5715 0.004172 0.001498 0.000808 0.5705 0.0004362 0.4813 0.005468 0.0316 0.004749 0.4522 0.02691 0.00651 0.0002772 4.589e-05 0.002426 0.01389 0.03868 2.851e-05 0.006131 0.5001 0.01544 0.4927 0.3253 1.038e-05 2.934e-05 0.0003867 0.002024 0.5684 2.817e-05 0.001886 0.4839 0.4206 0.004883 8.534e-06 0.01308 0.5545 0.0002412 0.005392 0.007147 0.007232 0.01233 0.001855 0.07079 0.0003728 0.5617 0.5996 0.03082 0.535 0.002149 0.533 0.0002558 0.5798 0.002032 0.02204 0.5845 0.0002597 0.5716 0.0001722 0.01122 0.006121 0.0009777 0.01634 0.0001431 0.01274 0.6012 0.4109 0.2586 0.014 0.008755 0.00189 0.0006893 0.004643 0.0047 0.0001144 0.001442 0.009103 0.002087 2.965e-05 0.004991 0.001332 1.198e-05 3.438e-05 2.505e-05 0.4442 0.0007585 0.5785 0.2241 0.009707 4.061e-06 0.5392 0.002069 0.04857 0.001157 0.001171 7.665e-06 0.5647 0.00171 0.03067 0.0003311 0.0005115 0.5705 0.1094 0.006531 0.3979 0.005844 0.001454 0.0008714 0.007165 0.1067 0.005474 1.742e-05 0.0002308 0.001368 0.001156 0.004727 0.005431 0.005374 0.4357 0.0003268 0.5781 0.3885 0.009669 0.4492 0.5093 0.000334 0.0009676 0.004371 0.00454 0.002231 0.3248 0.001508 0.0005663 0.05092 0.01174 0.3899 0.001012 9.653e-06 0.3813 0.2169 0.3274 0.0002394 0.004207 0.001147 0.04875 0.3867 0.00413 9.535e-06 0.3103 0.0001735 0.008378 0.002515 0.5324 0.004432 0.01029 0.0002652 0.0008323 0.004333 0.5884 4.92e-06 0.002859 0.004566 0.02515 4.52e-06 0.01604 0.0004567 0.0004309 0.001841 0.0008485 0.02255 0.0006062 2.051e-05 0.0004139 0.3767 0.009294 0.001073 0.001208 0.000494 0.001766 0.1012 0.0002459 0.02122 2.422e-05 3.533e-05 0.0005195 0.42 0.003029 0.004818 0.5667 0.002502 0.001457 0.0003546 0.04471 0.0005803 0.0004207 0.0002539 0.009949 0.001393 0.3801 0.03545 0.07089 0.04043 0.5526 0.01439 0.0005105 0.02297 0.0002338 0.01033 0.0006773 0.5351 0.3779 0.01379 0.0004645 0.5184 0.05871 0.03104 0.5714 0.002032 1.741e-05 0.01295 0.004831 0.5759 0.002143 0.002676 0.3355 0.001684 0.006346 0.001751 0.0008443 5.527e-05 0.01175 0.4578 0.1032 0.03071 0.002163 0.008628 0.04846 0.0003789 0.002731 0.003368 0.0001125 0.5194 0.01478 0.506 1.276e-07 0.3985 0.02116 0.0006568 0.5048 0.006213 0.0003454 2.648e-05 4.501e-05 0.0008611 0.06352 0.008631 0.00185 0.02731 0.000573 0.007536 0.01202 0.004832 0.5781 0.001462 0.09856 0.03243 0.0248 0.0009322 0.002711 0.0005499 0.2873 0.5351 4.51e-05 0.01472 0.0006321 0.001747 0.005936 0.001626 1.081e-06 0.5745 0.1015 0.0104 0.003808 0.4063 0.4843 0.0167 0.0004496 0.005687 0.4163 2.247e-05 0.001663 0.001029 0.01895 0.002535 0.001024 0.5361 0.5748 0.01473 0.001807 8.754e-05 0.001815 4.488e-05 0.0006769 0.0001368 0.001692 0.4821 0.0093 0.001085 0.00182 0.003819 0.1531 0.002779 0.002939 1.371e-05 0.1564 0.002288 5.701e-07 0.0007409 0.003275 0.005821 0.01042 0.0009496 0.6266 0.006561 0.5807 0.03161 0.002423 0.4882 0.5303 0.5712 0.007214 4.155e-06 0.001938 0.03918 0.007136 8.571e-06 0.3722 0.01174 0.005322 0.0004597 0.5826 0.5057 0.007194 0.007639 0.003288 0.2669 0.001875 0.0004513 0.002992 0.01756 4.498e-07 0.002565 0.0001449 0.006657 0.003404 0.000791 0.003971 3.875e-05 0.01084 0.0003147 0.008234 0.0007759 0.0004617 0.002073 7.825e-06 0.0002646 0.008396 0.008712 0.5417 0.004138 0.5552 0.03188 0.006955 0.00243 0.4483 0.3877 4.29e-05 0.01639 4.525e-05 0.01662 0.000889 0.008976 0.0003705 0.5718 0.005343 0.07362 0.0003048 0.000368 0.03058 0.5685 0.0001978 0.005936 0.5567 0.322 0.0003733 0.0005545 0.006101 0.008669 0.5392 0.000335 7.752e-05 0.4466 0.001817 0.002259 0.0008918 0.4366 0.008584 4.482e-07 0.002058 0.02337 0.000946 0.0003057 0.005082 0.02217 0.002184 0.4882 0.001748 0.0002964 0.589 0.005128 0.007562 0.005131 0.05226 0.002575 0.3999 0.0002881 0.5882 2.036e-05 0.001472 3.832e-05 0.01766 0.0007089 0.01698 0.004308 0.002068 0.007929 0.006589 0.0009733 0.1006 0.001977 0.009009 0.5399 0.5399 0.09104 0.00441 0.0002768 0.08605 0.0004702 0.0009682 0.00199 0.5363 0.5845 1.201e-05 2.328e-05 0.001163 5.486e-06 0.005113 0.2894 0.04121 0.005687 0.003039 0.01708 2.377e-06 0.0001959 0.01104 2.147e-05 1.151e-05 0.01126 0.0007205 3.061e-05 0.002159 0.01285 0.0003508 0.2749 0.0005429 1.993e-06 0.02053 0.0004232 0.006955 0.01105 0.006963 0.01527 0.5669 8.159e-06 0.005382 0.1801 0.01843 0.5005 0.007682 0.5389 0.00188 0.004212 1.117e-07 0.1013 0.007517 0.04866 0.05238 0.001447 2.627e-05 0.0002676 0.03193 0.002067 0.5046 0.004244 0.4953 0.002031 0.000295 0.03237 0.009064 0.585 0.409 0.01798 0.1023 0.008979 3.798e-06 0.002337 1.377e-06 3.491e-05 1.247e-06 0.001015 0.002479 8.474e-05 0.0008989 0.01692 1.56e-05 1.036e-05 4.083e-08 0.0002771 0.09665 0.00173 0.01008 0.002724 3.709e-06 2.457e-06 3.713e-06 3.234e-06 1.253e-07 1.363e-08 2.406e-09 ) ; boundaryField { back { type empty; } front { type empty; } airfoil { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 3168 ( 0 0 0 0 0 0 9.752e-08 0 0 1.268e-07 1.391e-09 0 0 0 0 0 8.718e-07 0 0 1.501e-07 0 0 0 0 1.465e-06 4.436e-07 1.204e-06 7.253e-07 7.576e-07 6.171e-07 1.803e-06 1.897e-06 1.808e-06 2.024e-06 1.27e-06 1.778e-07 4.822e-08 8.251e-07 1.904e-06 0 8.631e-07 2.215e-06 1.352e-06 2.234e-06 1.798e-06 1.684e-06 1.403e-06 1.356e-06 1.004e-06 9.931e-07 1.772e-06 1.375e-06 8.563e-07 9.729e-07 1.878e-06 1.885e-06 1.931e-06 1.527e-06 1.564e-06 2.759e-07 1.842e-06 1.127e-06 6.166e-07 1.258e-06 7.177e-07 1.406e-06 1.979e-06 9.13e-07 1.202e-06 1.284e-06 1.624e-06 1.006e-06 2.111e-07 5.06e-07 4.223e-07 1.153e-06 6.083e-07 8.728e-07 4.822e-07 1.812e-06 1.809e-06 9.775e-07 1.468e-06 3.851e-09 7.876e-07 4.828e-07 9.636e-07 9.206e-07 1.669e-06 6.101e-07 9.738e-07 1.101e-06 1.831e-06 9.99e-07 1.424e-06 1.882e-06 4.796e-07 1.274e-06 2.068e-06 1.614e-06 1.551e-06 1.515e-06 1.576e-06 1.682e-06 1.882e-06 2.195e-06 1.282e-06 7.113e-07 3.88e-07 0 1.064e-06 6.888e-07 1.044e-06 1.547e-06 1.451e-06 1.286e-06 3.453e-07 1.32e-06 1.742e-06 1.768e-06 0 1.41e-06 9.538e-07 1.179e-06 1.504e-06 1.304e-08 7.209e-07 1.369e-06 1.218e-06 1.522e-06 2.893e-07 2.169e-06 1.321e-06 4.714e-07 1.03e-06 1.304e-06 1.771e-06 1.772e-06 9.227e-07 1.178e-06 1.535e-06 0 1.518e-06 2.026e-06 1.905e-06 1.814e-06 1.863e-06 8.368e-07 7.608e-07 7.984e-07 9.98e-07 1.265e-06 1.427e-06 6.358e-07 8.082e-07 6.963e-07 8.531e-07 1.62e-06 1.278e-06 1.557e-06 1.234e-06 1.381e-06 1.098e-06 1.151e-06 8.652e-07 1.381e-06 7.372e-07 1.428e-06 1.717e-06 1.05e-06 2.256e-08 1.179e-06 1.27e-06 1.582e-06 1.046e-06 1.306e-06 1.353e-06 1.378e-06 1.363e-06 1.762e-06 4.612e-07 1.271e-06 1.38e-06 9.568e-07 0 1.497e-06 6.301e-08 1.789e-06 4.895e-07 6.054e-07 1.523e-06 1.749e-06 0 6.831e-07 1.06e-06 2.838e-07 6.086e-07 1.635e-06 1.06e-06 0 5.388e-07 8.857e-07 2.114e-07 4.676e-07 1.786e-06 1.509e-06 9.749e-07 1.404e-06 1.181e-06 9.973e-07 1.349e-06 1.754e-06 1.295e-06 1.074e-06 1.476e-06 5.934e-07 1.804e-06 1.175e-06 1.325e-06 1.365e-06 6.309e-07 6.725e-07 1.561e-06 8.231e-08 1.484e-06 1.486e-06 1.086e-06 1.418e-06 1.126e-06 1.208e-06 1.52e-06 2.883e-07 3.991e-07 1.375e-07 9.853e-07 1.404e-06 1.358e-06 1.046e-06 1.47e-06 2.111e-06 7.365e-07 2.015e-07 1.708e-06 1.351e-07 2.111e-07 1.727e-07 6.858e-07 8.659e-07 1.349e-06 9.907e-07 1.614e-06 1.585e-06 3.921e-07 3.129e-07 1.696e-06 2.044e-06 1.604e-06 1.922e-06 3.51e-08 1.504e-06 1.252e-06 1.517e-06 1.408e-06 1.704e-06 1.414e-06 1.349e-06 6.007e-07 9.637e-07 1.119e-06 1.222e-06 1.361e-06 0 1.536e-06 1.617e-06 9.867e-07 6.556e-07 1.237e-06 8.705e-07 1.101e-06 1.818e-06 1.398e-06 1.368e-06 1.288e-06 1.303e-06 1.205e-06 1.462e-06 1.229e-06 1.107e-06 3.637e-07 5.398e-07 6.204e-07 1.059e-06 1.388e-06 7.88e-07 1.328e-06 1.343e-06 1.818e-06 1.401e-07 1.51e-06 8.676e-07 8.466e-07 2.663e-07 5.145e-07 8.578e-07 1.433e-06 2.058e-07 7.027e-07 6.115e-07 5.116e-08 7.87e-07 1.1e-06 4.554e-07 1.287e-06 1.478e-06 1.404e-06 1.349e-06 1.084e-06 1.373e-06 8.361e-07 5.001e-07 2.301e-07 1.698e-06 6.343e-07 8.716e-07 1.051e-06 6.761e-07 4.959e-10 1.346e-06 0 1.311e-06 0 7.367e-07 1.729e-06 0 1.753e-06 2.507e-07 1.104e-06 1.342e-06 1.462e-06 9.174e-07 1.359e-06 8.389e-07 1.764e-06 1.77e-06 1.595e-06 4.945e-07 8.349e-07 1.764e-06 1.35e-06 1.303e-06 2.845e-08 2.048e-06 7.923e-07 1.266e-06 0 1.118e-06 1.222e-06 1.724e-06 1.538e-06 7.608e-07 1.103e-06 1.111e-06 2.022e-06 2.682e-07 1.92e-07 3.287e-07 1.942e-07 1.06e-06 1.31e-06 1.515e-06 2.419e-07 1.155e-06 1.139e-06 2.022e-06 1.277e-06 8.276e-07 1.623e-06 1.069e-06 1.108e-06 1.272e-06 8.539e-07 1.603e-06 1.459e-06 2.529e-07 4.371e-07 1.366e-06 1.5e-06 1.647e-06 7.074e-07 8.63e-07 1.536e-06 1.583e-06 1.153e-06 1.63e-06 4.661e-07 1.436e-06 1.387e-06 7.801e-07 8.392e-07 3.933e-07 1.754e-06 4.055e-07 1.587e-06 0 1.428e-06 2.116e-07 1.012e-06 1.009e-06 1.174e-06 1.026e-06 1.156e-06 1.766e-06 1.245e-06 1.482e-06 1.569e-06 1.562e-06 4.498e-07 1.076e-06 1.302e-06 1.477e-06 1.483e-06 2.023e-06 1.217e-06 5.437e-07 1.186e-06 1.717e-06 1.442e-06 1.025e-06 1.751e-06 1.043e-06 1.637e-06 1.614e-06 1.312e-06 1.298e-06 1.42e-06 2.27e-07 1.703e-06 7.152e-07 1.262e-06 6.278e-07 1.544e-06 1.308e-06 2.874e-07 0 1.416e-06 1.77e-06 1.167e-06 1.345e-06 5.704e-07 1.88e-06 6.658e-07 1.133e-06 8.031e-08 1.125e-06 1.714e-06 1.712e-06 9.329e-07 1.698e-06 1.557e-06 1.762e-06 1.585e-06 1.364e-06 1.325e-06 1.799e-06 2.521e-07 1.9e-06 1.727e-06 1.352e-06 2.032e-06 1.22e-06 1.465e-06 1.53e-06 1.745e-06 1.576e-06 3.279e-07 9.104e-07 3.891e-07 0 1.645e-06 3.844e-07 2.13e-06 0 7.795e-07 1.468e-06 7.482e-07 1.526e-06 1.261e-06 1.603e-06 0 1.237e-06 1.259e-06 1.456e-06 1.38e-06 1.832e-06 1.954e-06 1.55e-06 1.927e-06 0 1.712e-06 4.698e-08 5.941e-07 1.66e-06 1.048e-06 6.691e-07 1.036e-06 1.613e-06 1.724e-06 1.159e-06 5.921e-08 0 2.798e-07 1.52e-06 1.885e-06 1.451e-06 1.679e-06 1.563e-06 6.078e-07 8.396e-07 2.641e-07 1.438e-06 2.771e-07 0 1.08e-06 1.262e-06 1.294e-06 5.473e-07 5.582e-07 1.825e-06 1.186e-06 7.393e-07 1.425e-06 1.52e-06 7.378e-07 1.031e-06 1.31e-06 1.234e-06 1.333e-06 9.196e-07 1.376e-06 7.473e-07 1.281e-06 1.638e-06 1.816e-07 6.233e-07 1.71e-06 8.8e-07 4.78e-07 1.168e-06 8.733e-07 2.144e-07 1.165e-06 9.853e-07 5.59e-07 1.227e-06 1.404e-06 2.112e-07 3.579e-07 1.482e-06 1.256e-06 1.35e-06 7.316e-07 1.02e-06 1.854e-06 0 4.655e-07 1.491e-06 1.426e-06 4.57e-07 1.275e-06 1.574e-06 6.534e-07 5.736e-07 1.385e-06 1.427e-06 8.016e-07 1.477e-07 1.597e-06 1.075e-06 9.632e-07 1.32e-06 1.052e-06 7.473e-07 2.31e-08 1.346e-06 5.067e-07 1.722e-06 1.832e-06 1.474e-06 4.684e-08 1.632e-06 1.234e-06 2.449e-07 5.493e-07 0 1.51e-06 1.434e-06 1.669e-06 1.589e-06 1.912e-06 1.075e-06 1.608e-06 1.244e-06 7.093e-07 1.678e-06 1.232e-06 1.87e-06 5.768e-07 2.74e-07 4.324e-07 3.831e-07 4.612e-07 1.821e-06 1.187e-06 1.453e-06 1.453e-06 1.226e-06 1.184e-06 5.801e-07 7.651e-07 1.368e-06 1.351e-06 1.122e-06 1.293e-06 1.413e-06 1.494e-06 1.646e-06 1.487e-06 1.116e-06 1.34e-06 8.173e-07 1.59e-06 6.561e-07 9.511e-07 1.527e-06 1.886e-06 1.451e-06 1.068e-06 0 0 1.209e-06 1.542e-06 2.866e-07 8.219e-07 1.337e-06 6.483e-07 9.426e-07 1.34e-06 6.252e-07 1.028e-06 1.196e-06 1.209e-06 8.447e-08 1.759e-07 8.048e-07 3.118e-09 0 4.549e-07 4.488e-07 7.351e-08 1.074e-06 0 3.592e-07 7.604e-07 0 1.334e-07 0 9.251e-07 1.527e-06 5.395e-07 5.517e-07 1.259e-06 7.276e-07 9.784e-07 5.967e-07 1.278e-06 2.011e-07 5.496e-07 1.232e-06 0 9.891e-07 1.385e-06 6.375e-07 1.383e-06 5.774e-07 0 1.19e-06 1.349e-06 0 3.295e-07 4.331e-07 1.251e-06 1.438e-06 1.769e-06 1.026e-06 1.241e-06 9.873e-07 1.681e-06 9.787e-07 9.439e-07 6.657e-07 3.841e-07 1.163e-06 1.195e-06 3.553e-07 1.733e-07 1.835e-06 1.546e-06 1.59e-06 1.132e-06 1.131e-06 1.377e-06 1.128e-06 1.107e-06 6.234e-07 1.083e-06 1.234e-06 1.574e-06 8.706e-07 1.333e-06 1.396e-06 1.195e-06 1.715e-06 1.813e-06 7.034e-07 1.248e-06 1.272e-06 1.286e-06 0 1.144e-06 7.366e-07 1.232e-06 5.695e-07 8.588e-08 1.541e-06 1.833e-06 9.049e-08 1.209e-06 6.098e-08 1.084e-06 1.109e-06 1.69e-06 1.077e-06 1.035e-06 1.687e-06 7.027e-08 1.125e-06 8.325e-07 1.072e-06 3.524e-07 6.85e-07 1.074e-06 1.009e-06 1.01e-06 7.106e-07 1.469e-06 7.227e-07 1.808e-06 1.022e-06 5.673e-07 1.466e-06 1.816e-06 1.433e-06 1.121e-06 1.181e-07 8.682e-07 1.662e-06 1.335e-06 8.218e-07 0 1.425e-06 1.632e-06 1.691e-06 1.457e-06 1.55e-06 1.643e-06 1.098e-06 1.309e-06 1.097e-06 9.28e-07 9.833e-07 1.123e-06 9.065e-07 1.312e-06 1.817e-06 1.7e-06 1.532e-06 9.5e-07 1.51e-06 1.167e-06 9.576e-07 1.579e-06 1.129e-06 9.023e-07 1.715e-06 1.052e-07 1.026e-06 5.294e-07 6.762e-07 5.386e-07 7.706e-07 1.027e-06 1.508e-06 6.01e-07 1.27e-06 1.271e-06 1.592e-06 1.781e-06 8.885e-07 7.414e-07 8.613e-07 1.681e-07 3.866e-07 1.452e-06 2.111e-07 5.853e-07 1.178e-06 0 1.507e-06 9.902e-07 0 7.453e-07 1.521e-06 0 1.184e-06 1.295e-06 5.645e-07 6.773e-07 1.649e-06 1.707e-06 6.771e-07 6.644e-07 1.444e-06 1.112e-06 8.399e-07 1.029e-06 1.258e-06 1.097e-06 1.379e-06 2.968e-07 9.203e-07 1.036e-06 9.23e-07 2.666e-07 5.815e-08 1.148e-06 8.056e-07 1.635e-06 1.663e-06 9.866e-08 1.147e-06 7.845e-07 1.038e-06 1.392e-06 1.108e-06 1.165e-06 1.22e-06 1.732e-07 1.849e-06 1.456e-06 0 1.707e-06 1.488e-06 4.693e-07 0 7.97e-07 1.602e-06 8.21e-07 9.37e-07 1.446e-06 1.307e-06 1.233e-06 1.56e-06 1.446e-06 1.431e-06 1.175e-06 1.589e-08 1.094e-06 1.657e-06 9.785e-07 7.304e-07 1.146e-07 1.616e-06 0 7.968e-07 0 5.583e-07 1.029e-06 1.193e-06 1.03e-06 9.247e-07 1.18e-06 1.133e-06 1.434e-06 1.204e-06 0 1.33e-06 1.559e-06 1.16e-06 1.5e-06 1.055e-06 1.331e-06 1.184e-06 1.197e-06 1.18e-06 1.331e-06 1.393e-06 9.772e-07 5.617e-07 1.792e-06 1.881e-06 1.708e-06 0 8.887e-07 0 6.125e-07 1.108e-06 6.878e-08 9.125e-07 0 7.447e-07 1.686e-06 1.664e-06 1.419e-06 1.486e-06 1.242e-06 1.554e-06 1.322e-06 1.225e-06 8.404e-07 1.599e-06 6.879e-07 1.764e-06 1.309e-06 1.408e-06 0 1.49e-06 2.952e-07 0 1.674e-06 5.634e-07 1.419e-06 0 1.528e-07 5.308e-07 1.274e-06 4.541e-07 5.638e-08 1.493e-06 1.352e-06 1.283e-06 9.944e-09 8.704e-07 1.8e-07 1.466e-06 3.022e-07 1.142e-06 1.102e-06 0 0 1.418e-06 7.956e-07 1.661e-06 0 1.125e-06 1.526e-06 7.516e-07 9.656e-07 5e-07 1.502e-06 1.163e-06 1.384e-06 7.073e-07 8.473e-07 4.045e-07 3.046e-07 1.091e-06 3.356e-07 9.774e-07 1.343e-06 1.584e-06 1.022e-06 1.511e-06 1.767e-06 1.176e-06 1.205e-06 1.625e-06 1.151e-06 1.348e-06 2.836e-07 1.332e-06 1.381e-07 1.462e-06 1.313e-06 1.435e-06 1.708e-06 9.027e-07 5.507e-07 1.756e-06 5.205e-07 1.472e-06 1.146e-06 0 6.957e-08 8.754e-07 1.523e-06 1.279e-06 1.584e-06 1.111e-06 0 1.091e-06 1.369e-06 1.525e-06 4.336e-07 0 1.474e-06 1.57e-06 1.615e-06 1.434e-06 1.362e-06 5.596e-07 1.144e-06 1.633e-06 1.209e-06 6.403e-07 1.32e-06 1.445e-06 1.618e-06 1.15e-06 1.309e-06 1.162e-06 1.306e-06 8.441e-07 1.38e-06 8.971e-07 1.082e-06 0 1.37e-06 1.095e-06 1.58e-06 1.17e-06 5.1e-08 7.663e-07 1.429e-06 1.432e-06 4.69e-07 1.6e-06 1.772e-06 0 1.047e-06 1.285e-06 1.062e-06 1.26e-06 6.737e-07 1.233e-06 3.119e-07 5.98e-08 1.393e-06 1.023e-06 1.066e-06 1.126e-06 1.215e-06 1.566e-06 0 1.091e-06 1.768e-07 1.296e-06 1.64e-06 8.775e-07 1.275e-06 5.006e-07 1.217e-06 1.651e-06 8.525e-07 1.016e-06 1.413e-06 1.01e-06 9.678e-07 3.254e-07 1.356e-06 7.395e-07 8.619e-07 1.445e-06 1.253e-06 0 0 0 8.528e-07 1.101e-06 1.459e-06 1.01e-06 7.805e-07 1.201e-06 1.01e-06 1.524e-06 4.965e-07 1.713e-07 7.258e-07 0 5.366e-07 6.51e-07 1.652e-06 3.088e-07 7.009e-07 1.179e-06 0 1.328e-06 9.12e-07 0 2.639e-07 1.274e-06 4.475e-07 1.174e-06 4.603e-07 7.585e-07 4.002e-07 0 1.229e-06 1.071e-06 1.345e-06 2.184e-07 5.019e-07 6.975e-07 1.268e-06 2.94e-07 6.438e-07 6.029e-07 1.421e-07 7.147e-07 1.355e-06 8.225e-07 1.316e-06 3.813e-07 1.011e-06 9.727e-07 1.325e-06 3.06e-07 3.36e-07 1.126e-06 0 0 0 0 1.345e-06 1.535e-06 0 1.641e-06 0 4.373e-07 4.886e-07 1.076e-06 4.248e-07 1.453e-06 4.585e-07 1.57e-06 1.119e-06 1.594e-06 1.282e-06 1.409e-06 1.115e-06 1.268e-06 1.333e-06 8.778e-07 1.34e-06 7.845e-07 6.885e-07 4.793e-07 0 9.309e-07 6.241e-07 5.846e-07 1.351e-06 1.379e-06 6.11e-08 8.638e-07 3.321e-07 1.248e-06 8.581e-07 7.333e-09 0 4.316e-07 4.994e-07 6.721e-07 6.882e-07 1.264e-06 4.557e-07 9.635e-07 9.781e-07 2.091e-07 1.483e-06 1.036e-06 1.09e-06 1.455e-06 2.276e-07 5.795e-07 1.485e-07 1.177e-06 1.202e-06 1.306e-06 3.052e-08 3.77e-08 4.373e-07 4.046e-07 8.559e-07 1.137e-07 1.511e-06 1.567e-06 3.254e-07 7.754e-07 8.826e-07 0 1.218e-06 5.546e-07 0 4.65e-07 7.172e-07 1.403e-06 8.03e-07 5.858e-07 6.902e-07 4.892e-09 7.904e-07 0 3.964e-07 0 0 1.289e-06 1.204e-06 1.354e-06 1.415e-06 1.788e-07 0 6.407e-07 0 0 0 1.297e-06 6.703e-07 8.321e-07 0 1.048e-06 0 5.488e-07 1.186e-06 1.046e-06 0 6.367e-07 1.828e-06 1.387e-06 0 1.481e-06 0 1.16e-06 6.064e-07 9.592e-07 7.882e-07 9.778e-07 1.362e-06 1.223e-06 6.49e-07 1.177e-06 0 2.932e-07 1.064e-06 1.018e-06 1.073e-06 1.139e-06 1.841e-06 1.062e-06 4.018e-07 7.934e-07 3.749e-07 0 1.253e-06 9.237e-07 1.038e-06 3.44e-09 1.489e-06 1.535e-06 2.699e-08 0 1.246e-06 3.163e-08 4.217e-07 0 8.524e-07 1.318e-06 4.405e-07 4.263e-07 8.552e-07 9.974e-07 1.052e-06 7.693e-07 1.135e-06 1.146e-06 4.424e-07 4.388e-07 1.187e-06 0 1.239e-06 4.604e-07 8.89e-07 7.784e-07 1.06e-06 1.177e-06 1.42e-06 5.612e-07 1.002e-06 1.32e-06 1.175e-06 1.365e-06 4.991e-07 1.162e-06 1.273e-06 1.59e-07 1.025e-06 8.464e-07 1.965e-07 1.106e-06 9.129e-07 1.02e-06 6.716e-07 4.886e-07 7.446e-07 3.938e-07 6.321e-07 8.135e-07 9.864e-07 1.02e-06 9.859e-07 2.785e-07 8.343e-07 9.643e-07 1.141e-06 1.012e-06 6.159e-07 0 1.032e-06 4.613e-07 5.919e-07 5.656e-07 8.637e-07 1.744e-07 0 4.694e-07 3.248e-07 1.105e-06 3.701e-07 0 1.998e-07 6.665e-07 1.259e-06 6.427e-07 8.771e-07 0 0 0 1.064e-06 2.802e-08 4.369e-08 1.717e-07 1.076e-06 6.564e-07 8.57e-07 2.556e-07 9.342e-07 3.358e-07 9.707e-07 7.57e-07 8.554e-07 1.128e-06 2.233e-07 7.151e-07 1.093e-06 1.021e-06 3.019e-07 0 1.445e-06 6.852e-07 2.01e-07 2.353e-07 8.344e-08 5.168e-07 8.009e-07 7.515e-07 1.067e-06 8.187e-07 1.01e-06 3.079e-07 6.363e-07 1.035e-06 9.551e-07 0 6.924e-07 0 5.191e-07 1.063e-06 5.559e-08 6.784e-07 0 1.08e-06 1.152e-06 5.683e-07 8.741e-07 8.716e-07 1.388e-07 1.606e-07 7.104e-07 8.4e-07 8.536e-07 0 1.228e-06 0 2.126e-07 1.14e-06 0 4.414e-07 3.388e-07 2.057e-07 3.022e-08 9.711e-07 1.024e-06 9.255e-07 1.17e-06 1.581e-07 9.625e-08 1.114e-06 1.028e-06 9.014e-07 7.599e-07 1e-06 9.69e-07 9.82e-07 1.318e-06 1.053e-06 1.104e-06 1.421e-06 0 1.053e-06 9.248e-07 6.277e-07 1.406e-06 1.112e-06 8.091e-08 8.02e-07 4.544e-07 1.231e-06 9.573e-07 5.328e-07 7.949e-07 1.201e-06 1.305e-06 1.262e-06 8.435e-07 7.247e-07 1.266e-06 1.169e-06 7.89e-07 1.095e-06 9.334e-08 4.412e-07 1.07e-06 0 1.561e-06 3.635e-07 9.531e-07 1.386e-06 0 1.023e-06 1.253e-06 1.21e-06 1.117e-06 1.153e-06 1.241e-06 5.052e-07 1.357e-06 1.268e-06 9.944e-07 1.36e-06 1.131e-06 0 1.349e-06 1.251e-07 0 1.477e-06 1.212e-06 1.347e-06 1.415e-06 1.108e-06 1.346e-06 4.083e-07 1.404e-06 1.331e-06 1.289e-06 1.157e-06 1.124e-06 4.999e-07 7.357e-07 6.28e-07 1.174e-06 1.58e-06 1.621e-06 7.65e-07 8.835e-07 6.534e-07 1.198e-06 1.52e-06 9.969e-07 5.657e-07 1.612e-06 7.216e-07 0 1.036e-06 1.082e-06 9.404e-07 6.448e-07 1.618e-06 1.255e-06 9.574e-07 1.075e-06 3.796e-07 5.921e-07 8.525e-07 8.387e-07 3.167e-07 8.719e-07 6.85e-07 1.077e-06 1.23e-06 7.193e-07 1.169e-06 8.515e-07 1.131e-06 7.938e-07 8.684e-07 1.044e-06 8.921e-07 1.149e-06 0 1.124e-06 4.385e-07 0 1.281e-06 4.234e-07 1.459e-08 9.739e-07 6.835e-07 1.397e-06 5.757e-07 0 1.047e-06 1.188e-06 3.703e-07 1.044e-06 1.279e-06 8.88e-07 1.033e-06 1.441e-07 1.793e-07 8.6e-07 9.86e-09 1.21e-06 1.073e-06 8.159e-07 7.77e-07 1.218e-06 5.844e-07 9.086e-07 2.92e-07 8.67e-07 1.03e-06 4.466e-07 1.004e-06 9.863e-07 1.035e-06 6.225e-07 7.853e-07 1.284e-06 3.501e-07 4.128e-07 1.095e-06 1.12e-06 1.304e-06 7.701e-07 9.407e-07 6.287e-07 6.522e-07 9.691e-07 0 3.734e-07 8.23e-07 1.106e-06 0 6.841e-07 5.81e-07 4.731e-07 1.015e-06 2.761e-07 4.252e-07 5.121e-07 2.794e-07 6.567e-07 7.221e-07 7.632e-07 7.793e-07 1.614e-06 1.481e-06 2.287e-07 2.553e-08 2.183e-07 1.305e-06 8.015e-07 9.236e-09 1.288e-06 1.168e-06 2.344e-07 1.14e-06 1.306e-06 1.521e-06 0 8.917e-07 2.223e-07 3.52e-07 1.25e-06 1.017e-06 2.91e-07 1.535e-06 1.252e-06 1.26e-06 7.984e-07 3.289e-07 9.336e-07 3.198e-07 0 1.114e-06 8.54e-07 1.472e-06 0 1.424e-06 6.921e-07 3.99e-07 5.238e-07 3.314e-07 1.439e-06 9.66e-07 9.389e-07 1.947e-07 3.04e-07 8.599e-07 9.888e-07 6.525e-07 1.293e-06 9.475e-07 8.776e-07 0 5.573e-07 4.096e-07 0 0 7.591e-07 6.927e-09 8.547e-07 4.552e-07 8.532e-07 8.849e-07 5.062e-07 0 1.015e-06 1.004e-06 2.24e-07 3.873e-07 2.337e-07 4.588e-07 2.873e-07 8.811e-07 0 9.94e-07 1.076e-06 2.763e-07 9.554e-07 4.444e-07 2.134e-07 1.21e-06 4.68e-07 1.192e-06 3.809e-07 1.16e-06 8.739e-07 7.957e-07 9.63e-07 4.101e-07 1.103e-06 6.823e-07 2.968e-07 5.615e-07 6.458e-07 0 1.07e-06 8.806e-07 8.414e-07 0 8.559e-07 6.406e-07 1.088e-06 5.077e-07 2.081e-07 4.347e-07 1.022e-06 1.071e-06 2.388e-07 1.076e-06 3.305e-07 3.566e-07 0 9.115e-07 9.368e-07 4.396e-07 0 0 7.29e-07 1.178e-07 6.956e-07 1.382e-06 6.747e-07 1.108e-06 9.536e-07 2.986e-07 6.404e-07 1.032e-06 3.492e-07 3.704e-07 8.973e-07 4.093e-07 1.593e-07 4.944e-07 1.039e-06 1.021e-06 3.5e-07 2.242e-07 1.891e-07 6.854e-08 1.016e-07 1.293e-06 1.212e-06 7.817e-07 1.129e-06 1.169e-06 1.2e-06 9.798e-07 6.999e-07 1.173e-06 1.031e-06 1.176e-06 1.118e-06 1.028e-06 1.283e-06 1.039e-06 5.849e-09 6.135e-07 1.095e-06 2.751e-07 0 4.191e-07 0 7.713e-07 4.512e-07 6.147e-07 1.311e-06 9.145e-07 5.778e-09 2.067e-07 0 5.623e-07 8.364e-07 1.029e-06 8.257e-07 7.776e-07 4.421e-07 9.314e-07 0 0 1.17e-06 9.74e-07 2.902e-07 0 1.886e-07 9.937e-07 1.219e-07 1.298e-06 8.886e-07 7.116e-07 9.303e-07 1.114e-06 0 9.697e-07 1.215e-06 0 9.02e-07 0 1.236e-06 2.001e-07 7.743e-07 1.069e-06 1.037e-06 1.162e-06 0 5.123e-07 0 5.86e-07 0 2.631e-07 4.025e-07 7.453e-07 1.071e-06 0 3.668e-07 8.642e-07 2.877e-07 3.93e-07 1.759e-07 9.375e-07 1.052e-06 6.664e-07 3.285e-07 9.26e-07 2.396e-07 3.81e-07 6.667e-07 3.41e-07 1.018e-06 1.102e-06 5.626e-07 9.46e-07 8.824e-07 4.467e-07 1.194e-06 1.215e-06 8.452e-07 0 9.996e-07 4.877e-07 6.07e-07 1.036e-06 1.172e-06 1.227e-06 7.694e-07 9.964e-07 9.43e-07 8.875e-07 0 1.341e-06 1.36e-07 6.273e-07 5.811e-07 9.148e-07 1.399e-06 3.796e-07 1.232e-06 9.056e-07 3.92e-07 5.361e-07 1.153e-06 6.675e-07 6.487e-07 0 8.088e-07 0 4.144e-07 7.39e-07 6.806e-07 9.336e-07 0 3.864e-07 2.943e-07 4.111e-07 4.25e-07 1.411e-06 7.475e-07 8.991e-07 8.409e-07 5.975e-07 8.338e-08 8.236e-07 1.02e-06 7.923e-07 9.059e-07 6.726e-07 8.393e-07 8.349e-07 4.379e-07 1.193e-07 9.228e-07 6.749e-07 0 6.881e-07 1.181e-06 4.56e-07 8.401e-07 1.229e-06 9.463e-07 1.178e-07 8.247e-07 6.908e-07 4.195e-07 2.913e-07 4.762e-07 3.422e-07 6.796e-07 1.097e-06 9.04e-07 5.608e-07 4.912e-07 2.433e-07 6.362e-07 1.262e-06 5.808e-07 3.543e-07 2.696e-07 9.895e-07 4.829e-07 1.097e-06 9.631e-07 0 0 5.004e-07 0 1.158e-06 1.166e-06 2.177e-07 1.344e-06 3.303e-07 5.325e-07 8.431e-07 0 2.016e-07 1.576e-07 4.105e-07 7.356e-07 6.46e-07 7.454e-07 9.902e-07 7.859e-07 3.677e-07 1.391e-06 1.013e-06 1.113e-06 9.212e-07 1.275e-06 2.143e-07 1.015e-06 1.008e-06 1.208e-06 1.253e-06 1.03e-06 7.228e-07 6.47e-07 1.238e-06 9.613e-07 1.121e-06 1.072e-06 9.655e-07 1.126e-06 3.358e-07 9.838e-08 1.367e-06 1.171e-06 1.258e-06 7.23e-07 2.497e-07 5.964e-07 8.295e-07 1.202e-06 5.864e-07 0 1.037e-06 1.144e-06 9.229e-07 1.359e-06 0 6.232e-07 1.028e-06 8.42e-07 4.668e-07 7.719e-07 1.303e-06 6.98e-07 9.404e-07 1.03e-06 0 7.317e-07 1.137e-06 6.641e-07 5.3e-07 5.019e-07 3.76e-08 9.513e-07 3.479e-07 8.789e-07 7.107e-07 0 1.221e-06 8.048e-07 1.268e-06 1.012e-06 1.124e-06 0 0 6.75e-07 1.039e-06 7.218e-07 4.417e-07 1.142e-06 5.5e-07 6.827e-07 1.124e-06 9.122e-07 1.773e-07 7.928e-07 0 2.067e-07 8.438e-07 7.763e-07 4.418e-07 9.656e-07 7.008e-07 0 4.495e-09 3.37e-07 4.727e-07 8.291e-07 2.738e-07 9.286e-07 7.131e-07 1.091e-06 9.485e-07 0 5.652e-07 3.923e-07 1.173e-06 8.48e-07 6.072e-07 8.014e-07 6.962e-07 0 9.808e-07 9.347e-07 8.139e-07 6.781e-07 0 1.577e-07 9.122e-07 3.81e-07 7.392e-07 8.527e-07 4.579e-07 2.286e-07 8.211e-07 9.511e-07 6.952e-07 7.056e-07 1.041e-06 9.642e-07 7.342e-07 6.642e-07 9.02e-07 9.903e-07 1.073e-06 9.155e-07 8.088e-07 9.516e-07 8.364e-07 6.995e-07 5.774e-07 8.06e-07 8.717e-07 6.59e-07 9.076e-07 8.57e-07 8.151e-07 0 7.591e-07 5.014e-07 6.527e-07 5.765e-07 6.509e-07 3.449e-07 9.18e-07 1.192e-06 0 0 7.222e-07 6.135e-07 3.184e-07 9.903e-07 7.851e-07 1.3e-06 9.615e-07 8.678e-07 8.248e-07 1.353e-06 1.403e-06 0 0 8.401e-07 8.942e-07 6.133e-07 9.147e-07 7.231e-07 0 8.595e-07 2.623e-07 2.366e-07 1.027e-06 8.728e-07 6.812e-07 8.823e-07 8.748e-07 7.45e-07 1.594e-07 1.046e-06 8.735e-07 0 2.845e-07 1.114e-06 1.04e-06 9.732e-07 3.166e-07 9.412e-07 1.041e-06 0 1.001e-06 0 6.736e-07 9.781e-07 0 8.965e-07 4.043e-07 2.458e-07 6.68e-07 2.55e-07 2.182e-07 5.175e-07 9.772e-07 7.652e-07 6.421e-07 1.35e-06 9.734e-07 7.956e-07 8.88e-07 9.603e-07 1.112e-06 7.845e-07 7.511e-07 1.048e-06 8.773e-07 1.194e-06 5.019e-08 1.085e-06 6.594e-07 4.118e-07 6.417e-07 1.176e-06 9.383e-07 7.719e-07 7.218e-07 7.704e-07 6.542e-07 7.385e-09 6.36e-07 0 1.093e-06 8.673e-07 1.178e-06 1.359e-07 1.052e-06 5.402e-07 7.603e-07 8.669e-07 7.512e-07 5.35e-07 0 3.379e-08 9.15e-08 7.923e-07 4.348e-07 5.123e-07 1.196e-06 8.301e-07 5.943e-07 7.097e-07 7.554e-10 1.608e-07 8.962e-07 8.995e-07 4.818e-07 8.062e-07 2.464e-07 9.001e-08 7.415e-07 3.9e-07 1.074e-06 8.634e-07 1.006e-06 1.78e-07 5.536e-07 2.041e-07 7.354e-07 6.294e-07 1.312e-07 0 4.619e-07 1.353e-06 7.235e-07 3.192e-07 1.13e-06 5.515e-07 1.142e-06 8.139e-07 9.198e-07 8.734e-07 5.424e-07 9.895e-07 1.13e-06 5.414e-07 5.616e-07 1.049e-06 6.541e-07 1.072e-06 5.322e-07 8.117e-07 8.814e-07 3.48e-07 7.027e-07 9.72e-07 8.567e-07 1.236e-06 6.922e-07 1.146e-06 1.355e-07 1.647e-07 0 1.16e-06 4.319e-07 1.041e-06 0 4.339e-07 8.202e-07 0 0 9.911e-07 1.368e-06 1.117e-06 5.75e-07 5.446e-07 8.2e-07 6.596e-07 1.479e-07 8.414e-07 1.022e-06 5.19e-07 1.077e-06 9.092e-07 5.032e-07 1.059e-06 1.067e-06 1.559e-07 1.217e-06 1.147e-06 5.77e-07 1.968e-07 1.029e-06 1.745e-07 8.764e-07 9.196e-07 6.86e-07 1.309e-06 9.946e-07 8.65e-07 9.479e-07 1.225e-06 0 1.116e-06 8.118e-07 3.668e-07 9.916e-07 5.628e-07 9.651e-07 5.356e-07 1.086e-06 1.309e-06 6.141e-07 9.433e-07 1.05e-06 0 4.255e-07 1.007e-06 9.248e-07 1.195e-06 8.187e-07 9.946e-07 1.358e-06 1.149e-06 1.166e-07 8.492e-07 1.242e-06 4.605e-07 4.031e-07 5.892e-07 6.115e-07 1.455e-06 3.906e-09 6.147e-07 1.242e-06 1.218e-06 1.276e-06 7.696e-07 4.608e-07 1.181e-06 2.903e-07 1.095e-06 5.208e-07 6.292e-07 3.652e-07 1.092e-06 1.003e-06 2.202e-08 1.117e-06 6.209e-08 6.271e-07 6.288e-07 6.634e-07 4.228e-07 8.497e-07 7.225e-07 9.761e-07 7.96e-07 7.076e-07 1.216e-06 9.898e-07 4.241e-07 9.673e-07 3.544e-07 5.948e-07 1.042e-06 1.044e-06 3.755e-07 1.204e-06 1.202e-06 7.463e-07 8.43e-07 1.08e-06 1.026e-06 7.922e-07 8.097e-07 1.199e-06 5.001e-07 3.79e-07 1.386e-06 1.579e-06 6e-07 0 1.098e-06 1.134e-06 1.134e-06 1.984e-07 5.641e-07 7.713e-07 1.17e-06 9.49e-07 6.719e-07 4.402e-10 1.112e-06 3.438e-07 1.073e-06 6.54e-07 8.035e-07 0 0 1.15e-06 2.52e-07 1.7e-08 9.821e-07 2.564e-07 1.095e-06 0 6.261e-07 1.081e-06 1.29e-06 7.105e-07 1.187e-06 9.538e-07 8.174e-07 8.864e-07 1.047e-06 0 0 0 1.066e-06 8.002e-07 0 7.371e-07 8.614e-07 0 1.875e-07 0 5.06e-08 1.118e-06 0 1.039e-06 1.117e-06 1.107e-06 4.533e-07 9.191e-07 1.493e-08 3.012e-07 9.481e-07 3.497e-07 8.614e-07 3.494e-07 9.802e-07 6.393e-07 2.461e-07 9.859e-07 8.925e-07 1.211e-06 1.327e-06 9.246e-07 6.555e-09 7.643e-07 8.041e-07 1.122e-06 9.112e-07 3.353e-07 2.487e-07 5.26e-07 3.811e-07 3.919e-07 1.165e-06 1.141e-06 2.515e-07 4.996e-07 0 8.34e-07 0 0 5.531e-07 5.419e-07 0 6.087e-07 1.161e-06 8.624e-07 5.759e-07 1.138e-06 8.434e-07 9.875e-07 5.945e-07 0 8.951e-07 1.065e-06 3.455e-08 6.679e-07 6.383e-07 6.497e-07 1.348e-06 9.578e-07 1.133e-06 1.182e-06 4.165e-07 5.812e-07 1.096e-06 7.904e-07 4.111e-07 2.265e-07 1.224e-06 7.612e-07 4.726e-07 5.73e-07 1.211e-06 3.335e-09 7.03e-07 1.154e-06 4.374e-09 2.523e-07 4.69e-07 6.274e-07 6.41e-07 9.082e-07 2.729e-07 7.645e-07 3.174e-07 7.457e-07 8.702e-07 1.198e-06 6.131e-07 8.39e-07 9.92e-07 9.215e-07 1.088e-06 1.204e-06 3.155e-07 4.85e-07 9.688e-07 9.561e-07 3.265e-08 5.026e-07 1.639e-07 1.095e-06 3.846e-07 5.014e-07 1.078e-06 9.493e-07 8.41e-07 1.131e-06 0 9.921e-07 8.426e-07 6.209e-07 1.641e-06 4.498e-07 0 8.093e-07 9.36e-07 3.79e-07 2.913e-07 1.162e-06 1.607e-07 0 1.168e-06 3.837e-07 2.712e-07 2.2e-07 4.107e-07 9.073e-07 6.741e-07 1.41e-06 8.83e-07 0 3.211e-07 7.245e-07 5.817e-07 1.118e-07 5.449e-07 6.304e-07 8.769e-07 3.141e-07 0 8.712e-07 8.404e-07 4.953e-07 9.382e-07 8.044e-07 3.287e-07 1.013e-06 2.946e-07 7.613e-07 2.962e-07 1.048e-06 1.157e-06 1.312e-06 5.105e-07 6.088e-07 0 4.8e-07 1.025e-06 0 6.782e-07 6.412e-07 7.283e-07 1.074e-06 0 8.773e-07 3.597e-07 8.421e-07 5.778e-07 2.246e-07 2.849e-07 0 3.136e-07 9.168e-07 0 8.254e-07 3.945e-07 8.893e-07 3.418e-07 7.193e-07 0 7.964e-07 2.846e-07 4.786e-07 1.538e-07 1.835e-07 1.859e-07 3.911e-07 8.05e-07 2.192e-07 2.41e-08 0 2.747e-07 1.197e-06 7.191e-07 0 7.913e-07 7.235e-07 4.02e-07 4.604e-07 7.774e-07 4.13e-07 0 0 1.586e-07 0 1.251e-06 2.167e-07 5.114e-07 1.372e-07 5.509e-07 0 2.195e-07 8.894e-08 3.954e-07 1.235e-07 5.066e-07 6.65e-07 0 0 5.049e-07 1.269e-07 8.201e-07 9.907e-07 0 5.086e-07 2.673e-07 9.915e-08 2.279e-07 2.675e-10 1.201e-06 1.738e-07 9.841e-07 8.4e-07 3.687e-07 1.022e-06 1.556e-07 7.193e-07 1.916e-07 4.019e-07 6.484e-07 8.683e-07 8.307e-07 7.394e-07 0 1.895e-07 2.247e-07 0 2.295e-07 5.902e-07 2.191e-07 4.065e-07 0 6.121e-07 8.034e-09 1.26e-06 1.793e-07 7.01e-07 1.67e-07 3.538e-07 7.609e-07 1.756e-07 1.71e-07 1.995e-07 1.741e-07 0 9.734e-07 0 0 5.482e-07 1.651e-07 3.613e-07 1.158e-06 2.495e-07 6.157e-07 1.204e-07 5.98e-07 8.064e-07 2.424e-07 2.612e-07 1.241e-08 0 0 9.322e-07 6.651e-07 7.625e-07 7.623e-07 1.909e-07 0 2.781e-07 0 2.338e-07 1.498e-07 9.457e-07 4.87e-07 0 3.962e-07 8.451e-07 6.703e-07 4.426e-07 2.933e-07 4.274e-09 4.146e-07 6.203e-07 2.94e-07 6.44e-07 0 0 0 2.481e-07 6.469e-07 8.089e-07 9.147e-07 5.108e-07 2.969e-07 7.987e-07 8.176e-07 7.435e-07 1.164e-06 1.223e-06 7.186e-08 7.434e-08 3.459e-07 0 4.666e-07 8.792e-07 9.436e-07 5.414e-07 0 5.147e-07 9.326e-08 8.606e-07 4.515e-07 9.736e-07 9.406e-07 7.297e-07 2.371e-07 4.499e-07 4.829e-07 0 0 0 7.137e-07 6.359e-07 6.153e-07 6.301e-07 5.894e-07 2.03e-07 2.369e-07 6.495e-07 0 5.904e-07 7.466e-07 5.521e-07 2.801e-07 8.869e-07 8.485e-07 3.068e-07 8.729e-07 4.369e-07 6.286e-07 0 1.141e-06 9.719e-07 6.992e-07 2.93e-07 3.505e-07 5.412e-09 4.769e-08 8.786e-07 1.134e-06 5.495e-07 1.665e-07 7.876e-08 4.235e-07 2.445e-07 2.118e-07 1.114e-06 1.109e-06 7.323e-07 4.84e-07 7.206e-07 2.133e-07 1.02e-06 4.206e-07 3e-07 9.306e-07 1.078e-06 6.631e-07 6.281e-07 8.453e-07 5.93e-07 5.537e-07 0 8.538e-07 6.747e-07 6.49e-07 4.181e-07 4.692e-07 4.039e-07 3.703e-07 2.058e-07 1.399e-07 6.738e-08 9.667e-07 8.193e-07 8.297e-07 6.634e-08 2.199e-07 0 6.921e-07 1.023e-06 7.372e-07 5.677e-07 0 6.335e-07 9.699e-08 3.33e-07 7.835e-07 1.501e-07 5.398e-07 0 7.467e-07 9.184e-07 2.941e-07 1.923e-08 2.291e-07 3.331e-07 1.102e-06 7.116e-07 5.669e-07 6.49e-07 5.549e-07 4.975e-07 2.73e-07 7.75e-07 7.673e-07 0 6.934e-07 1.387e-07 2.614e-07 9.949e-07 0 4.134e-07 9.987e-07 4.94e-07 4.325e-07 7.721e-07 6.447e-07 1.045e-06 4.588e-07 5.246e-07 1.763e-07 3.399e-07 7.277e-08 3.067e-10 4.8e-07 4.425e-07 3.367e-07 5.673e-07 6.477e-07 0 3.7e-07 4.244e-07 3.515e-07 8.527e-07 1.692e-08 5.729e-07 7.094e-07 3.564e-07 0 8.156e-07 5.963e-07 6.117e-07 5.857e-07 9.791e-08 1.131e-07 6.932e-07 2.887e-07 2.066e-07 1.027e-06 2.171e-07 0 9.709e-07 0 6.202e-07 7.499e-07 8.51e-07 9.324e-07 4.81e-07 0 7.093e-07 7.301e-08 5.516e-07 8.302e-07 7.57e-07 1.022e-06 4.896e-07 0 5.935e-07 8.519e-07 6.922e-07 4.73e-07 7.418e-07 5.862e-07 3.716e-07 1.008e-06 8.046e-07 3.221e-07 8.083e-07 2.887e-07 0 2.94e-07 6.028e-07 8.065e-07 1.027e-06 8.16e-07 1.06e-06 7.101e-07 5.423e-08 0 0 2.725e-07 3.008e-07 7.239e-07 2.337e-07 1.869e-08 8.75e-07 3.851e-07 5.791e-07 9.936e-07 7.923e-07 5.21e-07 0 4.249e-07 0 3.164e-07 5.728e-07 0 5.834e-07 2.847e-07 3.763e-08 5.759e-07 4.312e-07 8.026e-07 5.913e-07 4.116e-07 6.413e-07 0 0 7.567e-07 9.497e-07 1.026e-06 1.991e-07 5.578e-07 6.464e-07 7.742e-07 7.455e-07 0 7.534e-07 4.037e-07 5.025e-07 6.332e-07 1.004e-06 9.054e-07 6.736e-07 7.449e-07 0 7.129e-07 0 0 7.515e-07 4.549e-07 8.585e-07 2.194e-07 4.873e-07 0 4.119e-07 2.06e-07 0 5.767e-08 4.179e-07 3.672e-07 4.892e-07 8.544e-07 0 7.623e-07 4.942e-07 2.648e-07 3.994e-07 3.607e-07 1.002e-07 7.607e-07 3.113e-07 7.337e-07 5.951e-08 7.536e-07 3.211e-07 4.123e-07 6.739e-07 9.253e-07 6.608e-07 5.651e-07 6.697e-07 8.439e-07 1.31e-07 1.271e-07 2.431e-07 1.868e-07 1.903e-07 4.642e-07 6.649e-07 4.974e-07 8.273e-07 1.089e-06 5.532e-07 7.035e-07 4.571e-07 3.69e-07 7.648e-07 7.849e-07 1.267e-07 5.795e-07 7.161e-07 6.052e-07 6.901e-07 4.236e-07 3.484e-07 8.677e-07 5.367e-07 0 3.997e-07 0 4.623e-07 4.101e-07 5.991e-07 3.958e-07 7.235e-07 4.714e-07 4.656e-07 6.055e-07 3.467e-07 1.778e-07 2.344e-07 5.343e-07 4.868e-07 3.475e-07 2.282e-07 9.102e-07 5.159e-07 8.492e-07 4.243e-07 8.52e-07 6.181e-07 3.711e-07 2.466e-07 7.763e-07 5.867e-07 0 5.527e-07 5.061e-07 6.269e-07 3.472e-07 8.132e-07 5.21e-07 1.068e-06 2.239e-08 7.13e-07 3.998e-07 8.857e-07 3.849e-07 5.524e-07 3.311e-07 0 2.793e-07 7.102e-07 6.453e-07 8.255e-07 0 5.464e-07 4.952e-07 6.226e-07 3.924e-07 6.224e-07 6.341e-07 4.025e-07 6.948e-07 8.584e-07 2.976e-07 6.359e-07 5.918e-07 5.768e-07 0 5.995e-07 0 0 7.272e-07 0 5.355e-07 0 6.157e-07 5.402e-08 5.774e-07 7.668e-07 5.989e-07 4.347e-07 7.526e-07 6.719e-07 7.968e-07 9.932e-07 1.136e-07 6.397e-07 7.418e-07 3.874e-07 0 0 7.136e-07 7.053e-08 8.632e-08 0 9.022e-07 7.175e-07 2.033e-07 6.203e-07 3.069e-07 3.118e-07 1.288e-07 0 3.901e-07 0 3.69e-07 0 1.766e-07 1.132e-07 1.994e-07 7.4e-08 2.359e-08 1.413e-07 3.23e-07 0 0 0 1.495e-07 0 0 0 7.169e-08 6.287e-08 1.934e-08 2.18e-07 1.023e-07 1.421e-07 0 0 6.878e-08 0 1.475e-07 0 0 0 0 0 0 0 ) ; } inlet { type calculated; value uniform 0.671; } bottom { type calculated; value uniform 0.671; } outlet { type zeroGradient; } top { type calculated; value uniform 0.671; } } // ************************************************************************* //
[ "luis.vidigal@engenharia.ufjf.br" ]
luis.vidigal@engenharia.ufjf.br
f229eec8f2fd5a410868f7d1b876e838fce2f06e
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/media/cast/openscreen/rpc_call_message_handler.h
0e799541b9cce641ad4a73d0e3137a15504a4d0e
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
2,895
h
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_CAST_OPENSCREEN_RPC_CALL_MESSAGE_HANDLER_H_ #define MEDIA_CAST_OPENSCREEN_RPC_CALL_MESSAGE_HANDLER_H_ #include "base/time/time.h" #include "media/base/audio_decoder_config.h" #include "media/base/video_decoder_config.h" #include "third_party/abseil-cpp/absl/types/optional.h" #include "third_party/openscreen/src/cast/streaming/rpc_messenger.h" namespace openscreen::cast { class RpcMessage; } // namespace openscreen::cast namespace media::cast { // This class is responsible for translating between // openscreen::cast::RpcMessage commands (used by the remoting protocol) and // chromium types that are more easily usable. class RpcInitializationCallMessageHandler { public: virtual ~RpcInitializationCallMessageHandler(); virtual void OnRpcAcquireRenderer( openscreen::cast::RpcMessenger::Handle handle) = 0; virtual void OnRpcAcquireDemuxer( openscreen::cast::RpcMessenger::Handle audio_stream_handle, openscreen::cast::RpcMessenger::Handle video_stream_handle) = 0; }; class RpcRendererCallMessageHandler { public: virtual ~RpcRendererCallMessageHandler(); virtual void OnRpcInitialize() = 0; virtual void OnRpcFlush(uint32_t audio_count, uint32_t video_count) = 0; virtual void OnRpcStartPlayingFrom(base::TimeDelta time) = 0; virtual void OnRpcSetPlaybackRate(double playback_rate) = 0; virtual void OnRpcSetVolume(double volume) = 0; }; class RpcDemuxerStreamCBMessageHandler { public: virtual ~RpcDemuxerStreamCBMessageHandler(); virtual void OnRpcInitializeCallback( openscreen::cast::RpcMessenger::Handle handle, absl::optional<media::AudioDecoderConfig> audio_config, absl::optional<media::VideoDecoderConfig> video_config) = 0; virtual void OnRpcReadUntilCallback( openscreen::cast::RpcMessenger::Handle handle, absl::optional<media::AudioDecoderConfig> audio_config, absl::optional<media::VideoDecoderConfig> video_config, uint32_t total_frames_received) = 0; virtual void OnRpcEnableBitstreamConverterCallback( openscreen::cast::RpcMessenger::Handle handle, bool succeeded) = 0; }; // Processes the incoming |message| and forwards it to the appropriate |client| // method. bool DispatchInitializationRpcCall(openscreen::cast::RpcMessage* message, RpcInitializationCallMessageHandler* client); bool DispatchRendererRpcCall(openscreen::cast::RpcMessage* message, RpcRendererCallMessageHandler* client); bool DispatchDemuxerStreamCBRpcCall(openscreen::cast::RpcMessage* message, RpcDemuxerStreamCBMessageHandler* client); } // namespace media::cast #endif // MEDIA_CAST_OPENSCREEN_RPC_CALL_MESSAGE_HANDLER_H_
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
d9a6d67cb3f8d3bf88731f47f3211e9951c651ab
cb660d97756576ac663e5ccaaa84de7a29309693
/Version2/TD1/AIController.h
521566ce8e6a4be20934d4cd4eb7dbffd021a6bd
[]
no_license
tolfaine/Projet_ASCII
d709f02eda464f83bc9c723a54ab21cd26bd9452
f4916725d618f3f60df446f2d06144f2c22bf0fa
refs/heads/master
2021-01-11T07:40:02.436020
2016-10-07T14:42:38
2016-10-07T14:42:38
69,893,514
0
0
null
null
null
null
UTF-8
C++
false
false
137
h
#include "Controller.h" class AIController : public Controller { public: AIController(); ~AIController(); virtual void inputs(); };
[ "martin.penard@gmail.com" ]
martin.penard@gmail.com
933c5884ada1c57cb47c07865015748e0c18ad3d
57a61c7ea1cc0a2e7686a07f3430121597043dab
/irrlicht-1.7.3/tools/irrEdit/source/irrlicht/include/CMeshBuffer.h
be52bcb4e03340e5a7f3f9262cd384073ef84ba9
[ "LicenseRef-scancode-other-permissive", "Zlib", "LicenseRef-scancode-unknown-license-reference" ]
permissive
dg8fv2010/WonderLandNet
8c3b85a5abc813dba6407cdc5b72cfea4a8caaaf
22f7aeef8c676c56f49c7c6854c0a469c29bdb91
refs/heads/master
2021-01-10T12:03:31.853501
2015-06-06T12:15:49
2015-06-06T12:15:49
36,978,516
3
0
null
null
null
null
UTF-8
C++
false
false
7,628
h
// Copyright (C) 2002-2008 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __T_MESH_BUFFER_H_INCLUDED__ #define __T_MESH_BUFFER_H_INCLUDED__ #include "irrArray.h" #include "IMeshBuffer.h" namespace irr { namespace scene { //! Template implementation of the IMeshBuffer interface template <class T> class CMeshBuffer : public IMeshBuffer { public: //! Default constructor for empty meshbuffer CMeshBuffer():ChangedID_Vertex(1),ChangedID_Index(1),MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER) { #ifdef _DEBUG setDebugName("SMeshBuffer"); #endif } //! Get material of this meshbuffer /** \return Material of this buffer */ virtual const video::SMaterial& getMaterial() const { return Material; } //! Get material of this meshbuffer /** \return Material of this buffer */ virtual video::SMaterial& getMaterial() { return Material; } //! Get pointer to vertices /** \return Pointer to vertices. */ virtual const void* getVertices() const { return Vertices.const_pointer(); } //! Get pointer to vertices /** \return Pointer to vertices. */ virtual void* getVertices() { return Vertices.pointer(); } //! Get number of vertices /** \return Number of vertices. */ virtual u32 getVertexCount() const { return Vertices.size(); } //! Get type of index data which is stored in this meshbuffer. /** \return Index type of this buffer. */ virtual video::E_INDEX_TYPE getIndexType() const { return video::EIT_16BIT; } //! Get pointer to indices /** \return Pointer to indices. */ virtual const u16* getIndices() const { return Indices.const_pointer(); } //! Get pointer to indices /** \return Pointer to indices. */ virtual u16* getIndices() { return Indices.pointer(); } //! Get number of indices /** \return Number of indices. */ virtual u32 getIndexCount() const { return Indices.size(); } //! Get the axis aligned bounding box /** \return Axis aligned bounding box of this buffer. */ virtual const core::aabbox3d<f32>& getBoundingBox() const { return BoundingBox; } //! Set the axis aligned bounding box /** \param box New axis aligned bounding box for this buffer. */ //! set user axis aligned bounding box virtual void setBoundingBox(const core::aabbox3df& box) { BoundingBox = box; } //! Recalculate the bounding box. /** should be called if the mesh changed. */ virtual void recalculateBoundingBox() { if (Vertices.empty()) BoundingBox.reset(0,0,0); else { BoundingBox.reset(Vertices[0].Pos); for (u32 i=1; i<Vertices.size(); ++i) BoundingBox.addInternalPoint(Vertices[i].Pos); } } //! Get type of vertex data stored in this buffer. /** \return Type of vertex data. */ virtual video::E_VERTEX_TYPE getVertexType() const { return T().getType(); } //! returns position of vertex i virtual const core::vector3df& getPosition(u32 i) const { return Vertices[i].Pos; } //! returns position of vertex i virtual core::vector3df& getPosition(u32 i) { return Vertices[i].Pos; } //! returns normal of vertex i virtual const core::vector3df& getNormal(u32 i) const { return Vertices[i].Normal; } //! returns normal of vertex i virtual core::vector3df& getNormal(u32 i) { return Vertices[i].Normal; } //! returns texture coord of vertex i virtual const core::vector2df& getTCoords(u32 i) const { return Vertices[i].TCoords; } //! returns texture coord of vertex i virtual core::vector2df& getTCoords(u32 i) { return Vertices[i].TCoords; } //! Append the vertices and indices to the current buffer /** Only works for compatible types, i.e. either the same type or the main buffer is of standard type. Otherwise, behavior is undefined. */ virtual void append(const void* const vertices, u32 numVertices, const u16* const indices, u32 numIndices) { if (vertices == getVertices()) return; const u32 vertexCount = getVertexCount(); u32 i; Vertices.reallocate(vertexCount+numVertices); for (i=0; i<numVertices; ++i) { Vertices.push_back(reinterpret_cast<const T*>(vertices)[i]); BoundingBox.addInternalPoint(reinterpret_cast<const T*>(vertices)[i].Pos); } Indices.reallocate(getIndexCount()+numIndices); for (i=0; i<numIndices; ++i) { Indices.push_back(indices[i]+vertexCount); } } //! Append the meshbuffer to the current buffer /** Only works for compatible types, i.e. either the same type or the main buffer is of standard type. Otherwise, behavior is undefined. \param other Meshbuffer to be appended to this one. */ virtual void append(const IMeshBuffer* const other) { /* if (this==other) return; const u32 vertexCount = getVertexCount(); u32 i; Vertices.reallocate(vertexCount+other->getVertexCount()); for (i=0; i<other->getVertexCount(); ++i) { Vertices.push_back(reinterpret_cast<const T*>(other->getVertices())[i]); } Indices.reallocate(getIndexCount()+other->getIndexCount()); for (i=0; i<other->getIndexCount(); ++i) { Indices.push_back(other->getIndices()[i]+vertexCount); } BoundingBox.addInternalBox(other->getBoundingBox()); */ } //! get the current hardware mapping hint virtual E_HARDWARE_MAPPING getHardwareMappingHint_Vertex() const { return MappingHint_Vertex; } //! get the current hardware mapping hint virtual E_HARDWARE_MAPPING getHardwareMappingHint_Index() const { return MappingHint_Index; } //! set the hardware mapping hint, for driver virtual void setHardwareMappingHint( E_HARDWARE_MAPPING NewMappingHint, E_BUFFER_TYPE Buffer=EBT_VERTEX_AND_INDEX ) { if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_VERTEX) MappingHint_Vertex=NewMappingHint; if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_INDEX) MappingHint_Index=NewMappingHint; } //! flags the mesh as changed, reloads hardware buffers virtual void setDirty(E_BUFFER_TYPE Buffer=EBT_VERTEX_AND_INDEX) { if (Buffer==EBT_VERTEX_AND_INDEX ||Buffer==EBT_VERTEX) ++ChangedID_Vertex; if (Buffer==EBT_VERTEX_AND_INDEX || Buffer==EBT_INDEX) ++ChangedID_Index; } //! Get the currently used ID for identification of changes. /** This shouldn't be used for anything outside the VideoDriver. */ virtual u32 getChangedID_Vertex() const {return ChangedID_Vertex;} //! Get the currently used ID for identification of changes. /** This shouldn't be used for anything outside the VideoDriver. */ virtual u32 getChangedID_Index() const {return ChangedID_Index;} u32 ChangedID_Vertex; u32 ChangedID_Index; //! hardware mapping hint E_HARDWARE_MAPPING MappingHint_Vertex; E_HARDWARE_MAPPING MappingHint_Index; //! Material for this meshbuffer. video::SMaterial Material; //! Vertices of this buffer core::array<T> Vertices; //! Indices into the vertices of this buffer. core::array<u16> Indices; //! Bounding box of this meshbuffer. core::aabbox3d<f32> BoundingBox; }; //! Standard meshbuffer typedef CMeshBuffer<video::S3DVertex> SMeshBuffer; //! Meshbuffer with two texture coords per vertex, e.g. for lightmaps typedef CMeshBuffer<video::S3DVertex2TCoords> SMeshBufferLightMap; //! Meshbuffer with vertices having tangents stored, e.g. for normal mapping typedef CMeshBuffer<video::S3DVertexTangents> SMeshBufferTangents; } // end namespace scene } // end namespace irr #endif
[ "xuewentao@zheng-exp.lab" ]
xuewentao@zheng-exp.lab
dd416e8bf94e73c97cb33155d1504311c8689109
90c0b63285d56557df1214cfa3f5b54490ed19d9
/src/Physics/PhysicSystem.hpp
53a35ac82a072aa71a57391a227816a571d53a7c
[ "MIT" ]
permissive
TheMagnat/Mavoxel
60db30635c5894141989339e2d60f58d96628f54
f37da219904531f74574ae82123d300c75d8b286
refs/heads/master
2023-08-16T23:48:46.777635
2023-08-12T01:41:44
2023-08-12T01:41:44
212,056,662
5
0
null
2023-08-12T01:41:46
2019-10-01T09:21:04
C++
UTF-8
C++
false
false
591
hpp
#pragma once #include <glm/glm.hpp> namespace mav { class PhysicSystem { public: PhysicSystem(float gravityStrength); void applyGravity(glm::vec3& velocity, float mass, float deltaTime) const; void applyAirFriction(glm::vec3& velocity, float mass, float deltaTime) const; void applyGroundFriction(glm::vec3& velocity, float mass, float deltaTime) const; inline void setGravityStrength(float gravityStrength) { gravityStrength_ = gravityStrength; } private: float gravityStrength_; }; }
[ "guillaume.magniadas@gmail.com" ]
guillaume.magniadas@gmail.com
ed8b261448a60111e836430ad93c5d2d606822ed
fc0bcb49a704b05691250dc0c40248738e627d8c
/RoboSquid/Source/qcustomplot.cpp
ecc1c9aae95cbb212adc164cf38e1389ee17c131
[]
no_license
Hernanduer/AggiE2015S
05c0a83b9b3033fda4a7eebc46e26fa8874725b5
b9f26b464df53247faf9ce905eafa53c5a2c65a8
refs/heads/master
2021-01-20T21:49:37.917039
2015-03-28T23:08:09
2015-03-28T23:08:09
29,833,427
1
0
null
null
null
null
UTF-8
C++
false
false
652,219
cpp
/*************************************************************************** ** ** ** QCustomPlot, an easy to use, modern plotting widget for Qt ** ** Copyright (C) 2011, 2012, 2013 Emanuel Eichhammer ** ** ** ** This program is free software: you can redistribute it and/or modify ** ** it under the terms of the GNU General Public License as published by ** ** the Free Software Foundation, either version 3 of the License, or ** ** (at your option) any later version. ** ** ** ** This program is distributed in the hope that it will be useful, ** ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** ** GNU General Public License for more details. ** ** ** ** You should have received a copy of the GNU General Public License ** ** along with this program. If not, see http://www.gnu.org/licenses/. ** ** ** **************************************************************************** ** Author: Emanuel Eichhammer ** ** Website/Contact: http://www.qcustomplot.com/ ** ** Date: 05.09.13 ** ** Version: 1.0.1 ** ****************************************************************************/ #include "qcustomplot.h" //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPPainter //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPPainter \brief QPainter subclass used internally This internal class is used to provide some extended functionality e.g. for tweaking position consistency between antialiased and non-antialiased painting. Further it provides workarounds for QPainter quirks. \warning This class intentionally hides non-virtual functions of QPainter, e.g. setPen, save and restore. So while it is possible to pass a QCPPainter instance to a function that expects a QPainter pointer, some of the workarounds and tweaks will be unavailable to the function (because it will call the base class implementations of the functions actually hidden by QCPPainter). */ /*! Creates a new QCPPainter instance and sets default values */ QCPPainter::QCPPainter() : QPainter(), mModes(pmDefault), mIsAntialiasing(false) { // don't setRenderHint(QPainter::NonCosmeticDefautPen) here, because painter isn't active yet and // a call to begin() will follow } /*! Creates a new QCPPainter instance on the specified paint \a device and sets default values. Just like the analogous QPainter constructor, begins painting on \a device immediately. Like \ref begin, this method sets QPainter::NonCosmeticDefaultPen in Qt versions before Qt5. */ QCPPainter::QCPPainter(QPaintDevice *device) : QPainter(device), mModes(pmDefault), mIsAntialiasing(false) { #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. if (isActive()) setRenderHint(QPainter::NonCosmeticDefaultPen); #endif } QCPPainter::~QCPPainter() { } /*! Sets the pen of the painter and applies certain fixes to it, depending on the mode of this QCPPainter. \note this function hides the non-virtual base class implementation. */ void QCPPainter::setPen(const QPen &pen) { QPainter::setPen(pen); if (mModes.testFlag(pmNonCosmetic)) makeNonCosmetic(); } /*! \overload Sets the pen (by color) of the painter and applies certain fixes to it, depending on the mode of this QCPPainter. \note this function hides the non-virtual base class implementation. */ void QCPPainter::setPen(const QColor &color) { QPainter::setPen(color); if (mModes.testFlag(pmNonCosmetic)) makeNonCosmetic(); } /*! \overload Sets the pen (by style) of the painter and applies certain fixes to it, depending on the mode of this QCPPainter. \note this function hides the non-virtual base class implementation. */ void QCPPainter::setPen(Qt::PenStyle penStyle) { QPainter::setPen(penStyle); if (mModes.testFlag(pmNonCosmetic)) makeNonCosmetic(); } /*! \overload Works around a Qt bug introduced with Qt 4.8 which makes drawing QLineF unpredictable when antialiasing is disabled. Thus when antialiasing is disabled, it rounds the \a line to integer coordinates and then passes it to the original drawLine. \note this function hides the non-virtual base class implementation. */ void QCPPainter::drawLine(const QLineF &line) { if (mIsAntialiasing || mModes.testFlag(pmVectorized)) QPainter::drawLine(line); else QPainter::drawLine(line.toLine()); } /*! Sets whether painting uses antialiasing or not. Use this method instead of using setRenderHint with QPainter::Antialiasing directly, as it allows QCPPainter to regain pixel exactness between antialiased and non-antialiased painting (Since Qt < 5.0 uses slightly different coordinate systems for AA/Non-AA painting). */ void QCPPainter::setAntialiasing(bool enabled) { setRenderHint(QPainter::Antialiasing, enabled); if (mIsAntialiasing != enabled) { mIsAntialiasing = enabled; if (!mModes.testFlag(pmVectorized)) // antialiasing half-pixel shift only needed for rasterized outputs { if (mIsAntialiasing) translate(0.5, 0.5); else translate(-0.5, -0.5); } } } /*! Sets the mode of the painter. This controls whether the painter shall adjust its fixes/workarounds optimized for certain output devices. */ void QCPPainter::setModes(QCPPainter::PainterModes modes) { mModes = modes; } /*! Sets the QPainter::NonCosmeticDefaultPen in Qt versions before Qt5 after beginning painting on \a device. This is necessary to get cosmetic pen consistency across Qt versions, because since Qt5, all pens are non-cosmetic by default, and in Qt4 this render hint must be set to get that behaviour. The Constructor \ref QCPPainter(QPaintDevice *device) which directly starts painting also sets the render hint as appropriate. \note this function hides the non-virtual base class implementation. */ bool QCPPainter::begin(QPaintDevice *device) { bool result = QPainter::begin(device); #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. if (result) setRenderHint(QPainter::NonCosmeticDefaultPen); #endif return result; } /*! \overload Sets the mode of the painter. This controls whether the painter shall adjust its fixes/workarounds optimized for certain output devices. */ void QCPPainter::setMode(QCPPainter::PainterMode mode, bool enabled) { if (!enabled && mModes.testFlag(mode)) mModes &= ~mode; else if (enabled && !mModes.testFlag(mode)) mModes |= mode; } /*! Saves the painter (see QPainter::save). Since QCPPainter adds some new internal state to QPainter, the save/restore functions are reimplemented to also save/restore those members. \note this function hides the non-virtual base class implementation. \see restore */ void QCPPainter::save() { mAntialiasingStack.push(mIsAntialiasing); QPainter::save(); } /*! Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to QPainter, the save/restore functions are reimplemented to also save/restore those members. \note this function hides the non-virtual base class implementation. \see save */ void QCPPainter::restore() { if (!mAntialiasingStack.isEmpty()) mIsAntialiasing = mAntialiasingStack.pop(); else qDebug() << Q_FUNC_INFO << "Unbalanced save/restore"; QPainter::restore(); } /*! Changes the pen width to 1 if it currently is 0. This function is called in the \ref setPen overrides when the \ref pmNonCosmetic mode is set. */ void QCPPainter::makeNonCosmetic() { if (qFuzzyIsNull(pen().widthF())) { QPen p = pen(); p.setWidth(1); QPainter::setPen(p); } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPScatterStyle //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPScatterStyle \brief Represents the visual appearance of scatter points This class holds information about shape, color and size of scatter points. In plottables like QCPGraph it is used to store how scatter points shall be drawn. For example, \ref QCPGraph::setScatterStyle takes a QCPScatterStyle instance. A scatter style consists of a shape (\ref setShape), a line color (\ref setPen) and possibly a fill (\ref setBrush), if the shape provides a fillable area. Further, the size of the shape can be controlled with \ref setSize. \section QCPScatterStyle-defining Specifying a scatter style You can set all these configurations either by calling the respective functions on an instance: \code QCPScatterStyle myScatter; myScatter.setShape(QCPScatterStyle::ssCircle); myScatter.setPen(Qt::blue); myScatter.setBrush(Qt::white); myScatter.setSize(5); customPlot->graph(0)->setScatterStyle(myScatter); \endcode Or you can use one of the various constructors that take different parameter combinations, making it easy to specify a scatter style in a single call, like so: \code customPlot->graph(0)->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssCircle, Qt::blue, Qt::white, 5)); \endcode \section QCPScatterStyle-undefinedpen Leaving the color/pen up to the plottable There are two constructors which leave the pen undefined: \ref QCPScatterStyle() and \ref QCPScatterStyle(ScatterShape shape, double size). If those constructors are used, a call to \ref isPenDefined will return false. It leads to scatter points that inherit the pen from the plottable that uses the scatter style. Thus, if such a scatter style is passed to QCPGraph, the line color of the graph (\ref QCPGraph::setPen) will be used by the scatter points. This makes it very convenient to set up typical scatter settings: \code customPlot->graph(0)->setScatterStyle(QCPScatterStyle::ssPlus); \endcode Notice that it wasn't even necessary to explicitly call a QCPScatterStyle constructor. This works because QCPScatterStyle provides a constructor that can transform a \ref ScatterShape directly into a QCPScatterStyle instance (that's the \ref QCPScatterStyle(ScatterShape shape, double size) constructor with a default for \a size). In those cases, C++ allows directly supplying a \ref ScatterShape, where actually a QCPScatterStyle is expected. \section QCPScatterStyle-custompath-and-pixmap Custom shapes and pixmaps QCPScatterStyle supports drawing custom shapes and arbitrary pixmaps as scatter points. For custom shapes, you can provide a QPainterPath with the desired shape to the \ref setCustomPath function or call the constructor that takes a painter path. The scatter shape will automatically be set to \ref ssCustom. For pixmaps, you call \ref setPixmap with the desired QPixmap. Alternatively you can use the constructor that takes a QPixmap. The scatter shape will automatically be set to \ref ssPixmap. Note that \ref setSize does not influence the appearance of the pixmap. */ /* start documentation of inline functions */ /*! \fn bool QCPScatterStyle::isNone() const Returns whether the scatter shape is \ref ssNone. \see setShape */ /*! \fn bool QCPScatterStyle::isPenDefined() const Returns whether a pen has been defined for this scatter style. The pen is undefined if a constructor is called that does not carry \a pen as parameter. Those are \ref QCPScatterStyle() and \ref QCPScatterStyle(ScatterShape shape, double size). If the pen is left undefined, the scatter color will be inherited from the plottable that uses this scatter style. \see setPen */ /* end documentation of inline functions */ /*! Creates a new QCPScatterStyle instance with size set to 6. No shape, pen or brush is defined. Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited from the plottable that uses this scatter style. */ QCPScatterStyle::QCPScatterStyle() : mSize(6), mShape(ssNone), mPen(Qt::NoPen), mBrush(Qt::NoBrush), mPenDefined(false) { } /*! Creates a new QCPScatterStyle instance with shape set to \a shape and size to \a size. No pen or brush is defined. Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited from the plottable that uses this scatter style. */ QCPScatterStyle::QCPScatterStyle(ScatterShape shape, double size) : mSize(size), mShape(shape), mPen(Qt::NoPen), mBrush(Qt::NoBrush), mPenDefined(false) { } /*! Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, and size to \a size. No brush is defined, i.e. the scatter point will not be filled. */ QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, double size) : mSize(size), mShape(shape), mPen(QPen(color)), mBrush(Qt::NoBrush), mPenDefined(true) { } /*! Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, the brush color to \a fill (with a solid pattern), and size to \a size. */ QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) : mSize(size), mShape(shape), mPen(QPen(color)), mBrush(QBrush(fill)), mPenDefined(true) { } /*! Creates a new QCPScatterStyle instance with shape set to \a shape, the pen set to \a pen, the brush to \a brush, and size to \a size. \warning In some cases it might be tempting to directly use a pen style like <tt>Qt::NoPen</tt> as \a pen and a color like <tt>Qt::blue</tt> as \a brush. Notice however, that the corresponding call\n <tt>QCPScatterStyle(QCPScatterShape::ssCircle, Qt::NoPen, Qt::blue, 5)</tt>\n doesn't necessarily lead C++ to use this constructor in some cases, but might mistake <tt>Qt::NoPen</tt> for a QColor and use the \ref QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) constructor instead (which will lead to an unexpected look of the scatter points). To prevent this, be more explicit with the parameter types. For example, use <tt>QBrush(Qt::blue)</tt> instead of just <tt>Qt::blue</tt>, to clearly point out to the compiler that this constructor is wanted. */ QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QPen &pen, const QBrush &brush, double size) : mSize(size), mShape(shape), mPen(pen), mBrush(brush), mPenDefined(pen.style() != Qt::NoPen) { } /*! Creates a new QCPScatterStyle instance which will show the specified \a pixmap. The scatter shape is set to \ref ssPixmap. */ QCPScatterStyle::QCPScatterStyle(const QPixmap &pixmap) : mSize(5), mShape(ssPixmap), mPen(Qt::NoPen), mBrush(Qt::NoBrush), mPixmap(pixmap), mPenDefined(false) { } /*! Creates a new QCPScatterStyle instance with a custom shape that is defined via \a customPath. The scatter shape is set to \ref ssCustom. The custom shape line will be drawn with \a pen and filled with \a brush. The size has a slightly different meaning than for built-in scatter points: The custom path will be drawn scaled by a factor of \a size/6.0. Since the default \a size is 6, the custom path will appear at a its natural size by default. To double the size of the path for example, set \a size to 12. */ QCPScatterStyle::QCPScatterStyle(const QPainterPath &customPath, const QPen &pen, const QBrush &brush, double size) : mSize(size), mShape(ssCustom), mPen(pen), mBrush(brush), mCustomPath(customPath), mPenDefined(false) { } /*! Sets the size (pixel diameter) of the drawn scatter points to \a size. \see setShape */ void QCPScatterStyle::setSize(double size) { mSize = size; } /*! Sets the shape to \a shape. Note that the calls \ref setPixmap and \ref setCustomPath automatically set the shape to \ref ssPixmap and \ref ssCustom, respectively. \see setSize */ void QCPScatterStyle::setShape(QCPScatterStyle::ScatterShape shape) { mShape = shape; } /*! Sets the pen that will be used to draw scatter points to \a pen. If the pen was previously undefined (see \ref isPenDefined), the pen is considered defined after a call to this function, even if \a pen is <tt>Qt::NoPen</tt>. \see setBrush */ void QCPScatterStyle::setPen(const QPen &pen) { mPenDefined = true; mPen = pen; } /*! Sets the brush that will be used to fill scatter points to \a brush. Note that not all scatter shapes have fillable areas. For example, \ref ssPlus does not while \ref ssCircle does. \see setPen */ void QCPScatterStyle::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the pixmap that will be drawn as scatter point to \a pixmap. Note that \ref setSize does not influence the appearance of the pixmap. The scatter shape is automatically set to \ref ssPixmap. */ void QCPScatterStyle::setPixmap(const QPixmap &pixmap) { setShape(ssPixmap); mPixmap = pixmap; } /*! Sets the custom shape that will be drawn as scatter point to \a customPath. The scatter shape is automatically set to \ref ssCustom. */ void QCPScatterStyle::setCustomPath(const QPainterPath &customPath) { setShape(ssCustom); mCustomPath = customPath; } /*! Applies the pen and the brush of this scatter style to \a painter. If this scatter style has an undefined pen (\ref isPenDefined), sets the pen of \a painter to \a defaultPen instead. This function is used by plottables (or any class that wants to draw scatters) just before a number of scatters with this style shall be drawn with the \a painter. \see drawShape */ void QCPScatterStyle::applyTo(QCPPainter *painter, const QPen &defaultPen) const { painter->setPen(mPenDefined ? mPen : defaultPen); painter->setBrush(mBrush); } /*! Draws the scatter shape with \a painter at position \a pos. This function does not modify the pen or the brush on the painter, as \ref applyTo is meant to be called before scatter points are drawn with \ref drawShape. \see applyTo */ void QCPScatterStyle::drawShape(QCPPainter *painter, QPointF pos) const { drawShape(painter, pos.x(), pos.y()); } /*! \overload Draws the scatter shape with \a painter at position \a x and \a y. */ void QCPScatterStyle::drawShape(QCPPainter *painter, double x, double y) const { double w = mSize/2.0; switch (mShape) { case ssNone: break; case ssDot: { painter->drawLine(QPointF(x, y), QPointF(x+0.0001, y)); break; } case ssCross: { painter->drawLine(QLineF(x-w, y-w, x+w, y+w)); painter->drawLine(QLineF(x-w, y+w, x+w, y-w)); break; } case ssPlus: { painter->drawLine(QLineF(x-w, y, x+w, y)); painter->drawLine(QLineF( x, y+w, x, y-w)); break; } case ssCircle: { painter->drawEllipse(QPointF(x , y), w, w); break; } case ssDisc: { QBrush b = painter->brush(); painter->setBrush(painter->pen().color()); painter->drawEllipse(QPointF(x , y), w, w); painter->setBrush(b); break; } case ssSquare: { painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); break; } case ssDiamond: { painter->drawLine(QLineF(x-w, y, x, y-w)); painter->drawLine(QLineF( x, y-w, x+w, y)); painter->drawLine(QLineF(x+w, y, x, y+w)); painter->drawLine(QLineF( x, y+w, x-w, y)); break; } case ssStar: { painter->drawLine(QLineF(x-w, y, x+w, y)); painter->drawLine(QLineF( x, y+w, x, y-w)); painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.707, y+w*0.707)); painter->drawLine(QLineF(x-w*0.707, y+w*0.707, x+w*0.707, y-w*0.707)); break; } case ssTriangle: { painter->drawLine(QLineF(x-w, y+0.755*w, x+w, y+0.755*w)); painter->drawLine(QLineF(x+w, y+0.755*w, x, y-0.977*w)); painter->drawLine(QLineF( x, y-0.977*w, x-w, y+0.755*w)); break; } case ssTriangleInverted: { painter->drawLine(QLineF(x-w, y-0.755*w, x+w, y-0.755*w)); painter->drawLine(QLineF(x+w, y-0.755*w, x, y+0.977*w)); painter->drawLine(QLineF( x, y+0.977*w, x-w, y-0.755*w)); break; } case ssCrossSquare: { painter->drawLine(QLineF(x-w, y-w, x+w*0.95, y+w*0.95)); painter->drawLine(QLineF(x-w, y+w*0.95, x+w*0.95, y-w)); painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); break; } case ssPlusSquare: { painter->drawLine(QLineF(x-w, y, x+w*0.95, y)); painter->drawLine(QLineF( x, y+w, x, y-w)); painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); break; } case ssCrossCircle: { painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.670, y+w*0.670)); painter->drawLine(QLineF(x-w*0.707, y+w*0.670, x+w*0.670, y-w*0.707)); painter->drawEllipse(QPointF(x, y), w, w); break; } case ssPlusCircle: { painter->drawLine(QLineF(x-w, y, x+w, y)); painter->drawLine(QLineF( x, y+w, x, y-w)); painter->drawEllipse(QPointF(x, y), w, w); break; } case ssPeace: { painter->drawLine(QLineF(x, y-w, x, y+w)); painter->drawLine(QLineF(x, y, x-w*0.707, y+w*0.707)); painter->drawLine(QLineF(x, y, x+w*0.707, y+w*0.707)); painter->drawEllipse(QPointF(x, y), w, w); break; } case ssPixmap: { painter->drawPixmap(x-mPixmap.width()*0.5, y-mPixmap.height()*0.5, mPixmap); break; } case ssCustom: { QTransform oldTransform = painter->transform(); painter->translate(x, y); painter->scale(mSize/6.0, mSize/6.0); painter->drawPath(mCustomPath); painter->setTransform(oldTransform); break; } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayer //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayer \brief A layer that may contain objects, to control the rendering order The Layering system of QCustomPlot is the mechanism to control the rendering order of the elements inside the plot. It is based on the two classes QCPLayer and QCPLayerable. QCustomPlot holds an ordered list of one or more instances of QCPLayer (see QCustomPlot::addLayer, QCustomPlot::layer, QCustomPlot::moveLayer, etc.). When replotting, QCustomPlot goes through the list of layers bottom to top and successively draws the layerables of the layers. A QCPLayer contains an ordered list of QCPLayerable instances. QCPLayerable is an abstract base class from which almost all visible objects derive, like axes, grids, graphs, items, etc. Initially, QCustomPlot has five layers: "background", "grid", "main", "axes" and "legend" (in that order). The top two layers "axes" and "legend" contain the default axes and legend, so they will be drawn on top. In the middle, there is the "main" layer. It is initially empty and set as the current layer (see QCustomPlot::setCurrentLayer). This means, all new plottables, items etc. are created on this layer by default. Then comes the "grid" layer which contains the QCPGrid instances (which belong tightly to QCPAxis, see \ref QCPAxis::grid). The Axis rect background shall be drawn behind everything else, thus the default QCPAxisRect instance is placed on the "background" layer. Of course, the layer affiliation of the individual objects can be changed as required (\ref QCPLayerable::setLayer). Controlling the ordering of objects is easy: Create a new layer in the position you want it to be, e.g. above "main", with QCustomPlot::addLayer. Then set the current layer with QCustomPlot::setCurrentLayer to that new layer and finally create the objects normally. They will be placed on the new layer automatically, due to the current layer setting. Alternatively you could have also ignored the current layer setting and just moved the objects with QCPLayerable::setLayer to the desired layer after creating them. It is also possible to move whole layers. For example, If you want the grid to be shown in front of all plottables/items on the "main" layer, just move it above "main" with QCustomPlot::moveLayer. The rendering order within one layer is simply by order of creation or insertion. The item created last (or added last to the layer), is drawn on top of all other objects on that layer. When a layer is deleted, the objects on it are not deleted with it, but fall on the layer below the deleted layer, see QCustomPlot::removeLayer. */ /* start documentation of inline functions */ /*! \fn QList<QCPLayerable*> QCPLayer::children() const Returns a list of all layerables on this layer. The order corresponds to the rendering order: layerables with higher indices are drawn above layerables with lower indices. */ /*! \fn int QCPLayer::index() const Returns the index this layer has in the QCustomPlot. The index is the integer number by which this layer can be accessed via \ref QCustomPlot::layer. Layers with higher indices will be drawn above layers with lower indices. */ /* end documentation of inline functions */ /*! Creates a new QCPLayer instance. Normally you shouldn't directly instantiate layers, use \ref QCustomPlot::addLayer instead. \warning It is not checked that \a layerName is actually a unique layer name in \a parentPlot. This check is only performed by \ref QCustomPlot::addLayer. */ QCPLayer::QCPLayer(QCustomPlot *parentPlot, const QString &layerName) : QObject(parentPlot), mParentPlot(parentPlot), mName(layerName), mIndex(-1) // will be set to a proper value by the QCustomPlot layer creation function { // Note: no need to make sure layerName is unique, because layer // management is done with QCustomPlot functions. } QCPLayer::~QCPLayer() { // If child layerables are still on this layer, detach them, so they don't try to reach back to this // then invalid layer once they get deleted/moved themselves. This only happens when layers are deleted // directly, like in the QCustomPlot destructor. (The regular layer removal procedure for the user is to // call QCustomPlot::removeLayer, which moves all layerables off this layer before deleting it.) while (!mChildren.isEmpty()) mChildren.last()->setLayer(0); // removes itself from mChildren via removeChild() if (mParentPlot->currentLayer() == this) qDebug() << Q_FUNC_INFO << "The parent plot's mCurrentLayer will be a dangling pointer. Should have been set to a valid layer or 0 beforehand."; } /*! \internal Adds the \a layerable to the list of this layer. If \a prepend is set to true, the layerable will be prepended to the list, i.e. be drawn beneath the other layerables already in the list. This function does not change the \a mLayer member of \a layerable to this layer. (Use QCPLayerable::setLayer to change the layer of an object, not this function.) \see removeChild */ void QCPLayer::addChild(QCPLayerable *layerable, bool prepend) { if (!mChildren.contains(layerable)) { if (prepend) mChildren.prepend(layerable); else mChildren.append(layerable); } else qDebug() << Q_FUNC_INFO << "layerable is already child of this layer" << reinterpret_cast<quintptr>(layerable); } /*! \internal Removes the \a layerable from the list of this layer. This function does not change the \a mLayer member of \a layerable. (Use QCPLayerable::setLayer to change the layer of an object, not this function.) \see addChild */ void QCPLayer::removeChild(QCPLayerable *layerable) { if (!mChildren.removeOne(layerable)) qDebug() << Q_FUNC_INFO << "layerable is not child of this layer" << reinterpret_cast<quintptr>(layerable); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayerable //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayerable \brief Base class for all drawable objects This is the abstract base class most visible objects derive from, e.g. plottables, axes, grid etc. Every layerable is on a layer (QCPLayer) which allows controlling the rendering order by stacking the layers accordingly. For details about the layering mechanism, see the QCPLayer documentation. */ /* start documentation of inline functions */ /*! \fn QCPLayerable *QCPLayerable::parentLayerable() const Returns the parent layerable of this layerable. The parent layerable is used to provide visibility hierarchies in conjunction with the method \ref realVisibility. This way, layerables only get drawn if their parent layerables are visible, too. Note that a parent layerable is not necessarily also the QObject parent for memory management. Further, a layerable doesn't always have a parent layerable, so this function may return 0. A parent layerable is set implicitly with when placed inside layout elements and doesn't need to be set manually by the user. */ /* end documentation of inline functions */ /* start documentation of pure virtual functions */ /*! \fn virtual void QCPLayerable::applyDefaultAntialiasingHint(QCPPainter *painter) const = 0 \internal This function applies the default antialiasing setting to the specified \a painter, using the function \ref applyAntialiasingHint. It is the antialiasing state the painter is put in, when \ref draw is called on the layerable. If the layerable has multiple entities whose antialiasing setting may be specified individually, this function should set the antialiasing state of the most prominent entity. In this case however, the \ref draw function usually calls the specialized versions of this function before drawing each entity, effectively overriding the setting of the default antialiasing hint. <b>First example:</b> QCPGraph has multiple entities that have an antialiasing setting: The graph line, fills, scatters and error bars. Those can be configured via QCPGraph::setAntialiased, QCPGraph::setAntialiasedFill, QCPGraph::setAntialiasedScatters etc. Consequently, there isn't only the QCPGraph::applyDefaultAntialiasingHint function (which corresponds to the graph line's antialiasing), but specialized ones like QCPGraph::applyFillAntialiasingHint and QCPGraph::applyScattersAntialiasingHint. So before drawing one of those entities, QCPGraph::draw calls the respective specialized applyAntialiasingHint function. <b>Second example:</b> QCPItemLine consists only of a line so there is only one antialiasing setting which can be controlled with QCPItemLine::setAntialiased. (This function is inherited by all layerables. The specialized functions, as seen on QCPGraph, must be added explicitly to the respective layerable subclass.) Consequently it only has the normal QCPItemLine::applyDefaultAntialiasingHint. The \ref QCPItemLine::draw function doesn't need to care about setting any antialiasing states, because the default antialiasing hint is already set on the painter when the \ref draw function is called, and that's the state it wants to draw the line with. */ /*! \fn virtual void QCPLayerable::draw(QCPPainter *painter) const = 0 \internal This function draws the layerable with the specified \a painter. It is only called by QCustomPlot, if the layerable is visible (\ref setVisible). Before this function is called, the painter's antialiasing state is set via \ref applyDefaultAntialiasingHint, see the documentation there. Further, the clipping rectangle was set to \ref clipRect. */ /* end documentation of pure virtual functions */ /*! Creates a new QCPLayerable instance. Since QCPLayerable is an abstract base class, it can't be instantiated directly. Use one of the derived classes. If \a plot is provided, it automatically places itself on the layer named \a targetLayer. If \a targetLayer is an empty string, it places itself on the current layer of the plot (see \ref QCustomPlot::setCurrentLayer). It is possible to provide 0 as \a plot. In that case, you should assign a parent plot at a later time with \ref initializeParentPlot. The layerable's parent layerable is set to \a parentLayerable, if provided. Direct layerable parents are mainly used to control visibility in a hierarchy of layerables. This means a layerable is only drawn, if all its ancestor layerables are also visible. Note that \a parentLayerable does not become the QObject-parent (for memory management) of this layerable, \a plot does. */ QCPLayerable::QCPLayerable(QCustomPlot *plot, QString targetLayer, QCPLayerable *parentLayerable) : QObject(plot), mVisible(true), mParentPlot(plot), mParentLayerable(parentLayerable), mLayer(0), mAntialiased(true) { if (mParentPlot) { if (targetLayer.isEmpty()) setLayer(mParentPlot->currentLayer()); else if (!setLayer(targetLayer)) qDebug() << Q_FUNC_INFO << "setting QCPlayerable initial layer to" << targetLayer << "failed."; } } QCPLayerable::~QCPLayerable() { if (mLayer) { mLayer->removeChild(this); mLayer = 0; } } /*! Sets the visibility of this layerable object. If an object is not visible, it will not be drawn on the QCustomPlot surface, and user interaction with it (e.g. click and selection) is not possible. */ void QCPLayerable::setVisible(bool on) { mVisible = on; } /*! Sets the \a layer of this layerable object. The object will be placed on top of the other objects already on \a layer. Returns true on success, i.e. if \a layer is a valid layer. */ bool QCPLayerable::setLayer(QCPLayer *layer) { return moveToLayer(layer, false); } /*! \overload Sets the layer of this layerable object by name Returns true on success, i.e. if \a layerName is a valid layer name. */ bool QCPLayerable::setLayer(const QString &layerName) { if (!mParentPlot) { qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; return false; } if (QCPLayer *layer = mParentPlot->layer(layerName)) { return setLayer(layer); } else { qDebug() << Q_FUNC_INFO << "there is no layer with name" << layerName; return false; } } /*! Sets whether this object will be drawn antialiased or not. Note that antialiasing settings may be overridden by QCustomPlot::setAntialiasedElements and QCustomPlot::setNotAntialiasedElements. */ void QCPLayerable::setAntialiased(bool enabled) { mAntialiased = enabled; } /*! Returns whether this layerable is visible, taking possible direct layerable parent visibility into account. This is the method that is consulted to decide whether a layerable shall be drawn or not. If this layerable has a direct layerable parent (usually set via hierarchies implemented in subclasses, like in the case of QCPLayoutElement), this function returns true only if this layerable has its visibility set to true and the parent layerable's \ref realVisibility returns true. If this layerable doesn't have a direct layerable parent, returns the state of this layerable's visibility. */ bool QCPLayerable::realVisibility() const { return mVisible && (!mParentLayerable || mParentLayerable.data()->realVisibility()); } /*! This function is used to decide whether a click hits a layerable object or not. \a pos is a point in pixel coordinates on the QCustomPlot surface. This function returns the shortest pixel distance of this point to the object. If the object is either invisible or the distance couldn't be determined, -1.0 is returned. Further, if \a onlySelectable is true and the object is not selectable, -1.0 is returned, too. If the item is represented not by single lines but by an area like QCPItemRect or QCPItemText, a click inside the area returns a constant value greater zero (typically the selectionTolerance of the parent QCustomPlot multiplied by 0.99). If the click lies outside the area, this function returns -1.0. Providing a constant value for area objects allows selecting line objects even when they are obscured by such area objects, by clicking close to the lines (i.e. closer than 0.99*selectionTolerance). The actual setting of the selection state is not done by this function. This is handled by the parent QCustomPlot when the mouseReleaseEvent occurs, and the finally selected object is notified via the selectEvent/deselectEvent methods. \a details is an optional output parameter. Every layerable subclass may place any information in \a details. This information will be passed to \ref selectEvent when the parent QCustomPlot decides on the basis of this selectTest call, that the object was successfully selected. The subsequent call to \ref selectEvent will carry the \a details. This is useful for multi-part objects (like QCPAxis). This way, a possibly complex calculation to decide which part was clicked is only done once in \ref selectTest. The result (i.e. the actually clicked part) can then be placed in \a details. So in the subsequent \ref selectEvent, the decision which part was selected doesn't have to be done a second time for a single selection operation. You may pass 0 as \a details to indicate that you are not interested in those selection details. \see selectEvent, deselectEvent, QCustomPlot::setInteractions */ double QCPLayerable::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(pos) Q_UNUSED(onlySelectable) Q_UNUSED(details) return -1.0; } /*! \internal Sets the parent plot of this layerable. Use this function once to set the parent plot if you have passed 0 in the constructor. It can not be used to move a layerable from one QCustomPlot to another one. Note that, unlike when passing a non-null parent plot in the constructor, this function does not make \a parentPlot the QObject-parent of this layerable. If you want this, call QObject::setParent(\a parentPlot) in addition to this function. Further, you will probably want to set a layer (\ref setLayer) after calling this function, to make the layerable appear on the QCustomPlot. The parent plot change will be propagated to subclasses via a call to \ref parentPlotInitialized so they can react accordingly (e.g. also initialize the parent plot of child layerables, like QCPLayout does). */ void QCPLayerable::initializeParentPlot(QCustomPlot *parentPlot) { if (mParentPlot) { qDebug() << Q_FUNC_INFO << "called with mParentPlot already initialized"; return; } if (!parentPlot) qDebug() << Q_FUNC_INFO << "called with parentPlot zero"; mParentPlot = parentPlot; parentPlotInitialized(mParentPlot); } /*! \internal Sets the parent layerable of this layerable to \a parentLayerable. Note that \a parentLayerable does not become the QObject-parent (for memory management) of this layerable. The parent layerable has influence on the return value of the \ref realVisibility method. Only layerables with a fully visible parent tree will return true for \ref realVisibility, and thus be drawn. \see realVisibility */ void QCPLayerable::setParentLayerable(QCPLayerable *parentLayerable) { mParentLayerable = parentLayerable; } /*! \internal Moves this layerable object to \a layer. If \a prepend is true, this object will be prepended to the new layer's list, i.e. it will be drawn below the objects already on the layer. If it is false, the object will be appended. Returns true on success, i.e. if \a layer is a valid layer. */ bool QCPLayerable::moveToLayer(QCPLayer *layer, bool prepend) { if (layer && !mParentPlot) { qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; return false; } if (layer && layer->parentPlot() != mParentPlot) { qDebug() << Q_FUNC_INFO << "layer" << layer->name() << "is not in same QCustomPlot as this layerable"; return false; } if (mLayer) mLayer->removeChild(this); mLayer = layer; if (mLayer) mLayer->addChild(this, prepend); return true; } /*! \internal Sets the QCPainter::setAntialiasing state on the provided \a painter, depending on the \a localAntialiased value as well as the overrides \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. Which override enum this function takes into account is controlled via \a overrideElement. */ void QCPLayerable::applyAntialiasingHint(QCPPainter *painter, bool localAntialiased, QCP::AntialiasedElement overrideElement) const { if (mParentPlot && mParentPlot->notAntialiasedElements().testFlag(overrideElement)) painter->setAntialiasing(false); else if (mParentPlot && mParentPlot->antialiasedElements().testFlag(overrideElement)) painter->setAntialiasing(true); else painter->setAntialiasing(localAntialiased); } /*! \internal This function is called by \ref initializeParentPlot, to allow subclasses to react on the setting of a parent plot. This is the case when 0 was passed as parent plot in the constructor, and the parent plot is set at a later time. For example, QCPLayoutElement/QCPLayout hierarchies may be created independently of any QCustomPlot at first. When they are then added to a layout inside the QCustomPlot, the top level element of the hierarchy gets its parent plot initialized with \ref initializeParentPlot. To propagate the parent plot to all the children of the hierarchy, the top level element then uses this function to pass the parent plot on to its child elements. The default implementation does nothing. \see initializeParentPlot */ void QCPLayerable::parentPlotInitialized(QCustomPlot *parentPlot) { Q_UNUSED(parentPlot) } /*! \internal Returns the selection category this layerable shall belong to. The selection category is used in conjunction with \ref QCustomPlot::setInteractions to control which objects are selectable and which aren't. Subclasses that don't fit any of the normal \ref QCP::Interaction values can use \ref QCP::iSelectOther. This is what the default implementation returns. \see QCustomPlot::setInteractions */ QCP::Interaction QCPLayerable::selectionCategory() const { return QCP::iSelectOther; } /*! \internal Returns the clipping rectangle of this layerable object. By default, this is the viewport of the parent QCustomPlot. Specific subclasses may reimplement this function to provide different clipping rects. The returned clipping rect is set on the painter before the draw function of the respective object is called. */ QRect QCPLayerable::clipRect() const { if (mParentPlot) return mParentPlot->viewport(); else return QRect(); } /*! \internal This event is called when the layerable shall be selected, as a consequence of a click by the user. Subclasses should react to it by setting their selection state appropriately. The default implementation does nothing. \a event is the mouse event that caused the selection. \a additive indicates, whether the user was holding the multi-select-modifier while performing the selection (see \ref QCustomPlot::setMultiSelectModifier). if \a additive is true, the selection state must be toggled (i.e. become selected when unselected and unselected when selected). Every selectEvent is preceded by a call to \ref selectTest, which has returned positively (i.e. returned a value greater than 0 and less than the selection tolerance of the parent QCustomPlot). The \a details data you output from \ref selectTest is feeded back via \a details here. You may use it to transport any kind of information from the selectTest to the possibly subsequent selectEvent. Usually \a details is used to transfer which part was clicked, if it is a layerable that has multiple individually selectable parts (like QCPAxis). This way selectEvent doesn't need to do the calculation again to find out which part was actually clicked. \a selectionStateChanged is an output parameter. If the pointer is non-null, this function must set the value either to true or false, depending on whether the selection state of this layerable was actually changed. For layerables that only are selectable as a whole and not in parts, this is simple: if \a additive is true, \a selectionStateChanged must also be set to true, because the selection toggles. If \a additive is false, \a selectionStateChanged is only set to true, if the layerable was previously unselected and now is switched to the selected state. \see selectTest, deselectEvent */ void QCPLayerable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) Q_UNUSED(additive) Q_UNUSED(details) Q_UNUSED(selectionStateChanged) } /*! \internal This event is called when the layerable shall be deselected, either as consequence of a user interaction or a call to \ref QCustomPlot::deselectAll. Subclasses should react to it by unsetting their selection appropriately. just as in \ref selectEvent, the output parameter \a selectionStateChanged (if non-null), must return true or false when the selection state of this layerable has changed or not changed, respectively. \see selectTest, selectEvent */ void QCPLayerable::deselectEvent(bool *selectionStateChanged) { Q_UNUSED(selectionStateChanged) } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPRange //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPRange \brief Represents the range an axis is encompassing. contains a \a lower and \a upper double value and provides convenience input, output and modification functions. \see QCPAxis::setRange */ /*! Minimum range size (\a upper - \a lower) the range changing functions will accept. Smaller intervals would cause errors due to the 11-bit exponent of double precision numbers, corresponding to a minimum magnitude of roughly 1e-308. \see validRange, maxRange */ const double QCPRange::minRange = 1e-280; /*! Maximum values (negative and positive) the range will accept in range-changing functions. Larger absolute values would cause errors due to the 11-bit exponent of double precision numbers, corresponding to a maximum magnitude of roughly 1e308. Since the number of planck-volumes in the entire visible universe is only ~1e183, this should be enough. \see validRange, minRange */ const double QCPRange::maxRange = 1e250; /*! Constructs a range with \a lower and \a upper set to zero. */ QCPRange::QCPRange() : lower(0), upper(0) { } /*! \overload Constructs a range with the specified \a lower and \a upper values. */ QCPRange::QCPRange(double lower, double upper) : lower(lower), upper(upper) { normalize(); } /*! Returns the size of the range, i.e. \a upper-\a lower */ double QCPRange::size() const { return upper-lower; } /*! Returns the center of the range, i.e. (\a upper+\a lower)*0.5 */ double QCPRange::center() const { return (upper+lower)*0.5; } /*! Makes sure \a lower is numerically smaller than \a upper. If this is not the case, the values are swapped. */ void QCPRange::normalize() { if (lower > upper) qSwap(lower, upper); } /*! Returns a sanitized version of the range. Sanitized means for logarithmic scales, that the range won't span the positive and negative sign domain, i.e. contain zero. Further \a lower will always be numerically smaller (or equal) to \a upper. If the original range does span positive and negative sign domains or contains zero, the returned range will try to approximate the original range as good as possible. If the positive interval of the original range is wider than the negative interval, the returned range will only contain the positive interval, with lower bound set to \a rangeFac or \a rangeFac *\a upper, whichever is closer to zero. Same procedure is used if the negative interval is wider than the positive interval, this time by changing the \a upper bound. */ QCPRange QCPRange::sanitizedForLogScale() const { double rangeFac = 1e-3; QCPRange sanitizedRange(lower, upper); sanitizedRange.normalize(); // can't have range spanning negative and positive values in log plot, so change range to fix it //if (qFuzzyCompare(sanitizedRange.lower+1, 1) && !qFuzzyCompare(sanitizedRange.upper+1, 1)) if (sanitizedRange.lower == 0.0 && sanitizedRange.upper != 0.0) { // case lower is 0 if (rangeFac < sanitizedRange.upper*rangeFac) sanitizedRange.lower = rangeFac; else sanitizedRange.lower = sanitizedRange.upper*rangeFac; } //else if (!qFuzzyCompare(lower+1, 1) && qFuzzyCompare(upper+1, 1)) else if (sanitizedRange.lower != 0.0 && sanitizedRange.upper == 0.0) { // case upper is 0 if (-rangeFac > sanitizedRange.lower*rangeFac) sanitizedRange.upper = -rangeFac; else sanitizedRange.upper = sanitizedRange.lower*rangeFac; } else if (sanitizedRange.lower < 0 && sanitizedRange.upper > 0) { // find out whether negative or positive interval is wider to decide which sign domain will be chosen if (-sanitizedRange.lower > sanitizedRange.upper) { // negative is wider, do same as in case upper is 0 if (-rangeFac > sanitizedRange.lower*rangeFac) sanitizedRange.upper = -rangeFac; else sanitizedRange.upper = sanitizedRange.lower*rangeFac; } else { // positive is wider, do same as in case lower is 0 if (rangeFac < sanitizedRange.upper*rangeFac) sanitizedRange.lower = rangeFac; else sanitizedRange.lower = sanitizedRange.upper*rangeFac; } } // due to normalization, case lower>0 && upper<0 should never occur, because that implies upper<lower return sanitizedRange; } /*! Returns a sanitized version of the range. Sanitized means for linear scales, that \a lower will always be numerically smaller (or equal) to \a upper. */ QCPRange QCPRange::sanitizedForLinScale() const { QCPRange sanitizedRange(lower, upper); sanitizedRange.normalize(); return sanitizedRange; } /*! Returns true when \a value lies within or exactly on the borders of the range. */ bool QCPRange::contains(double value) const { return value >= lower && value <= upper; } /*! Checks, whether the specified range is within valid bounds, which are defined as QCPRange::maxRange and QCPRange::minRange. A valid range means: \li range bounds within -maxRange and maxRange \li range size above minRange \li range size below maxRange */ bool QCPRange::validRange(double lower, double upper) { /* return (lower > -maxRange && upper < maxRange && qAbs(lower-upper) > minRange && (lower < -minRange || lower > minRange) && (upper < -minRange || upper > minRange)); */ return (lower > -maxRange && upper < maxRange && qAbs(lower-upper) > minRange && qAbs(lower-upper) < maxRange); } /*! \overload Checks, whether the specified range is within valid bounds, which are defined as QCPRange::maxRange and QCPRange::minRange. A valid range means: \li range bounds within -maxRange and maxRange \li range size above minRange \li range size below maxRange */ bool QCPRange::validRange(const QCPRange &range) { /* return (range.lower > -maxRange && range.upper < maxRange && qAbs(range.lower-range.upper) > minRange && qAbs(range.lower-range.upper) < maxRange && (range.lower < -minRange || range.lower > minRange) && (range.upper < -minRange || range.upper > minRange)); */ return (range.lower > -maxRange && range.upper < maxRange && qAbs(range.lower-range.upper) > minRange && qAbs(range.lower-range.upper) < maxRange); } /*! \page thelayoutsystem The Layout System The layout system is responsible for positioning and scaling layout elements such as axis rects, legends and plot titles in a QCustomPlot. \section layoutsystem-classesandmechanisms Classes and mechanisms The layout system is based on the abstract base class \ref QCPLayoutElement. All objects that take part in the layout system derive from this class, either directly or indirectly. Since QCPLayoutElement itself derives from \ref QCPLayerable, a layout element may draw its own content. However, it is perfectly possible for a layout element to only serve as a structuring and/or positioning element, not drawing anything on its own. \subsection layoutsystem-rects Rects of a layout element A layout element is a rectangular object described by two rects: the inner rect (\ref QCPLayoutElement::rect) and the outer rect (\ref QCPLayoutElement::setOuterRect). The inner rect is calculated automatically by applying the margin (\ref QCPLayoutElement::setMargins) inward from the outer rect. The inner rect is meant for main content while the margin area may either be left blank or serve for displaying peripheral graphics. For example, \ref QCPAxisRect positions the four main axes at the sides of the inner rect, so graphs end up inside it and the axis labels and tick labels are in the margin area. \subsection layoutsystem-margins Margins Each layout element may provide a mechanism to automatically determine its margins. Internally, this is realized with the \ref QCPLayoutElement::calculateAutoMargin function which takes a \ref QCP::MarginSide and returns an integer value which represents the ideal margin for the specified side. The automatic margin will be used on the sides specified in \ref QCPLayoutElement::setAutoMargins. By default, it is set to \ref QCP::msAll meaning automatic margin calculation is enabled for all four sides. In this case, a minimum margin may be set with \ref QCPLayoutElement::setMinimumMargins, to prevent the automatic margin mechanism from setting margins smaller than desired for a specific situation. If automatic margin calculation is unset for a specific side, the margin of that side can be controlled directy via \ref QCPLayoutElement::setMargins. If multiple layout ements are arranged next to or beneath each other, it may be desirable to align their inner rects on certain sides. Since they all might have different automatic margins, this usually isn't the case. The class \ref QCPMarginGroup and \ref QCPLayoutElement::setMarginGroup fix this by allowing to synchronize multiple margins. See the documentation there for details. \subsection layoutsystem-layout Layouts As mentioned, a QCPLayoutElement may have an arbitrary number of child layout elements and in princple can have the only purpose to manage/arrange those child elements. This is what the subclass \ref QCPLayout specializes on. It is a QCPLayoutElement itself but has no visual representation. It defines an interface to add, remove and manage child layout elements. QCPLayout isn't a usable layout though, it's an abstract base class that concrete layouts derive from, like \ref QCPLayoutGrid which arranges its child elements in a grid and \ref QCPLayoutInset which allows placing child elements freely inside its rect. Since a QCPLayout is a layout element itself, it may be placed inside other layouts. This way, complex hierarchies may be created, offering very flexible arrangements. <div style="text-align:center"> <div style="display:inline-block; margin-left:auto; margin-right:auto">\image html LayoutsystemSketch0.png ""</div> <div style="display:inline-block; margin-left:auto; margin-right:auto">\image html LayoutsystemSketch1.png ""</div> <div style="clear:both"></div> <div style="display:inline-block; max-width:1000px; text-align:justify"> Sketch of the default QCPLayoutGrid accessible via \ref QCustomPlot::plotLayout. The left image shows the outer and inner rect of the grid layout itself while the right image shows how two child layout elements are placed inside the grid layout next to each other in cells (0, 0) and (0, 1). </div> </div> \subsection layoutsystem-plotlayout The top level plot layout Every QCustomPlot has one top level layout of type \ref QCPLayoutGrid. It is accessible via \ref QCustomPlot::plotLayout and contains (directly or indirectly via other sub-layouts) all layout elements in the QCustomPlot. By default, this top level grid layout contains a single cell which holds the main axis rect. \subsection layoutsystem-examples Examples <b>Adding a plot title</b> is a typical and simple case to demonstrate basic workings of the layout system. \code // first we create and prepare a plot title layout element: QCPPlotTitle *title = new QCPPlotTitle(customPlot); title->setText("Plot Title Example"); title->setFont(QFont("sans", 12, QFont::Bold)); // then we add it to the main plot layout: customPlot->plotLayout()->insertRow(0); // insert an empty row above the axis rect customPlot->plotLayout()->addElement(0, 0, title); // insert the title in the empty cell we just created \endcode \image html layoutsystem-addingplottitle.png <b>Arranging multiple axis rects</b> actually is the central purpose of the layout system. \code customPlot->plotLayout()->clear(); // let's start from scratch and remove the default axis rect // add the first axis rect in second row (row index 1): customPlot->plotLayout()->addElement(1, 0, new QCPAxisRect(customPlot)); // create a sub layout that we'll place in first row: QCPLayoutGrid *subLayout = new QCPLayoutGrid; customPlot->plotLayout()->addElement(0, 0, subLayout); // add two axis rects in the sub layout next to eachother: subLayout->addElement(0, 0, new QCPAxisRect(customPlot)); subLayout->addElement(0, 1, new QCPAxisRect(customPlot)); subLayout->setColumnStretchFactor(0, 3); // left axis rect shall have 60% of width subLayout->setColumnStretchFactor(1, 2); // right one only 40% (3:2 = 60:40) \endcode \image html layoutsystem-multipleaxisrects.png */ //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPMarginGroup //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPMarginGroup \brief A margin group allows synchronization of margin sides if working with multiple layout elements. QCPMarginGroup allows you to tie a margin side of two or more layout elements together, such that they will all have the same size, based on the largest required margin in the group. \n \image html QCPMarginGroup.png "Demonstration of QCPMarginGroup" \n In certain situations it is desirable that margins at specific sides are synchronized across layout elements. For example, if one QCPAxisRect is below another one in a grid layout, it will provide a cleaner look to the user if the left and right margins of the two axis rects are of the same size. The left axis of the top axis rect will then be at the same horizontal position as the left axis of the lower axis rect, making them appear aligned. The same applies for the right axes. This is what QCPMarginGroup makes possible. To add/remove a specific side of a layout element to/from a margin group, use the \ref QCPLayoutElement::setMarginGroup method. To completely break apart the margin group, either call \ref clear, or just delete the margin group. \section QCPMarginGroup-example Example First create a margin group: \code QCPMarginGroup *group = new QCPMarginGroup(customPlot); \endcode Then set this group on the layout element sides: \code customPlot->axisRect(0)->setMarginGroup(QCP::msLeft|QCP::msRight, group); customPlot->axisRect(1)->setMarginGroup(QCP::msLeft|QCP::msRight, group); \endcode Here, we've used the first two axis rects of the plot and synchronized their left margins with each other and their right margins with each other. */ /* start documentation of inline functions */ /*! \fn QList<QCPLayoutElement*> QCPMarginGroup::elements(QCP::MarginSide side) const Returns a list of all layout elements that have their margin \a side associated with this margin group. */ /* end documentation of inline functions */ /*! Creates a new QCPMarginGroup instance in \a parentPlot. */ QCPMarginGroup::QCPMarginGroup(QCustomPlot *parentPlot) : QObject(parentPlot), mParentPlot(parentPlot) { mChildren.insert(QCP::msLeft, QList<QCPLayoutElement*>()); mChildren.insert(QCP::msRight, QList<QCPLayoutElement*>()); mChildren.insert(QCP::msTop, QList<QCPLayoutElement*>()); mChildren.insert(QCP::msBottom, QList<QCPLayoutElement*>()); } QCPMarginGroup::~QCPMarginGroup() { clear(); } /*! Returns whether this margin group is empty. If this function returns true, no layout elements use this margin group to synchronize margin sides. */ bool QCPMarginGroup::isEmpty() const { QHashIterator<QCP::MarginSide, QList<QCPLayoutElement*> > it(mChildren); while (it.hasNext()) { it.next(); if (!it.value().isEmpty()) return false; } return true; } /*! Clears this margin group. The synchronization of the margin sides that use this margin group is lifted and they will use their individual margin sizes again. */ void QCPMarginGroup::clear() { // make all children remove themselves from this margin group: QHashIterator<QCP::MarginSide, QList<QCPLayoutElement*> > it(mChildren); while (it.hasNext()) { it.next(); const QList<QCPLayoutElement*> elements = it.value(); for (int i=elements.size()-1; i>=0; --i) elements.at(i)->setMarginGroup(it.key(), 0); // removes itself from mChildren via removeChild } } /*! \internal Returns the synchronized common margin for \a side. This is the margin value that will be used by the layout element on the respective side, if it is part of this margin group. The common margin is calculated by requesting the automatic margin (\ref QCPLayoutElement::calculateAutoMargin) of each element associated with \a side in this margin group, and choosing the largest returned value. (QCPLayoutElement::minimumMargins is taken into account, too.) */ int QCPMarginGroup::commonMargin(QCP::MarginSide side) const { // query all automatic margins of the layout elements in this margin group side and find maximum: int result = 0; const QList<QCPLayoutElement*> elements = mChildren.value(side); for (int i=0; i<elements.size(); ++i) { if (!elements.at(i)->autoMargins().testFlag(side)) continue; int m = qMax(elements.at(i)->calculateAutoMargin(side), QCP::getMarginValue(elements.at(i)->minimumMargins(), side)); if (m > result) result = m; } return result; } /*! \internal Adds \a element to the internal list of child elements, for the margin \a side. This function does not modify the margin group property of \a element. */ void QCPMarginGroup::addChild(QCP::MarginSide side, QCPLayoutElement *element) { if (!mChildren[side].contains(element)) mChildren[side].append(element); else qDebug() << Q_FUNC_INFO << "element is already child of this margin group side" << reinterpret_cast<quintptr>(element); } /*! \internal Removes \a element from the internal list of child elements, for the margin \a side. This function does not modify the margin group property of \a element. */ void QCPMarginGroup::removeChild(QCP::MarginSide side, QCPLayoutElement *element) { if (!mChildren[side].removeOne(element)) qDebug() << Q_FUNC_INFO << "element is not child of this margin group side" << reinterpret_cast<quintptr>(element); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayoutElement //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayoutElement \brief The abstract base class for all objects that form \ref thelayoutsystem "the layout system". This is an abstract base class. As such, it can't be instantiated directly, rather use one of its subclasses. A Layout element is a rectangular object which can be placed in layouts. It has an outer rect (QCPLayoutElement::outerRect) and an inner rect (\ref QCPLayoutElement::rect). The difference between outer and inner rect is called its margin. The margin can either be set to automatic or manual (\ref setAutoMargins) on a per-side basis. If a side is set to manual, that margin can be set explicitly with \ref setMargins and will stay fixed at that value. If it's set to automatic, the layout element subclass will control the value itself (via \ref calculateAutoMargin). Layout elements can be placed in layouts (base class QCPLayout) like QCPLayoutGrid. The top level layout is reachable via \ref QCustomPlot::plotLayout, and is a \ref QCPLayoutGrid. Since \ref QCPLayout itself derives from \ref QCPLayoutElement, layouts can be nested. Thus in QCustomPlot one can divide layout elements into two categories: The ones that are invisible by themselves, because they don't draw anything. Their only purpose is to manage the position and size of other layout elements. This category of layout elements usually use QCPLayout as base class. Then there is the category of layout elements which actually draw something. For example, QCPAxisRect, QCPLegend and QCPPlotTitle are of this category. This does not necessarily mean that the latter category can't have child layout elements. QCPLegend for instance, actually derives from QCPLayoutGrid and the individual legend items are child layout elements in the grid layout. */ /* start documentation of inline functions */ /*! \fn QCPLayout *QCPLayoutElement::layout() const Returns the parent layout of this layout element. */ /*! \fn QRect QCPLayoutElement::rect() const Returns the inner rect of this layout element. The inner rect is the outer rect (\ref setOuterRect) shrinked by the margins (\ref setMargins, \ref setAutoMargins). In some cases, the area between outer and inner rect is left blank. In other cases the margin area is used to display peripheral graphics while the main content is in the inner rect. This is where automatic margin calculation becomes interesting because it allows the layout element to adapt the margins to the peripheral graphics it wants to draw. For example, \ref QCPAxisRect draws the axis labels and tick labels in the margin area, thus needs to adjust the margins (if \ref setAutoMargins is enabled) according to the space required by the labels of the axes. */ /*! \fn virtual void QCPLayoutElement::mousePressEvent(QMouseEvent *event) This event is called, if the mouse was pressed while being inside the outer rect of this layout element. */ /*! \fn virtual void QCPLayoutElement::mouseMoveEvent(QMouseEvent *event) This event is called, if the mouse is moved inside the outer rect of this layout element. */ /*! \fn virtual void QCPLayoutElement::mouseReleaseEvent(QMouseEvent *event) This event is called, if the mouse was previously pressed inside the outer rect of this layout element and is now released. */ /*! \fn virtual void QCPLayoutElement::mouseDoubleClickEvent(QMouseEvent *event) This event is called, if the mouse is double-clicked inside the outer rect of this layout element. */ /*! \fn virtual void QCPLayoutElement::wheelEvent(QWheelEvent *event) This event is called, if the mouse wheel is scrolled while the cursor is inside the rect of this layout element. */ /* end documentation of inline functions */ /*! Creates an instance of QCPLayoutElement and sets default values. */ QCPLayoutElement::QCPLayoutElement(QCustomPlot *parentPlot) : QCPLayerable(parentPlot), // parenthood is changed as soon as layout element gets inserted into a layout (except for top level layout) mParentLayout(0), mMinimumSize(), mMaximumSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX), mRect(0, 0, 0, 0), mOuterRect(0, 0, 0, 0), mMargins(0, 0, 0, 0), mMinimumMargins(0, 0, 0, 0), mAutoMargins(QCP::msAll) { } QCPLayoutElement::~QCPLayoutElement() { setMarginGroup(QCP::msAll, 0); // unregister at margin groups, if there are any // unregister at layout: if (qobject_cast<QCPLayout*>(mParentLayout)) // the qobject_cast is just a safeguard in case the layout forgets to call clear() in its dtor and this dtor is called by QObject dtor mParentLayout->take(this); } /*! Sets the outer rect of this layout element. If the layout element is inside a layout, the layout sets the position and size of this layout element using this function. Calling this function externally has no effect, since the layout will overwrite any changes to the outer rect upon the next replot. The layout element will adapt its inner \ref rect by applying the margins inward to the outer rect. \see rect */ void QCPLayoutElement::setOuterRect(const QRect &rect) { if (mOuterRect != rect) { mOuterRect = rect; mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); } } /*! Sets the margins of this layout element. If \ref setAutoMargins is disabled for some or all sides, this function is used to manually set the margin on those sides. Sides that are still set to be handled automatically are ignored and may have any value in \a margins. The margin is the distance between the outer rect (controlled by the parent layout via \ref setOuterRect) and the inner \ref rect (which usually contains the main content of this layout element). \see setAutoMargins */ void QCPLayoutElement::setMargins(const QMargins &margins) { if (mMargins != margins) { mMargins = margins; mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); } } /*! If \ref setAutoMargins is enabled on some or all margins, this function is used to provide minimum values for those margins. The minimum values are not enforced on margin sides that were set to be under manual control via \ref setAutoMargins. \see setAutoMargins */ void QCPLayoutElement::setMinimumMargins(const QMargins &margins) { if (mMinimumMargins != margins) { mMinimumMargins = margins; } } /*! Sets on which sides the margin shall be calculated automatically. If a side is calculated automatically, a minimum margin value may be provided with \ref setMinimumMargins. If a side is set to be controlled manually, the value may be specified with \ref setMargins. Margin sides that are under automatic control may participate in a \ref QCPMarginGroup (see \ref setMarginGroup), to synchronize (align) it with other layout elements in the plot. \see setMinimumMargins, setMargins */ void QCPLayoutElement::setAutoMargins(QCP::MarginSides sides) { mAutoMargins = sides; } /*! Sets the minimum size for the inner \ref rect of this layout element. A parent layout tries to respect the \a size here by changing row/column sizes in the layout accordingly. If the parent layout size is not sufficient to satisfy all minimum size constraints of its child layout elements, the layout may set a size that is actually smaller than \a size. QCustomPlot propagates the layout's size constraints to the outside by setting its own minimum QWidget size accordingly, so violations of \a size should be exceptions. */ void QCPLayoutElement::setMinimumSize(const QSize &size) { if (mMinimumSize != size) { mMinimumSize = size; if (mParentLayout) mParentLayout->sizeConstraintsChanged(); } } /*! \overload Sets the minimum size for the inner \ref rect of this layout element. */ void QCPLayoutElement::setMinimumSize(int width, int height) { setMinimumSize(QSize(width, height)); } /*! Sets the maximum size for the inner \ref rect of this layout element. A parent layout tries to respect the \a size here by changing row/column sizes in the layout accordingly. */ void QCPLayoutElement::setMaximumSize(const QSize &size) { if (mMaximumSize != size) { mMaximumSize = size; if (mParentLayout) mParentLayout->sizeConstraintsChanged(); } } /*! \overload Sets the maximum size for the inner \ref rect of this layout element. */ void QCPLayoutElement::setMaximumSize(int width, int height) { setMaximumSize(QSize(width, height)); } /*! Sets the margin \a group of the specified margin \a sides. Margin groups allow synchronizing specified margins across layout elements, see the documentation of \ref QCPMarginGroup. To unset the margin group of \a sides, set \a group to 0. Note that margin groups only work for margin sides that are set to automatic (\ref setAutoMargins). */ void QCPLayoutElement::setMarginGroup(QCP::MarginSides sides, QCPMarginGroup *group) { QVector<QCP::MarginSide> sideVector; if (sides.testFlag(QCP::msLeft)) sideVector.append(QCP::msLeft); if (sides.testFlag(QCP::msRight)) sideVector.append(QCP::msRight); if (sides.testFlag(QCP::msTop)) sideVector.append(QCP::msTop); if (sides.testFlag(QCP::msBottom)) sideVector.append(QCP::msBottom); for (int i=0; i<sideVector.size(); ++i) { QCP::MarginSide side = sideVector.at(i); if (marginGroup(side) != group) { QCPMarginGroup *oldGroup = marginGroup(side); if (oldGroup) // unregister at old group oldGroup->removeChild(side, this); if (!group) // if setting to 0, remove hash entry. Else set hash entry to new group and register there { mMarginGroups.remove(side); } else // setting to a new group { mMarginGroups[side] = group; group->addChild(side, this); } } } } /*! Updates the layout element and sub-elements. This function is automatically called upon replot by the parent layout element. Layout elements that have child elements should call the \ref update method of their child elements. The default implementation executes the automatic margin mechanism, so subclasses should make sure to call the base class implementation. */ void QCPLayoutElement::update() { if (mAutoMargins != QCP::msNone) { // set the margins of this layout element according to automatic margin calculation, either directly or via a margin group: QMargins newMargins = mMargins; QVector<QCP::MarginSide> marginSides = QVector<QCP::MarginSide>() << QCP::msLeft << QCP::msRight << QCP::msTop << QCP::msBottom; for (int i=0; i<marginSides.size(); ++i) { QCP::MarginSide side = marginSides.at(i); if (mAutoMargins.testFlag(side)) // this side's margin shall be calculated automatically { if (mMarginGroups.contains(side)) QCP::setMarginValue(newMargins, side, mMarginGroups[side]->commonMargin(side)); // this side is part of a margin group, so get the margin value from that group else QCP::setMarginValue(newMargins, side, calculateAutoMargin(side)); // this side is not part of a group, so calculate the value directly // apply minimum margin restrictions: if (QCP::getMarginValue(newMargins, side) < QCP::getMarginValue(mMinimumMargins, side)) QCP::setMarginValue(newMargins, side, QCP::getMarginValue(mMinimumMargins, side)); } } setMargins(newMargins); } } /*! Returns the minimum size this layout element (the inner \ref rect) may be compressed to. if a minimum size (\ref setMinimumSize) was not set manually, parent layouts consult this function to determine the minimum allowed size of this layout element. (A manual minimum size is considered set if it is non-zero.) */ QSize QCPLayoutElement::minimumSizeHint() const { return mMinimumSize; } /*! Returns the maximum size this layout element (the inner \ref rect) may be expanded to. if a maximum size (\ref setMaximumSize) was not set manually, parent layouts consult this function to determine the maximum allowed size of this layout element. (A manual maximum size is considered set if it is smaller than Qt's QWIDGETSIZE_MAX.) */ QSize QCPLayoutElement::maximumSizeHint() const { return mMaximumSize; } /*! Returns a list of all child elements in this layout element. If \a recursive is true, all sub-child elements are included in the list, too. Note that there may be entries with value 0 in the returned list. (For example, QCPLayoutGrid may have empty cells which yield 0 at the respective index.) */ QList<QCPLayoutElement*> QCPLayoutElement::elements(bool recursive) const { Q_UNUSED(recursive) return QList<QCPLayoutElement*>(); } /*! Layout elements are sensitive to events inside their outer rect. If \a pos is within the outer rect, this method returns a value corresponding to 0.99 times the parent plot's selection tolerance. However, layout elements are not selectable by default. So if \a onlySelectable is true, -1.0 is returned. See \ref QCPLayerable::selectTest for a general explanation of this virtual method. QCPLayoutElement subclasses may reimplement this method to provide more specific selection test behaviour. */ double QCPLayoutElement::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable) return -1; if (QRectF(mOuterRect).contains(pos)) { if (mParentPlot) return mParentPlot->selectionTolerance()*0.99; else { qDebug() << Q_FUNC_INFO << "parent plot not defined"; return -1; } } else return -1; } /*! \internal propagates the parent plot initialization to all child elements, by calling \ref QCPLayerable::initializeParentPlot on them. */ void QCPLayoutElement::parentPlotInitialized(QCustomPlot *parentPlot) { QList<QCPLayoutElement*> els = elements(false); for (int i=0; i<els.size(); ++i) { if (!els.at(i)->parentPlot()) els.at(i)->initializeParentPlot(parentPlot); } } /*! \internal Returns the margin size for this \a side. It is used if automatic margins is enabled for this \a side (see \ref setAutoMargins). If a minimum margin was set with \ref setMinimumMargins, the returned value will not be smaller than the specified minimum margin. The default implementation just returns the respective manual margin (\ref setMargins) or the minimum margin, whichever is larger. */ int QCPLayoutElement::calculateAutoMargin(QCP::MarginSide side) { return qMax(QCP::getMarginValue(mMargins, side), QCP::getMarginValue(mMinimumMargins, side)); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayout //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayout \brief The abstract base class for layouts This is an abstract base class for layout elements whose main purpose is to define the position and size of other child layout elements. In most cases, layouts don't draw anything themselves (but there are exceptions to this, e.g. QCPLegend). QCPLayout derives from QCPLayoutElement, and thus can itself be nested in other layouts. QCPLayout introduces a common interface for accessing and manipulating the child elements. Those functions are most notably \ref elementCount, \ref elementAt, \ref takeAt, \ref take, \ref simplify, \ref removeAt, \ref remove and \ref clear. Individual subclasses may add more functions to this interface which are more specialized to the form of the layout. For example, \ref QCPLayoutGrid adds functions that take row and column indices to access cells of the layout grid more conveniently. Since this is an abstract base class, you can't instantiate it directly. Rather use one of its subclasses like QCPLayoutGrid or QCPLayoutInset. For a general introduction to the layout system, see the dedicated documentation page \ref thelayoutsystem "The Layout System". */ /* start documentation of pure virtual functions */ /*! \fn virtual int QCPLayout::elementCount() const = 0 Returns the number of elements/cells in the layout. \see elements, elementAt */ /*! \fn virtual QCPLayoutElement* QCPLayout::elementAt(int index) const = 0 Returns the element in the cell with the given \a index. If \a index is invalid, returns 0. Note that even if \a index is valid, the respective cell may be empty in some layouts (e.g. QCPLayoutGrid), so this function may return 0 in those cases. You may use this function to check whether a cell is empty or not. \see elements, elementCount, takeAt */ /*! \fn virtual QCPLayoutElement* QCPLayout::takeAt(int index) = 0 Removes the element with the given \a index from the layout and returns it. If the \a index is invalid or the cell with that index is empty, returns 0. Note that some layouts don't remove the respective cell right away but leave an empty cell after successful removal of the layout element. To collapse empty cells, use \ref simplify. \see elementAt, take */ /*! \fn virtual bool QCPLayout::take(QCPLayoutElement* element) = 0 Removes the specified \a element from the layout and returns true on success. If the \a element isn't in this layout, returns false. Note that some layouts don't remove the respective cell right away but leave an empty cell after successful removal of the layout element. To collapse empty cells, use \ref simplify. \see takeAt */ /* end documentation of pure virtual functions */ /*! Creates an instance of QCPLayoutElement and sets default values. Note that since QCPLayoutElement is an abstract base class, it can't be instantiated directly. */ QCPLayout::QCPLayout() { } /*! First calls the QCPLayoutElement::update base class implementation to update the margins on this layout. Then calls \ref updateLayout which subclasses reimplement to reposition and resize their cells. Finally, \ref update is called on all child elements. */ void QCPLayout::update() { QCPLayoutElement::update(); // recalculates (auto-)margins // set child element rects according to layout: updateLayout(); // propagate update call to child elements: for (int i=0; i<elementCount(); ++i) { if (QCPLayoutElement *el = elementAt(i)) el->update(); } } /* inherits documentation from base class */ QList<QCPLayoutElement*> QCPLayout::elements(bool recursive) const { int c = elementCount(); QList<QCPLayoutElement*> result; #if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) result.reserve(c); #endif for (int i=0; i<c; ++i) result.append(elementAt(i)); if (recursive) { for (int i=0; i<c; ++i) { if (result.at(i)) result << result.at(i)->elements(recursive); } } return result; } /*! Simplifies the layout by collapsing empty cells. The exact behavior depends on subclasses, the default implementation does nothing. Not all layouts need simplification. For example, QCPLayoutInset doesn't use explicit simplification while QCPLayoutGrid does. */ void QCPLayout::simplify() { } /*! Removes and deletes the element at the provided \a index. Returns true on success. If \a index is invalid or points to an empty cell, returns false. This function internally uses \ref takeAt to remove the element from the layout and then deletes the returned element. \see remove, takeAt */ bool QCPLayout::removeAt(int index) { if (QCPLayoutElement *el = takeAt(index)) { delete el; return true; } else return false; } /*! Removes and deletes the provided \a element. Returns true on success. If \a element is not in the layout, returns false. This function internally uses \ref takeAt to remove the element from the layout and then deletes the element. \see removeAt, take */ bool QCPLayout::remove(QCPLayoutElement *element) { if (take(element)) { delete element; return true; } else return false; } /*! Removes and deletes all layout elements in this layout. \see remove, removeAt */ void QCPLayout::clear() { for (int i=elementCount()-1; i>=0; --i) { if (elementAt(i)) removeAt(i); } simplify(); } /*! Subclasses call this method to report changed (minimum/maximum) size constraints. If the parent of this layout is again a QCPLayout, forwards the call to the parent's \ref sizeConstraintsChanged. If the parent is a QWidget (i.e. is the \ref QCustomPlot::plotLayout of QCustomPlot), calls QWidget::updateGeometry, so if the QCustomPlot widget is inside a Qt QLayout, it may update itself and resize cells accordingly. */ void QCPLayout::sizeConstraintsChanged() const { if (QWidget *w = qobject_cast<QWidget*>(parent())) w->updateGeometry(); else if (QCPLayout *l = qobject_cast<QCPLayout*>(parent())) l->sizeConstraintsChanged(); } /*! \internal Subclasses reimplement this method to update the position and sizes of the child elements/cells via calling their \ref QCPLayoutElement::setOuterRect. The default implementation does nothing. The geometry used as a reference is the inner \ref rect of this layout. Child elements should stay within that rect. \ref getSectionSizes may help with the reimplementation of this function. \see update */ void QCPLayout::updateLayout() { } /*! \internal Associates \a el with this layout. This is done by setting the \ref QCPLayoutElement::layout, the \ref QCPLayerable::parentLayerable and the QObject parent to this layout. Further, if \a el didn't previously have a parent plot, calls \ref QCPLayerable::initializeParentPlot on \a el to set the paret plot. This method is used by subclass specific methods that add elements to the layout. Note that this method only changes properties in \a el. The removal from the old layout and the insertion into the new layout must be done additionally. */ void QCPLayout::adoptElement(QCPLayoutElement *el) { if (el) { el->mParentLayout = this; el->setParentLayerable(this); el->setParent(this); if (!el->parentPlot()) el->initializeParentPlot(mParentPlot); } else qDebug() << Q_FUNC_INFO << "Null element passed"; } /*! \internal Disassociates \a el from this layout. This is done by setting the \ref QCPLayoutElement::layout and the \ref QCPLayerable::parentLayerable to zero. The QObject parent is set to the parent QCustomPlot. This method is used by subclass specific methods that remove elements from the layout (e.g. \ref take or \ref takeAt). Note that this method only changes properties in \a el. The removal from the old layout must be done additionally. */ void QCPLayout::releaseElement(QCPLayoutElement *el) { if (el) { el->mParentLayout = 0; el->setParentLayerable(0); el->setParent(mParentPlot); // Note: Don't initializeParentPlot(0) here, because layout element will stay in same parent plot } else qDebug() << Q_FUNC_INFO << "Null element passed"; } /*! \internal This is a helper function for the implementation of \ref updateLayout in subclasses. It calculates the sizes of one-dimensional sections with provided constraints on maximum section sizes, minimum section sizes, relative stretch factors and the final total size of all sections. The QVector entries refer to the sections. Thus all QVectors must have the same size. \a maxSizes gives the maximum allowed size of each section. If there shall be no maximum size imposed, set all vector values to Qt's QWIDGETSIZE_MAX. \a minSizes gives the minimum allowed size of each section. If there shall be no minimum size imposed, set all vector values to zero. If the \a minSizes entries add up to a value greater than \a totalSize, sections will be scaled smaller than the proposed minimum sizes. (In other words, not exceeding the allowed total size is taken to be more important than not going below minimum section sizes.) \a stretchFactors give the relative proportions of the sections to each other. If all sections shall be scaled equally, set all values equal. If the first section shall be double the size of each individual other section, set the first number of \a stretchFactors to double the value of the other individual values (e.g. {2, 1, 1, 1}). \a totalSize is the value that the final section sizes will add up to. Due to rounding, the actual sum may differ slightly. If you want the section sizes to sum up to exactly that value, you could distribute the remaining difference on the sections. The return value is a QVector containing the section sizes. */ QVector<int> QCPLayout::getSectionSizes(QVector<int> maxSizes, QVector<int> minSizes, QVector<double> stretchFactors, int totalSize) const { if (maxSizes.size() != minSizes.size() || minSizes.size() != stretchFactors.size()) { qDebug() << Q_FUNC_INFO << "Passed vector sizes aren't equal:" << maxSizes << minSizes << stretchFactors; return QVector<int>(); } if (stretchFactors.isEmpty()) return QVector<int>(); int sectionCount = stretchFactors.size(); QVector<double> sectionSizes(sectionCount); // if provided total size is forced smaller than total minimum size, ignore minimum sizes (squeeze sections): int minSizeSum = 0; for (int i=0; i<sectionCount; ++i) minSizeSum += minSizes.at(i); if (totalSize < minSizeSum) { // new stretch factors are minimum sizes and minimum sizes are set to zero: for (int i=0; i<sectionCount; ++i) { stretchFactors[i] = minSizes.at(i); minSizes[i] = 0; } } QList<int> minimumLockedSections; QList<int> unfinishedSections; for (int i=0; i<sectionCount; ++i) unfinishedSections.append(i); double freeSize = totalSize; int outerIterations = 0; while (!unfinishedSections.isEmpty() && outerIterations < sectionCount*2) // the iteration check ist just a failsafe in case something really strange happens { ++outerIterations; int innerIterations = 0; while (!unfinishedSections.isEmpty() && innerIterations < sectionCount*2) // the iteration check ist just a failsafe in case something really strange happens { ++innerIterations; // find section that hits its maximum next: int nextId = -1; double nextMax = 1e12; for (int i=0; i<unfinishedSections.size(); ++i) { int secId = unfinishedSections.at(i); double hitsMaxAt = (maxSizes.at(secId)-sectionSizes.at(secId))/stretchFactors.at(secId); if (hitsMaxAt < nextMax) { nextMax = hitsMaxAt; nextId = secId; } } // check if that maximum is actually within the bounds of the total size (i.e. can we stretch all remaining sections so far that the found section // actually hits its maximum, without exceeding the total size when we add up all sections) double stretchFactorSum = 0; for (int i=0; i<unfinishedSections.size(); ++i) stretchFactorSum += stretchFactors.at(unfinishedSections.at(i)); double nextMaxLimit = freeSize/stretchFactorSum; if (nextMax < nextMaxLimit) // next maximum is actually hit, move forward to that point and fix the size of that section { for (int i=0; i<unfinishedSections.size(); ++i) { sectionSizes[unfinishedSections.at(i)] += nextMax*stretchFactors.at(unfinishedSections.at(i)); // increment all sections freeSize -= nextMax*stretchFactors.at(unfinishedSections.at(i)); } unfinishedSections.removeOne(nextId); // exclude the section that is now at maximum from further changes } else // next maximum isn't hit, just distribute rest of free space on remaining sections { for (int i=0; i<unfinishedSections.size(); ++i) sectionSizes[unfinishedSections.at(i)] += nextMaxLimit*stretchFactors.at(unfinishedSections.at(i)); // increment all sections unfinishedSections.clear(); } } if (innerIterations == sectionCount*2) qDebug() << Q_FUNC_INFO << "Exceeded maximum expected inner iteration count, layouting aborted. Input was:" << maxSizes << minSizes << stretchFactors << totalSize; // now check whether the resulting section sizes violate minimum restrictions: bool foundMinimumViolation = false; for (int i=0; i<sectionSizes.size(); ++i) { if (minimumLockedSections.contains(i)) continue; if (sectionSizes.at(i) < minSizes.at(i)) // section violates minimum { sectionSizes[i] = minSizes.at(i); // set it to minimum foundMinimumViolation = true; // make sure we repeat the whole optimization process minimumLockedSections.append(i); } } if (foundMinimumViolation) { freeSize = totalSize; for (int i=0; i<sectionCount; ++i) { if (!minimumLockedSections.contains(i)) // only put sections that haven't hit their minimum back into the pool unfinishedSections.append(i); else freeSize -= sectionSizes.at(i); // remove size of minimum locked sections from available space in next round } // reset all section sizes to zero that are in unfinished sections (all others have been set to their minimum): for (int i=0; i<unfinishedSections.size(); ++i) sectionSizes[unfinishedSections.at(i)] = 0; } } if (outerIterations == sectionCount*2) qDebug() << Q_FUNC_INFO << "Exceeded maximum expected outer iteration count, layouting aborted. Input was:" << maxSizes << minSizes << stretchFactors << totalSize; QVector<int> result(sectionCount); for (int i=0; i<sectionCount; ++i) result[i] = qRound(sectionSizes.at(i)); return result; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayoutGrid //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayoutGrid \brief A layout that arranges child elements in a grid Elements are laid out in a grid with configurable stretch factors (\ref setColumnStretchFactor, \ref setRowStretchFactor) and spacing (\ref setColumnSpacing, \ref setRowSpacing). Elements can be added to cells via \ref addElement. The grid is expanded if the specified row or column doesn't exist yet. Whether a cell contains a valid layout element can be checked with \ref hasElement, that element can be retrieved with \ref element. If rows and columns that only have empty cells shall be removed, call \ref simplify. Removal of elements is either done by just adding the element to a different layout or by using the QCPLayout interface \ref take or \ref remove. Row and column insertion can be performed with \ref insertRow and \ref insertColumn. */ /*! Creates an instance of QCPLayoutGrid and sets default values. */ QCPLayoutGrid::QCPLayoutGrid() : mColumnSpacing(5), mRowSpacing(5) { } QCPLayoutGrid::~QCPLayoutGrid() { // clear all child layout elements. This is important because only the specific layouts know how // to handle removing elements (clear calls virtual removeAt method to do that). clear(); } /*! Returns the element in the cell in \a row and \a column. Returns 0 if either the row/column is invalid or if the cell is empty. In those cases, a qDebug message is printed. To check whether a cell exists and isn't empty, use \ref hasElement. \see addElement, hasElement */ QCPLayoutElement *QCPLayoutGrid::element(int row, int column) const { if (row >= 0 && row < mElements.size()) { if (column >= 0 && column < mElements.first().size()) { if (QCPLayoutElement *result = mElements.at(row).at(column)) return result; else qDebug() << Q_FUNC_INFO << "Requested cell is empty. Row:" << row << "Column:" << column; } else qDebug() << Q_FUNC_INFO << "Invalid column. Row:" << row << "Column:" << column; } else qDebug() << Q_FUNC_INFO << "Invalid row. Row:" << row << "Column:" << column; return 0; } /*! Returns the number of rows in the layout. \see columnCount */ int QCPLayoutGrid::rowCount() const { return mElements.size(); } /*! Returns the number of columns in the layout. \see rowCount */ int QCPLayoutGrid::columnCount() const { if (mElements.size() > 0) return mElements.first().size(); else return 0; } /*! Adds the \a element to cell with \a row and \a column. If \a element is already in a layout, it is first removed from there. If \a row or \a column don't exist yet, the layout is expanded accordingly. Returns true if the element was added successfully, i.e. if the cell at \a row and \a column didn't already have an element. \see element, hasElement, take, remove */ bool QCPLayoutGrid::addElement(int row, int column, QCPLayoutElement *element) { if (element) { if (!hasElement(row, column)) { if (element->layout()) // remove from old layout first element->layout()->take(element); expandTo(row+1, column+1); mElements[row][column] = element; adoptElement(element); return true; } else qDebug() << Q_FUNC_INFO << "There is already an element in the specified row/column:" << row << column; } else qDebug() << Q_FUNC_INFO << "Can't add null element to row/column:" << row << column; return false; } /*! Returns whether the cell at \a row and \a column exists and contains a valid element, i.e. isn't empty. \see element */ bool QCPLayoutGrid::hasElement(int row, int column) { if (row >= 0 && row < rowCount() && column >= 0 && column < columnCount()) return mElements.at(row).at(column); else return false; } /*! Sets the stretch \a factor of \a column. Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize), regardless of the stretch factor. The default stretch factor of newly created rows/columns is 1. \see setColumnStretchFactors, setRowStretchFactor */ void QCPLayoutGrid::setColumnStretchFactor(int column, double factor) { if (column >= 0 && column < columnCount()) { if (factor > 0) mColumnStretchFactors[column] = factor; else qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; } else qDebug() << Q_FUNC_INFO << "Invalid column:" << column; } /*! Sets the stretch \a factors of all columns. \a factors must have the size \ref columnCount. Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize), regardless of the stretch factor. The default stretch factor of newly created rows/columns is 1. \see setColumnStretchFactor, setRowStretchFactors */ void QCPLayoutGrid::setColumnStretchFactors(const QList<double> &factors) { if (factors.size() == mColumnStretchFactors.size()) { mColumnStretchFactors = factors; for (int i=0; i<mColumnStretchFactors.size(); ++i) { if (mColumnStretchFactors.at(i) <= 0) { qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << mColumnStretchFactors.at(i); mColumnStretchFactors[i] = 1; } } } else qDebug() << Q_FUNC_INFO << "Column count not equal to passed stretch factor count:" << factors; } /*! Sets the stretch \a factor of \a row. Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize), regardless of the stretch factor. The default stretch factor of newly created rows/columns is 1. \see setColumnStretchFactors, setRowStretchFactor */ void QCPLayoutGrid::setRowStretchFactor(int row, double factor) { if (row >= 0 && row < rowCount()) { if (factor > 0) mRowStretchFactors[row] = factor; else qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; } else qDebug() << Q_FUNC_INFO << "Invalid row:" << row; } /*! Sets the stretch \a factors of all rows. \a factors must have the size \ref rowCount. Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize), regardless of the stretch factor. The default stretch factor of newly created rows/columns is 1. \see setRowStretchFactor, setColumnStretchFactors */ void QCPLayoutGrid::setRowStretchFactors(const QList<double> &factors) { if (factors.size() == mRowStretchFactors.size()) { mRowStretchFactors = factors; for (int i=0; i<mRowStretchFactors.size(); ++i) { if (mRowStretchFactors.at(i) <= 0) { qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << mRowStretchFactors.at(i); mRowStretchFactors[i] = 1; } } } else qDebug() << Q_FUNC_INFO << "Row count not equal to passed stretch factor count:" << factors; } /*! Sets the gap that is left blank between columns to \a pixels. \see setRowSpacing */ void QCPLayoutGrid::setColumnSpacing(int pixels) { mColumnSpacing = pixels; } /*! Sets the gap that is left blank between rows to \a pixels. \see setColumnSpacing */ void QCPLayoutGrid::setRowSpacing(int pixels) { mRowSpacing = pixels; } /*! Expands the layout to have \a newRowCount rows and \a newColumnCount columns. So the last valid row index will be \a newRowCount-1, the last valid column index will be \a newColumnCount-1. If the current column/row count is already larger or equal to \a newColumnCount/\a newRowCount, this function does nothing in that dimension. Newly created cells are empty, new rows and columns have the stretch factor 1. Note that upon a call to \ref addElement, the layout is expanded automatically to contain the specified row and column, using this function. \see simplify */ void QCPLayoutGrid::expandTo(int newRowCount, int newColumnCount) { // add rows as necessary: while (rowCount() < newRowCount) { mElements.append(QList<QCPLayoutElement*>()); mRowStretchFactors.append(1); } // go through rows and expand columns as necessary: int newColCount = qMax(columnCount(), newColumnCount); for (int i=0; i<rowCount(); ++i) { while (mElements.at(i).size() < newColCount) mElements[i].append(0); } while (mColumnStretchFactors.size() < newColCount) mColumnStretchFactors.append(1); } /*! Inserts a new row with empty cells at the row index \a newIndex. Valid values for \a newIndex range from 0 (inserts a row at the top) to \a rowCount (appends a row at the bottom). \see insertColumn */ void QCPLayoutGrid::insertRow(int newIndex) { if (mElements.isEmpty() || mElements.first().isEmpty()) // if grid is completely empty, add first cell { expandTo(1, 1); return; } if (newIndex < 0) newIndex = 0; if (newIndex > rowCount()) newIndex = rowCount(); mRowStretchFactors.insert(newIndex, 1); QList<QCPLayoutElement*> newRow; for (int col=0; col<columnCount(); ++col) newRow.append((QCPLayoutElement*)0); mElements.insert(newIndex, newRow); } /*! Inserts a new column with empty cells at the column index \a newIndex. Valid values for \a newIndex range from 0 (inserts a row at the left) to \a rowCount (appends a row at the right). \see insertRow */ void QCPLayoutGrid::insertColumn(int newIndex) { if (mElements.isEmpty() || mElements.first().isEmpty()) // if grid is completely empty, add first cell { expandTo(1, 1); return; } if (newIndex < 0) newIndex = 0; if (newIndex > columnCount()) newIndex = columnCount(); mColumnStretchFactors.insert(newIndex, 1); for (int row=0; row<rowCount(); ++row) mElements[row].insert(newIndex, (QCPLayoutElement*)0); } /* inherits documentation from base class */ void QCPLayoutGrid::updateLayout() { QVector<int> minColWidths, minRowHeights, maxColWidths, maxRowHeights; getMinimumRowColSizes(&minColWidths, &minRowHeights); getMaximumRowColSizes(&maxColWidths, &maxRowHeights); int totalRowSpacing = (rowCount()-1) * mRowSpacing; int totalColSpacing = (columnCount()-1) * mColumnSpacing; QVector<int> colWidths = getSectionSizes(maxColWidths, minColWidths, mColumnStretchFactors.toVector(), mRect.width()-totalColSpacing); QVector<int> rowHeights = getSectionSizes(maxRowHeights, minRowHeights, mRowStretchFactors.toVector(), mRect.height()-totalRowSpacing); // go through cells and set rects accordingly: int yOffset = mRect.top(); for (int row=0; row<rowCount(); ++row) { if (row > 0) yOffset += rowHeights.at(row-1)+mRowSpacing; int xOffset = mRect.left(); for (int col=0; col<columnCount(); ++col) { if (col > 0) xOffset += colWidths.at(col-1)+mColumnSpacing; if (mElements.at(row).at(col)) mElements.at(row).at(col)->setOuterRect(QRect(xOffset, yOffset, colWidths.at(col), rowHeights.at(row))); } } } /* inherits documentation from base class */ int QCPLayoutGrid::elementCount() const { return rowCount()*columnCount(); } /* inherits documentation from base class */ QCPLayoutElement *QCPLayoutGrid::elementAt(int index) const { if (index >= 0 && index < elementCount()) return mElements.at(index / columnCount()).at(index % columnCount()); else return 0; } /* inherits documentation from base class */ QCPLayoutElement *QCPLayoutGrid::takeAt(int index) { if (QCPLayoutElement *el = elementAt(index)) { releaseElement(el); mElements[index / columnCount()][index % columnCount()] = 0; return el; } else { qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; return 0; } } /* inherits documentation from base class */ bool QCPLayoutGrid::take(QCPLayoutElement *element) { if (element) { for (int i=0; i<elementCount(); ++i) { if (elementAt(i) == element) { takeAt(i); return true; } } qDebug() << Q_FUNC_INFO << "Element not in this layout, couldn't take"; } else qDebug() << Q_FUNC_INFO << "Can't take null element"; return false; } /* inherits documentation from base class */ QList<QCPLayoutElement*> QCPLayoutGrid::elements(bool recursive) const { QList<QCPLayoutElement*> result; int colC = columnCount(); int rowC = rowCount(); #if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) result.reserve(colC*rowC); #endif for (int row=0; row<rowC; ++row) { for (int col=0; col<colC; ++col) { result.append(mElements.at(row).at(col)); } } if (recursive) { int c = result.size(); for (int i=0; i<c; ++i) { if (result.at(i)) result << result.at(i)->elements(recursive); } } return result; } /*! Simplifies the layout by collapsing rows and columns which only contain empty cells. */ void QCPLayoutGrid::simplify() { // remove rows with only empty cells: for (int row=rowCount()-1; row>=0; --row) { bool hasElements = false; for (int col=0; col<columnCount(); ++col) { if (mElements.at(row).at(col)) { hasElements = true; break; } } if (!hasElements) { mRowStretchFactors.removeAt(row); mElements.removeAt(row); if (mElements.isEmpty()) // removed last element, also remove stretch factor (wouldn't happen below because also columnCount changed to 0 now) mColumnStretchFactors.clear(); } } // remove columns with only empty cells: for (int col=columnCount()-1; col>=0; --col) { bool hasElements = false; for (int row=0; row<rowCount(); ++row) { if (mElements.at(row).at(col)) { hasElements = true; break; } } if (!hasElements) { mColumnStretchFactors.removeAt(col); for (int row=0; row<rowCount(); ++row) mElements[row].removeAt(col); } } } /* inherits documentation from base class */ QSize QCPLayoutGrid::minimumSizeHint() const { QVector<int> minColWidths, minRowHeights; getMinimumRowColSizes(&minColWidths, &minRowHeights); QSize result(0, 0); for (int i=0; i<minColWidths.size(); ++i) result.rwidth() += minColWidths.at(i); for (int i=0; i<minRowHeights.size(); ++i) result.rheight() += minRowHeights.at(i); result.rwidth() += qMax(0, columnCount()-1) * mColumnSpacing + mMargins.left() + mMargins.right(); result.rheight() += qMax(0, rowCount()-1) * mRowSpacing + mMargins.top() + mMargins.bottom(); return result; } /* inherits documentation from base class */ QSize QCPLayoutGrid::maximumSizeHint() const { QVector<int> maxColWidths, maxRowHeights; getMaximumRowColSizes(&maxColWidths, &maxRowHeights); QSize result(0, 0); for (int i=0; i<maxColWidths.size(); ++i) result.setWidth(qMin(result.width()+maxColWidths.at(i), QWIDGETSIZE_MAX)); for (int i=0; i<maxRowHeights.size(); ++i) result.setHeight(qMin(result.height()+maxRowHeights.at(i), QWIDGETSIZE_MAX)); result.rwidth() += qMax(0, columnCount()-1) * mColumnSpacing + mMargins.left() + mMargins.right(); result.rheight() += qMax(0, rowCount()-1) * mRowSpacing + mMargins.top() + mMargins.bottom(); return result; } /*! \internal Places the minimum column widths and row heights into \a minColWidths and \a minRowHeights respectively. The minimum height of a row is the largest minimum height of any element in that row. The minimum width of a column is the largest minimum width of any element in that column. This is a helper function for \ref updateLayout. \see getMaximumRowColSizes */ void QCPLayoutGrid::getMinimumRowColSizes(QVector<int> *minColWidths, QVector<int> *minRowHeights) const { *minColWidths = QVector<int>(columnCount(), 0); *minRowHeights = QVector<int>(rowCount(), 0); for (int row=0; row<rowCount(); ++row) { for (int col=0; col<columnCount(); ++col) { if (mElements.at(row).at(col)) { QSize minHint = mElements.at(row).at(col)->minimumSizeHint(); QSize min = mElements.at(row).at(col)->minimumSize(); QSize final(min.width() > 0 ? min.width() : minHint.width(), min.height() > 0 ? min.height() : minHint.height()); if (minColWidths->at(col) < final.width()) (*minColWidths)[col] = final.width(); if (minRowHeights->at(row) < final.height()) (*minRowHeights)[row] = final.height(); } } } } /*! \internal Places the maximum column widths and row heights into \a maxColWidths and \a maxRowHeights respectively. The maximum height of a row is the smallest maximum height of any element in that row. The maximum width of a column is the smallest maximum width of any element in that column. This is a helper function for \ref updateLayout. \see getMinimumRowColSizes */ void QCPLayoutGrid::getMaximumRowColSizes(QVector<int> *maxColWidths, QVector<int> *maxRowHeights) const { *maxColWidths = QVector<int>(columnCount(), QWIDGETSIZE_MAX); *maxRowHeights = QVector<int>(rowCount(), QWIDGETSIZE_MAX); for (int row=0; row<rowCount(); ++row) { for (int col=0; col<columnCount(); ++col) { if (mElements.at(row).at(col)) { QSize maxHint = mElements.at(row).at(col)->maximumSizeHint(); QSize max = mElements.at(row).at(col)->maximumSize(); QSize final(max.width() < QWIDGETSIZE_MAX ? max.width() : maxHint.width(), max.height() < QWIDGETSIZE_MAX ? max.height() : maxHint.height()); if (maxColWidths->at(col) > final.width()) (*maxColWidths)[col] = final.width(); if (maxRowHeights->at(row) > final.height()) (*maxRowHeights)[row] = final.height(); } } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLayoutInset //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLayoutInset \brief A layout that places child elements aligned to the border or arbitrarily positioned Elements are placed either aligned to the border or at arbitrary position in the area of the layout. Which placement applies is controlled with the \ref InsetPlacement (\ref setInsetPlacement). Elements are added via \ref addElement(QCPLayoutElement *element, Qt::Alignment alignment) or addElement(QCPLayoutElement *element, const QRectF &rect). If the first method is used, the inset placement will default to \ref ipBorderAligned and the element will be aligned according to the \a alignment parameter. The second method defaults to \ref ipFree and allows placing elements at arbitrary position and size, defined by \a rect. The alignment or rect can be set via \ref setInsetAlignment or \ref setInsetRect, respectively. This is the layout that every QCPAxisRect has as \ref QCPAxisRect::insetLayout. */ /* start documentation of inline functions */ /*! \fn virtual void QCPLayoutInset::simplify() The QCPInsetLayout does not need simplification since it can never have empty cells due to its linear index structure. This method does nothing. */ /* end documentation of inline functions */ /*! Creates an instance of QCPLayoutInset and sets default values. */ QCPLayoutInset::QCPLayoutInset() { } QCPLayoutInset::~QCPLayoutInset() { // clear all child layout elements. This is important because only the specific layouts know how // to handle removing elements (clear calls virtual removeAt method to do that). clear(); } /*! Returns the placement type of the element with the specified \a index. */ QCPLayoutInset::InsetPlacement QCPLayoutInset::insetPlacement(int index) const { if (elementAt(index)) return mInsetPlacement.at(index); else { qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; return ipFree; } } /*! Returns the alignment of the element with the specified \a index. The alignment only has a meaning, if the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned. */ Qt::Alignment QCPLayoutInset::insetAlignment(int index) const { if (elementAt(index)) return mInsetAlignment.at(index); else { qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; return 0; } } /*! Returns the rect of the element with the specified \a index. The rect only has a meaning, if the inset placement (\ref setInsetPlacement) is \ref ipFree. */ QRectF QCPLayoutInset::insetRect(int index) const { if (elementAt(index)) return mInsetRect.at(index); else { qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; return QRectF(); } } /*! Sets the inset placement type of the element with the specified \a index to \a placement. \see InsetPlacement */ void QCPLayoutInset::setInsetPlacement(int index, QCPLayoutInset::InsetPlacement placement) { if (elementAt(index)) mInsetPlacement[index] = placement; else qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; } /*! If the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned, this function is used to set the alignment of the element with the specified \a index to \a alignment. \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other alignment flags will be ignored. */ void QCPLayoutInset::setInsetAlignment(int index, Qt::Alignment alignment) { if (elementAt(index)) mInsetAlignment[index] = alignment; else qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; } /*! If the inset placement (\ref setInsetPlacement) is \ref ipFree, this function is used to set the position and size of the element with the specified \a index to \a rect. \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right corner of the layout, with 35% width and height of the parent layout. Note that the minimum and maximum sizes of the embedded element (\ref QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize) are enforced. */ void QCPLayoutInset::setInsetRect(int index, const QRectF &rect) { if (elementAt(index)) mInsetRect[index] = rect; else qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; } /* inherits documentation from base class */ void QCPLayoutInset::updateLayout() { for (int i=0; i<mElements.size(); ++i) { QRect insetRect; QSize finalMinSize, finalMaxSize; QSize minSizeHint = mElements.at(i)->minimumSizeHint(); QSize maxSizeHint = mElements.at(i)->maximumSizeHint(); finalMinSize.setWidth(mElements.at(i)->minimumSize().width() > 0 ? mElements.at(i)->minimumSize().width() : minSizeHint.width()); finalMinSize.setHeight(mElements.at(i)->minimumSize().height() > 0 ? mElements.at(i)->minimumSize().height() : minSizeHint.height()); finalMaxSize.setWidth(mElements.at(i)->maximumSize().width() < QWIDGETSIZE_MAX ? mElements.at(i)->maximumSize().width() : maxSizeHint.width()); finalMaxSize.setHeight(mElements.at(i)->maximumSize().height() < QWIDGETSIZE_MAX ? mElements.at(i)->maximumSize().height() : maxSizeHint.height()); if (mInsetPlacement.at(i) == ipFree) { insetRect = QRect(rect().x()+rect().width()*mInsetRect.at(i).x(), rect().y()+rect().height()*mInsetRect.at(i).y(), rect().width()*mInsetRect.at(i).width(), rect().height()*mInsetRect.at(i).height()); if (insetRect.size().width() < finalMinSize.width()) insetRect.setWidth(finalMinSize.width()); if (insetRect.size().height() < finalMinSize.height()) insetRect.setHeight(finalMinSize.height()); if (insetRect.size().width() > finalMaxSize.width()) insetRect.setWidth(finalMaxSize.width()); if (insetRect.size().height() > finalMaxSize.height()) insetRect.setHeight(finalMaxSize.height()); } else if (mInsetPlacement.at(i) == ipBorderAligned) { insetRect.setSize(finalMinSize); Qt::Alignment al = mInsetAlignment.at(i); if (al.testFlag(Qt::AlignLeft)) insetRect.moveLeft(rect().x()); else if (al.testFlag(Qt::AlignRight)) insetRect.moveRight(rect().x()+rect().width()); else insetRect.moveLeft(rect().x()+rect().width()*0.5-finalMinSize.width()*0.5); // default to Qt::AlignHCenter if (al.testFlag(Qt::AlignTop)) insetRect.moveTop(rect().y()); else if (al.testFlag(Qt::AlignBottom)) insetRect.moveBottom(rect().y()+rect().height()); else insetRect.moveTop(rect().y()+rect().height()*0.5-finalMinSize.height()*0.5); // default to Qt::AlignVCenter } mElements.at(i)->setOuterRect(insetRect); } } /* inherits documentation from base class */ int QCPLayoutInset::elementCount() const { return mElements.size(); } /* inherits documentation from base class */ QCPLayoutElement *QCPLayoutInset::elementAt(int index) const { if (index >= 0 && index < mElements.size()) return mElements.at(index); else return 0; } /* inherits documentation from base class */ QCPLayoutElement *QCPLayoutInset::takeAt(int index) { if (QCPLayoutElement *el = elementAt(index)) { releaseElement(el); mElements.removeAt(index); mInsetPlacement.removeAt(index); mInsetAlignment.removeAt(index); mInsetRect.removeAt(index); return el; } else { qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; return 0; } } /* inherits documentation from base class */ bool QCPLayoutInset::take(QCPLayoutElement *element) { if (element) { for (int i=0; i<elementCount(); ++i) { if (elementAt(i) == element) { takeAt(i); return true; } } qDebug() << Q_FUNC_INFO << "Element not in this layout, couldn't take"; } else qDebug() << Q_FUNC_INFO << "Can't take null element"; return false; } /*! The inset layout is sensitive to events only at areas where its child elements are sensitive. If the selectTest method of any of the child elements returns a positive number for \a pos, this method returns a value corresponding to 0.99 times the parent plot's selection tolerance. The inset layout is not selectable itself by default. So if \a onlySelectable is true, -1.0 is returned. See \ref QCPLayerable::selectTest for a general explanation of this virtual method. */ double QCPLayoutInset::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable) return -1; for (int i=0; i<mElements.size(); ++i) { // inset layout shall only return positive selectTest, if actually an inset object is at pos // else it would block the entire underlying QCPAxisRect with its surface. if (mElements.at(i)->selectTest(pos, onlySelectable) >= 0) return mParentPlot->selectionTolerance()*0.99; } return -1; } /*! Adds the specified \a element to the layout as an inset aligned at the border (\ref setInsetAlignment is initialized with \ref ipBorderAligned). The alignment is set to \a alignment. \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other alignment flags will be ignored. \see addElement(QCPLayoutElement *element, const QRectF &rect) */ void QCPLayoutInset::addElement(QCPLayoutElement *element, Qt::Alignment alignment) { if (element) { if (element->layout()) // remove from old layout first element->layout()->take(element); mElements.append(element); mInsetPlacement.append(ipBorderAligned); mInsetAlignment.append(alignment); mInsetRect.append(QRectF(0.6, 0.6, 0.4, 0.4)); adoptElement(element); } else qDebug() << Q_FUNC_INFO << "Can't add null element"; } /*! Adds the specified \a element to the layout as an inset with free positioning/sizing (\ref setInsetAlignment is initialized with \ref ipFree). The position and size is set to \a rect. \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right corner of the layout, with 35% width and height of the parent layout. \see addElement(QCPLayoutElement *element, Qt::Alignment alignment) */ void QCPLayoutInset::addElement(QCPLayoutElement *element, const QRectF &rect) { if (element) { if (element->layout()) // remove from old layout first element->layout()->take(element); mElements.append(element); mInsetPlacement.append(ipFree); mInsetAlignment.append(Qt::AlignRight|Qt::AlignTop); mInsetRect.append(rect); adoptElement(element); } else qDebug() << Q_FUNC_INFO << "Can't add null element"; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLineEnding //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLineEnding \brief Handles the different ending decorations for line-like items \image html QCPLineEnding.png "The various ending styles currently supported" For every ending a line-like item has, an instance of this class exists. For example, QCPItemLine has two endings which can be set with QCPItemLine::setHead and QCPItemLine::setTail. The styles themselves are defined via the enum QCPLineEnding::EndingStyle. Most decorations can be modified regarding width and length, see \ref setWidth and \ref setLength. The direction of the ending decoration (e.g. direction an arrow is pointing) is controlled by the line-like item. For example, when both endings of a QCPItemLine are set to be arrows, they will point to opposite directions, e.g. "outward". This can be changed by \ref setInverted, which would make the respective arrow point inward. Note that due to the overloaded QCPLineEnding constructor, you may directly specify a QCPLineEnding::EndingStyle where actually a QCPLineEnding is expected, e.g. \code myItemLine->setHead(QCPLineEnding::esSpikeArrow) \endcode */ /*! Creates a QCPLineEnding instance with default values (style \ref esNone). */ QCPLineEnding::QCPLineEnding() : mStyle(esNone), mWidth(8), mLength(10), mInverted(false) { } /*! Creates a QCPLineEnding instance with the specified values. */ QCPLineEnding::QCPLineEnding(QCPLineEnding::EndingStyle style, double width, double length, bool inverted) : mStyle(style), mWidth(width), mLength(length), mInverted(inverted) { } /*! Sets the style of the ending decoration. */ void QCPLineEnding::setStyle(QCPLineEnding::EndingStyle style) { mStyle = style; } /*! Sets the width of the ending decoration, if the style supports it. On arrows, for example, the width defines the size perpendicular to the arrow's pointing direction. \see setLength */ void QCPLineEnding::setWidth(double width) { mWidth = width; } /*! Sets the length of the ending decoration, if the style supports it. On arrows, for example, the length defines the size in pointing direction. \see setWidth */ void QCPLineEnding::setLength(double length) { mLength = length; } /*! Sets whether the ending decoration shall be inverted. For example, an arrow decoration will point inward when \a inverted is set to true. Note that also the \a width direction is inverted. For symmetrical ending styles like arrows or discs, this doesn't make a difference. However, asymmetric styles like \ref esHalfBar are affected by it, which can be used to control to which side the half bar points to. */ void QCPLineEnding::setInverted(bool inverted) { mInverted = inverted; } /*! \internal Returns the maximum pixel radius the ending decoration might cover, starting from the position the decoration is drawn at (typically a line ending/\ref QCPItemPosition of an item). This is relevant for clipping. Only omit painting of the decoration when the position where the decoration is supposed to be drawn is farther away from the clipping rect than the returned distance. */ double QCPLineEnding::boundingDistance() const { switch (mStyle) { case esNone: return 0; case esFlatArrow: case esSpikeArrow: case esLineArrow: case esSkewedBar: return qSqrt(mWidth*mWidth+mLength*mLength); // items that have width and length case esDisc: case esSquare: case esDiamond: case esBar: case esHalfBar: return mWidth*1.42; // items that only have a width -> width*sqrt(2) } return 0; } /*! Starting from the origin of this line ending (which is style specific), returns the length covered by the line ending symbol, in backward direction. For example, the \ref esSpikeArrow has a shorter real length than a \ref esFlatArrow, even if both have the same \ref setLength value, because the spike arrow has an inward curved back, which reduces the length along its center axis (the drawing origin for arrows is at the tip). This function is used for precise, style specific placement of line endings, for example in QCPAxes. */ double QCPLineEnding::realLength() const { switch (mStyle) { case esNone: case esLineArrow: case esSkewedBar: case esBar: case esHalfBar: return 0; case esFlatArrow: return mLength; case esDisc: case esSquare: case esDiamond: return mWidth*0.5; case esSpikeArrow: return mLength*0.8; } return 0; } /*! \internal Draws the line ending with the specified \a painter at the position \a pos. The direction of the line ending is controlled with \a dir. */ void QCPLineEnding::draw(QCPPainter *painter, const QVector2D &pos, const QVector2D &dir) const { if (mStyle == esNone) return; QVector2D lengthVec(dir.normalized()); if (lengthVec.isNull()) lengthVec = QVector2D(1, 0); QVector2D widthVec(-lengthVec.y(), lengthVec.x()); lengthVec *= mLength*(mInverted ? -1 : 1); widthVec *= mWidth*0.5*(mInverted ? -1 : 1); QPen penBackup = painter->pen(); QBrush brushBackup = painter->brush(); QPen miterPen = penBackup; miterPen.setJoinStyle(Qt::MiterJoin); // to make arrow heads spikey QBrush brush(painter->pen().color(), Qt::SolidPattern); switch (mStyle) { case esNone: break; case esFlatArrow: { QPointF points[3] = {pos.toPointF(), (pos-lengthVec+widthVec).toPointF(), (pos-lengthVec-widthVec).toPointF() }; painter->setPen(miterPen); painter->setBrush(brush); painter->drawConvexPolygon(points, 3); painter->setBrush(brushBackup); painter->setPen(penBackup); break; } case esSpikeArrow: { QPointF points[4] = {pos.toPointF(), (pos-lengthVec+widthVec).toPointF(), (pos-lengthVec*0.8).toPointF(), (pos-lengthVec-widthVec).toPointF() }; painter->setPen(miterPen); painter->setBrush(brush); painter->drawConvexPolygon(points, 4); painter->setBrush(brushBackup); painter->setPen(penBackup); break; } case esLineArrow: { QPointF points[3] = {(pos-lengthVec+widthVec).toPointF(), pos.toPointF(), (pos-lengthVec-widthVec).toPointF() }; painter->setPen(miterPen); painter->drawPolyline(points, 3); painter->setPen(penBackup); break; } case esDisc: { painter->setBrush(brush); painter->drawEllipse(pos.toPointF(), mWidth*0.5, mWidth*0.5); painter->setBrush(brushBackup); break; } case esSquare: { QVector2D widthVecPerp(-widthVec.y(), widthVec.x()); QPointF points[4] = {(pos-widthVecPerp+widthVec).toPointF(), (pos-widthVecPerp-widthVec).toPointF(), (pos+widthVecPerp-widthVec).toPointF(), (pos+widthVecPerp+widthVec).toPointF() }; painter->setPen(miterPen); painter->setBrush(brush); painter->drawConvexPolygon(points, 4); painter->setBrush(brushBackup); painter->setPen(penBackup); break; } case esDiamond: { QVector2D widthVecPerp(-widthVec.y(), widthVec.x()); QPointF points[4] = {(pos-widthVecPerp).toPointF(), (pos-widthVec).toPointF(), (pos+widthVecPerp).toPointF(), (pos+widthVec).toPointF() }; painter->setPen(miterPen); painter->setBrush(brush); painter->drawConvexPolygon(points, 4); painter->setBrush(brushBackup); painter->setPen(penBackup); break; } case esBar: { painter->drawLine((pos+widthVec).toPointF(), (pos-widthVec).toPointF()); break; } case esHalfBar: { painter->drawLine((pos+widthVec).toPointF(), pos.toPointF()); break; } case esSkewedBar: { if (qFuzzyIsNull(painter->pen().widthF()) && !painter->modes().testFlag(QCPPainter::pmNonCosmetic)) { // if drawing with cosmetic pen (perfectly thin stroke, happens only in vector exports), draw bar exactly on tip of line painter->drawLine((pos+widthVec+lengthVec*0.2*(mInverted?-1:1)).toPointF(), (pos-widthVec-lengthVec*0.2*(mInverted?-1:1)).toPointF()); } else { // if drawing with thick (non-cosmetic) pen, shift bar a little in line direction to prevent line from sticking through bar slightly painter->drawLine((pos+widthVec+lengthVec*0.2*(mInverted?-1:1)+dir.normalized()*qMax(1.0, (double)painter->pen().widthF())*0.5).toPointF(), (pos-widthVec-lengthVec*0.2*(mInverted?-1:1)+dir.normalized()*qMax(1.0, (double)painter->pen().widthF())*0.5).toPointF()); } break; } } } /*! \internal \overload Draws the line ending. The direction is controlled with the \a angle parameter in radians. */ void QCPLineEnding::draw(QCPPainter *painter, const QVector2D &pos, double angle) const { draw(painter, pos, QVector2D(qCos(angle), qSin(angle))); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPGrid //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPGrid \brief Responsible for drawing the grid of a QCPAxis. This class is tightly bound to QCPAxis. Every axis owns a grid instance and uses it to draw the grid lines, sub grid lines and zero-line. You can interact with the grid of an axis via \ref QCPAxis::grid. Normally, you don't need to create an instance of QCPGrid yourself. The axis and grid drawing was split into two classes to allow them to be placed on different layers (both QCPAxis and QCPGrid inherit from QCPLayerable). Thus it is possible to have the grid in the background and the axes in the foreground, and any plottables/items in between. This described situation is the default setup, see the QCPLayer documentation. */ /*! Creates a QCPGrid instance and sets default values. You shouldn't instantiate grids on their own, since every QCPAxis brings its own QCPGrid. */ QCPGrid::QCPGrid(QCPAxis *parentAxis) : QCPLayerable(parentAxis->parentPlot(), "", parentAxis), mParentAxis(parentAxis) { // warning: this is called in QCPAxis constructor, so parentAxis members should not be accessed/called setParent(parentAxis); setPen(QPen(QColor(200,200,200), 0, Qt::DotLine)); setSubGridPen(QPen(QColor(220,220,220), 0, Qt::DotLine)); setZeroLinePen(QPen(QColor(200,200,200), 0, Qt::SolidLine)); setSubGridVisible(false); setAntialiased(false); setAntialiasedSubGrid(false); setAntialiasedZeroLine(false); } /*! Sets whether grid lines at sub tick marks are drawn. \see setSubGridPen */ void QCPGrid::setSubGridVisible(bool visible) { mSubGridVisible = visible; } /*! Sets whether sub grid lines are drawn antialiased. */ void QCPGrid::setAntialiasedSubGrid(bool enabled) { mAntialiasedSubGrid = enabled; } /*! Sets whether zero lines are drawn antialiased. */ void QCPGrid::setAntialiasedZeroLine(bool enabled) { mAntialiasedZeroLine = enabled; } /*! Sets the pen with which (major) grid lines are drawn. */ void QCPGrid::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen with which sub grid lines are drawn. */ void QCPGrid::setSubGridPen(const QPen &pen) { mSubGridPen = pen; } /*! Sets the pen with which zero lines are drawn. Zero lines are lines at value coordinate 0 which may be drawn with a different pen than other grid lines. To disable zero lines and just draw normal grid lines at zero, set \a pen to Qt::NoPen. */ void QCPGrid::setZeroLinePen(const QPen &pen) { mZeroLinePen = pen; } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing the major grid lines. This is the antialiasing state the painter passed to the \ref draw method is in by default. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased */ void QCPGrid::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeGrid); } /*! \internal Draws grid lines and sub grid lines at the positions of (sub) ticks of the parent axis, spanning over the complete axis rect. Also draws the zero line, if appropriate (\ref setZeroLinePen). */ void QCPGrid::draw(QCPPainter *painter) { if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } if (mSubGridVisible) drawSubGridLines(painter); drawGridLines(painter); } /*! \internal Draws the main grid lines and possibly a zero line with the specified painter. This is a helper function called by \ref draw. */ void QCPGrid::drawGridLines(QCPPainter *painter) const { if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } int lowTick = mParentAxis->mLowestVisibleTick; int highTick = mParentAxis->mHighestVisibleTick; double t; // helper variable, result of coordinate-to-pixel transforms if (mParentAxis->orientation() == Qt::Horizontal) { // draw zeroline: int zeroLineIndex = -1; if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) { applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); painter->setPen(mZeroLinePen); double epsilon = mParentAxis->range().size()*1E-6; // for comparing double to zero for (int i=lowTick; i <= highTick; ++i) { if (qAbs(mParentAxis->mTickVector.at(i)) < epsilon) { zeroLineIndex = i; t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // x painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); break; } } } // draw grid lines: applyDefaultAntialiasingHint(painter); painter->setPen(mPen); for (int i=lowTick; i <= highTick; ++i) { if (i == zeroLineIndex) continue; // don't draw a gridline on top of the zeroline t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // x painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); } } else { // draw zeroline: int zeroLineIndex = -1; if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) { applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); painter->setPen(mZeroLinePen); double epsilon = mParentAxis->mRange.size()*1E-6; // for comparing double to zero for (int i=lowTick; i <= highTick; ++i) { if (qAbs(mParentAxis->mTickVector.at(i)) < epsilon) { zeroLineIndex = i; t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // y painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); break; } } } // draw grid lines: applyDefaultAntialiasingHint(painter); painter->setPen(mPen); for (int i=lowTick; i <= highTick; ++i) { if (i == zeroLineIndex) continue; // don't draw a gridline on top of the zeroline t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // y painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); } } } /*! \internal Draws the sub grid lines with the specified painter. This is a helper function called by \ref draw. */ void QCPGrid::drawSubGridLines(QCPPainter *painter) const { if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } applyAntialiasingHint(painter, mAntialiasedSubGrid, QCP::aeSubGrid); double t; // helper variable, result of coordinate-to-pixel transforms painter->setPen(mSubGridPen); if (mParentAxis->orientation() == Qt::Horizontal) { for (int i=0; i<mParentAxis->mSubTickVector.size(); ++i) { t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // x painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); } } else { for (int i=0; i<mParentAxis->mSubTickVector.size(); ++i) { t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // y painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPAxis //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPAxis \brief Manages a single axis inside a QCustomPlot. Usually doesn't need to be instantiated externally. Access %QCustomPlot's default four axes via QCustomPlot::xAxis (bottom), QCustomPlot::yAxis (left), QCustomPlot::xAxis2 (top) and QCustomPlot::yAxis2 (right). Axes are always part of an axis rect, see QCPAxisRect. \image html AxisNamesOverview.png <center>Naming convention of axis parts</center> \n \image html AxisRectSpacingOverview.png <center>Overview of the spacings and paddings that define the geometry of an axis. The dashed gray line on the left represents the QCustomPlot widget border.</center> */ /* start of documentation of inline functions */ /*! \fn Qt::Orientation QCPAxis::orientation() const Returns the orientation of the axis. The axis orientation (horizontal or vertical) is deduced from the axis type (left, top, right or bottom). */ /*! \fn QCPGrid *QCPAxis::grid() const Returns the \ref QCPGrid instance belonging to this axis. Access it to set details about the way the grid is displayed. */ /* end of documentation of inline functions */ /* start of documentation of signals */ /*! \fn void QCPAxis::ticksRequest() This signal is emitted when \ref setAutoTicks is false and the axis is about to generate tick labels for a replot. Modifying the tick positions can be done with \ref setTickVector. If you also want to control the tick labels, set \ref setAutoTickLabels to false and also provide the labels with \ref setTickVectorLabels. If you only want static ticks you probably don't need this signal, since you can just set the tick vector (and possibly tick label vector) once. However, if you want to provide ticks (and maybe labels) dynamically, e.g. depending on the current axis range, connect a slot to this signal and set the vector/vectors there. */ /*! \fn void QCPAxis::rangeChanged(const QCPRange &newRange) This signal is emitted when the range of this axis has changed. You can connect it to the \ref setRange slot of another axis to communicate the new range to the other axis, in order for it to be synchronized. */ /*! \fn void QCPAxis::selectionChanged(QCPAxis::SelectableParts selection) This signal is emitted when the selection state of this axis has changed, either by user interaction or by a direct call to \ref setSelectedParts. */ /* end of documentation of signals */ /*! Constructs an Axis instance of Type \a type for the axis rect \a parent. You shouldn't instantiate axes directly, rather use \ref QCPAxisRect::addAxis. */ QCPAxis::QCPAxis(QCPAxisRect *parent, AxisType type) : QCPLayerable(parent->parentPlot(), "", parent), // axis base: mAxisType(type), mAxisRect(parent), mOffset(0), mPadding(5), mOrientation((type == atBottom || type == atTop) ? Qt::Horizontal : Qt::Vertical), mSelectableParts(spAxis | spTickLabels | spAxisLabel), mSelectedParts(spNone), mBasePen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), mSelectedBasePen(QPen(Qt::blue, 2)), mLowerEnding(QCPLineEnding::esNone), mUpperEnding(QCPLineEnding::esNone), // axis label: mLabelPadding(0), mLabel(""), mLabelFont(mParentPlot->font()), mSelectedLabelFont(QFont(mLabelFont.family(), mLabelFont.pointSize(), QFont::Bold)), mLabelColor(Qt::black), mSelectedLabelColor(Qt::blue), // tick labels: mTickLabelPadding(0), mTickLabels(true), mAutoTickLabels(true), mTickLabelRotation(0), mTickLabelType(ltNumber), mTickLabelFont(mParentPlot->font()), mSelectedTickLabelFont(QFont(mTickLabelFont.family(), mTickLabelFont.pointSize(), QFont::Bold)), mTickLabelColor(Qt::black), mSelectedTickLabelColor(Qt::blue), mDateTimeFormat("hh:mm:ss\ndd.MM.yy"), mNumberPrecision(6), mNumberFormatChar('g'), mNumberBeautifulPowers(true), mNumberMultiplyCross(false), // ticks and subticks: mTicks(true), mTickStep(1), mSubTickCount(4), mAutoTickCount(6), mAutoTicks(true), mAutoTickStep(true), mAutoSubTicks(true), mTickLengthIn(5), mTickLengthOut(0), mSubTickLengthIn(2), mSubTickLengthOut(0), mTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), mSelectedTickPen(QPen(Qt::blue, 2)), mSubTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), mSelectedSubTickPen(QPen(Qt::blue, 2)), // scale and range: mRange(0, 5), mRangeReversed(false), mScaleType(stLinear), mScaleLogBase(10), mScaleLogBaseLogInv(1.0/qLn(mScaleLogBase)), // internal members: mGrid(new QCPGrid(this)), mLabelCache(16), // cache at most 16 (tick) labels mLowestVisibleTick(0), mHighestVisibleTick(-1), mExponentialChar('e'), // will be updated with locale sensitive values in setupTickVector mPositiveSignChar('+'), // will be updated with locale sensitive values in setupTickVector mCachedMarginValid(false), mCachedMargin(0) { mGrid->setVisible(false); setAntialiased(false); setLayer(mParentPlot->currentLayer()); // it's actually on that layer already, but we want it in front of the grid, so we place it on there again if (type == atTop) { setTickLabelPadding(3); setLabelPadding(6); } else if (type == atRight) { setTickLabelPadding(7); setLabelPadding(12); } else if (type == atBottom) { setTickLabelPadding(3); setLabelPadding(3); } else if (type == atLeft) { setTickLabelPadding(5); setLabelPadding(10); } } /* No documentation as it is a property getter */ QString QCPAxis::numberFormat() const { QString result; result.append(mNumberFormatChar); if (mNumberBeautifulPowers) { result.append("b"); if (mNumberMultiplyCross) result.append("c"); } return result; } /*! Sets whether the axis uses a linear scale or a logarithmic scale. If \a type is set to \ref stLogarithmic, the logarithm base can be set with \ref setScaleLogBase. In logarithmic axis scaling, major tick marks appear at all powers of the logarithm base. Properties like tick step (\ref setTickStep) don't apply in logarithmic scaling. If you wish a decimal base but less major ticks, consider choosing a logarithm base of 100, 1000 or even higher. If \a type is \ref stLogarithmic and the number format (\ref setNumberFormat) uses the 'b' option (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 [superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" part). To only display the decimal power, set the number precision to zero with \ref setNumberPrecision. */ void QCPAxis::setScaleType(ScaleType type) { if (mScaleType != type) { mScaleType = type; if (mScaleType == stLogarithmic) mRange = mRange.sanitizedForLogScale(); mCachedMarginValid = false; } } /*! If \ref setScaleType is set to \ref stLogarithmic, \a base will be the logarithm base of the scaling. In logarithmic axis scaling, major tick marks appear at all powers of \a base. Properties like tick step (\ref setTickStep) don't apply in logarithmic scaling. If you wish a decimal base but less major ticks, consider choosing \a base 100, 1000 or even higher. */ void QCPAxis::setScaleLogBase(double base) { if (base > 1) { mScaleLogBase = base; mScaleLogBaseLogInv = 1.0/qLn(mScaleLogBase); // buffer for faster baseLog() calculation mCachedMarginValid = false; } else qDebug() << Q_FUNC_INFO << "Invalid logarithmic scale base (must be greater 1):" << base; } /*! Sets the range of the axis. This slot may be connected with the \ref rangeChanged signal of another axis so this axis is always synchronized with the other axis range, when it changes. To invert the direction of an axis, use \ref setRangeReversed. */ void QCPAxis::setRange(const QCPRange &range) { if (range.lower == mRange.lower && range.upper == mRange.upper) return; if (!QCPRange::validRange(range)) return; if (mScaleType == stLogarithmic) { mRange = range.sanitizedForLogScale(); } else { mRange = range.sanitizedForLinScale(); } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. (When \ref QCustomPlot::setInteractions contains iSelectAxes.) However, even when \a selectable is set to a value not allowing the selection of a specific part, it is still possible to set the selection of this part manually, by calling \ref setSelectedParts directly. \see SelectablePart, setSelectedParts */ void QCPAxis::setSelectableParts(const SelectableParts &selectable) { mSelectableParts = selectable; } /*! Sets the selected state of the respective axis parts described by \ref SelectablePart. When a part is selected, it uses a different pen/font. The entire selection mechanism for axes is handled automatically when \ref QCustomPlot::setInteractions contains iSelectAxes. You only need to call this function when you wish to change the selection state manually. This function can change the selection state of a part, independent of the \ref setSelectableParts setting. emits the \ref selectionChanged signal when \a selected is different from the previous selection state. \see SelectablePart, setSelectableParts, selectTest, setSelectedBasePen, setSelectedTickPen, setSelectedSubTickPen, setSelectedTickLabelFont, setSelectedLabelFont, setSelectedTickLabelColor, setSelectedLabelColor */ void QCPAxis::setSelectedParts(const SelectableParts &selected) { if (mSelectedParts != selected) { if (mSelectedParts.testFlag(spTickLabels) != selected.testFlag(spTickLabels)) mLabelCache.clear(); mSelectedParts = selected; emit selectionChanged(mSelectedParts); } } /*! \overload Sets the lower and upper bound of the axis range. To invert the direction of an axis, use \ref setRangeReversed. There is also a slot to set a range, see \ref setRange(const QCPRange &range). */ void QCPAxis::setRange(double lower, double upper) { if (lower == mRange.lower && upper == mRange.upper) return; if (!QCPRange::validRange(lower, upper)) return; mRange.lower = lower; mRange.upper = upper; if (mScaleType == stLogarithmic) { mRange = mRange.sanitizedForLogScale(); } else { mRange = mRange.sanitizedForLinScale(); } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! \overload Sets the range of the axis. The \a position coordinate indicates together with the \a alignment parameter, where the new range will be positioned. \a size defines the size of the new axis range. \a alignment may be Qt::AlignLeft, Qt::AlignRight or Qt::AlignCenter. This will cause the left border, right border, or center of the range to be aligned with \a position. Any other values of \a alignment will default to Qt::AlignCenter. */ void QCPAxis::setRange(double position, double size, Qt::AlignmentFlag alignment) { if (alignment == Qt::AlignLeft) setRange(position, position+size); else if (alignment == Qt::AlignRight) setRange(position-size, position); else // alignment == Qt::AlignCenter setRange(position-size/2.0, position+size/2.0); } /*! Sets the lower bound of the axis range. The upper bound is not changed. \see setRange */ void QCPAxis::setRangeLower(double lower) { if (mRange.lower == lower) return; mRange.lower = lower; if (mScaleType == stLogarithmic) { mRange = mRange.sanitizedForLogScale(); } else { mRange = mRange.sanitizedForLinScale(); } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! Sets the upper bound of the axis range. The lower bound is not changed. \see setRange */ void QCPAxis::setRangeUpper(double upper) { if (mRange.upper == upper) return; mRange.upper = upper; if (mScaleType == stLogarithmic) { mRange = mRange.sanitizedForLogScale(); } else { mRange = mRange.sanitizedForLinScale(); } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! Sets whether the axis range (direction) is displayed reversed. Normally, the values on horizontal axes increase left to right, on vertical axes bottom to top. When \a reversed is set to true, the direction of increasing values is inverted. Note that the range and data interface stays the same for reversed axes, e.g. the \a lower part of the \ref setRange interface will still reference the mathematically smaller number than the \a upper part. */ void QCPAxis::setRangeReversed(bool reversed) { if (mRangeReversed != reversed) { mRangeReversed = reversed; mCachedMarginValid = false; } } /*! Sets whether the tick positions should be calculated automatically (either from an automatically generated tick step or a tick step provided manually via \ref setTickStep, see \ref setAutoTickStep). If \a on is set to false, you must provide the tick positions manually via \ref setTickVector. For these manual ticks you may let QCPAxis generate the appropriate labels automatically by leaving \ref setAutoTickLabels set to true. If you also wish to control the displayed labels manually, set \ref setAutoTickLabels to false and provide the label strings with \ref setTickVectorLabels. If you need dynamically calculated tick vectors (and possibly tick label vectors), set the vectors in a slot connected to the \ref ticksRequest signal. */ void QCPAxis::setAutoTicks(bool on) { if (mAutoTicks != on) { mAutoTicks = on; mCachedMarginValid = false; } } /*! When \ref setAutoTickStep is true, \a approximateCount determines how many ticks should be generated in the visible range, approximately. It's not guaranteed that this number of ticks is met exactly, but approximately within a tolerance of about two. Only values greater than zero are accepted as \a approximateCount. */ void QCPAxis::setAutoTickCount(int approximateCount) { if (mAutoTickCount != approximateCount) { if (approximateCount > 0) { mAutoTickCount = approximateCount; mCachedMarginValid = false; } else qDebug() << Q_FUNC_INFO << "approximateCount must be greater than zero:" << approximateCount; } } /*! Sets whether the tick labels are generated automatically. Depending on the tick label type (\ref ltNumber or \ref ltDateTime), the labels will either show the coordinate as floating point number (\ref setNumberFormat), or a date/time formatted according to \ref setDateTimeFormat. If \a on is set to false, you should provide the tick labels via \ref setTickVectorLabels. This is usually used in a combination with \ref setAutoTicks set to false for complete control over tick positions and labels, e.g. when the ticks should be at multiples of pi and show "2pi", "3pi" etc. as tick labels. If you need dynamically calculated tick vectors (and possibly tick label vectors), set the vectors in a slot connected to the \ref ticksRequest signal. */ void QCPAxis::setAutoTickLabels(bool on) { if (mAutoTickLabels != on) { mAutoTickLabels = on; mCachedMarginValid = false; } } /*! Sets whether the tick step, i.e. the interval between two (major) ticks, is calculated automatically. If \a on is set to true, the axis finds a tick step that is reasonable for human readable plots. The number of ticks the algorithm aims for within the visible range can be set with \ref setAutoTickCount. If \a on is set to false, you may set the tick step manually with \ref setTickStep. */ void QCPAxis::setAutoTickStep(bool on) { if (mAutoTickStep != on) { mAutoTickStep = on; mCachedMarginValid = false; } } /*! Sets whether the number of sub ticks in one tick interval is determined automatically. This works, as long as the tick step mantissa is a multiple of 0.5. When \ref setAutoTickStep is enabled, this is always the case. When \a on is set to false, you may set the sub tick count with \ref setSubTickCount manually. */ void QCPAxis::setAutoSubTicks(bool on) { if (mAutoSubTicks != on) { mAutoSubTicks = on; mCachedMarginValid = false; } } /*! Sets whether tick marks are displayed. Note that setting \a show to false does not imply that tick labels are invisible, too. To achieve that, see \ref setTickLabels. */ void QCPAxis::setTicks(bool show) { if (mTicks != show) { mTicks = show; mCachedMarginValid = false; } } /*! Sets whether tick labels are displayed. Tick labels are the numbers drawn next to tick marks. */ void QCPAxis::setTickLabels(bool show) { if (mTickLabels != show) { mTickLabels = show; mCachedMarginValid = false; } } /*! Sets the distance between the axis base line (including any outward ticks) and the tick labels. \see setLabelPadding, setPadding */ void QCPAxis::setTickLabelPadding(int padding) { if (mTickLabelPadding != padding) { mTickLabelPadding = padding; mCachedMarginValid = false; } } /*! Sets whether the tick labels display numbers or dates/times. If \a type is set to \ref ltNumber, the format specifications of \ref setNumberFormat apply. If \a type is set to \ref ltDateTime, the format specifications of \ref setDateTimeFormat apply. In QCustomPlot, date/time coordinates are <tt>double</tt> numbers representing the seconds since 1970-01-01T00:00:00 UTC. This format can be retrieved from QDateTime objects with the QDateTime::toTime_t() function. Since this only gives a resolution of one second, there is also the QDateTime::toMSecsSinceEpoch() function which returns the timespan described above in milliseconds. Divide its return value by 1000.0 to get a value with the format needed for date/time plotting, with a resolution of one millisecond. Using the toMSecsSinceEpoch function allows dates that go back to 2nd January 4713 B.C. (represented by a negative number), unlike the toTime_t function, which works with unsigned integers and thus only goes back to 1st January 1970. So both for range and accuracy, use of toMSecsSinceEpoch()/1000.0 should be preferred as key coordinate for date/time axes. \see setTickLabels */ void QCPAxis::setTickLabelType(LabelType type) { if (mTickLabelType != type) { mTickLabelType = type; mCachedMarginValid = false; } } /*! Sets the font of the tick labels. \see setTickLabels, setTickLabelColor */ void QCPAxis::setTickLabelFont(const QFont &font) { if (font != mTickLabelFont) { mTickLabelFont = font; mCachedMarginValid = false; mLabelCache.clear(); } } /*! Sets the color of the tick labels. \see setTickLabels, setTickLabelFont */ void QCPAxis::setTickLabelColor(const QColor &color) { if (color != mTickLabelColor) { mTickLabelColor = color; mCachedMarginValid = false; mLabelCache.clear(); } } /*! Sets the rotation of the tick labels. If \a degrees is zero, the labels are drawn normally. Else, the tick labels are drawn rotated by \a degrees clockwise. The specified angle is bound to values from -90 to 90 degrees. If \a degrees is exactly -90, 0 or 90, the tick labels are centered on the tick coordinate. For other angles, the label is drawn with an offset such that it seems to point toward or away from the tick mark. */ void QCPAxis::setTickLabelRotation(double degrees) { if (!qFuzzyIsNull(degrees-mTickLabelRotation)) { mTickLabelRotation = qBound(-90.0, degrees, 90.0); mCachedMarginValid = false; mLabelCache.clear(); } } /*! Sets the format in which dates and times are displayed as tick labels, if \ref setTickLabelType is \ref ltDateTime. for details about the \a format string, see the documentation of QDateTime::toString(). Newlines can be inserted with "\n". */ void QCPAxis::setDateTimeFormat(const QString &format) { if (mDateTimeFormat != format) { mDateTimeFormat = format; mCachedMarginValid = false; mLabelCache.clear(); } } /*! Sets the number format for the numbers drawn as tick labels (if tick label type is \ref ltNumber). This \a formatCode is an extended version of the format code used e.g. by QString::number() and QLocale::toString(). For reference about that, see the "Argument Formats" section in the detailed description of the QString class. \a formatCode is a string of one, two or three characters. The first character is identical to the normal format code used by Qt. In short, this means: 'e'/'E' scientific format, 'f' fixed format, 'g'/'G' scientific or fixed, whichever is shorter. The second and third characters are optional and specific to QCustomPlot:\n If the first char was 'e' or 'g', numbers are/might be displayed in the scientific format, e.g. "5.5e9", which is ugly in a plot. So when the second char of \a formatCode is set to 'b' (for "beautiful"), those exponential numbers are formatted in a more natural way, i.e. "5.5 [multiplication sign] 10 [superscript] 9". By default, the multiplication sign is a centered dot. If instead a cross should be shown (as is usual in the USA), the third char of \a formatCode can be set to 'c'. The inserted multiplication signs are the UTF-8 characters 215 (0xD7) for the cross and 183 (0xB7) for the dot. If the scale type (\ref setScaleType) is \ref stLogarithmic and the \a formatCode uses the 'b' option (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 [superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" part). To only display the decimal power, set the number precision to zero with \ref setNumberPrecision. Examples for \a formatCode: \li \c g normal format code behaviour. If number is small, fixed format is used, if number is large, normal scientific format is used \li \c gb If number is small, fixed format is used, if number is large, scientific format is used with beautifully typeset decimal powers and a dot as multiplication sign \li \c ebc All numbers are in scientific format with beautifully typeset decimal power and a cross as multiplication sign \li \c fb illegal format code, since fixed format doesn't support (or need) beautifully typeset decimal powers. Format code will be reduced to 'f'. \li \c hello illegal format code, since first char is not 'e', 'E', 'f', 'g' or 'G'. Current format code will not be changed. */ void QCPAxis::setNumberFormat(const QString &formatCode) { if (formatCode.isEmpty()) { qDebug() << Q_FUNC_INFO << "Passed formatCode is empty"; return; } mLabelCache.clear(); mCachedMarginValid = false; // interpret first char as number format char: QString allowedFormatChars = "eEfgG"; if (allowedFormatChars.contains(formatCode.at(0))) { mNumberFormatChar = formatCode.at(0).toLatin1(); } else { qDebug() << Q_FUNC_INFO << "Invalid number format code (first char not in 'eEfgG'):" << formatCode; return; } if (formatCode.length() < 2) { mNumberBeautifulPowers = false; mNumberMultiplyCross = false; return; } // interpret second char as indicator for beautiful decimal powers: if (formatCode.at(1) == 'b' && (mNumberFormatChar == 'e' || mNumberFormatChar == 'g')) { mNumberBeautifulPowers = true; } else { qDebug() << Q_FUNC_INFO << "Invalid number format code (second char not 'b' or first char neither 'e' nor 'g'):" << formatCode; return; } if (formatCode.length() < 3) { mNumberMultiplyCross = false; return; } // interpret third char as indicator for dot or cross multiplication symbol: if (formatCode.at(2) == 'c') { mNumberMultiplyCross = true; } else if (formatCode.at(2) == 'd') { mNumberMultiplyCross = false; } else { qDebug() << Q_FUNC_INFO << "Invalid number format code (third char neither 'c' nor 'd'):" << formatCode; return; } } /*! Sets the precision of the tick label numbers. See QLocale::toString(double i, char f, int prec) for details. The effect of precisions are most notably for number Formats starting with 'e', see \ref setNumberFormat If the scale type (\ref setScaleType) is \ref stLogarithmic and the number format (\ref setNumberFormat) uses the 'b' format code (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 [superscript] n", which looks unnatural for logarithmic scaling (the redundant "1 [multiplication sign]" part). To only display the decimal power "10 [superscript] n", set \a precision to zero. */ void QCPAxis::setNumberPrecision(int precision) { if (mNumberPrecision != precision) { mNumberPrecision = precision; mCachedMarginValid = false; } } /*! If \ref setAutoTickStep is set to false, use this function to set the tick step manually. The tick step is the interval between (major) ticks, in plot coordinates. \see setSubTickCount */ void QCPAxis::setTickStep(double step) { if (mTickStep != step) { mTickStep = step; mCachedMarginValid = false; } } /*! If you want full control over what ticks (and possibly labels) the axes show, this function is used to set the coordinates at which ticks will appear.\ref setAutoTicks must be disabled, else the provided tick vector will be overwritten with automatically generated tick coordinates upon replot. The labels of the ticks can be generated automatically when \ref setAutoTickLabels is left enabled. If it is disabled, you can set the labels manually with \ref setTickVectorLabels. \a vec is a vector containing the positions of the ticks, in plot coordinates. \warning \a vec must be sorted in ascending order, no additional checks are made to ensure this. \see setTickVectorLabels */ void QCPAxis::setTickVector(const QVector<double> &vec) { // don't check whether mTickVector != vec here, because it takes longer than we would save mTickVector = vec; mCachedMarginValid = false; } /*! If you want full control over what ticks and labels the axes show, this function is used to set a number of QStrings that will be displayed at the tick positions which you need to provide with \ref setTickVector. These two vectors should have the same size. (Note that you need to disable \ref setAutoTicks and \ref setAutoTickLabels first.) \a vec is a vector containing the labels of the ticks. The entries correspond to the respective indices in the tick vector, passed via \ref setTickVector. \see setTickVector */ void QCPAxis::setTickVectorLabels(const QVector<QString> &vec) { // don't check whether mTickVectorLabels != vec here, because it takes longer than we would save mTickVectorLabels = vec; mCachedMarginValid = false; } /*! Sets the length of the ticks in pixels. \a inside is the length the ticks will reach inside the plot and \a outside is the length they will reach outside the plot. If \a outside is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks. \see setSubTickLength */ void QCPAxis::setTickLength(int inside, int outside) { if (mTickLengthIn != inside) { mTickLengthIn = inside; } if (mTickLengthOut != outside) { mTickLengthOut = outside; mCachedMarginValid = false; // only outside tick length can change margin } } /*! Sets the length of the inward ticks in pixels. \a inside is the length the ticks will reach inside the plot. \see setTickLengthOut, setSubTickLength */ void QCPAxis::setTickLengthIn(int inside) { if (mTickLengthIn != inside) { mTickLengthIn = inside; } } /*! Sets the length of the outward ticks in pixels. \a outside is the length the ticks will reach outside the plot. If \a outside is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks. \see setTickLengthIn, setSubTickLength */ void QCPAxis::setTickLengthOut(int outside) { if (mTickLengthOut != outside) { mTickLengthOut = outside; mCachedMarginValid = false; // only outside tick length can change margin } } /*! Sets the number of sub ticks in one (major) tick step. A sub tick count of three for example, divides the tick intervals in four sub intervals. By default, the number of sub ticks is chosen automatically in a reasonable manner as long as the mantissa of the tick step is a multiple of 0.5. When \ref setAutoTickStep is enabled, this is always the case. If you want to disable automatic sub tick count and use this function to set the count manually, see \ref setAutoSubTicks. */ void QCPAxis::setSubTickCount(int count) { mSubTickCount = count; } /*! Sets the length of the subticks in pixels. \a inside is the length the subticks will reach inside the plot and \a outside is the length they will reach outside the plot. If \a outside is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks. */ void QCPAxis::setSubTickLength(int inside, int outside) { if (mSubTickLengthIn != inside) { mSubTickLengthIn = inside; } if (mSubTickLengthOut != outside) { mSubTickLengthOut = outside; mCachedMarginValid = false; // only outside tick length can change margin } } /*! Sets the length of the inward subticks in pixels. \a inside is the length the subticks will reach inside the plot. \see setSubTickLengthOut, setTickLength */ void QCPAxis::setSubTickLengthIn(int inside) { if (mSubTickLengthIn != inside) { mSubTickLengthIn = inside; } } /*! Sets the length of the outward subticks in pixels. \a outside is the length the subticks will reach outside the plot. If \a outside is greater than zero, the tick labels will increase their distance to the axis accordingly, so they won't collide with the ticks. \see setSubTickLengthIn, setTickLength */ void QCPAxis::setSubTickLengthOut(int outside) { if (mSubTickLengthOut != outside) { mSubTickLengthOut = outside; mCachedMarginValid = false; // only outside tick length can change margin } } /*! Sets the pen, the axis base line is drawn with. \see setTickPen, setSubTickPen */ void QCPAxis::setBasePen(const QPen &pen) { mBasePen = pen; } /*! Sets the pen, tick marks will be drawn with. \see setTickLength, setBasePen */ void QCPAxis::setTickPen(const QPen &pen) { mTickPen = pen; } /*! Sets the pen, subtick marks will be drawn with. \see setSubTickCount, setSubTickLength, setBasePen */ void QCPAxis::setSubTickPen(const QPen &pen) { mSubTickPen = pen; } /*! Sets the font of the axis label. \see setLabelColor */ void QCPAxis::setLabelFont(const QFont &font) { if (mLabelFont != font) { mLabelFont = font; mCachedMarginValid = false; } } /*! Sets the color of the axis label. \see setLabelFont */ void QCPAxis::setLabelColor(const QColor &color) { mLabelColor = color; } /*! Sets the text of the axis label that will be shown below/above or next to the axis, depending on its orientation. To disable axis labels, pass an empty string as \a str. */ void QCPAxis::setLabel(const QString &str) { if (mLabel != str) { mLabel = str; mCachedMarginValid = false; } } /*! Sets the distance between the tick labels and the axis label. \see setTickLabelPadding, setPadding */ void QCPAxis::setLabelPadding(int padding) { if (mLabelPadding != padding) { mLabelPadding = padding; mCachedMarginValid = false; } } /*! Sets the padding of the axis. When \ref QCPAxisRect::setAutoMargins is enabled, the padding is the additional outer most space, that is left blank. The axis padding has no meaning if \ref QCPAxisRect::setAutoMargins is disabled. \see setLabelPadding, setTickLabelPadding */ void QCPAxis::setPadding(int padding) { if (mPadding != padding) { mPadding = padding; mCachedMarginValid = false; } } /*! Sets the offset the axis has to its axis rect side. If an axis rect side has multiple axes, only the offset of the inner most axis has meaning. The offset of the other axes is controlled automatically, to place the axes at appropriate positions to prevent them from overlapping. */ void QCPAxis::setOffset(int offset) { mOffset = offset; } /*! Sets the font that is used for tick labels when they are selected. \see setTickLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedTickLabelFont(const QFont &font) { if (font != mSelectedTickLabelFont) { mSelectedTickLabelFont = font; mLabelCache.clear(); // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts } } /*! Sets the font that is used for the axis label when it is selected. \see setLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedLabelFont(const QFont &font) { mSelectedLabelFont = font; // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts } /*! Sets the color that is used for tick labels when they are selected. \see setTickLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedTickLabelColor(const QColor &color) { if (color != mSelectedTickLabelColor) { mSelectedTickLabelColor = color; mLabelCache.clear(); } } /*! Sets the color that is used for the axis label when it is selected. \see setLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedLabelColor(const QColor &color) { mSelectedLabelColor = color; } /*! Sets the pen that is used to draw the axis base line when selected. \see setBasePen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedBasePen(const QPen &pen) { mSelectedBasePen = pen; } /*! Sets the pen that is used to draw the (major) ticks when selected. \see setTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedTickPen(const QPen &pen) { mSelectedTickPen = pen; } /*! Sets the pen that is used to draw the subticks when selected. \see setSubTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions */ void QCPAxis::setSelectedSubTickPen(const QPen &pen) { mSelectedSubTickPen = pen; } /*! Sets the style for the lower axis ending. See the documentation of QCPLineEnding for available styles. For horizontal axes, this method refers to the left ending, for vertical axes the bottom ending. Note that this meaning does not change when the axis range is reversed with \ref setRangeReversed. \see setUpperEnding */ void QCPAxis::setLowerEnding(const QCPLineEnding &ending) { mLowerEnding = ending; } /*! Sets the style for the upper axis ending. See the documentation of QCPLineEnding for available styles. For horizontal axes, this method refers to the right ending, for vertical axes the top ending. Note that this meaning does not change when the axis range is reversed with \ref setRangeReversed. \see setLowerEnding */ void QCPAxis::setUpperEnding(const QCPLineEnding &ending) { mUpperEnding = ending; } /*! If the scale type (\ref setScaleType) is \ref stLinear, \a diff is added to the lower and upper bounds of the range. The range is simply moved by \a diff. If the scale type is \ref stLogarithmic, the range bounds are multiplied by \a diff. This corresponds to an apparent "linear" move in logarithmic scaling by a distance of log(diff). */ void QCPAxis::moveRange(double diff) { if (mScaleType == stLinear) { mRange.lower += diff; mRange.upper += diff; } else // mScaleType == stLogarithmic { mRange.lower *= diff; mRange.upper *= diff; } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! Scales the range of this axis by \a factor around the coordinate \a center. For example, if \a factor is 2.0, \a center is 1.0, then the axis range will double its size, and the point at coordinate 1.0 won't have changed its position in the QCustomPlot widget (i.e. coordinates around 1.0 will have moved symmetrically closer to 1.0). */ void QCPAxis::scaleRange(double factor, double center) { if (mScaleType == stLinear) { QCPRange newRange; newRange.lower = (mRange.lower-center)*factor + center; newRange.upper = (mRange.upper-center)*factor + center; if (QCPRange::validRange(newRange)) mRange = newRange.sanitizedForLinScale(); } else // mScaleType == stLogarithmic { if ((mRange.upper < 0 && center < 0) || (mRange.upper > 0 && center > 0)) // make sure center has same sign as range { QCPRange newRange; newRange.lower = pow(mRange.lower/center, factor)*center; newRange.upper = pow(mRange.upper/center, factor)*center; if (QCPRange::validRange(newRange)) mRange = newRange.sanitizedForLogScale(); } else qDebug() << Q_FUNC_INFO << "Center of scaling operation doesn't lie in same logarithmic sign domain as range:" << center; } mCachedMarginValid = false; emit rangeChanged(mRange); } /*! Scales the range of this axis to have a certain scale \a ratio to \a otherAxis. The scaling will be done around the center of the current axis range. For example, if \a ratio is 1, this axis is the \a yAxis and \a otherAxis is \a xAxis, graphs plotted with those axes will appear in a 1:1 aspect ratio, independent of the aspect ratio the axis rect has. This is an operation that changes the range of this axis once, it doesn't fix the scale ratio indefinitely. Note that calling this function in the constructor of the QCustomPlot's parent won't have the desired effect, since the widget dimensions aren't defined yet, and a resizeEvent will follow. */ void QCPAxis::setScaleRatio(const QCPAxis *otherAxis, double ratio) { int otherPixelSize, ownPixelSize; if (otherAxis->orientation() == Qt::Horizontal) otherPixelSize = otherAxis->axisRect()->width(); else otherPixelSize = otherAxis->axisRect()->height(); if (orientation() == Qt::Horizontal) ownPixelSize = axisRect()->width(); else ownPixelSize = axisRect()->height(); double newRangeSize = ratio*otherAxis->range().size()*ownPixelSize/(double)otherPixelSize; setRange(range().center(), newRangeSize, Qt::AlignCenter); } /*! Transforms \a value, in pixel coordinates of the QCustomPlot widget, to axis coordinates. */ double QCPAxis::pixelToCoord(double value) const { if (orientation() == Qt::Horizontal) { if (mScaleType == stLinear) { if (!mRangeReversed) return (value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.lower; else return -(value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.upper; } else // mScaleType == stLogarithmic { if (!mRangeReversed) return pow(mRange.upper/mRange.lower, (value-mAxisRect->left())/(double)mAxisRect->width())*mRange.lower; else return pow(mRange.upper/mRange.lower, (mAxisRect->left()-value)/(double)mAxisRect->width())*mRange.upper; } } else // orientation() == Qt::Vertical { if (mScaleType == stLinear) { if (!mRangeReversed) return (mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.lower; else return -(mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.upper; } else // mScaleType == stLogarithmic { if (!mRangeReversed) return pow(mRange.upper/mRange.lower, (mAxisRect->bottom()-value)/(double)mAxisRect->height())*mRange.lower; else return pow(mRange.upper/mRange.lower, (value-mAxisRect->bottom())/(double)mAxisRect->height())*mRange.upper; } } } /*! Transforms \a value, in coordinates of the axis, to pixel coordinates of the QCustomPlot widget. */ double QCPAxis::coordToPixel(double value) const { if (orientation() == Qt::Horizontal) { if (mScaleType == stLinear) { if (!mRangeReversed) return (value-mRange.lower)/mRange.size()*mAxisRect->width()+mAxisRect->left(); else return (mRange.upper-value)/mRange.size()*mAxisRect->width()+mAxisRect->left(); } else // mScaleType == stLogarithmic { if (value >= 0 && mRange.upper < 0) // invalid value for logarithmic scale, just draw it outside visible range return !mRangeReversed ? mAxisRect->right()+200 : mAxisRect->left()-200; else if (value <= 0 && mRange.upper > 0) // invalid value for logarithmic scale, just draw it outside visible range return !mRangeReversed ? mAxisRect->left()-200 : mAxisRect->right()+200; else { if (!mRangeReversed) return baseLog(value/mRange.lower)/baseLog(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); else return baseLog(mRange.upper/value)/baseLog(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); } } } else // orientation() == Qt::Vertical { if (mScaleType == stLinear) { if (!mRangeReversed) return mAxisRect->bottom()-(value-mRange.lower)/mRange.size()*mAxisRect->height(); else return mAxisRect->bottom()-(mRange.upper-value)/mRange.size()*mAxisRect->height(); } else // mScaleType == stLogarithmic { if (value >= 0 && mRange.upper < 0) // invalid value for logarithmic scale, just draw it outside visible range return !mRangeReversed ? mAxisRect->top()-200 : mAxisRect->bottom()+200; else if (value <= 0 && mRange.upper > 0) // invalid value for logarithmic scale, just draw it outside visible range return !mRangeReversed ? mAxisRect->bottom()+200 : mAxisRect->top()-200; else { if (!mRangeReversed) return mAxisRect->bottom()-baseLog(value/mRange.lower)/baseLog(mRange.upper/mRange.lower)*mAxisRect->height(); else return mAxisRect->bottom()-baseLog(mRange.upper/value)/baseLog(mRange.upper/mRange.lower)*mAxisRect->height(); } } } } /*! Returns the part of the axis that is hit by \a pos (in pixels). The return value of this function is independent of the user-selectable parts defined with \ref setSelectableParts. Further, this function does not change the current selection state of the axis. If the axis is not visible (\ref setVisible), this function always returns \ref spNone. \see setSelectedParts, setSelectableParts, QCustomPlot::setInteractions */ QCPAxis::SelectablePart QCPAxis::getPartAt(const QPointF &pos) const { if (!mVisible) return spNone; if (mAxisSelectionBox.contains(pos.toPoint())) return spAxis; else if (mTickLabelsSelectionBox.contains(pos.toPoint())) return spTickLabels; else if (mLabelSelectionBox.contains(pos.toPoint())) return spAxisLabel; else return spNone; } /* inherits documentation from base class */ double QCPAxis::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { if (!mParentPlot) return -1; SelectablePart part = getPartAt(pos); if ((onlySelectable && !mSelectableParts.testFlag(part)) || part == spNone) return -1; if (details) details->setValue(part); return mParentPlot->selectionTolerance()*0.99; } /*! Returns a list of all the plottables that have this axis as key or value axis. If you are only interested in plottables of type QCPGraph, see \ref graphs. \see graphs, items */ QList<QCPAbstractPlottable*> QCPAxis::plottables() const { QList<QCPAbstractPlottable*> result; if (!mParentPlot) return result; for (int i=0; i<mParentPlot->mPlottables.size(); ++i) { if (mParentPlot->mPlottables.at(i)->keyAxis() == this ||mParentPlot->mPlottables.at(i)->valueAxis() == this) result.append(mParentPlot->mPlottables.at(i)); } return result; } /*! Returns a list of all the graphs that have this axis as key or value axis. \see plottables, items */ QList<QCPGraph*> QCPAxis::graphs() const { QList<QCPGraph*> result; if (!mParentPlot) return result; for (int i=0; i<mParentPlot->mGraphs.size(); ++i) { if (mParentPlot->mGraphs.at(i)->keyAxis() == this || mParentPlot->mGraphs.at(i)->valueAxis() == this) result.append(mParentPlot->mGraphs.at(i)); } return result; } /*! Returns a list of all the items that are associated with this axis. An item is considered associated with an axis if at least one of its positions uses the axis as key or value axis. \see plottables, graphs */ QList<QCPAbstractItem*> QCPAxis::items() const { QList<QCPAbstractItem*> result; if (!mParentPlot) return result; for (int itemId=0; itemId<mParentPlot->mItems.size(); ++itemId) { QList<QCPItemPosition*> positions = mParentPlot->mItems.at(itemId)->positions(); for (int posId=0; posId<positions.size(); ++itemId) { if (positions.at(posId)->keyAxis() == this || positions.at(posId)->valueAxis() == this) { result.append(mParentPlot->mItems.at(itemId)); break; } } } return result; } /*! Transforms a margin side to the logically corresponding axis type. (QCP::msLeft to QCPAxis::atLeft, QCP::msRight to QCPAxis::atRight, etc.) */ QCPAxis::AxisType QCPAxis::marginSideToAxisType(QCP::MarginSide side) { switch (side) { case QCP::msLeft: return atLeft; case QCP::msRight: return atRight; case QCP::msTop: return atTop; case QCP::msBottom: return atBottom; default: break; } qDebug() << Q_FUNC_INFO << "Invalid margin side passed:" << (int)side; return atLeft; } /*! \internal This function is called to prepare the tick vector, sub tick vector and tick label vector. If \ref setAutoTicks is set to true, appropriate tick values are determined automatically via \ref generateAutoTicks. If it's set to false, the signal ticksRequest is emitted, which can be used to provide external tick positions. Then the sub tick vectors and tick label vectors are created. */ void QCPAxis::setupTickVectors() { if (!mParentPlot) return; if ((!mTicks && !mTickLabels && !mGrid->visible()) || mRange.size() <= 0) return; // fill tick vectors, either by auto generating or by notifying user to fill the vectors himself if (mAutoTicks) { generateAutoTicks(); } else { emit ticksRequest(); } visibleTickBounds(mLowestVisibleTick, mHighestVisibleTick); if (mTickVector.isEmpty()) { mSubTickVector.clear(); return; } // generate subticks between ticks: mSubTickVector.resize((mTickVector.size()-1)*mSubTickCount); if (mSubTickCount > 0) { double subTickStep = 0; double subTickPosition = 0; int subTickIndex = 0; bool done = false; int lowTick = mLowestVisibleTick > 0 ? mLowestVisibleTick-1 : mLowestVisibleTick; int highTick = mHighestVisibleTick < mTickVector.size()-1 ? mHighestVisibleTick+1 : mHighestVisibleTick; for (int i=lowTick+1; i<=highTick; ++i) { subTickStep = (mTickVector.at(i)-mTickVector.at(i-1))/(double)(mSubTickCount+1); for (int k=1; k<=mSubTickCount; ++k) { subTickPosition = mTickVector.at(i-1) + k*subTickStep; if (subTickPosition < mRange.lower) continue; if (subTickPosition > mRange.upper) { done = true; break; } mSubTickVector[subTickIndex] = subTickPosition; subTickIndex++; } if (done) break; } mSubTickVector.resize(subTickIndex); } // generate tick labels according to tick positions: mExponentialChar = mParentPlot->locale().exponential(); // will be needed when drawing the numbers generated here, in getTickLabelData() mPositiveSignChar = mParentPlot->locale().positiveSign(); // will be needed when drawing the numbers generated here, in getTickLabelData() if (mAutoTickLabels) { int vecsize = mTickVector.size(); mTickVectorLabels.resize(vecsize); if (mTickLabelType == ltNumber) { for (int i=mLowestVisibleTick; i<=mHighestVisibleTick; ++i) mTickVectorLabels[i] = mParentPlot->locale().toString(mTickVector.at(i), mNumberFormatChar, mNumberPrecision); } else if (mTickLabelType == ltDateTime) { for (int i=mLowestVisibleTick; i<=mHighestVisibleTick; ++i) { #if QT_VERSION < QT_VERSION_CHECK(4, 7, 0) // use fromMSecsSinceEpoch function if available, to gain sub-second accuracy on tick labels (e.g. for format "hh:mm:ss:zzz") mTickVectorLabels[i] = mParentPlot->locale().toString(QDateTime::fromTime_t(mTickVector.at(i)), mDateTimeFormat); #else mTickVectorLabels[i] = mParentPlot->locale().toString(QDateTime::fromMSecsSinceEpoch(mTickVector.at(i)*1000), mDateTimeFormat); #endif } } } else // mAutoTickLabels == false { if (mAutoTicks) // ticks generated automatically, but not ticklabels, so emit ticksRequest here for labels { emit ticksRequest(); } // make sure provided tick label vector has correct (minimal) length: if (mTickVectorLabels.size() < mTickVector.size()) mTickVectorLabels.resize(mTickVector.size()); } } /*! \internal If \ref setAutoTicks is set to true, this function is called by \ref setupTickVectors to generate reasonable tick positions (and subtick count). The algorithm tries to create approximately <tt>mAutoTickCount</tt> ticks (set via \ref setAutoTickCount). If the scale is logarithmic, \ref setAutoTickCount is ignored, and one tick is generated at every power of the current logarithm base, set via \ref setScaleLogBase. */ void QCPAxis::generateAutoTicks() { if (mScaleType == stLinear) { if (mAutoTickStep) { // Generate tick positions according to linear scaling: mTickStep = mRange.size()/(double)(mAutoTickCount+1e-10); // mAutoTickCount ticks on average, the small addition is to prevent jitter on exact integers double magnitudeFactor = qPow(10.0, qFloor(qLn(mTickStep)/qLn(10.0))); // get magnitude factor e.g. 0.01, 1, 10, 1000 etc. double tickStepMantissa = mTickStep/magnitudeFactor; if (tickStepMantissa < 5) { // round digit after decimal point to 0.5 mTickStep = (int)(tickStepMantissa*2)/2.0*magnitudeFactor; } else { // round to first digit in multiples of 2 mTickStep = (int)(tickStepMantissa/2.0)*2.0*magnitudeFactor; } } if (mAutoSubTicks) mSubTickCount = calculateAutoSubTickCount(mTickStep); // Generate tick positions according to mTickStep: qint64 firstStep = floor(mRange.lower/mTickStep); qint64 lastStep = ceil(mRange.upper/mTickStep); int tickcount = lastStep-firstStep+1; if (tickcount < 0) tickcount = 0; mTickVector.resize(tickcount); for (int i=0; i<tickcount; ++i) mTickVector[i] = (firstStep+i)*mTickStep; } else // mScaleType == stLogarithmic { // Generate tick positions according to logbase scaling: if (mRange.lower > 0 && mRange.upper > 0) // positive range { double lowerMag = basePow((int)floor(baseLog(mRange.lower))); double currentMag = lowerMag; mTickVector.clear(); mTickVector.append(currentMag); while (currentMag < mRange.upper && currentMag > 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case { currentMag *= mScaleLogBase; mTickVector.append(currentMag); } } else if (mRange.lower < 0 && mRange.upper < 0) // negative range { double lowerMag = -basePow((int)ceil(baseLog(-mRange.lower))); double currentMag = lowerMag; mTickVector.clear(); mTickVector.append(currentMag); while (currentMag < mRange.upper && currentMag < 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case { currentMag /= mScaleLogBase; mTickVector.append(currentMag); } } else // invalid range for logarithmic scale, because lower and upper have different sign { mTickVector.clear(); qDebug() << Q_FUNC_INFO << "Invalid range for logarithmic plot: " << mRange.lower << "-" << mRange.upper; } } } /*! \internal Called by generateAutoTicks when \ref setAutoSubTicks is set to true. Depending on the \a tickStep between two major ticks on the axis, a different number of sub ticks is appropriate. For Example taking 4 sub ticks for a \a tickStep of 1 makes more sense than taking 5 sub ticks, because this corresponds to a sub tick step of 0.2, instead of the less intuitive 0.16667. Note that a subtick count of 4 means dividing the major tick step into 5 sections. This is implemented by a hand made lookup for integer tick steps as well as fractional tick steps with a fractional part of (approximately) 0.5. If a tick step is different (i.e. has no fractional part close to 0.5), the currently set sub tick count (\ref setSubTickCount) is returned. */ int QCPAxis::calculateAutoSubTickCount(double tickStep) const { int result = mSubTickCount; // default to current setting, if no proper value can be found // get mantissa of tickstep: double magnitudeFactor = qPow(10.0, qFloor(qLn(tickStep)/qLn(10.0))); // get magnitude factor e.g. 0.01, 1, 10, 1000 etc. double tickStepMantissa = tickStep/magnitudeFactor; // separate integer and fractional part of mantissa: double epsilon = 0.01; double intPartf; int intPart; double fracPart = modf(tickStepMantissa, &intPartf); intPart = intPartf; // handle cases with (almost) integer mantissa: if (fracPart < epsilon || 1.0-fracPart < epsilon) { if (1.0-fracPart < epsilon) ++intPart; switch (intPart) { case 1: result = 4; break; // 1.0 -> 0.2 substep case 2: result = 3; break; // 2.0 -> 0.5 substep case 3: result = 2; break; // 3.0 -> 1.0 substep case 4: result = 3; break; // 4.0 -> 1.0 substep case 5: result = 4; break; // 5.0 -> 1.0 substep case 6: result = 2; break; // 6.0 -> 2.0 substep case 7: result = 6; break; // 7.0 -> 1.0 substep case 8: result = 3; break; // 8.0 -> 2.0 substep case 9: result = 2; break; // 9.0 -> 3.0 substep } } else { // handle cases with significantly fractional mantissa: if (qAbs(fracPart-0.5) < epsilon) // *.5 mantissa { switch (intPart) { case 1: result = 2; break; // 1.5 -> 0.5 substep case 2: result = 4; break; // 2.5 -> 0.5 substep case 3: result = 4; break; // 3.5 -> 0.7 substep case 4: result = 2; break; // 4.5 -> 1.5 substep case 5: result = 4; break; // 5.5 -> 1.1 substep (won't occur with autoTickStep from here on) case 6: result = 4; break; // 6.5 -> 1.3 substep case 7: result = 2; break; // 7.5 -> 2.5 substep case 8: result = 4; break; // 8.5 -> 1.7 substep case 9: result = 4; break; // 9.5 -> 1.9 substep } } // if mantissa fraction isnt 0.0 or 0.5, don't bother finding good sub tick marks, leave default } return result; } /*! \internal Draws the axis with the specified \a painter. The selection boxes (mAxisSelectionBox, mTickLabelsSelectionBox, mLabelSelectionBox) are set here, too. */ void QCPAxis::draw(QCPPainter *painter) { if (!mParentPlot) return; QPoint origin; if (mAxisType == atLeft) origin = mAxisRect->bottomLeft()+QPoint(-mOffset, 0); else if (mAxisType == atRight) origin = mAxisRect->bottomRight()+QPoint(+mOffset, 0); else if (mAxisType == atTop) origin = mAxisRect->topLeft()+QPoint(0, -mOffset); else if (mAxisType == atBottom) origin = mAxisRect->bottomLeft()+QPoint(0, +mOffset); double xCor = 0, yCor = 0; // paint system correction, for pixel exact matches (affects baselines and ticks of top/right axes) switch (mAxisType) { case atTop: yCor = -1; break; case atRight: xCor = 1; break; default: break; } int margin = 0; int lowTick = mLowestVisibleTick; int highTick = mHighestVisibleTick; double t; // helper variable, result of coordinate-to-pixel transforms // draw baseline: QLineF baseLine; painter->setPen(getBasePen()); if (orientation() == Qt::Horizontal) baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(mAxisRect->width()+xCor, yCor)); else baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(xCor, -mAxisRect->height()+yCor)); if (mRangeReversed) baseLine = QLineF(baseLine.p2(), baseLine.p1()); // won't make a difference for line itself, but for line endings later painter->drawLine(baseLine); // draw ticks: if (mTicks) { painter->setPen(getTickPen()); // direction of ticks ("inward" is right for left axis and left for right axis) int tickDir = (mAxisType == atBottom || mAxisType == atRight) ? -1 : 1; if (orientation() == Qt::Horizontal) { for (int i=lowTick; i <= highTick; ++i) { t = coordToPixel(mTickVector.at(i)); // x painter->drawLine(QLineF(t+xCor, origin.y()-mTickLengthOut*tickDir+yCor, t+xCor, origin.y()+mTickLengthIn*tickDir+yCor)); } } else { for (int i=lowTick; i <= highTick; ++i) { t = coordToPixel(mTickVector.at(i)); // y painter->drawLine(QLineF(origin.x()-mTickLengthOut*tickDir+xCor, t+yCor, origin.x()+mTickLengthIn*tickDir+xCor, t+yCor)); } } } // draw subticks: if (mTicks && mSubTickCount > 0) { painter->setPen(getSubTickPen()); // direction of ticks ("inward" is right for left axis and left for right axis) int tickDir = (mAxisType == atBottom || mAxisType == atRight) ? -1 : 1; if (orientation() == Qt::Horizontal) { for (int i=0; i<mSubTickVector.size(); ++i) // no need to check bounds because subticks are always only created inside current mRange { t = coordToPixel(mSubTickVector.at(i)); painter->drawLine(QLineF(t+xCor, origin.y()-mSubTickLengthOut*tickDir+yCor, t+xCor, origin.y()+mSubTickLengthIn*tickDir+yCor)); } } else { for (int i=0; i<mSubTickVector.size(); ++i) { t = coordToPixel(mSubTickVector.at(i)); painter->drawLine(QLineF(origin.x()-mSubTickLengthOut*tickDir+xCor, t+yCor, origin.x()+mSubTickLengthIn*tickDir+xCor, t+yCor)); } } } margin += qMax(0, qMax(mTickLengthOut, mSubTickLengthOut)); // draw axis base endings: bool antialiasingBackup = painter->antialiasing(); painter->setAntialiasing(true); // always want endings to be antialiased, even if base and ticks themselves aren't painter->setBrush(QBrush(basePen().color())); QVector2D baseLineVector(baseLine.dx(), baseLine.dy()); if (mLowerEnding.style() != QCPLineEnding::esNone) mLowerEnding.draw(painter, QVector2D(baseLine.p1())-baseLineVector.normalized()*mLowerEnding.realLength()*(mLowerEnding.inverted()?-1:1), -baseLineVector); if (mUpperEnding.style() != QCPLineEnding::esNone) mUpperEnding.draw(painter, QVector2D(baseLine.p2())+baseLineVector.normalized()*mUpperEnding.realLength()*(mUpperEnding.inverted()?-1:1), baseLineVector); painter->setAntialiasing(antialiasingBackup); // tick labels: QSize tickLabelsSize(0, 0); // size of largest tick label, for offset calculation of axis label if (mTickLabels) { margin += mTickLabelPadding; painter->setFont(getTickLabelFont()); painter->setPen(QPen(getTickLabelColor())); for (int i=lowTick; i <= highTick; ++i) { t = coordToPixel(mTickVector.at(i)); placeTickLabel(painter, t, margin, mTickVectorLabels.at(i), &tickLabelsSize); } } if (orientation() == Qt::Horizontal) margin += tickLabelsSize.height(); else margin += tickLabelsSize.width(); // axis label: QRect labelBounds; if (!mLabel.isEmpty()) { margin += mLabelPadding; painter->setFont(getLabelFont()); painter->setPen(QPen(getLabelColor())); labelBounds = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip, mLabel); if (mAxisType == atLeft) { QTransform oldTransform = painter->transform(); painter->translate((origin.x()-margin-labelBounds.height()), origin.y()); painter->rotate(-90); painter->drawText(0, 0, mAxisRect->height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, mLabel); painter->setTransform(oldTransform); } else if (mAxisType == atRight) { QTransform oldTransform = painter->transform(); painter->translate((origin.x()+margin+labelBounds.height()), origin.y()-mAxisRect->height()); painter->rotate(90); painter->drawText(0, 0, mAxisRect->height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, mLabel); painter->setTransform(oldTransform); } else if (mAxisType == atTop) painter->drawText(origin.x(), origin.y()-margin-labelBounds.height(), mAxisRect->width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, mLabel); else if (mAxisType == atBottom) painter->drawText(origin.x(), origin.y()+margin, mAxisRect->width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, mLabel); } // set selection boxes: int selAxisOutSize = qMax(qMax(mTickLengthOut, mSubTickLengthOut), mParentPlot->selectionTolerance()); int selAxisInSize = mParentPlot->selectionTolerance(); int selTickLabelSize = (orientation()==Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width()); int selTickLabelOffset = qMax(mTickLengthOut, mSubTickLengthOut)+mTickLabelPadding; int selLabelSize = labelBounds.height(); int selLabelOffset = selTickLabelOffset+selTickLabelSize+mLabelPadding; if (mAxisType == atLeft) { mAxisSelectionBox.setCoords(origin.x()-selAxisOutSize, mAxisRect->top(), origin.x()+selAxisInSize, mAxisRect->bottom()); mTickLabelsSelectionBox.setCoords(origin.x()-selTickLabelOffset-selTickLabelSize, mAxisRect->top(), origin.x()-selTickLabelOffset, mAxisRect->bottom()); mLabelSelectionBox.setCoords(origin.x()-selLabelOffset-selLabelSize, mAxisRect->top(), origin.x()-selLabelOffset, mAxisRect->bottom()); } else if (mAxisType == atRight) { mAxisSelectionBox.setCoords(origin.x()-selAxisInSize, mAxisRect->top(), origin.x()+selAxisOutSize, mAxisRect->bottom()); mTickLabelsSelectionBox.setCoords(origin.x()+selTickLabelOffset+selTickLabelSize, mAxisRect->top(), origin.x()+selTickLabelOffset, mAxisRect->bottom()); mLabelSelectionBox.setCoords(origin.x()+selLabelOffset+selLabelSize, mAxisRect->top(), origin.x()+selLabelOffset, mAxisRect->bottom()); } else if (mAxisType == atTop) { mAxisSelectionBox.setCoords(mAxisRect->left(), origin.y()-selAxisOutSize, mAxisRect->right(), origin.y()+selAxisInSize); mTickLabelsSelectionBox.setCoords(mAxisRect->left(), origin.y()-selTickLabelOffset-selTickLabelSize, mAxisRect->right(), origin.y()-selTickLabelOffset); mLabelSelectionBox.setCoords(mAxisRect->left(), origin.y()-selLabelOffset-selLabelSize, mAxisRect->right(), origin.y()-selLabelOffset); } else if (mAxisType == atBottom) { mAxisSelectionBox.setCoords(mAxisRect->left(), origin.y()-selAxisInSize, mAxisRect->right(), origin.y()+selAxisOutSize); mTickLabelsSelectionBox.setCoords(mAxisRect->left(), origin.y()+selTickLabelOffset+selTickLabelSize, mAxisRect->right(), origin.y()+selTickLabelOffset); mLabelSelectionBox.setCoords(mAxisRect->left(), origin.y()+selLabelOffset+selLabelSize, mAxisRect->right(), origin.y()+selLabelOffset); } // draw hitboxes for debug purposes: //painter->setBrush(Qt::NoBrush); //painter->drawRects(QVector<QRect>() << mAxisSelectionBox << mTickLabelsSelectionBox << mLabelSelectionBox); } /*! \internal Draws a single tick label with the provided \a painter, utilizing the internal label cache to significantly speed up drawing of labels that were drawn in previous calls. The tick label is always bound to an axis, the distance to the axis is controllable via \a distanceToAxis in pixels. The pixel position in the axis direction is passed in the \a position parameter. Hence for the bottom axis, \a position would indicate the horizontal pixel position (not coordinate), at which the label should be drawn. In order to later draw the axis label in a place that doesn't overlap with the tick labels, the largest tick label size is needed. This is acquired by passing a \a tickLabelsSize to the \ref drawTickLabel calls during the process of drawing all tick labels of one axis. In every call, \a tickLabelsSize is expanded, if the drawn label exceeds the value \a tickLabelsSize currently holds. The label is drawn with the font and pen that are currently set on the \a painter. To draw superscripted powers, the font is temporarily made smaller by a fixed factor (see \ref getTickLabelData). */ void QCPAxis::placeTickLabel(QCPPainter *painter, double position, int distanceToAxis, const QString &text, QSize *tickLabelsSize) { // warning: if you change anything here, also adapt getMaxTickLabelSize() accordingly! if (!mParentPlot) return; if (text.isEmpty()) return; QSize finalSize; QPointF labelAnchor; switch (mAxisType) { case atLeft: labelAnchor = QPointF(mAxisRect->left()-distanceToAxis-mOffset, position); break; case atRight: labelAnchor = QPointF(mAxisRect->right()+distanceToAxis+mOffset, position); break; case atTop: labelAnchor = QPointF(position, mAxisRect->top()-distanceToAxis-mOffset); break; case atBottom: labelAnchor = QPointF(position, mAxisRect->bottom()+distanceToAxis+mOffset); break; } if (parentPlot()->plottingHints().testFlag(QCP::phCacheLabels) && !painter->modes().testFlag(QCPPainter::pmNoCaching)) // label caching enabled { if (!mLabelCache.contains(text)) // no cached label exists, create it { CachedLabel *newCachedLabel = new CachedLabel; TickLabelData labelData = getTickLabelData(painter->font(), text); QPointF drawOffset = getTickLabelDrawOffset(labelData); newCachedLabel->offset = drawOffset+labelData.rotatedTotalBounds.topLeft(); newCachedLabel->pixmap = QPixmap(labelData.rotatedTotalBounds.size()); newCachedLabel->pixmap.fill(Qt::transparent); QCPPainter cachePainter(&newCachedLabel->pixmap); cachePainter.setPen(painter->pen()); drawTickLabel(&cachePainter, -labelData.rotatedTotalBounds.topLeft().x(), -labelData.rotatedTotalBounds.topLeft().y(), labelData); mLabelCache.insert(text, newCachedLabel, 1); } // draw cached label: const CachedLabel *cachedLabel = mLabelCache.object(text); // if label would be partly clipped by widget border on sides, don't draw it: if (orientation() == Qt::Horizontal) { if (labelAnchor.x()+cachedLabel->offset.x()+cachedLabel->pixmap.width() > mParentPlot->viewport().right() || labelAnchor.x()+cachedLabel->offset.x() < mParentPlot->viewport().left()) return; } else { if (labelAnchor.y()+cachedLabel->offset.y()+cachedLabel->pixmap.height() > mParentPlot->viewport().bottom() || labelAnchor.y()+cachedLabel->offset.y() < mParentPlot->viewport().top()) return; } painter->drawPixmap(labelAnchor+cachedLabel->offset, cachedLabel->pixmap); finalSize = cachedLabel->pixmap.size(); } else // label caching disabled, draw text directly on surface: { TickLabelData labelData = getTickLabelData(painter->font(), text); QPointF finalPosition = labelAnchor + getTickLabelDrawOffset(labelData); // if label would be partly clipped by widget border on sides, don't draw it: if (orientation() == Qt::Horizontal) { if (finalPosition.x()+(labelData.rotatedTotalBounds.width()+labelData.rotatedTotalBounds.left()) > mParentPlot->viewport().right() || finalPosition.x()+labelData.rotatedTotalBounds.left() < mParentPlot->viewport().left()) return; } else { if (finalPosition.y()+(labelData.rotatedTotalBounds.height()+labelData.rotatedTotalBounds.top()) > mParentPlot->viewport().bottom() || finalPosition.y()+labelData.rotatedTotalBounds.top() < mParentPlot->viewport().top()) return; } drawTickLabel(painter, finalPosition.x(), finalPosition.y(), labelData); finalSize = labelData.rotatedTotalBounds.size(); } // expand passed tickLabelsSize if current tick label is larger: if (finalSize.width() > tickLabelsSize->width()) tickLabelsSize->setWidth(finalSize.width()); if (finalSize.height() > tickLabelsSize->height()) tickLabelsSize->setHeight(finalSize.height()); } /*! \internal This is a \ref placeTickLabel helper function. Draws the tick label specified in \a labelData with \a painter at the pixel positions \a x and \a y. This function is used by \ref placeTickLabel to create new tick labels for the cache, or to directly draw the labels on the QCustomPlot surface when label caching is disabled, i.e. when QCP::phCacheLabels plotting hint is not set. */ void QCPAxis::drawTickLabel(QCPPainter *painter, double x, double y, const QCPAxis::TickLabelData &labelData) const { // backup painter settings that we're about to change: QTransform oldTransform = painter->transform(); QFont oldFont = painter->font(); // transform painter to position/rotation: painter->translate(x, y); if (!qFuzzyIsNull(mTickLabelRotation)) painter->rotate(mTickLabelRotation); // draw text: if (!labelData.expPart.isEmpty()) // indicator that beautiful powers must be used { painter->setFont(labelData.baseFont); painter->drawText(0, 0, 0, 0, Qt::TextDontClip, labelData.basePart); painter->setFont(labelData.expFont); painter->drawText(labelData.baseBounds.width()+1, 0, labelData.expBounds.width(), labelData.expBounds.height(), Qt::TextDontClip, labelData.expPart); } else { painter->setFont(labelData.baseFont); painter->drawText(0, 0, labelData.totalBounds.width(), labelData.totalBounds.height(), Qt::TextDontClip | Qt::AlignHCenter, labelData.basePart); } // reset painter settings to what it was before: painter->setTransform(oldTransform); painter->setFont(oldFont); } /*! \internal This is a \ref placeTickLabel helper function. Transforms the passed \a text and \a font to a tickLabelData structure that can then be further processed by \ref getTickLabelDrawOffset and \ref drawTickLabel. It splits the text into base and exponent if necessary (see \ref setNumberFormat) and calculates appropriate bounding boxes. */ QCPAxis::TickLabelData QCPAxis::getTickLabelData(const QFont &font, const QString &text) const { TickLabelData result; // determine whether beautiful decimal powers should be used bool useBeautifulPowers = false; int ePos = -1; if (mAutoTickLabels && mNumberBeautifulPowers && mTickLabelType == ltNumber) { ePos = text.indexOf('e'); if (ePos > -1) useBeautifulPowers = true; } // calculate text bounding rects and do string preparation for beautiful decimal powers: result.baseFont = font; result.baseFont.setPointSizeF(result.baseFont.pointSizeF()+0.05); // QFontMetrics.boundingRect has a bug for exact point sizes that make the results oscillate due to internal rounding if (useBeautifulPowers) { // split text into parts of number/symbol that will be drawn normally and part that will be drawn as exponent: result.basePart = text.left(ePos); // in log scaling, we want to turn "1*10^n" into "10^n", else add multiplication sign and decimal base: if (mScaleType == stLogarithmic && result.basePart == "1") result.basePart = "10"; else result.basePart += (mNumberMultiplyCross ? QString(QChar(215)) : QString(QChar(183))) + "10"; result.expPart = text.mid(ePos+1); // clip "+" and leading zeros off expPart: while (result.expPart.at(1) == '0' && result.expPart.length() > 2) // length > 2 so we leave one zero when numberFormatChar is 'e' result.expPart.remove(1, 1); if (result.expPart.at(0) == mPositiveSignChar) result.expPart.remove(0, 1); // prepare smaller font for exponent: result.expFont = font; result.expFont.setPointSize(result.expFont.pointSize()*0.75); // calculate bounding rects of base part, exponent part and total one: result.baseBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.basePart); result.expBounds = QFontMetrics(result.expFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.expPart); result.totalBounds = result.baseBounds.adjusted(0, 0, result.expBounds.width()+2, 0); // +2 consists of the 1 pixel spacing between base and exponent (see drawTickLabel) and an extra pixel to include AA } else // useBeautifulPowers == false { result.basePart = text; result.totalBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip | Qt::AlignHCenter, result.basePart); } result.totalBounds.moveTopLeft(QPoint(0, 0)); // want bounding box aligned top left at origin, independent of how it was created, to make further processing simpler // calculate possibly different bounding rect after rotation: result.rotatedTotalBounds = result.totalBounds; if (!qFuzzyIsNull(mTickLabelRotation)) { QTransform transform; transform.rotate(mTickLabelRotation); result.rotatedTotalBounds = transform.mapRect(result.rotatedTotalBounds); } return result; } /*! \internal This is a \ref placeTickLabel helper function. Calculates the offset at which the top left corner of the specified tick label shall be drawn. The offset is relative to a point right next to the tick the label belongs to. This function is thus responsible for e.g. centering tick labels under ticks and positioning them appropriately when they are rotated. */ QPointF QCPAxis::getTickLabelDrawOffset(const QCPAxis::TickLabelData &labelData) const { /* calculate label offset from base point at tick (non-trivial, for best visual appearance): short explanation for bottom axis: The anchor, i.e. the point in the label that is placed horizontally under the corresponding tick is always on the label side that is closer to the axis (e.g. the left side of the text when we're rotating clockwise). On that side, the height is halved and the resulting point is defined the anchor. This way, a 90 degree rotated text will be centered under the tick (i.e. displaced horizontally by half its height). At the same time, a 45 degree rotated text will "point toward" its tick, as is typical for rotated tick labels. */ bool doRotation = !qFuzzyIsNull(mTickLabelRotation); bool flip = qFuzzyCompare(qAbs(mTickLabelRotation), 90.0); // perfect +/-90 degree flip. Indicates vertical label centering on vertical axes. double radians = mTickLabelRotation/180.0*M_PI; int x=0, y=0; if (mAxisType == atLeft) { if (doRotation) { if (mTickLabelRotation > 0) { x = -qCos(radians)*labelData.totalBounds.width(); y = flip ? -labelData.totalBounds.width()/2.0 : -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height()/2.0; } else { x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height(); y = flip ? +labelData.totalBounds.width()/2.0 : +qSin(-radians)*labelData.totalBounds.width()-qCos(-radians)*labelData.totalBounds.height()/2.0; } } else { x = -labelData.totalBounds.width(); y = -labelData.totalBounds.height()/2.0; } } else if (mAxisType == atRight) { if (doRotation) { if (mTickLabelRotation > 0) { x = +qSin(radians)*labelData.totalBounds.height(); y = flip ? -labelData.totalBounds.width()/2.0 : -qCos(radians)*labelData.totalBounds.height()/2.0; } else { x = 0; y = flip ? +labelData.totalBounds.width()/2.0 : -qCos(-radians)*labelData.totalBounds.height()/2.0; } } else { x = 0; y = -labelData.totalBounds.height()/2.0; } } else if (mAxisType == atTop) { if (doRotation) { if (mTickLabelRotation > 0) { x = -qCos(radians)*labelData.totalBounds.width()+qSin(radians)*labelData.totalBounds.height()/2.0; y = -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height(); } else { x = -qSin(-radians)*labelData.totalBounds.height()/2.0; y = -qCos(-radians)*labelData.totalBounds.height(); } } else { x = -labelData.totalBounds.width()/2.0; y = -labelData.totalBounds.height(); } } else if (mAxisType == atBottom) { if (doRotation) { if (mTickLabelRotation > 0) { x = +qSin(radians)*labelData.totalBounds.height()/2.0; y = 0; } else { x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height()/2.0; y = +qSin(-radians)*labelData.totalBounds.width(); } } else { x = -labelData.totalBounds.width()/2.0; y = 0; } } return QPointF(x, y); } /*! \internal Simulates the steps done by \ref placeTickLabel by calculating bounding boxes of the text label to be drawn, depending on number format etc. Since only the largest tick label is wanted for the margin calculation, the passed \a tickLabelsSize is only expanded, if it's currently set to a smaller width/height. */ void QCPAxis::getMaxTickLabelSize(const QFont &font, const QString &text, QSize *tickLabelsSize) const { // note: this function must return the same tick label sizes as the placeTickLabel function. QSize finalSize; if (parentPlot()->plottingHints().testFlag(QCP::phCacheLabels) && mLabelCache.contains(text)) // label caching enabled and have cached label { const CachedLabel *cachedLabel = mLabelCache.object(text); finalSize = cachedLabel->pixmap.size(); } else // label caching disabled or no label with this text cached: { TickLabelData labelData = getTickLabelData(font, text); finalSize = labelData.rotatedTotalBounds.size(); } // expand passed tickLabelsSize if current tick label is larger: if (finalSize.width() > tickLabelsSize->width()) tickLabelsSize->setWidth(finalSize.width()); if (finalSize.height() > tickLabelsSize->height()) tickLabelsSize->setHeight(finalSize.height()); } /* inherits documentation from base class */ void QCPAxis::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) SelectablePart part = details.value<SelectablePart>(); if (mSelectableParts.testFlag(part)) { SelectableParts selBefore = mSelectedParts; setSelectedParts(additive ? mSelectedParts^part : part); if (selectionStateChanged) *selectionStateChanged = mSelectedParts != selBefore; } } /* inherits documentation from base class */ void QCPAxis::deselectEvent(bool *selectionStateChanged) { SelectableParts selBefore = mSelectedParts; setSelectedParts(mSelectedParts & ~mSelectableParts); if (selectionStateChanged) *selectionStateChanged = mSelectedParts != selBefore; } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing axis lines. This is the antialiasing state the painter passed to the \ref draw method is in by default. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased */ void QCPAxis::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeAxes); } /*! \internal Returns via \a lowIndex and \a highIndex, which ticks in the current tick vector are visible in the current range. The return values are indices of the tick vector, not the positions of the ticks themselves. The actual use of this function is when an external tick vector is provided, since it might exceed far beyond the currently displayed range, and would cause unnecessary calculations e.g. of subticks. If all ticks are outside the axis range, an inverted range is returned, i.e. highIndex will be smaller than lowIndex. There is one case, where this function returns indices that are not really visible in the current axis range: When the tick spacing is larger than the axis range size and one tick is below the axis range and the next tick is already above the axis range. Because in such cases it is usually desirable to know the tick pair, to draw proper subticks. */ void QCPAxis::visibleTickBounds(int &lowIndex, int &highIndex) const { bool lowFound = false; bool highFound = false; lowIndex = 0; highIndex = -1; for (int i=0; i < mTickVector.size(); ++i) { if (mTickVector.at(i) >= mRange.lower) { lowFound = true; lowIndex = i; break; } } for (int i=mTickVector.size()-1; i >= 0; --i) { if (mTickVector.at(i) <= mRange.upper) { highFound = true; highIndex = i; break; } } if (!lowFound && highFound) lowIndex = highIndex+1; else if (lowFound && !highFound) highIndex = lowIndex-1; } /*! \internal A log function with the base mScaleLogBase, used mostly for coordinate transforms in logarithmic scales with arbitrary log base. Uses the buffered mScaleLogBaseLogInv for faster calculation. This is set to <tt>1.0/qLn(mScaleLogBase)</tt> in \ref setScaleLogBase. \see basePow, setScaleLogBase, setScaleType */ double QCPAxis::baseLog(double value) const { return qLn(value)*mScaleLogBaseLogInv; } /*! \internal A power function with the base mScaleLogBase, used mostly for coordinate transforms in logarithmic scales with arbitrary log base. \see baseLog, setScaleLogBase, setScaleType */ double QCPAxis::basePow(double value) const { return qPow(mScaleLogBase, value); } /*! \internal Returns the pen that is used to draw the axis base line. Depending on the selection state, this is either mSelectedBasePen or mBasePen. */ QPen QCPAxis::getBasePen() const { return mSelectedParts.testFlag(spAxis) ? mSelectedBasePen : mBasePen; } /*! \internal Returns the pen that is used to draw the (major) ticks. Depending on the selection state, this is either mSelectedTickPen or mTickPen. */ QPen QCPAxis::getTickPen() const { return mSelectedParts.testFlag(spAxis) ? mSelectedTickPen : mTickPen; } /*! \internal Returns the pen that is used to draw the subticks. Depending on the selection state, this is either mSelectedSubTickPen or mSubTickPen. */ QPen QCPAxis::getSubTickPen() const { return mSelectedParts.testFlag(spAxis) ? mSelectedSubTickPen : mSubTickPen; } /*! \internal Returns the font that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelFont or mTickLabelFont. */ QFont QCPAxis::getTickLabelFont() const { return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelFont : mTickLabelFont; } /*! \internal Returns the font that is used to draw the axis label. Depending on the selection state, this is either mSelectedLabelFont or mLabelFont. */ QFont QCPAxis::getLabelFont() const { return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelFont : mLabelFont; } /*! \internal Returns the color that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelColor or mTickLabelColor. */ QColor QCPAxis::getTickLabelColor() const { return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelColor : mTickLabelColor; } /*! \internal Returns the color that is used to draw the axis label. Depending on the selection state, this is either mSelectedLabelColor or mLabelColor. */ QColor QCPAxis::getLabelColor() const { return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelColor : mLabelColor; } /*! \internal Returns the appropriate outward margin for this axis. It is needed if \ref QCPAxisRect::setAutoMargins is set to true on the parent axis rect. An axis with axis type \ref atLeft will return an appropriate left margin, \ref atBottom will return an appropriate bottom margin and so forth. For the calculation, this function goes through similar steps as \ref draw, so changing one function likely requires the modification of the other one as well. The margin consists of the outward tick length, tick label padding, tick label size, label padding, label size, and padding. The margin is cached internally, so repeated calls while leaving the axis range, fonts, etc. unchanged are very fast. */ int QCPAxis::calculateMargin() { if (mCachedMarginValid) return mCachedMargin; // run through similar steps as QCPAxis::draw, and caluclate margin needed to fit axis and its labels int margin = 0; if (mVisible) { int lowTick, highTick; visibleTickBounds(lowTick, highTick); // get length of tick marks pointing outwards: if (mTicks) margin += qMax(0, qMax(mTickLengthOut, mSubTickLengthOut)); // calculate size of tick labels: QSize tickLabelsSize(0, 0); if (mTickLabels) { for (int i=lowTick; i<=highTick; ++i) getMaxTickLabelSize(mTickLabelFont, mTickVectorLabels.at(i), &tickLabelsSize); // don't use getTickLabelFont() because we don't want margin to possibly change on selection margin += orientation() == Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width(); margin += mTickLabelPadding; } // calculate size of axis label (only height needed, because left/right labels are rotated by 90 degrees): if (!mLabel.isEmpty()) { QFontMetrics fontMetrics(mLabelFont); // don't use getLabelFont() because we don't want margin to possibly change on selection QRect bounds; bounds = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip | Qt::AlignHCenter | Qt::AlignVCenter, mLabel); margin += bounds.height() + mLabelPadding; } } margin += mPadding; mCachedMargin = margin; mCachedMarginValid = true; return margin; } /* inherits documentation from base class */ QCP::Interaction QCPAxis::selectionCategory() const { return QCP::iSelectAxes; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPAbstractPlottable //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPAbstractPlottable \brief The abstract base class for all data representing objects in a plot. It defines a very basic interface like name, pen, brush, visibility etc. Since this class is abstract, it can't be instantiated. Use one of the subclasses or create a subclass yourself to create new ways of displaying data (see "Creating own plottables" below). All further specifics are in the subclasses, for example: \li A normal graph with possibly a line, scatter points and error bars is displayed by \ref QCPGraph (typically created with \ref QCustomPlot::addGraph). \li A parametric curve can be displayed with \ref QCPCurve. \li A stackable bar chart can be achieved with \ref QCPBars. \li A box of a statistical box plot is created with \ref QCPStatisticalBox. \section plottables-subclassing Creating own plottables To create an own plottable, you implement a subclass of QCPAbstractPlottable. These are the pure virtual functions, you must implement: \li \ref clearData \li \ref selectTest \li \ref draw \li \ref drawLegendIcon \li \ref getKeyRange \li \ref getValueRange See the documentation of those functions for what they need to do. For drawing your plot, you can use the \ref coordsToPixels functions to translate a point in plot coordinates to pixel coordinates. This function is quite convenient, because it takes the orientation of the key and value axes into account for you (x and y are swapped when the key axis is vertical and the value axis horizontal). If you are worried about performance (i.e. you need to translate many points in a loop like QCPGraph), you can directly use \ref QCPAxis::coordToPixel. However, you must then take care about the orientation of the axis yourself. Here are some important members you inherit from QCPAbstractPlottable: <table> <tr> <td>QCustomPlot *\b mParentPlot</td> <td>A pointer to the parent QCustomPlot instance. The parent plot is inferred from the axes that are passed in the constructor.</td> </tr><tr> <td>QString \b mName</td> <td>The name of the plottable.</td> </tr><tr> <td>QPen \b mPen</td> <td>The generic pen of the plottable. You should use this pen for the most prominent data representing lines in the plottable (e.g QCPGraph uses this pen for its graph lines and scatters)</td> </tr><tr> <td>QPen \b mSelectedPen</td> <td>The generic pen that should be used when the plottable is selected (hint: \ref mainPen gives you the right pen, depending on selection state).</td> </tr><tr> <td>QBrush \b mBrush</td> <td>The generic brush of the plottable. You should use this brush for the most prominent fillable structures in the plottable (e.g. QCPGraph uses this brush to control filling under the graph)</td> </tr><tr> <td>QBrush \b mSelectedBrush</td> <td>The generic brush that should be used when the plottable is selected (hint: \ref mainBrush gives you the right brush, depending on selection state).</td> </tr><tr> <td>QWeakPointer<QCPAxis>\b mKeyAxis, \b mValueAxis</td> <td>The key and value axes this plottable is attached to. Call their QCPAxis::coordToPixel functions to translate coordinates to pixels in either the key or value dimension. Make sure to check whether the weak pointer is null before using it. If one of the axes is null, don't draw the plottable.</td> </tr><tr> <td>bool \b mSelected</td> <td>indicates whether the plottable is selected or not.</td> </tr> </table> */ /* start of documentation of pure virtual functions */ /*! \fn void QCPAbstractPlottable::clearData() = 0 Clears all data in the plottable. */ /*! \fn void QCPAbstractPlottable::drawLegendIcon(QCPPainter *painter, const QRect &rect) const = 0 \internal called by QCPLegend::draw (via QCPPlottableLegendItem::draw) to create a graphical representation of this plottable inside \a rect, next to the plottable name. */ /*! \fn QCPRange QCPAbstractPlottable::getKeyRange(bool &validRange, SignDomain inSignDomain) const = 0 \internal called by rescaleAxes functions to get the full data key bounds. For logarithmic plots, one can set \a inSignDomain to either \ref sdNegative or \ref sdPositive in order to restrict the returned range to that sign domain. E.g. when only negative range is wanted, set \a inSignDomain to \ref sdNegative and all positive points will be ignored for range calculation. For no restriction, just set \a inSignDomain to \ref sdBoth (default). \a validRange is an output parameter that indicates whether a proper range could be found or not. If this is false, you shouldn't use the returned range (e.g. no points in data). \see rescaleAxes, getValueRange */ /*! \fn QCPRange QCPAbstractPlottable::getValueRange(bool &validRange, SignDomain inSignDomain) const = 0 \internal called by rescaleAxes functions to get the full data value bounds. For logarithmic plots, one can set \a inSignDomain to either \ref sdNegative or \ref sdPositive in order to restrict the returned range to that sign domain. E.g. when only negative range is wanted, set \a inSignDomain to \ref sdNegative and all positive points will be ignored for range calculation. For no restriction, just set \a inSignDomain to \ref sdBoth (default). \a validRange is an output parameter that indicates whether a proper range could be found or not. If this is false, you shouldn't use the returned range (e.g. no points in data). \see rescaleAxes, getKeyRange */ /* end of documentation of pure virtual functions */ /* start of documentation of signals */ /*! \fn void QCPAbstractPlottable::selectionChanged(bool selected) This signal is emitted when the selection state of this plottable has changed to \a selected, either by user interaction or by a direct call to \ref setSelected. */ /* end of documentation of signals */ /*! Constructs an abstract plottable which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and have perpendicular orientations. If either of these restrictions is violated, a corresponding message is printed to the debug output (qDebug), the construction is not aborted, though. Since QCPAbstractPlottable is an abstract class that defines the basic interface to plottables, it can't be directly instantiated. You probably want one of the subclasses like \ref QCPGraph or \ref QCPCurve instead. */ QCPAbstractPlottable::QCPAbstractPlottable(QCPAxis *keyAxis, QCPAxis *valueAxis) : QCPLayerable(keyAxis->parentPlot(), "", keyAxis->axisRect()), mName(""), mAntialiasedFill(true), mAntialiasedScatters(true), mAntialiasedErrorBars(false), mPen(Qt::black), mSelectedPen(Qt::black), mBrush(Qt::NoBrush), mSelectedBrush(Qt::NoBrush), mKeyAxis(keyAxis), mValueAxis(valueAxis), mSelectable(true), mSelected(false) { if (keyAxis->parentPlot() != valueAxis->parentPlot()) qDebug() << Q_FUNC_INFO << "Parent plot of keyAxis is not the same as that of valueAxis."; if (keyAxis->orientation() == valueAxis->orientation()) qDebug() << Q_FUNC_INFO << "keyAxis and valueAxis must be orthogonal to each other."; } /*! The name is the textual representation of this plottable as it is displayed in the legend (\ref QCPLegend). It may contain any UTF-8 characters, including newlines. */ void QCPAbstractPlottable::setName(const QString &name) { mName = name; } /*! Sets whether fills of this plottable is drawn antialiased or not. Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. */ void QCPAbstractPlottable::setAntialiasedFill(bool enabled) { mAntialiasedFill = enabled; } /*! Sets whether the scatter symbols of this plottable are drawn antialiased or not. Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. */ void QCPAbstractPlottable::setAntialiasedScatters(bool enabled) { mAntialiasedScatters = enabled; } /*! Sets whether the error bars of this plottable are drawn antialiased or not. Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. */ void QCPAbstractPlottable::setAntialiasedErrorBars(bool enabled) { mAntialiasedErrorBars = enabled; } /*! The pen is used to draw basic lines that make up the plottable representation in the plot. For example, the \ref QCPGraph subclass draws its graph lines and scatter points with this pen. \see setBrush */ void QCPAbstractPlottable::setPen(const QPen &pen) { mPen = pen; } /*! When the plottable is selected, this pen is used to draw basic lines instead of the normal pen set via \ref setPen. \see setSelected, setSelectable, setSelectedBrush, selectTest */ void QCPAbstractPlottable::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! The brush is used to draw basic fills of the plottable representation in the plot. The Fill can be a color, gradient or texture, see the usage of QBrush. For example, the \ref QCPGraph subclass draws the fill under the graph with this brush, when it's not set to Qt::NoBrush. \see setPen */ void QCPAbstractPlottable::setBrush(const QBrush &brush) { mBrush = brush; } /*! When the plottable is selected, this brush is used to draw fills instead of the normal brush set via \ref setBrush. \see setSelected, setSelectable, setSelectedPen, selectTest */ void QCPAbstractPlottable::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /*! The key axis of a plottable can be set to any axis of a QCustomPlot, as long as it is orthogonal to the plottable's value axis. This function performs no checks to make sure this is the case. The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and the y-axis (QCustomPlot::yAxis) as value axis. Normally, the key and value axes are set in the constructor of the plottable (or \ref QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). \see setValueAxis */ void QCPAbstractPlottable::setKeyAxis(QCPAxis *axis) { mKeyAxis = axis; } /*! The value axis of a plottable can be set to any axis of a QCustomPlot, as long as it is orthogonal to the plottable's key axis. This function performs no checks to make sure this is the case. The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and the y-axis (QCustomPlot::yAxis) as value axis. Normally, the key and value axes are set in the constructor of the plottable (or \ref QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). \see setKeyAxis */ void QCPAbstractPlottable::setValueAxis(QCPAxis *axis) { mValueAxis = axis; } /*! Sets whether the user can (de-)select this plottable by clicking on the QCustomPlot surface. (When \ref QCustomPlot::setInteractions contains iSelectPlottables.) However, even when \a selectable was set to false, it is possible to set the selection manually, by calling \ref setSelected directly. \see setSelected */ void QCPAbstractPlottable::setSelectable(bool selectable) { mSelectable = selectable; } /*! Sets whether this plottable is selected or not. When selected, it uses a different pen and brush to draw its lines and fills, see \ref setSelectedPen and \ref setSelectedBrush. The entire selection mechanism for plottables is handled automatically when \ref QCustomPlot::setInteractions contains iSelectPlottables. You only need to call this function when you wish to change the selection state manually. This function can change the selection state even when \ref setSelectable was set to false. emits the \ref selectionChanged signal when \a selected is different from the previous selection state. \see setSelectable, selectTest */ void QCPAbstractPlottable::setSelected(bool selected) { if (mSelected != selected) { mSelected = selected; emit selectionChanged(mSelected); } } /*! Rescales the key and value axes associated with this plottable to contain all displayed data, so the whole plottable is visible. If the scaling of an axis is logarithmic, rescaleAxes will make sure not to rescale to an illegal range i.e. a range containing different signs and/or zero. Instead it will stay in the current sign domain and ignore all parts of the plottable that lie outside of that domain. \a onlyEnlarge makes sure the ranges are only expanded, never reduced. So it's possible to show multiple plottables in their entirety by multiple calls to rescaleAxes where the first call has \a onlyEnlarge set to false (the default), and all subsequent set to true. \see rescaleKeyAxis, rescaleValueAxis, QCustomPlot::rescaleAxes */ void QCPAbstractPlottable::rescaleAxes(bool onlyEnlarge) const { rescaleKeyAxis(onlyEnlarge); rescaleValueAxis(onlyEnlarge); } /*! Rescales the key axis of the plottable so the whole plottable is visible. See \ref rescaleAxes for detailed behaviour. */ void QCPAbstractPlottable::rescaleKeyAxis(bool onlyEnlarge) const { QCPAxis *keyAxis = mKeyAxis.data(); if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } SignDomain signDomain = sdBoth; if (keyAxis->scaleType() == QCPAxis::stLogarithmic) signDomain = (keyAxis->range().upper < 0 ? sdNegative : sdPositive); bool validRange; QCPRange newRange = getKeyRange(validRange, signDomain); if (validRange) { if (onlyEnlarge) { if (keyAxis->range().lower < newRange.lower) newRange.lower = keyAxis->range().lower; if (keyAxis->range().upper > newRange.upper) newRange.upper = keyAxis->range().upper; } keyAxis->setRange(newRange); } } /*! Rescales the value axis of the plottable so the whole plottable is visible. See \ref rescaleAxes for detailed behaviour. */ void QCPAbstractPlottable::rescaleValueAxis(bool onlyEnlarge) const { QCPAxis *valueAxis = mValueAxis.data(); if (!valueAxis) { qDebug() << Q_FUNC_INFO << "invalid value axis"; return; } SignDomain signDomain = sdBoth; if (valueAxis->scaleType() == QCPAxis::stLogarithmic) signDomain = (valueAxis->range().upper < 0 ? sdNegative : sdPositive); bool validRange; QCPRange newRange = getValueRange(validRange, signDomain); if (validRange) { if (onlyEnlarge) { if (valueAxis->range().lower < newRange.lower) newRange.lower = valueAxis->range().lower; if (valueAxis->range().upper > newRange.upper) newRange.upper = valueAxis->range().upper; } valueAxis->setRange(newRange); } } /*! Adds this plottable to the legend of the parent QCustomPlot (QCustomPlot::legend). Normally, a QCPPlottableLegendItem is created and inserted into the legend. If the plottable needs a more specialized representation in the legend, this function will take this into account and instead create the specialized subclass of QCPAbstractLegendItem. Returns true on success, i.e. when the legend exists and a legend item associated with this plottable isn't already in the legend. \see removeFromLegend, QCPLegend::addItem */ bool QCPAbstractPlottable::addToLegend() { if (!mParentPlot || !mParentPlot->legend) return false; if (!mParentPlot->legend->hasItemWithPlottable(this)) { mParentPlot->legend->addItem(new QCPPlottableLegendItem(mParentPlot->legend, this)); return true; } else return false; } /*! Removes the plottable from the legend of the parent QCustomPlot. This means the QCPAbstractLegendItem (usually a QCPPlottableLegendItem) that is associated with this plottable is removed. Returns true on success, i.e. if the legend exists and a legend item associated with this plottable was found and removed. \see addToLegend, QCPLegend::removeItem */ bool QCPAbstractPlottable::removeFromLegend() const { if (!mParentPlot->legend) return false; if (QCPPlottableLegendItem *lip = mParentPlot->legend->itemWithPlottable(this)) return mParentPlot->legend->removeItem(lip); else return false; } /* inherits documentation from base class */ QRect QCPAbstractPlottable::clipRect() const { if (mKeyAxis && mValueAxis) return mKeyAxis.data()->axisRect()->rect() & mValueAxis.data()->axisRect()->rect(); else return QRect(); } /* inherits documentation from base class */ QCP::Interaction QCPAbstractPlottable::selectionCategory() const { return QCP::iSelectPlottables; } /*! \internal Convenience function for transforming a key/value pair to pixels on the QCustomPlot surface, taking the orientations of the axes associated with this plottable into account (e.g. whether key represents x or y). \a key and \a value are transformed to the coodinates in pixels and are written to \a x and \a y. \see pixelsToCoords, QCPAxis::coordToPixel */ void QCPAbstractPlottable::coordsToPixels(double key, double value, double &x, double &y) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (keyAxis->orientation() == Qt::Horizontal) { x = keyAxis->coordToPixel(key); y = valueAxis->coordToPixel(value); } else { y = keyAxis->coordToPixel(key); x = valueAxis->coordToPixel(value); } } /*! \internal \overload Returns the input as pixel coordinates in a QPointF. */ const QPointF QCPAbstractPlottable::coordsToPixels(double key, double value) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } if (keyAxis->orientation() == Qt::Horizontal) return QPointF(keyAxis->coordToPixel(key), valueAxis->coordToPixel(value)); else return QPointF(valueAxis->coordToPixel(value), keyAxis->coordToPixel(key)); } /*! \internal Convenience function for transforming a x/y pixel pair on the QCustomPlot surface to plot coordinates, taking the orientations of the axes associated with this plottable into account (e.g. whether key represents x or y). \a x and \a y are transformed to the plot coodinates and are written to \a key and \a value. \see coordsToPixels, QCPAxis::coordToPixel */ void QCPAbstractPlottable::pixelsToCoords(double x, double y, double &key, double &value) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (keyAxis->orientation() == Qt::Horizontal) { key = keyAxis->pixelToCoord(x); value = valueAxis->pixelToCoord(y); } else { key = keyAxis->pixelToCoord(y); value = valueAxis->pixelToCoord(x); } } /*! \internal \overload Returns the pixel input \a pixelPos as plot coordinates \a key and \a value. */ void QCPAbstractPlottable::pixelsToCoords(const QPointF &pixelPos, double &key, double &value) const { pixelsToCoords(pixelPos.x(), pixelPos.y(), key, value); } /*! \internal Returns the pen that should be used for drawing lines of the plottable. Returns mPen when the graph is not selected and mSelectedPen when it is. */ QPen QCPAbstractPlottable::mainPen() const { return mSelected ? mSelectedPen : mPen; } /*! \internal Returns the brush that should be used for drawing fills of the plottable. Returns mBrush when the graph is not selected and mSelectedBrush when it is. */ QBrush QCPAbstractPlottable::mainBrush() const { return mSelected ? mSelectedBrush : mBrush; } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing plottable lines. This is the antialiasing state the painter passed to the \ref draw method is in by default. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased, applyFillAntialiasingHint, applyScattersAntialiasingHint, applyErrorBarsAntialiasingHint */ void QCPAbstractPlottable::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aePlottables); } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing plottable fills. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased, applyDefaultAntialiasingHint, applyScattersAntialiasingHint, applyErrorBarsAntialiasingHint */ void QCPAbstractPlottable::applyFillAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiasedFill, QCP::aeFills); } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing plottable scatter points. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased, applyFillAntialiasingHint, applyDefaultAntialiasingHint, applyErrorBarsAntialiasingHint */ void QCPAbstractPlottable::applyScattersAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiasedScatters, QCP::aeScatters); } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing plottable error bars. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased, applyFillAntialiasingHint, applyScattersAntialiasingHint, applyDefaultAntialiasingHint */ void QCPAbstractPlottable::applyErrorBarsAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiasedErrorBars, QCP::aeErrorBars); } /*! \internal Finds the shortest squared distance of \a point to the line segment defined by \a start and \a end. This function may be used to help with the implementation of the \ref selectTest function for specific plottables. \note This function is identical to QCPAbstractItem::distSqrToLine */ double QCPAbstractPlottable::distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const { QVector2D a(start); QVector2D b(end); QVector2D p(point); QVector2D v(b-a); double vLengthSqr = v.lengthSquared(); if (!qFuzzyIsNull(vLengthSqr)) { double mu = QVector2D::dotProduct(p-a, v)/vLengthSqr; if (mu < 0) return (a-p).lengthSquared(); else if (mu > 1) return (b-p).lengthSquared(); else return ((a + mu*v)-p).lengthSquared(); } else return (a-p).lengthSquared(); } /* inherits documentation from base class */ void QCPAbstractPlottable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) Q_UNUSED(details) if (mSelectable) { bool selBefore = mSelected; setSelected(additive ? !mSelected : true); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ void QCPAbstractPlottable::deselectEvent(bool *selectionStateChanged) { if (mSelectable) { bool selBefore = mSelected; setSelected(false); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemAnchor //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemAnchor \brief An anchor of an item to which positions can be attached to. An item (QCPAbstractItem) may have one or more anchors. Unlike QCPItemPosition, an anchor doesn't control anything on its item, but provides a way to tie other items via their positions to the anchor. For example, a QCPItemRect is defined by its positions \a topLeft and \a bottomRight. Additionally it has various anchors like \a top, \a topRight or \a bottomLeft etc. So you can attach the \a start (which is a QCPItemPosition) of a QCPItemLine to one of the anchors by calling QCPItemPosition::setParentAnchor on \a start, passing the wanted anchor of the QCPItemRect. This way the start of the line will now always follow the respective anchor location on the rect item. Note that QCPItemPosition derives from QCPItemAnchor, so every position can also serve as an anchor to other positions. To learn how to provide anchors in your own item subclasses, see the subclassing section of the QCPAbstractItem documentation. */ /*! Creates a new QCPItemAnchor. You shouldn't create QCPItemAnchor instances directly, even if you want to make a new item subclass. Use \ref QCPAbstractItem::createAnchor instead, as explained in the subclassing section of the QCPAbstractItem documentation. */ QCPItemAnchor::QCPItemAnchor(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name, int anchorId) : mName(name), mParentPlot(parentPlot), mParentItem(parentItem), mAnchorId(anchorId) { } QCPItemAnchor::~QCPItemAnchor() { // unregister as parent at children: QList<QCPItemPosition*> currentChildren(mChildren.toList()); for (int i=0; i<currentChildren.size(); ++i) currentChildren.at(i)->setParentAnchor(0); // this acts back on this anchor and child removes itself from mChildren } /*! Returns the final absolute pixel position of the QCPItemAnchor on the QCustomPlot surface. The pixel information is internally retrieved via QCPAbstractItem::anchorPixelPosition of the parent item, QCPItemAnchor is just an intermediary. */ QPointF QCPItemAnchor::pixelPoint() const { if (mParentItem) { if (mAnchorId > -1) { return mParentItem->anchorPixelPoint(mAnchorId); } else { qDebug() << Q_FUNC_INFO << "no valid anchor id set:" << mAnchorId; return QPointF(); } } else { qDebug() << Q_FUNC_INFO << "no parent item set"; return QPointF(); } } /*! \internal Adds \a pos to the child list of this anchor. This is necessary to notify the children prior to destruction of the anchor. Note that this function does not change the parent setting in \a pos. */ void QCPItemAnchor::addChild(QCPItemPosition *pos) { if (!mChildren.contains(pos)) mChildren.insert(pos); else qDebug() << Q_FUNC_INFO << "provided pos is child already" << reinterpret_cast<quintptr>(pos); } /*! \internal Removes \a pos from the child list of this anchor. Note that this function does not change the parent setting in \a pos. */ void QCPItemAnchor::removeChild(QCPItemPosition *pos) { if (!mChildren.remove(pos)) qDebug() << Q_FUNC_INFO << "provided pos isn't child" << reinterpret_cast<quintptr>(pos); } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemPosition //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemPosition \brief Manages the position of an item. Every item has at least one public QCPItemPosition member pointer which provides ways to position the item on the QCustomPlot surface. Some items have multiple positions, for example QCPItemRect has two: \a topLeft and \a bottomRight. QCPItemPosition has a type (\ref PositionType) that can be set with \ref setType. This type defines how coordinates passed to \ref setCoords are to be interpreted, e.g. as absolute pixel coordinates, as plot coordinates of certain axes, etc. Further, QCPItemPosition may have a parent QCPItemAnchor, see \ref setParentAnchor. (Note that every QCPItemPosition inherits from QCPItemAnchor and thus can itself be used as parent anchor for other positions.) This way you can tie multiple items together. If the QCPItemPosition has a parent, the coordinates set with \ref setCoords are considered to be absolute values in the reference frame of the parent anchor, where (0, 0) means directly ontop of the parent anchor. For example, You could attach the \a start position of a QCPItemLine to the \a bottom anchor of a QCPItemText to make the starting point of the line always be centered under the text label, no matter where the text is moved to, or is itself tied to. To set the apparent pixel position on the QCustomPlot surface directly, use \ref setPixelPoint. This works no matter what type this QCPItemPosition is or what parent-child situation it is in, as \ref setPixelPoint transforms the coordinates appropriately, to make the position appear at the specified pixel values. */ /*! Creates a new QCPItemPosition. You shouldn't create QCPItemPosition instances directly, even if you want to make a new item subclass. Use \ref QCPAbstractItem::createPosition instead, as explained in the subclassing section of the QCPAbstractItem documentation. */ QCPItemPosition::QCPItemPosition(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name) : QCPItemAnchor(parentPlot, parentItem, name), mPositionType(ptAbsolute), mKey(0), mValue(0), mParentAnchor(0) { } QCPItemPosition::~QCPItemPosition() { // unregister as parent at children: // Note: this is done in ~QCPItemAnchor again, but it's important QCPItemPosition does it itself, because only then // the setParentAnchor(0) call the correct QCPItemPosition::pixelPoint function instead of QCPItemAnchor::pixelPoint QList<QCPItemPosition*> currentChildren(mChildren.toList()); for (int i=0; i<currentChildren.size(); ++i) currentChildren.at(i)->setParentAnchor(0); // this acts back on this anchor and child removes itself from mChildren // unregister as child in parent: if (mParentAnchor) mParentAnchor->removeChild(this); } /*! Sets the type of the position. The type defines how the coordinates passed to \ref setCoords should be handled and how the QCPItemPosition should behave in the plot. The possible values for \a type can be separated in two main categories: \li The position is regarded as a point in plot coordinates. This corresponds to \ref ptPlotCoords and requires two axes that define the plot coordinate system. They can be specified with \ref setAxes. By default, the QCustomPlot's x- and yAxis are used. \li The position is fixed on the QCustomPlot surface, i.e. independent of axis ranges. This corresponds to all other types, i.e. \ref ptAbsolute, \ref ptViewportRatio and \ref ptAxisRectRatio. They differ only in the way the absolute position is described, see the documentation of PositionType for details. For \ref ptAxisRectRatio, note that you can specify the axis rect with \ref setAxisRect. By default this is set to the main axis rect. Note that the position type \ref ptPlotCoords is only available (and sensible) when the position has no parent anchor (\ref setParentAnchor). If the type is changed, the apparent pixel position on the plot is preserved. This means the coordinates as retrieved with coords() and set with \ref setCoords may change in the process. */ void QCPItemPosition::setType(QCPItemPosition::PositionType type) { if (mPositionType != type) { // if switching from or to coordinate type that isn't valid (e.g. because axes or axis rect // were deleted), don't try to recover the pixelPoint() because it would output a qDebug warning. bool recoverPixelPosition = true; if ((mPositionType == ptPlotCoords || type == ptPlotCoords) && (!mKeyAxis || !mValueAxis)) recoverPixelPosition = false; if ((mPositionType == ptAxisRectRatio || type == ptAxisRectRatio) && (!mAxisRect)) recoverPixelPosition = false; QPointF pixelP; if (recoverPixelPosition) pixelP = pixelPoint(); mPositionType = type; if (recoverPixelPosition) setPixelPoint(pixelP); } } /*! Sets the parent of this QCPItemPosition to \a parentAnchor. This means the position will now follow any position changes of the anchor. The local coordinate system of positions with a parent anchor always is absolute with (0, 0) being exactly on top of the parent anchor. (Hence the type shouldn't be \ref ptPlotCoords for positions with parent anchors.) if \a keepPixelPosition is true, the current pixel position of the QCPItemPosition is preserved during reparenting. If it's set to false, the coordinates are set to (0, 0), i.e. the position will be exactly on top of the parent anchor. To remove this QCPItemPosition from any parent anchor, set \a parentAnchor to 0. If the QCPItemPosition previously had no parent and the type is \ref ptPlotCoords, the type is set to \ref ptAbsolute, to keep the position in a valid state. */ bool QCPItemPosition::setParentAnchor(QCPItemAnchor *parentAnchor, bool keepPixelPosition) { // make sure self is not assigned as parent: if (parentAnchor == this) { qDebug() << Q_FUNC_INFO << "can't set self as parent anchor" << reinterpret_cast<quintptr>(parentAnchor); return false; } // make sure no recursive parent-child-relationships are created: QCPItemAnchor *currentParent = parentAnchor; while (currentParent) { if (QCPItemPosition *currentParentPos = currentParent->toQCPItemPosition()) { // is a QCPItemPosition, might have further parent, so keep iterating if (currentParentPos == this) { qDebug() << Q_FUNC_INFO << "can't create recursive parent-child-relationship" << reinterpret_cast<quintptr>(parentAnchor); return false; } currentParent = currentParentPos->mParentAnchor; } else { // is a QCPItemAnchor, can't have further parent. Now make sure the parent items aren't the // same, to prevent a position being child of an anchor which itself depends on the position, // because they're both on the same item: if (currentParent->mParentItem == mParentItem) { qDebug() << Q_FUNC_INFO << "can't set parent to be an anchor which itself depends on this position" << reinterpret_cast<quintptr>(parentAnchor); return false; } break; } } // if previously no parent set and PosType is still ptPlotCoords, set to ptAbsolute: if (!mParentAnchor && mPositionType == ptPlotCoords) setType(ptAbsolute); // save pixel position: QPointF pixelP; if (keepPixelPosition) pixelP = pixelPoint(); // unregister at current parent anchor: if (mParentAnchor) mParentAnchor->removeChild(this); // register at new parent anchor: if (parentAnchor) parentAnchor->addChild(this); mParentAnchor = parentAnchor; // restore pixel position under new parent: if (keepPixelPosition) setPixelPoint(pixelP); else setCoords(0, 0); return true; } /*! Sets the coordinates of this QCPItemPosition. What the coordinates mean, is defined by the type (\ref setType). For example, if the type is \ref ptAbsolute, \a key and \a value mean the x and y pixel position on the QCustomPlot surface. In that case the origin (0, 0) is in the top left corner of the QCustomPlot viewport. If the type is \ref ptPlotCoords, \a key and \a value mean a point in the plot coordinate system defined by the axes set by \ref setAxes. By default those are the QCustomPlot's xAxis and yAxis. See the documentation of \ref setType for other available coordinate types and their meaning. \see setPixelPoint */ void QCPItemPosition::setCoords(double key, double value) { mKey = key; mValue = value; } /*! \overload Sets the coordinates as a QPointF \a pos where pos.x has the meaning of \a key and pos.y the meaning of \a value of the \ref setCoords(double key, double value) method. */ void QCPItemPosition::setCoords(const QPointF &pos) { setCoords(pos.x(), pos.y()); } /*! Returns the final absolute pixel position of the QCPItemPosition on the QCustomPlot surface. It includes all effects of type (\ref setType) and possible parent anchors (\ref setParentAnchor). \see setPixelPoint */ QPointF QCPItemPosition::pixelPoint() const { switch (mPositionType) { case ptAbsolute: { if (mParentAnchor) return QPointF(mKey, mValue) + mParentAnchor->pixelPoint(); else return QPointF(mKey, mValue); } case ptViewportRatio: { if (mParentAnchor) { return QPointF(mKey*mParentPlot->viewport().width(), mValue*mParentPlot->viewport().height()) + mParentAnchor->pixelPoint(); } else { return QPointF(mKey*mParentPlot->viewport().width(), mValue*mParentPlot->viewport().height()) + mParentPlot->viewport().topLeft(); } } case ptAxisRectRatio: { if (mAxisRect) { if (mParentAnchor) { return QPointF(mKey*mAxisRect.data()->width(), mValue*mAxisRect.data()->height()) + mParentAnchor->pixelPoint(); } else { return QPointF(mKey*mAxisRect.data()->width(), mValue*mAxisRect.data()->height()) + mAxisRect.data()->topLeft(); } } else { qDebug() << Q_FUNC_INFO << "No axis rect defined"; return QPointF(mKey, mValue); } } case ptPlotCoords: { double x, y; if (mKeyAxis && mValueAxis) { // both key and value axis are given, translate key/value to x/y coordinates: if (mKeyAxis.data()->orientation() == Qt::Horizontal) { x = mKeyAxis.data()->coordToPixel(mKey); y = mValueAxis.data()->coordToPixel(mValue); } else { y = mKeyAxis.data()->coordToPixel(mKey); x = mValueAxis.data()->coordToPixel(mValue); } } else if (mKeyAxis) { // only key axis is given, depending on orientation only transform x or y to key coordinate, other stays pixel: if (mKeyAxis.data()->orientation() == Qt::Horizontal) { x = mKeyAxis.data()->coordToPixel(mKey); y = mValue; } else { y = mKeyAxis.data()->coordToPixel(mKey); x = mValue; } } else if (mValueAxis) { // only value axis is given, depending on orientation only transform x or y to value coordinate, other stays pixel: if (mValueAxis.data()->orientation() == Qt::Horizontal) { x = mValueAxis.data()->coordToPixel(mValue); y = mKey; } else { y = mValueAxis.data()->coordToPixel(mValue); x = mKey; } } else { // no axis given, basically the same as if mPositionType were ptAbsolute qDebug() << Q_FUNC_INFO << "No axes defined"; x = mKey; y = mValue; } return QPointF(x, y); } } return QPointF(); } /*! When \ref setType is \ref ptPlotCoords, this function may be used to specify the axes the coordinates set with \ref setCoords relate to. By default they are set to the initial xAxis and yAxis of the QCustomPlot. */ void QCPItemPosition::setAxes(QCPAxis *keyAxis, QCPAxis *valueAxis) { mKeyAxis = keyAxis; mValueAxis = valueAxis; } /*! When \ref setType is \ref ptAxisRectRatio, this function may be used to specify the axis rect the coordinates set with \ref setCoords relate to. By default this is set to the main axis rect of the QCustomPlot. */ void QCPItemPosition::setAxisRect(QCPAxisRect *axisRect) { mAxisRect = axisRect; } /*! Sets the apparent pixel position. This works no matter what type (\ref setType) this QCPItemPosition is or what parent-child situation it is in, as coordinates are transformed appropriately, to make the position finally appear at the specified pixel values. Only if the type is \ref ptAbsolute and no parent anchor is set, this function's effect is identical to that of \ref setCoords. \see pixelPoint, setCoords */ void QCPItemPosition::setPixelPoint(const QPointF &pixelPoint) { switch (mPositionType) { case ptAbsolute: { if (mParentAnchor) setCoords(pixelPoint-mParentAnchor->pixelPoint()); else setCoords(pixelPoint); break; } case ptViewportRatio: { if (mParentAnchor) { QPointF p(pixelPoint-mParentAnchor->pixelPoint()); p.rx() /= (double)mParentPlot->viewport().width(); p.ry() /= (double)mParentPlot->viewport().height(); setCoords(p); } else { QPointF p(pixelPoint-mParentPlot->viewport().topLeft()); p.rx() /= (double)mParentPlot->viewport().width(); p.ry() /= (double)mParentPlot->viewport().height(); setCoords(p); } break; } case ptAxisRectRatio: { if (mAxisRect) { if (mParentAnchor) { QPointF p(pixelPoint-mParentAnchor->pixelPoint()); p.rx() /= (double)mAxisRect.data()->width(); p.ry() /= (double)mAxisRect.data()->height(); setCoords(p); } else { QPointF p(pixelPoint-mAxisRect.data()->topLeft()); p.rx() /= (double)mAxisRect.data()->width(); p.ry() /= (double)mAxisRect.data()->height(); setCoords(p); } } else { qDebug() << Q_FUNC_INFO << "No axis rect defined"; setCoords(pixelPoint); } break; } case ptPlotCoords: { double newKey, newValue; if (mKeyAxis && mValueAxis) { // both key and value axis are given, translate point to key/value coordinates: if (mKeyAxis.data()->orientation() == Qt::Horizontal) { newKey = mKeyAxis.data()->pixelToCoord(pixelPoint.x()); newValue = mValueAxis.data()->pixelToCoord(pixelPoint.y()); } else { newKey = mKeyAxis.data()->pixelToCoord(pixelPoint.y()); newValue = mValueAxis.data()->pixelToCoord(pixelPoint.x()); } } else if (mKeyAxis) { // only key axis is given, depending on orientation only transform x or y to key coordinate, other stays pixel: if (mKeyAxis.data()->orientation() == Qt::Horizontal) { newKey = mKeyAxis.data()->pixelToCoord(pixelPoint.x()); newValue = pixelPoint.y(); } else { newKey = mKeyAxis.data()->pixelToCoord(pixelPoint.y()); newValue = pixelPoint.x(); } } else if (mValueAxis) { // only value axis is given, depending on orientation only transform x or y to value coordinate, other stays pixel: if (mValueAxis.data()->orientation() == Qt::Horizontal) { newKey = pixelPoint.y(); newValue = mValueAxis.data()->pixelToCoord(pixelPoint.x()); } else { newKey = pixelPoint.x(); newValue = mValueAxis.data()->pixelToCoord(pixelPoint.y()); } } else { // no axis given, basically the same as if mPositionType were ptAbsolute qDebug() << Q_FUNC_INFO << "No axes defined"; newKey = pixelPoint.x(); newValue = pixelPoint.y(); } setCoords(newKey, newValue); break; } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPAbstractItem //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPAbstractItem \brief The abstract base class for all items in a plot. In QCustomPlot, items are supplemental graphical elements that are neither plottables (QCPAbstractPlottable) nor axes (QCPAxis). While plottables are always tied to two axes and thus plot coordinates, items can also be placed in absolute coordinates independent of any axes. Each specific item has at least one QCPItemPosition member which controls the positioning. Some items are defined by more than one coordinate and thus have two or more QCPItemPosition members (For example, QCPItemRect has \a topLeft and \a bottomRight). This abstract base class defines a very basic interface like visibility and clipping. Since this class is abstract, it can't be instantiated. Use one of the subclasses or create a subclass yourself to create new items. The built-in items are: <table> <tr><td>QCPItemLine</td><td>A line defined by a start and an end point. May have different ending styles on each side (e.g. arrows).</td></tr> <tr><td>QCPItemStraightLine</td><td>A straight line defined by a start and a direction point. Unlike QCPItemLine, the straight line is infinitely long and has no endings.</td></tr> <tr><td>QCPItemCurve</td><td>A curve defined by start, end and two intermediate control points. May have different ending styles on each side (e.g. arrows).</td></tr> <tr><td>QCPItemRect</td><td>A rectangle</td></tr> <tr><td>QCPItemEllipse</td><td>An ellipse</td></tr> <tr><td>QCPItemPixmap</td><td>An arbitrary pixmap</td></tr> <tr><td>QCPItemText</td><td>A text label</td></tr> <tr><td>QCPItemBracket</td><td>A bracket which may be used to reference/highlight certain parts in the plot.</td></tr> <tr><td>QCPItemTracer</td><td>An item that can be attached to a QCPGraph and sticks to its data points, given a key coordinate.</td></tr> </table> Items are by default clipped to the main axis rect. To make an item visible outside that axis rect, disable clipping via \ref setClipToAxisRect. \section items-using Using items First you instantiate the item you want to use and add it to the plot: \code QCPItemLine *line = new QCPItemLine(customPlot); customPlot->addItem(line); \endcode by default, the positions of the item are bound to the x- and y-Axis of the plot. So we can just set the plot coordinates where the line should start/end: \code line->start->setCoords(-0.1, 0.8); line->end->setCoords(1.1, 0.2); \endcode If we don't want the line to be positioned in plot coordinates but a different coordinate system, e.g. absolute pixel positions on the QCustomPlot surface, we need to change the position type like this: \code line->start->setType(QCPItemPosition::ptAbsolute); line->end->setType(QCPItemPosition::ptAbsolute); \endcode Then we can set the coordinates, this time in pixels: \code line->start->setCoords(100, 200); line->end->setCoords(450, 320); \endcode \section items-subclassing Creating own items To create an own item, you implement a subclass of QCPAbstractItem. These are the pure virtual functions, you must implement: \li \ref selectTest \li \ref draw See the documentation of those functions for what they need to do. \subsection items-positioning Allowing the item to be positioned As mentioned, item positions are represented by QCPItemPosition members. Let's assume the new item shall have only one point as its position (as opposed to two like a rect or multiple like a polygon). You then add a public member of type QCPItemPosition like so: \code QCPItemPosition * const myPosition;\endcode the const makes sure the pointer itself can't be modified from the user of your new item (the QCPItemPosition instance it points to, can be modified, of course). The initialization of this pointer is made easy with the \ref createPosition function. Just assign the return value of this function to each QCPItemPosition in the constructor of your item. \ref createPosition takes a string which is the name of the position, typically this is identical to the variable name. For example, the constructor of QCPItemExample could look like this: \code QCPItemExample::QCPItemExample(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), myPosition(createPosition("myPosition")) { // other constructor code } \endcode \subsection items-drawing The draw function To give your item a visual representation, reimplement the \ref draw function and use the passed QCPPainter to draw the item. You can retrieve the item position in pixel coordinates from the position member(s) via \ref QCPItemPosition::pixelPoint. To optimize performance you should calculate a bounding rect first (don't forget to take the pen width into account), check whether it intersects the \ref clipRect, and only draw the item at all if this is the case. \subsection items-selection The selectTest function Your implementation of the \ref selectTest function may use the helpers \ref distSqrToLine and \ref rectSelectTest. With these, the implementation of the selection test becomes significantly simpler for most items. See the documentation of \ref selectTest for what the function parameters mean and what the function should return. \subsection anchors Providing anchors Providing anchors (QCPItemAnchor) starts off like adding a position. First you create a public member, e.g. \code QCPItemAnchor * const bottom;\endcode and create it in the constructor with the \ref createAnchor function, assigning it a name and an anchor id (an integer enumerating all anchors on the item, you may create an own enum for this). Since anchors can be placed anywhere, relative to the item's position(s), your item needs to provide the position of every anchor with the reimplementation of the \ref anchorPixelPoint(int anchorId) function. In essence the QCPItemAnchor is merely an intermediary that itself asks your item for the pixel position when anything attached to the anchor needs to know the coordinates. */ /* start of documentation of inline functions */ /*! \fn QList<QCPItemPosition*> QCPAbstractItem::positions() const Returns all positions of the item in a list. \see anchors, position */ /*! \fn QList<QCPItemAnchor*> QCPAbstractItem::anchors() const Returns all anchors of the item in a list. Note that since a position (QCPItemPosition) is always also an anchor, the list will also contain the positions of this item. \see positions, anchor */ /* end of documentation of inline functions */ /* start documentation of pure virtual functions */ /*! \fn void QCPAbstractItem::draw(QCPPainter *painter) = 0 \internal Draws this item with the provided \a painter. The cliprect of the provided painter is set to the rect returned by \ref clipRect before this function is called. The clipRect depends on the clipping settings defined by \ref setClipToAxisRect and \ref setClipAxisRect. */ /* end documentation of pure virtual functions */ /* start documentation of signals */ /*! \fn void QCPAbstractItem::selectionChanged(bool selected) This signal is emitted when the selection state of this item has changed, either by user interaction or by a direct call to \ref setSelected. */ /* end documentation of signals */ /*! Base class constructor which initializes base class members. */ QCPAbstractItem::QCPAbstractItem(QCustomPlot *parentPlot) : QCPLayerable(parentPlot), mClipToAxisRect(false), mSelectable(true), mSelected(false) { QList<QCPAxisRect*> rects = parentPlot->axisRects(); if (rects.size() > 0) { setClipToAxisRect(true); setClipAxisRect(rects.first()); } } QCPAbstractItem::~QCPAbstractItem() { // don't delete mPositions because every position is also an anchor and thus in mAnchors qDeleteAll(mAnchors); } /*! Sets whether the item shall be clipped to an axis rect or whether it shall be visible on the entire QCustomPlot. The axis rect can be set with \ref setClipAxisRect. \see setClipAxisRect */ void QCPAbstractItem::setClipToAxisRect(bool clip) { mClipToAxisRect = clip; if (mClipToAxisRect) setParentLayerable(mClipAxisRect.data()); } /*! Sets the clip axis rect. It defines the rect that will be used to clip the item when \ref setClipToAxisRect is set to true. \see setClipToAxisRect */ void QCPAbstractItem::setClipAxisRect(QCPAxisRect *rect) { mClipAxisRect = rect; if (mClipToAxisRect) setParentLayerable(mClipAxisRect.data()); } /*! Sets whether the user can (de-)select this item by clicking on the QCustomPlot surface. (When \ref QCustomPlot::setInteractions contains QCustomPlot::iSelectItems.) However, even when \a selectable was set to false, it is possible to set the selection manually, by calling \ref setSelected. \see QCustomPlot::setInteractions, setSelected */ void QCPAbstractItem::setSelectable(bool selectable) { mSelectable = selectable; } /*! Sets whether this item is selected or not. When selected, it might use a different visual appearance (e.g. pen and brush), this depends on the specific item though. The entire selection mechanism for items is handled automatically when \ref QCustomPlot::setInteractions contains QCustomPlot::iSelectItems. You only need to call this function when you wish to change the selection state manually. This function can change the selection state even when \ref setSelectable was set to false. emits the \ref selectionChanged signal when \a selected is different from the previous selection state. \see setSelectable, selectTest */ void QCPAbstractItem::setSelected(bool selected) { if (mSelected != selected) { mSelected = selected; emit selectionChanged(mSelected); } } /*! Returns the QCPItemPosition with the specified \a name. If this item doesn't have a position by that name, returns 0. This function provides an alternative way to access item positions. Normally, you access positions direcly by their member pointers (which typically have the same variable name as \a name). \see positions, anchor */ QCPItemPosition *QCPAbstractItem::position(const QString &name) const { for (int i=0; i<mPositions.size(); ++i) { if (mPositions.at(i)->name() == name) return mPositions.at(i); } qDebug() << Q_FUNC_INFO << "position with name not found:" << name; return 0; } /*! Returns the QCPItemAnchor with the specified \a name. If this item doesn't have an anchor by that name, returns 0. This function provides an alternative way to access item anchors. Normally, you access anchors direcly by their member pointers (which typically have the same variable name as \a name). \see anchors, position */ QCPItemAnchor *QCPAbstractItem::anchor(const QString &name) const { for (int i=0; i<mAnchors.size(); ++i) { if (mAnchors.at(i)->name() == name) return mAnchors.at(i); } qDebug() << Q_FUNC_INFO << "anchor with name not found:" << name; return 0; } /*! Returns whether this item has an anchor with the specified \a name. Note that you can check for positions with this function, too. This is because every position is also an anchor (QCPItemPosition inherits from QCPItemAnchor). \see anchor, position */ bool QCPAbstractItem::hasAnchor(const QString &name) const { for (int i=0; i<mAnchors.size(); ++i) { if (mAnchors.at(i)->name() == name) return true; } return false; } /*! \internal Returns the rect the visual representation of this item is clipped to. This depends on the current setting of \ref setClipToAxisRect as well as the axis rect set with \ref setClipAxisRect. If the item is not clipped to an axis rect, the \ref QCustomPlot::viewport rect is returned. \see draw */ QRect QCPAbstractItem::clipRect() const { if (mClipToAxisRect && mClipAxisRect) return mClipAxisRect.data()->rect(); else return mParentPlot->viewport(); } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing item lines. This is the antialiasing state the painter passed to the \ref draw method is in by default. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased */ void QCPAbstractItem::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeItems); } /*! \internal Finds the shortest squared distance of \a point to the line segment defined by \a start and \a end. This function may be used to help with the implementation of the \ref selectTest function for specific items. \note This function is identical to QCPAbstractPlottable::distSqrToLine \see rectSelectTest */ double QCPAbstractItem::distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const { QVector2D a(start); QVector2D b(end); QVector2D p(point); QVector2D v(b-a); double vLengthSqr = v.lengthSquared(); if (!qFuzzyIsNull(vLengthSqr)) { double mu = QVector2D::dotProduct(p-a, v)/vLengthSqr; if (mu < 0) return (a-p).lengthSquared(); else if (mu > 1) return (b-p).lengthSquared(); else return ((a + mu*v)-p).lengthSquared(); } else return (a-p).lengthSquared(); } /*! \internal A convenience function which returns the selectTest value for a specified \a rect and a specified click position \a pos. \a filledRect defines whether a click inside the rect should also be considered a hit or whether only the rect border is sensitive to hits. This function may be used to help with the implementation of the \ref selectTest function for specific items. For example, if your item consists of four rects, call this function four times, once for each rect, in your \ref selectTest reimplementation. Finally, return the minimum of all four returned values which were greater or equal to zero. (Because this function may return -1.0 when \a pos doesn't hit \a rect at all). If all calls returned -1.0, return -1.0, too, because your item wasn't hit. \see distSqrToLine */ double QCPAbstractItem::rectSelectTest(const QRectF &rect, const QPointF &pos, bool filledRect) const { double result = -1; // distance to border: QList<QLineF> lines; lines << QLineF(rect.topLeft(), rect.topRight()) << QLineF(rect.bottomLeft(), rect.bottomRight()) << QLineF(rect.topLeft(), rect.bottomLeft()) << QLineF(rect.topRight(), rect.bottomRight()); double minDistSqr = std::numeric_limits<double>::max(); for (int i=0; i<lines.size(); ++i) { double distSqr = distSqrToLine(lines.at(i).p1(), lines.at(i).p2(), pos); if (distSqr < minDistSqr) minDistSqr = distSqr; } result = qSqrt(minDistSqr); // filled rect, allow click inside to count as hit: if (filledRect && result > mParentPlot->selectionTolerance()*0.99) { if (rect.contains(pos)) result = mParentPlot->selectionTolerance()*0.99; } return result; } /*! \internal Returns the pixel position of the anchor with Id \a anchorId. This function must be reimplemented in item subclasses if they want to provide anchors (QCPItemAnchor). For example, if the item has two anchors with id 0 and 1, this function takes one of these anchor ids and returns the respective pixel points of the specified anchor. \see createAnchor */ QPointF QCPAbstractItem::anchorPixelPoint(int anchorId) const { qDebug() << Q_FUNC_INFO << "called on item which shouldn't have any anchors (this method not reimplemented). anchorId" << anchorId; return QPointF(); } /*! \internal Creates a QCPItemPosition, registers it with this item and returns a pointer to it. The specified \a name must be a unique string that is usually identical to the variable name of the position member (This is needed to provide the name-based \ref position access to positions). Don't delete positions created by this function manually, as the item will take care of it. Use this function in the constructor (initialization list) of the specific item subclass to create each position member. Don't create QCPItemPositions with \b new yourself, because they won't be registered with the item properly. \see createAnchor */ QCPItemPosition *QCPAbstractItem::createPosition(const QString &name) { if (hasAnchor(name)) qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; QCPItemPosition *newPosition = new QCPItemPosition(mParentPlot, this, name); mPositions.append(newPosition); mAnchors.append(newPosition); // every position is also an anchor newPosition->setAxes(mParentPlot->xAxis, mParentPlot->yAxis); newPosition->setType(QCPItemPosition::ptPlotCoords); if (mParentPlot->axisRect()) newPosition->setAxisRect(mParentPlot->axisRect()); newPosition->setCoords(0, 0); return newPosition; } /*! \internal Creates a QCPItemAnchor, registers it with this item and returns a pointer to it. The specified \a name must be a unique string that is usually identical to the variable name of the anchor member (This is needed to provide the name based \ref anchor access to anchors). The \a anchorId must be a number identifying the created anchor. It is recommended to create an enum (e.g. "AnchorIndex") for this on each item that uses anchors. This id is used by the anchor to identify itself when it calls QCPAbstractItem::anchorPixelPoint. That function then returns the correct pixel coordinates for the passed anchor id. Don't delete anchors created by this function manually, as the item will take care of it. Use this function in the constructor (initialization list) of the specific item subclass to create each anchor member. Don't create QCPItemAnchors with \b new yourself, because then they won't be registered with the item properly. \see createPosition */ QCPItemAnchor *QCPAbstractItem::createAnchor(const QString &name, int anchorId) { if (hasAnchor(name)) qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; QCPItemAnchor *newAnchor = new QCPItemAnchor(mParentPlot, this, name, anchorId); mAnchors.append(newAnchor); return newAnchor; } /* inherits documentation from base class */ void QCPAbstractItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) Q_UNUSED(details) if (mSelectable) { bool selBefore = mSelected; setSelected(additive ? !mSelected : true); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ void QCPAbstractItem::deselectEvent(bool *selectionStateChanged) { if (mSelectable) { bool selBefore = mSelected; setSelected(false); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ QCP::Interaction QCPAbstractItem::selectionCategory() const { return QCP::iSelectItems; } /*! \file */ /*! \mainpage %QCustomPlot 1.0.1 Documentation \image html qcp-doc-logo.png Below is a brief overview of and guide to the classes and their relations. If you are new to QCustomPlot and just want to start using it, it's recommended to look at the tutorials and examples at http://www.qcustomplot.com/ This documentation is especially helpful as a reference, when you're familiar with the basic concept of how to use %QCustomPlot and you wish to learn more about specific functionality. See the \ref classoverview "class overview" for diagrams explaining the relationships between the most important classes of the QCustomPlot library. The central widget which displays the plottables and axes on its surface is QCustomPlot. Every QCustomPlot contains four axes by default. They can be accessed via the members xAxis, yAxis, xAxis2 and yAxis2, and are of type QCPAxis. QCustomPlot supports an arbitrary number of axes and axis rects, see the documentation of QCPAxisRect for details. \section mainpage-plottables Plottables \a Plottables are classes that display any kind of data inside the QCustomPlot. They all derive from QCPAbstractPlottable. For example, the QCPGraph class is a plottable that displays a graph inside the plot with different line styles, scatter styles, filling etc. Since plotting graphs is such a dominant use case, QCustomPlot has a special interface for working with QCPGraph plottables, that makes it very easy to handle them:\n You create a new graph with QCustomPlot::addGraph and access them with QCustomPlot::graph. For all other plottables, you need to use the normal plottable interface:\n First, you create an instance of the plottable you want, e.g. \code QCPCurve *newCurve = new QCPCurve(customPlot->xAxis, customPlot->yAxis);\endcode add it to the customPlot: \code customPlot->addPlottable(newCurve);\endcode and then modify the properties of the newly created plottable via the <tt>newCurve</tt> pointer. Plottables (including graphs) can be retrieved via QCustomPlot::plottable. Since the return type of that function is the abstract base class of all plottables, QCPAbstractPlottable, you will probably want to qobject_cast the returned pointer to the respective plottable subclass. (As usual, if the cast returns zero, the plottable wasn't of that specific subclass.) All further interfacing with plottables (e.g how to set data) is specific to the plottable type. See the documentations of the subclasses: QCPGraph, QCPCurve, QCPBars, QCPStatisticalBox. \section mainpage-axes Controlling the Axes As mentioned, QCustomPlot has four axes by default: \a xAxis (bottom), \a yAxis (left), \a xAxis2 (top), \a yAxis2 (right). Their range is handled by the simple QCPRange class. You can set the range with the QCPAxis::setRange function. By default, the axes represent a linear scale. To set a logarithmic scale, set \ref QCPAxis::setScaleType to \ref QCPAxis::stLogarithmic. The logarithm base can be set freely with \ref QCPAxis::setScaleLogBase. By default, an axis automatically creates and labels ticks in a sensible manner. See the following functions for tick manipulation:\n QCPAxis::setTicks, QCPAxis::setAutoTicks, QCPAxis::setAutoTickCount, QCPAxis::setAutoTickStep, QCPAxis::setTickLabels, QCPAxis::setTickLabelType, QCPAxis::setTickLabelRotation, QCPAxis::setTickStep, QCPAxis::setTickLength,... Each axis can be given an axis label (e.g. "Voltage (mV)") with QCPAxis::setLabel. The distance of an axis backbone to the respective viewport border is called its margin. Normally, the margins are calculated automatically. To change this, set \ref QCPAxisRect::setAutoMargins to exclude the respective margin sides, set the margins manually with \ref QCPAxisRect::setMargins. The main axis rect can be reached with \ref QCustomPlot::axisRect(). \section mainpage-legend Plot Legend Every QCustomPlot owns one QCPLegend (as \a legend) by default. A legend is a small layout element inside the plot which lists the plottables with an icon of the plottable line/symbol and a description. The Description is retrieved from the plottable name (QCPAbstractPlottable::setName). Plottables can be added and removed from the legend via \ref QCPAbstractPlottable::addToLegend and \ref QCPAbstractPlottable::removeFromLegend. By default, adding a plottable to QCustomPlot automatically adds it to the legend, too. This behaviour can be modified with the QCustomPlot::setAutoAddPlottableToLegend property. The QCPLegend provides an interface to access, add and remove legend items directly, too. See QCPLegend::item, QCPLegend::itemWithPlottable, QCPLegend::addItem, QCPLegend::removeItem for example. Multiple legends are supported via the layout system (as a QCPLegend simply is a normal layout element). \section mainpage-userinteraction User Interactions QCustomPlot supports dragging axis ranges with the mouse (\ref QCPAxisRect::setRangeDrag), zooming axis ranges with the mouse wheel (\ref QCPAxisRect::setRangeZoom) and a complete selection mechanism. The availability of these interactions is controlled with \ref QCustomPlot::setInteractions. For details about the interaction system, see the documentation there. Further, QCustomPlot always emits corresponding signals, when objects are clicked or doubleClicked. See \ref QCustomPlot::plottableClick, \ref QCustomPlot::plottableDoubleClick and \ref QCustomPlot::axisClick for example. \section mainpage-items Items Apart from plottables there is another category of plot objects that are important: Items. The base class of all items is QCPAbstractItem. An item sets itself apart from plottables in that it's not necessarily bound to any axes. This means it may also be positioned in absolute pixel coordinates or placed at a relative position on an axis rect. Further, it usually doesn't represent data directly, but acts as decoration, emphasis, description etc. Multiple items can be arranged in a parent-child-hierarchy allowing for dynamical behaviour. For example, you could place the head of an arrow at a fixed plot coordinate, so it always points to some important area in the plot. The tail of the arrow can be anchored to a text item which always resides in the top center of the axis rect, independent of where the user drags the axis ranges. This way the arrow stretches and turns so it always points from the label to the specified plot coordinate, without any further code necessary. For a more detailed introduction, see the QCPAbstractItem documentation, and from there the documentations of the individual built-in items, to find out how to use them. \section mainpage-layoutelements Layout elements and layouts QCustomPlot uses an internal layout system to provide dynamic sizing and positioning of objects like the axis rect(s), legends and the plot title. They are all based on \ref QCPLayoutElement and are arranged by placing them inside a \ref QCPLayout. Details on this topic are given on the dedicated page about \ref thelayoutsystem "the layout system". \section mainpage-performancetweaks Performance Tweaks Although QCustomPlot is quite fast, some features like translucent fills, antialiasing and thick lines can cause a significant slow down. If you notice this in your application, here are some thoughts on how to increase performance. By far the most time is spent in the drawing functions, specifically the drawing of graphs. For maximum performance, consider the following (most recommended/effective measures first): \li use Qt 4.8.0 and up. Performance has doubled or tripled with respect to Qt 4.7.4. However QPainter was broken and drawing pixel precise things, e.g. scatters, isn't possible with Qt >= 4.8.0. So it's a performance vs. plot quality tradeoff when switching to Qt 4.8. \li To increase responsiveness during dragging, consider setting \ref QCustomPlot::setNoAntialiasingOnDrag to true. \li On X11 (GNU/Linux), avoid the slow native drawing system, use raster by supplying "-graphicssystem raster" as command line argument or calling QApplication::setGraphicsSystem("raster") before creating the QApplication object. (Only available for Qt versions before 5.0) \li On all operating systems, use OpenGL hardware acceleration by supplying "-graphicssystem opengl" as command line argument or calling QApplication::setGraphicsSystem("opengl") (Only available for Qt versions before 5.0). If OpenGL is available, this will slightly decrease the quality of antialiasing, but extremely increase performance especially with alpha (semi-transparent) fills, much antialiasing and a large QCustomPlot drawing surface. Note however, that the maximum frame rate might be constrained by the vertical sync frequency of your monitor (VSync can be disabled in the graphics card driver configuration). So for simple plots (where the potential framerate is far above 60 frames per second), OpenGL acceleration might achieve numerically lower frame rates than the other graphics systems, because they are not capped at the VSync frequency. \li Avoid any kind of alpha (transparency), especially in fills \li Avoid lines with a pen width greater than one \li Avoid any kind of antialiasing, especially in graph lines (see \ref QCustomPlot::setNotAntialiasedElements) \li Avoid repeatedly setting the complete data set with \ref QCPGraph::setData. Use \ref QCPGraph::addData instead, if most data points stay unchanged, e.g. in a running measurement. \li Set the \a copy parameter of the setData functions to false, so only pointers get transferred. (Relevant only if preparing data maps with a large number of points, i.e. over 10000) \section mainpage-flags Preprocessor Define Flags QCustomPlot understands some preprocessor defines that are useful for debugging and compilation: <dl> <dt>\c QCUSTOMPLOT_COMPILE_LIBRARY <dd>Define this flag when you compile QCustomPlot as a shared library (.so/.dll) <dt>\c QCUSTOMPLOT_USE_LIBRARY <dd>Define this flag before including the header, when using QCustomPlot as a shared library <dt>\c QCUSTOMPLOT_CHECK_DATA <dd>If this flag is defined, the QCustomPlot plottables will perform data validity checks on every redraw. This means they will give qDebug output when you plot \e inf or \e nan values, they will not fix your data. </dl> */ /*! \page classoverview Class Overview The following diagrams may help to gain a deeper understanding of the relationships between classes that make up the QCustomPlot library. The diagrams are not exhaustive, so only the classes deemed most relevant are shown. \section classoverview-relations Class Relationship Diagram \image html RelationOverview.png "Overview of most important classes and their relations" \section classoverview-inheritance Class Inheritance Tree \image html InheritanceOverview.png "Inheritance tree of most important classes" */ //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCustomPlot //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCustomPlot \brief The central class of the library. This is the QWidget which displays the plot and interacts with the user. For tutorials on how to use QCustomPlot, see the website\n http://www.qcustomplot.com/ */ /* start of documentation of inline functions */ /*! \fn QRect QCustomPlot::viewport() const Returns the viewport rect of this QCustomPlot instance. The viewport is the area the plot is drawn in, all mechanisms, e.g. margin caluclation take the viewport to be the outer border of the plot. The viewport normally is the rect() of the QCustomPlot widget, i.e. a rect with top left (0, 0) and size of the QCustomPlot widget. Don't confuse the viewport with the axis rect (QCustomPlot::axisRect). An axis rect is typically an area enclosed by four axes, where the graphs/plottables are drawn in. The viewport is larger and contains also the axes themselves, their tick numbers, their labels, the plot title etc. Only when saving to a file (see \ref savePng, savePdf etc.) the viewport is temporarily modified to allow saving plots with sizes independent of the current widget size. */ /*! \fn QCPLayoutGrid *QCustomPlot::plotLayout() const Returns the top level layout of this QCustomPlot instance. It is a \ref QCPLayoutGrid, initially containing just one cell with the main QCPAxisRect inside. */ /* end of documentation of inline functions */ /* start of documentation of signals */ /*! \fn void QCustomPlot::mouseDoubleClick(QMouseEvent *event) This signal is emitted when the QCustomPlot receives a mouse double click event. */ /*! \fn void QCustomPlot::mousePress(QMouseEvent *event) This signal is emitted when the QCustomPlot receives a mouse press event. It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref QCPAxisRect::setRangeDragAxes. */ /*! \fn void QCustomPlot::mouseMove(QMouseEvent *event) This signal is emitted when the QCustomPlot receives a mouse move event. It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref QCPAxisRect::setRangeDragAxes. \warning It is discouraged to change the drag-axes with \ref QCPAxisRect::setRangeDragAxes here, because the dragging starting point was saved the moment the mouse was pressed. Thus it only has a meaning for the range drag axes that were set at that moment. If you want to change the drag axes, consider doing this in the \ref mousePress signal instead. */ /*! \fn void QCustomPlot::mouseRelease(QMouseEvent *event) This signal is emitted when the QCustomPlot receives a mouse release event. It is emitted before QCustomPlot handles any other mechanisms like object selection. So a slot connected to this signal can still influence the behaviour e.g. with \ref setInteractions or \ref QCPAbstractPlottable::setSelectable. */ /*! \fn void QCustomPlot::mouseWheel(QMouseEvent *event) This signal is emitted when the QCustomPlot receives a mouse wheel event. It is emitted before QCustomPlot handles any other mechanisms like range zooming. So a slot connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeZoomAxes or \ref QCPAxisRect::setRangeZoomFactor. */ /*! \fn void QCustomPlot::plottableClick(QCPAbstractPlottable *plottable, QMouseEvent *event) This signal is emitted when a plottable is clicked. \a event is the mouse event that caused the click and \a plottable is the plottable that received the click. \see plottableDoubleClick */ /*! \fn void QCustomPlot::plottableDoubleClick(QCPAbstractPlottable *plottable, QMouseEvent *event) This signal is emitted when a plottable is double clicked. \a event is the mouse event that caused the click and \a plottable is the plottable that received the click. \see plottableClick */ /*! \fn void QCustomPlot::itemClick(QCPAbstractItem *item, QMouseEvent *event) This signal is emitted when an item is clicked. \a event is the mouse event that caused the click and \a item is the item that received the click. \see itemDoubleClick */ /*! \fn void QCustomPlot::itemDoubleClick(QCPAbstractItem *item, QMouseEvent *event) This signal is emitted when an item is double clicked. \a event is the mouse event that caused the click and \a item is the item that received the click. \see itemClick */ /*! \fn void QCustomPlot::axisClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) This signal is emitted when an axis is clicked. \a event is the mouse event that caused the click, \a axis is the axis that received the click and \a part indicates the part of the axis that was clicked. \see axisDoubleClick */ /*! \fn void QCustomPlot::axisDoubleClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) This signal is emitted when an axis is double clicked. \a event is the mouse event that caused the click, \a axis is the axis that received the click and \a part indicates the part of the axis that was clicked. \see axisClick */ /*! \fn void QCustomPlot::legendClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) This signal is emitted when a legend (item) is clicked. \a event is the mouse event that caused the click, \a legend is the legend that received the click and \a item is the legend item that received the click. If only the legend and no item is clicked, \a item is 0. This happens for a click inside the legend padding or the space between two items. \see legendDoubleClick */ /*! \fn void QCustomPlot::legendDoubleClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) This signal is emitted when a legend (item) is double clicked. \a event is the mouse event that caused the click, \a legend is the legend that received the click and \a item is the legend item that received the click. If only the legend and no item is clicked, \a item is 0. This happens for a click inside the legend padding or the space between two items. \see legendClick */ /*! \fn void QCustomPlot:: titleClick(QMouseEvent *event, QCPPlotTitle *title) This signal is emitted when a plot title is clicked. \a event is the mouse event that caused the click and \a title is the plot title that received the click. \see titleDoubleClick */ /*! \fn void QCustomPlot::titleDoubleClick(QMouseEvent *event, QCPPlotTitle *title) This signal is emitted when a plot title is double clicked. \a event is the mouse event that caused the click and \a title is the plot title that received the click. \see titleClick */ /*! \fn void QCustomPlot::selectionChangedByUser() This signal is emitted after the user has changed the selection in the QCustomPlot, e.g. by clicking. It is not emitted when the selection state of an object has changed programmatically by a direct call to setSelected() on an object or by calling \ref deselectAll. In addition to this signal, selectable objects also provide individual signals, for example QCPAxis::selectionChanged or QCPAbstractPlottable::selectionChanged. Note that those signals are emitted even if the selection state is changed programmatically. See the documentation of \ref setInteractions for details about the selection mechanism. \see selectedPlottables, selectedGraphs, selectedItems, selectedAxes, selectedLegends */ /*! \fn void QCustomPlot::beforeReplot() This signal is emitted immediately before a replot takes place (caused by a call to the slot \ref replot). It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them replot synchronously, it won't cause an infinite recursion. \see replot, afterReplot */ /*! \fn void QCustomPlot::afterReplot() This signal is emitted immediately after a replot has taken place (caused by a call to the slot \ref replot). It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them replot synchronously, it won't cause an infinite recursion. \see replot, beforeReplot */ /* end of documentation of signals */ /*! Constructs a QCustomPlot and sets reasonable default values. */ QCustomPlot::QCustomPlot(QWidget *parent) : QWidget(parent), xAxis(0), yAxis(0), xAxis2(0), yAxis2(0), legend(0), mPlotLayout(0), mAutoAddPlottableToLegend(true), mAntialiasedElements(QCP::aeNone), mNotAntialiasedElements(QCP::aeNone), mInteractions(0), mSelectionTolerance(8), mNoAntialiasingOnDrag(false), mBackgroundBrush(Qt::white, Qt::SolidPattern), mBackgroundScaled(true), mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), mCurrentLayer(0), mPlottingHints(QCP::phCacheLabels), mMultiSelectModifier(Qt::ControlModifier), mPaintBuffer(size()), mMouseEventElement(0), mReplotting(false) { setAttribute(Qt::WA_NoMousePropagation); setAttribute(Qt::WA_OpaquePaintEvent); setMouseTracking(true); QLocale currentLocale = locale(); currentLocale.setNumberOptions(QLocale::OmitGroupSeparator); setLocale(currentLocale); // create initial layers: mLayers.append(new QCPLayer(this, "background")); mLayers.append(new QCPLayer(this, "grid")); mLayers.append(new QCPLayer(this, "main")); mLayers.append(new QCPLayer(this, "axes")); mLayers.append(new QCPLayer(this, "legend")); updateLayerIndices(); setCurrentLayer("main"); // create initial layout, axis rect and legend: mPlotLayout = new QCPLayoutGrid; mPlotLayout->initializeParentPlot(this); mPlotLayout->setParent(this); // important because if parent is QWidget, QCPLayout::sizeConstraintsChanged will call QWidget::updateGeometry QCPAxisRect *defaultAxisRect = new QCPAxisRect(this, true); mPlotLayout->addElement(0, 0, defaultAxisRect); xAxis = defaultAxisRect->axis(QCPAxis::atBottom); yAxis = defaultAxisRect->axis(QCPAxis::atLeft); xAxis2 = defaultAxisRect->axis(QCPAxis::atTop); yAxis2 = defaultAxisRect->axis(QCPAxis::atRight); legend = new QCPLegend; legend->setVisible(false); defaultAxisRect->insetLayout()->addElement(legend, Qt::AlignRight|Qt::AlignTop); defaultAxisRect->insetLayout()->setMargins(QMargins(12, 12, 12, 12)); defaultAxisRect->setLayer("background"); xAxis->setLayer("axes"); yAxis->setLayer("axes"); xAxis2->setLayer("axes"); yAxis2->setLayer("axes"); xAxis->grid()->setLayer("grid"); yAxis->grid()->setLayer("grid"); xAxis2->grid()->setLayer("grid"); yAxis2->grid()->setLayer("grid"); legend->setLayer("legend"); setViewport(rect()); // needs to be called after mPlotLayout has been created #ifdef Q_OS_WIN setPlottingHint(QCP::phForceRepaint); #endif replot(); } QCustomPlot::~QCustomPlot() { clearPlottables(); clearItems(); if (mPlotLayout) { delete mPlotLayout; mPlotLayout = 0; } mCurrentLayer = 0; qDeleteAll(mLayers); // don't use removeLayer, because it would prevent the last layer to be removed mLayers.clear(); } /*! Sets which elements are forcibly drawn antialiased as an \a or combination of QCP::AntialiasedElement. This overrides the antialiasing settings for whole element groups, normally controlled with the \a setAntialiasing function on the individual elements. If an element is neither specified in \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on each individual element instance is used. For example, if \a antialiasedElements contains \ref QCP::aePlottables, all plottables will be drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set to. if an element in \a antialiasedElements is already set in \ref setNotAntialiasedElements, it is removed from there. \see setNotAntialiasedElements */ void QCustomPlot::setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements) { mAntialiasedElements = antialiasedElements; // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: if ((mNotAntialiasedElements & mAntialiasedElements) != 0) mNotAntialiasedElements |= ~mAntialiasedElements; } /*! Sets whether the specified \a antialiasedElement is forcibly drawn antialiased. See \ref setAntialiasedElements for details. \see setNotAntialiasedElement */ void QCustomPlot::setAntialiasedElement(QCP::AntialiasedElement antialiasedElement, bool enabled) { if (!enabled && mAntialiasedElements.testFlag(antialiasedElement)) mAntialiasedElements &= ~antialiasedElement; else if (enabled && !mAntialiasedElements.testFlag(antialiasedElement)) mAntialiasedElements |= antialiasedElement; // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: if ((mNotAntialiasedElements & mAntialiasedElements) != 0) mNotAntialiasedElements |= ~mAntialiasedElements; } /*! Sets which elements are forcibly drawn not antialiased as an \a or combination of QCP::AntialiasedElement. This overrides the antialiasing settings for whole element groups, normally controlled with the \a setAntialiasing function on the individual elements. If an element is neither specified in \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on each individual element instance is used. For example, if \a notAntialiasedElements contains \ref QCP::aePlottables, no plottables will be drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set to. if an element in \a notAntialiasedElements is already set in \ref setAntialiasedElements, it is removed from there. \see setAntialiasedElements */ void QCustomPlot::setNotAntialiasedElements(const QCP::AntialiasedElements &notAntialiasedElements) { mNotAntialiasedElements = notAntialiasedElements; // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: if ((mNotAntialiasedElements & mAntialiasedElements) != 0) mAntialiasedElements |= ~mNotAntialiasedElements; } /*! Sets whether the specified \a notAntialiasedElement is forcibly drawn not antialiased. See \ref setNotAntialiasedElements for details. \see setAntialiasedElement */ void QCustomPlot::setNotAntialiasedElement(QCP::AntialiasedElement notAntialiasedElement, bool enabled) { if (!enabled && mNotAntialiasedElements.testFlag(notAntialiasedElement)) mNotAntialiasedElements &= ~notAntialiasedElement; else if (enabled && !mNotAntialiasedElements.testFlag(notAntialiasedElement)) mNotAntialiasedElements |= notAntialiasedElement; // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: if ((mNotAntialiasedElements & mAntialiasedElements) != 0) mAntialiasedElements |= ~mNotAntialiasedElements; } /*! If set to true, adding a plottable (e.g. a graph) to the QCustomPlot automatically also adds the plottable to the legend (QCustomPlot::legend). \see addPlottable, addGraph, QCPLegend::addItem */ void QCustomPlot::setAutoAddPlottableToLegend(bool on) { mAutoAddPlottableToLegend = on; } /*! Sets the possible interactions of this QCustomPlot as an or-combination of \ref QCP::Interaction enums. There are the following types of interactions: <b>Axis range manipulation</b> is controlled via \ref QCP::iRangeDrag and \ref QCP::iRangeZoom. When the respective interaction is enabled, the user may drag axes ranges and zoom with the mouse wheel. For details how to control which axes the user may drag/zoom and in what orientations, see \ref QCPAxisRect::setRangeDrag, \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeDragAxes, \ref QCPAxisRect::setRangeZoomAxes. <b>Plottable selection</b> is controlled by \ref QCP::iSelectPlottables. If \ref QCP::iSelectPlottables is set, the user may select plottables (graphs, curves, bars,...) by clicking on them or in their vicinity (\ref setSelectionTolerance). Whether the user can actually select a plottable can further be restricted with the \ref QCPAbstractPlottable::setSelectable function on the specific plottable. To find out whether a specific plottable is selected, call QCPAbstractPlottable::selected(). To retrieve a list of all currently selected plottables, call \ref selectedPlottables. If you're only interested in QCPGraphs, you may use the convenience function \ref selectedGraphs. <b>Item selection</b> is controlled by \ref QCP::iSelectItems. If \ref QCP::iSelectItems is set, the user may select items (QCPItemLine, QCPItemText,...) by clicking on them or in their vicinity. To find out whether a specific item is selected, call QCPAbstractItem::selected(). To retrieve a list of all currently selected items, call \ref selectedItems. <b>Axis selection</b> is controlled with \ref QCP::iSelectAxes. If \ref QCP::iSelectAxes is set, the user may select parts of the axes by clicking on them. What parts exactly (e.g. Axis base line, tick labels, axis label) are selectable can be controlled via \ref QCPAxis::setSelectableParts for each axis. To retrieve a list of all axes that currently contain selected parts, call \ref selectedAxes. Which parts of an axis are selected, can be retrieved with QCPAxis::selectedParts(). <b>Legend selection</b> is controlled with \ref QCP::iSelectLegend. If this is set, the user may select the legend itself or individual items by clicking on them. What parts exactly are selectable can be controlled via \ref QCPLegend::setSelectableParts. To find out whether the legend or any of its child items are selected, check the value of QCPLegend::selectedParts. To find out which child items are selected, call \ref QCPLegend::selectedItems. <b>All other selectable elements</b> The selection of all other selectable objects (e.g. QCPPlotTitle, or your own layerable subclasses) is controlled with \ref QCP::iSelectOther. If set, the user may select those objects by clicking on them. To find out which are currently selected, you need to check their selected state explicitly. If the selection state has changed by user interaction, the \ref selectionChangedByUser signal is emitted. Each selectable object additionally emits an individual selectionChanged signal whenever their selection state has changed, i.e. not only by user interaction. To allow multiple objects to be selected by holding the selection modifier (\ref setMultiSelectModifier), set the flag \ref QCP::iMultiSelect. \note In addition to the selection mechanism presented here, QCustomPlot always emits corresponding signals, when an object is clicked or double clicked. see \ref plottableClick and \ref plottableDoubleClick for example. \see setInteraction, setSelectionTolerance */ void QCustomPlot::setInteractions(const QCP::Interactions &interactions) { mInteractions = interactions; } /*! Sets the single \a interaction of this QCustomPlot to \a enabled. For details about the interaction system, see \ref setInteractions. \see setInteractions */ void QCustomPlot::setInteraction(const QCP::Interaction &interaction, bool enabled) { if (!enabled && mInteractions.testFlag(interaction)) mInteractions &= ~interaction; else if (enabled && !mInteractions.testFlag(interaction)) mInteractions |= interaction; } /*! Sets the tolerance that is used to decide whether a click selects an object (e.g. a plottable) or not. If the user clicks in the vicinity of the line of e.g. a QCPGraph, it's only regarded as a potential selection when the minimum distance between the click position and the graph line is smaller than \a pixels. Objects that are defined by an area (e.g. QCPBars) only react to clicks directly inside the area and ignore this selection tolerance. In other words, it only has meaning for parts of objects that are too thin to exactly hit with a click and thus need such a tolerance. \see setInteractions, QCPLayerable::selectTest */ void QCustomPlot::setSelectionTolerance(int pixels) { mSelectionTolerance = pixels; } /*! Sets whether antialiasing is disabled for this QCustomPlot while the user is dragging axes ranges. If many objects, especially plottables, are drawn antialiased, this greatly improves performance during dragging. Thus it creates a more responsive user experience. As soon as the user stops dragging, the last replot is done with normal antialiasing, to restore high image quality. \see setAntialiasedElements, setNotAntialiasedElements */ void QCustomPlot::setNoAntialiasingOnDrag(bool enabled) { mNoAntialiasingOnDrag = enabled; } /*! Sets the plotting hints for this QCustomPlot instance as an \a or combination of QCP::PlottingHint. \see setPlottingHint */ void QCustomPlot::setPlottingHints(const QCP::PlottingHints &hints) { mPlottingHints = hints; } /*! Sets the specified plotting \a hint to \a enabled. \see setPlottingHints */ void QCustomPlot::setPlottingHint(QCP::PlottingHint hint, bool enabled) { QCP::PlottingHints newHints = mPlottingHints; if (!enabled) newHints &= ~hint; else newHints |= hint; if (newHints != mPlottingHints) setPlottingHints(newHints); } /*! Sets the keyboard modifier that will be recognized as multi-select-modifier. If \ref QCP::iMultiSelect is specified in \ref setInteractions, the user may select multiple objects by clicking on them one after the other while holding down \a modifier. By default the multi-select-modifier is set to Qt::ControlModifier. \see setInteractions */ void QCustomPlot::setMultiSelectModifier(Qt::KeyboardModifier modifier) { mMultiSelectModifier = modifier; } /*! Sets the viewport of this QCustomPlot. The Viewport is the area that the top level layout (QCustomPlot::plotLayout()) uses as its rect. Normally, the viewport is the entire widget rect. This function is used to allow arbitrary size exports with \ref toPixmap, \ref savePng, \ref savePdf, etc. by temporarily changing the viewport size. */ void QCustomPlot::setViewport(const QRect &rect) { mViewport = rect; if (mPlotLayout) mPlotLayout->setOuterRect(mViewport); } /*! Sets \a pm as the viewport background pixmap (see \ref setViewport). The pixmap is always drawn below all other objects in the plot. For cases where the provided pixmap doesn't have the same size as the viewport, scaling can be enabled with \ref setBackgroundScaled and the scaling mode (whether and how the aspect ratio is preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, consider using the overloaded version of this function. If a background brush was set with \ref setBackground(const QBrush &brush), the viewport will first be filled with that brush, before drawing the background pixmap. This can be useful for background pixmaps with translucent areas. \see setBackgroundScaled, setBackgroundScaledMode */ void QCustomPlot::setBackground(const QPixmap &pm) { mBackgroundPixmap = pm; mScaledBackgroundPixmap = QPixmap(); } /*! Sets the background brush of the viewport (see \ref setViewport). Before drawing everything else, the background is filled with \a brush. If a background pixmap was set with \ref setBackground(const QPixmap &pm), this brush will be used to fill the viewport before the background pixmap is drawn. This can be useful for background pixmaps with translucent areas. Set \a brush to Qt::NoBrush or Qt::Transparent to leave background transparent. This can be useful for exporting to image formats which support transparency, e.g. \ref savePng. \see setBackgroundScaled, setBackgroundScaledMode */ void QCustomPlot::setBackground(const QBrush &brush) { mBackgroundBrush = brush; } /*! \overload Allows setting the background pixmap of the viewport, whether it shall be scaled and how it shall be scaled in one call. \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode */ void QCustomPlot::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) { mBackgroundPixmap = pm; mScaledBackgroundPixmap = QPixmap(); mBackgroundScaled = scaled; mBackgroundScaledMode = mode; } /*! Sets whether the viewport background pixmap shall be scaled to fit the viewport. If \a scaled is set to true, control whether and how the aspect ratio of the original pixmap is preserved with \ref setBackgroundScaledMode. Note that the scaled version of the original pixmap is buffered, so there is no performance penalty on replots. (Except when the viewport dimensions are changed continuously.) \see setBackground, setBackgroundScaledMode */ void QCustomPlot::setBackgroundScaled(bool scaled) { mBackgroundScaled = scaled; } /*! If scaling of the viewport background pixmap is enabled (\ref setBackgroundScaled), use this function to define whether and how the aspect ratio of the original pixmap is preserved. \see setBackground, setBackgroundScaled */ void QCustomPlot::setBackgroundScaledMode(Qt::AspectRatioMode mode) { mBackgroundScaledMode = mode; } /*! Returns the plottable with \a index. If the index is invalid, returns 0. There is an overloaded version of this function with no parameter which returns the last added plottable, see QCustomPlot::plottable() \see plottableCount, addPlottable */ QCPAbstractPlottable *QCustomPlot::plottable(int index) { if (index >= 0 && index < mPlottables.size()) { return mPlottables.at(index); } else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return 0; } } /*! \overload Returns the last plottable that was added with \ref addPlottable. If there are no plottables in the plot, returns 0. \see plottableCount, addPlottable */ QCPAbstractPlottable *QCustomPlot::plottable() { if (!mPlottables.isEmpty()) { return mPlottables.last(); } else return 0; } /*! Adds the specified plottable to the plot and, if \ref setAutoAddPlottableToLegend is enabled, to the legend (QCustomPlot::legend). QCustomPlot takes ownership of the plottable. Returns true on success, i.e. when \a plottable isn't already in the plot and the parent plot of \a plottable is this QCustomPlot (the latter is controlled by what axes were passed in the plottable's constructor). \see plottable, plottableCount, removePlottable, clearPlottables */ bool QCustomPlot::addPlottable(QCPAbstractPlottable *plottable) { if (mPlottables.contains(plottable)) { qDebug() << Q_FUNC_INFO << "plottable already added to this QCustomPlot:" << reinterpret_cast<quintptr>(plottable); return false; } if (plottable->parentPlot() != this) { qDebug() << Q_FUNC_INFO << "plottable not created with this QCustomPlot as parent:" << reinterpret_cast<quintptr>(plottable); return false; } mPlottables.append(plottable); // possibly add plottable to legend: if (mAutoAddPlottableToLegend) plottable->addToLegend(); // special handling for QCPGraphs to maintain the simple graph interface: if (QCPGraph *graph = qobject_cast<QCPGraph*>(plottable)) mGraphs.append(graph); if (!plottable->layer()) // usually the layer is already set in the constructor of the plottable (via QCPLayerable constructor) plottable->setLayer(currentLayer()); return true; } /*! Removes the specified plottable from the plot and, if necessary, from the legend (QCustomPlot::legend). Returns true on success. \see addPlottable, clearPlottables */ bool QCustomPlot::removePlottable(QCPAbstractPlottable *plottable) { if (!mPlottables.contains(plottable)) { qDebug() << Q_FUNC_INFO << "plottable not in list:" << reinterpret_cast<quintptr>(plottable); return false; } // remove plottable from legend: plottable->removeFromLegend(); // special handling for QCPGraphs to maintain the simple graph interface: if (QCPGraph *graph = qobject_cast<QCPGraph*>(plottable)) mGraphs.removeOne(graph); // remove plottable: delete plottable; mPlottables.removeOne(plottable); return true; } /*! \overload Removes the plottable by its \a index. */ bool QCustomPlot::removePlottable(int index) { if (index >= 0 && index < mPlottables.size()) return removePlottable(mPlottables[index]); else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return false; } } /*! Removes all plottables from the plot (and the QCustomPlot::legend, if necessary). Returns the number of plottables removed. \see removePlottable */ int QCustomPlot::clearPlottables() { int c = mPlottables.size(); for (int i=c-1; i >= 0; --i) removePlottable(mPlottables[i]); return c; } /*! Returns the number of currently existing plottables in the plot \see plottable, addPlottable */ int QCustomPlot::plottableCount() const { return mPlottables.size(); } /*! Returns a list of the selected plottables. If no plottables are currently selected, the list is empty. There is a convenience function if you're only interested in selected graphs, see \ref selectedGraphs. \see setInteractions, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelected */ QList<QCPAbstractPlottable*> QCustomPlot::selectedPlottables() const { QList<QCPAbstractPlottable*> result; for (int i=0; i<mPlottables.size(); ++i) { if (mPlottables.at(i)->selected()) result.append(mPlottables.at(i)); } return result; } /*! Returns the plottable at the pixel position \a pos. Plottables that only consist of single lines (like graphs) have a tolerance band around them, see \ref setSelectionTolerance. If multiple plottables come into consideration, the one closest to \a pos is returned. If \a onlySelectable is true, only plottables that are selectable (QCPAbstractPlottable::setSelectable) are considered. If there is no plottable at \a pos, the return value is 0. \see itemAt, layoutElementAt */ QCPAbstractPlottable *QCustomPlot::plottableAt(const QPointF &pos, bool onlySelectable) const { QCPAbstractPlottable *resultPlottable = 0; double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value for (int i=0; i<mPlottables.size(); ++i) { QCPAbstractPlottable *currentPlottable = mPlottables.at(i); if (onlySelectable && !currentPlottable->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPabstractPlottable::selectable continue; if ((currentPlottable->keyAxis()->axisRect()->rect() & currentPlottable->valueAxis()->axisRect()->rect()).contains(pos.toPoint())) // only consider clicks inside the rect that is spanned by the plottable's key/value axes { double currentDistance = currentPlottable->selectTest(pos, false); if (currentDistance >= 0 && currentDistance < resultDistance) { resultPlottable = currentPlottable; resultDistance = currentDistance; } } } return resultPlottable; } /*! Returns whether this QCustomPlot instance contains the \a plottable. \see addPlottable */ bool QCustomPlot::hasPlottable(QCPAbstractPlottable *plottable) const { return mPlottables.contains(plottable); } /*! Returns the graph with \a index. If the index is invalid, returns 0. There is an overloaded version of this function with no parameter which returns the last created graph, see QCustomPlot::graph() \see graphCount, addGraph */ QCPGraph *QCustomPlot::graph(int index) const { if (index >= 0 && index < mGraphs.size()) { return mGraphs.at(index); } else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return 0; } } /*! \overload Returns the last graph, that was created with \ref addGraph. If there are no graphs in the plot, returns 0. \see graphCount, addGraph */ QCPGraph *QCustomPlot::graph() const { if (!mGraphs.isEmpty()) { return mGraphs.last(); } else return 0; } /*! Creates a new graph inside the plot. If \a keyAxis and \a valueAxis are left unspecified (0), the bottom (xAxis) is used as key and the left (yAxis) is used as value axis. If specified, \a keyAxis and \a valueAxis must reside in this QCustomPlot. \a keyAxis will be used as key axis (typically "x") and \a valueAxis as value axis (typically "y") for the graph. Returns a pointer to the newly created graph, or 0 if adding the graph failed. \see graph, graphCount, removeGraph, clearGraphs */ QCPGraph *QCustomPlot::addGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) { if (!keyAxis) keyAxis = xAxis; if (!valueAxis) valueAxis = yAxis; if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "can't use default QCustomPlot xAxis or yAxis, because at least one is invalid (has been deleted)"; return 0; } if (keyAxis->parentPlot() != this || valueAxis->parentPlot() != this) { qDebug() << Q_FUNC_INFO << "passed keyAxis or valueAxis doesn't have this QCustomPlot as parent"; return 0; } QCPGraph *newGraph = new QCPGraph(keyAxis, valueAxis); if (addPlottable(newGraph)) { newGraph->setName("Graph "+QString::number(mGraphs.size())); return newGraph; } else { delete newGraph; return 0; } } /*! Removes the specified \a graph from the plot and, if necessary, from the QCustomPlot::legend. If any other graphs in the plot have a channel fill set towards the removed graph, the channel fill property of those graphs is reset to zero (no channel fill). Returns true on success. \see clearGraphs */ bool QCustomPlot::removeGraph(QCPGraph *graph) { return removePlottable(graph); } /*! \overload Removes the graph by its \a index. */ bool QCustomPlot::removeGraph(int index) { if (index >= 0 && index < mGraphs.size()) return removeGraph(mGraphs[index]); else return false; } /*! Removes all graphs from the plot (and the QCustomPlot::legend, if necessary). Returns the number of graphs removed. \see removeGraph */ int QCustomPlot::clearGraphs() { int c = mGraphs.size(); for (int i=c-1; i >= 0; --i) removeGraph(mGraphs[i]); return c; } /*! Returns the number of currently existing graphs in the plot \see graph, addGraph */ int QCustomPlot::graphCount() const { return mGraphs.size(); } /*! Returns a list of the selected graphs. If no graphs are currently selected, the list is empty. If you are not only interested in selected graphs but other plottables like QCPCurve, QCPBars, etc., use \ref selectedPlottables. \see setInteractions, selectedPlottables, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelected */ QList<QCPGraph*> QCustomPlot::selectedGraphs() const { QList<QCPGraph*> result; for (int i=0; i<mGraphs.size(); ++i) { if (mGraphs.at(i)->selected()) result.append(mGraphs.at(i)); } return result; } /*! Returns the item with \a index. If the index is invalid, returns 0. There is an overloaded version of this function with no parameter which returns the last added item, see QCustomPlot::item() \see itemCount, addItem */ QCPAbstractItem *QCustomPlot::item(int index) const { if (index >= 0 && index < mItems.size()) { return mItems.at(index); } else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return 0; } } /*! \overload Returns the last item, that was added with \ref addItem. If there are no items in the plot, returns 0. \see itemCount, addItem */ QCPAbstractItem *QCustomPlot::item() const { if (!mItems.isEmpty()) { return mItems.last(); } else return 0; } /*! Adds the specified item to the plot. QCustomPlot takes ownership of the item. Returns true on success, i.e. when \a item wasn't already in the plot and the parent plot of \a item is this QCustomPlot. \see item, itemCount, removeItem, clearItems */ bool QCustomPlot::addItem(QCPAbstractItem *item) { if (!mItems.contains(item) && item->parentPlot() == this) { mItems.append(item); return true; } else { qDebug() << Q_FUNC_INFO << "item either already in list or not created with this QCustomPlot as parent:" << reinterpret_cast<quintptr>(item); return false; } } /*! Removes the specified item from the plot. Returns true on success. \see addItem, clearItems */ bool QCustomPlot::removeItem(QCPAbstractItem *item) { if (mItems.contains(item)) { delete item; mItems.removeOne(item); return true; } else { qDebug() << Q_FUNC_INFO << "item not in list:" << reinterpret_cast<quintptr>(item); return false; } } /*! \overload Removes the item by its \a index. */ bool QCustomPlot::removeItem(int index) { if (index >= 0 && index < mItems.size()) return removeItem(mItems[index]); else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return false; } } /*! Removes all items from the plot. Returns the number of items removed. \see removeItem */ int QCustomPlot::clearItems() { int c = mItems.size(); for (int i=c-1; i >= 0; --i) removeItem(mItems[i]); return c; } /*! Returns the number of currently existing items in the plot \see item, addItem */ int QCustomPlot::itemCount() const { return mItems.size(); } /*! Returns a list of the selected items. If no items are currently selected, the list is empty. \see setInteractions, QCPAbstractItem::setSelectable, QCPAbstractItem::setSelected */ QList<QCPAbstractItem*> QCustomPlot::selectedItems() const { QList<QCPAbstractItem*> result; for (int i=0; i<mItems.size(); ++i) { if (mItems.at(i)->selected()) result.append(mItems.at(i)); } return result; } /*! Returns the item at the pixel position \a pos. Items that only consist of single lines (e.g. \ref QCPItemLine or \ref QCPItemCurve) have a tolerance band around them, see \ref setSelectionTolerance. If multiple items come into consideration, the one closest to \a pos is returned. If \a onlySelectable is true, only items that are selectable (QCPAbstractItem::setSelectable) are considered. If there is no item at \a pos, the return value is 0. \see plottableAt, layoutElementAt */ QCPAbstractItem *QCustomPlot::itemAt(const QPointF &pos, bool onlySelectable) const { QCPAbstractItem *resultItem = 0; double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value for (int i=0; i<mItems.size(); ++i) { QCPAbstractItem *currentItem = mItems[i]; if (onlySelectable && !currentItem->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPAbstractItem::selectable continue; if (!currentItem->clipToAxisRect() || currentItem->clipRect().contains(pos.toPoint())) // only consider clicks inside axis cliprect of the item if actually clipped to it { double currentDistance = currentItem->selectTest(pos, false); if (currentDistance >= 0 && currentDistance < resultDistance) { resultItem = currentItem; resultDistance = currentDistance; } } } return resultItem; } /*! Returns whether this QCustomPlot contains the \a item. \see addItem */ bool QCustomPlot::hasItem(QCPAbstractItem *item) const { return mItems.contains(item); } /*! Returns the layer with the specified \a name. If there is no layer with the specified name, 0 is returned. Layer names are case-sensitive. \see addLayer, moveLayer, removeLayer */ QCPLayer *QCustomPlot::layer(const QString &name) const { for (int i=0; i<mLayers.size(); ++i) { if (mLayers.at(i)->name() == name) return mLayers.at(i); } return 0; } /*! \overload Returns the layer by \a index. If the index is invalid, 0 is returned. \see addLayer, moveLayer, removeLayer */ QCPLayer *QCustomPlot::layer(int index) const { if (index >= 0 && index < mLayers.size()) { return mLayers.at(index); } else { qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; return 0; } } /*! Returns the layer that is set as current layer (see \ref setCurrentLayer). */ QCPLayer *QCustomPlot::currentLayer() const { return mCurrentLayer; } /*! Sets the layer with the specified \a name to be the current layer. All layerables (\ref QCPLayerable), e.g. plottables and items, are created on the current layer. Returns true on success, i.e. if there is a layer with the specified \a name in the QCustomPlot. Layer names are case-sensitive. \see addLayer, moveLayer, removeLayer, QCPLayerable::setLayer */ bool QCustomPlot::setCurrentLayer(const QString &name) { if (QCPLayer *newCurrentLayer = layer(name)) { return setCurrentLayer(newCurrentLayer); } else { qDebug() << Q_FUNC_INFO << "layer with name doesn't exist:" << name; return false; } } /*! \overload Sets the provided \a layer to be the current layer. Returns true on success, i.e. when \a layer is a valid layer in the QCustomPlot. \see addLayer, moveLayer, removeLayer */ bool QCustomPlot::setCurrentLayer(QCPLayer *layer) { if (!mLayers.contains(layer)) { qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast<quintptr>(layer); return false; } mCurrentLayer = layer; return true; } /*! Returns the number of currently existing layers in the plot \see layer, addLayer */ int QCustomPlot::layerCount() const { return mLayers.size(); } /*! Adds a new layer to this QCustomPlot instance. The new layer will have the name \a name, which must be unique. Depending on \a insertMode, it is positioned either below or above \a otherLayer. Returns true on success, i.e. if there is no other layer named \a name and \a otherLayer is a valid layer inside this QCustomPlot. If \a otherLayer is 0, the highest layer in the QCustomPlot will be used. For an explanation of what layers are in QCustomPlot, see the documentation of \ref QCPLayer. \see layer, moveLayer, removeLayer */ bool QCustomPlot::addLayer(const QString &name, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) { if (!otherLayer) otherLayer = mLayers.last(); if (!mLayers.contains(otherLayer)) { qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast<quintptr>(otherLayer); return false; } if (layer(name)) { qDebug() << Q_FUNC_INFO << "A layer exists already with the name" << name; return false; } QCPLayer *newLayer = new QCPLayer(this, name); mLayers.insert(otherLayer->index() + (insertMode==limAbove ? 1:0), newLayer); updateLayerIndices(); return true; } /*! Removes the specified \a layer and returns true on success. All layerables (e.g. plottables and items) on the removed layer will be moved to the layer below \a layer. If \a layer is the bottom layer, the layerables are moved to the layer above. In both cases, the total rendering order of all layerables in the QCustomPlot is preserved. If \a layer is the current layer (\ref setCurrentLayer), the layer below (or above, if bottom layer) becomes the new current layer. It is not possible to remove the last layer of the plot. \see layer, addLayer, moveLayer */ bool QCustomPlot::removeLayer(QCPLayer *layer) { if (!mLayers.contains(layer)) { qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast<quintptr>(layer); return false; } if (mLayers.size() < 2) { qDebug() << Q_FUNC_INFO << "can't remove last layer"; return false; } // append all children of this layer to layer below (if this is lowest layer, prepend to layer above) int removedIndex = layer->index(); bool isFirstLayer = removedIndex==0; QCPLayer *targetLayer = isFirstLayer ? mLayers.at(removedIndex+1) : mLayers.at(removedIndex-1); QList<QCPLayerable*> children = layer->children(); if (isFirstLayer) // prepend in reverse order (so order relative to each other stays the same) { for (int i=children.size()-1; i>=0; --i) children.at(i)->moveToLayer(targetLayer, true); } else // append normally { for (int i=0; i<children.size(); ++i) children.at(i)->moveToLayer(targetLayer, false); } // if removed layer is current layer, change current layer to layer below/above: if (layer == mCurrentLayer) setCurrentLayer(targetLayer); // remove layer: delete layer; mLayers.removeOne(layer); updateLayerIndices(); return true; } /*! Moves the specified \a layer either above or below \a otherLayer. Whether it's placed above or below is controlled with \a insertMode. Returns true on success, i.e. when both \a layer and \a otherLayer are valid layers in the QCustomPlot. \see layer, addLayer, moveLayer */ bool QCustomPlot::moveLayer(QCPLayer *layer, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) { if (!mLayers.contains(layer)) { qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast<quintptr>(layer); return false; } if (!mLayers.contains(otherLayer)) { qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast<quintptr>(otherLayer); return false; } mLayers.move(layer->index(), otherLayer->index() + (insertMode==limAbove ? 1:0)); updateLayerIndices(); return true; } /*! Returns the number of axis rects in the plot. All axis rects can be accessed via QCustomPlot::axisRect(). Initially, only one axis rect exists in the plot. \see axisRect, axisRects */ int QCustomPlot::axisRectCount() const { return axisRects().size(); } /*! Returns the axis rect with \a index. Initially, only one axis rect (with index 0) exists in the plot. If multiple axis rects were added, all of them may be accessed with this function in a linear fashion (even when they are nested in a layout hierarchy or inside other axis rects via QCPAxisRect::insetLayout). \see axisRectCount, axisRects */ QCPAxisRect *QCustomPlot::axisRect(int index) const { const QList<QCPAxisRect*> rectList = axisRects(); if (index >= 0 && index < rectList.size()) { return rectList.at(index); } else { qDebug() << Q_FUNC_INFO << "invalid axis rect index" << index; return 0; } } /*! Returns all axis rects in the plot. \see axisRectCount, axisRect */ QList<QCPAxisRect*> QCustomPlot::axisRects() const { QList<QCPAxisRect*> result; QStack<QCPLayoutElement*> elementStack; if (mPlotLayout) elementStack.push(mPlotLayout); while (!elementStack.isEmpty()) { QList<QCPLayoutElement*> subElements = elementStack.pop()->elements(false); for (int i=0; i<subElements.size(); ++i) { if (QCPLayoutElement *element = subElements.at(i)) { elementStack.push(element); if (QCPAxisRect *ar = qobject_cast<QCPAxisRect*>(element)) result.append(ar); } } } return result; } /*! Returns the layout element at pixel position \a pos. If there is no element at that position, returns 0. Only visible elements are used. If \ref QCPLayoutElement::setVisible on the element itself or on any of its parent elements is set to false, it will not be considered. \see itemAt, plottableAt */ QCPLayoutElement *QCustomPlot::layoutElementAt(const QPointF &pos) const { QCPLayoutElement *current = mPlotLayout; bool searchSubElements = true; while (searchSubElements && current) { searchSubElements = false; const QList<QCPLayoutElement*> elements = current->elements(false); for (int i=0; i<elements.size(); ++i) { if (elements.at(i) && elements.at(i)->realVisibility() && elements.at(i)->selectTest(pos, false) >= 0) { current = elements.at(i); searchSubElements = true; break; } } } return current; } /*! Returns the axes that currently have selected parts, i.e. whose selection state is not \ref QCPAxis::spNone. \see selectedPlottables, selectedLegends, setInteractions, QCPAxis::setSelectedParts, QCPAxis::setSelectableParts */ QList<QCPAxis*> QCustomPlot::selectedAxes() const { QList<QCPAxis*> result, allAxes; QList<QCPAxisRect*> rects = axisRects(); for (int i=0; i<rects.size(); ++i) allAxes << rects.at(i)->axes(); for (int i=0; i<allAxes.size(); ++i) { if (allAxes.at(i)->selectedParts() != QCPAxis::spNone) result.append(allAxes.at(i)); } return result; } /*! Returns the legends that currently have selected parts, i.e. whose selection state is not \ref QCPLegend::spNone. \see selectedPlottables, selectedAxes, setInteractions, QCPLegend::setSelectedParts, QCPLegend::setSelectableParts, QCPLegend::selectedItems */ QList<QCPLegend*> QCustomPlot::selectedLegends() const { QList<QCPLegend*> result; QStack<QCPLayoutElement*> elementStack; if (mPlotLayout) elementStack.push(mPlotLayout); while (!elementStack.isEmpty()) { QList<QCPLayoutElement*> subElements = elementStack.pop()->elements(false); for (int i=0; i<subElements.size(); ++i) { if (QCPLayoutElement *element = subElements.at(i)) { elementStack.push(element); if (QCPLegend *leg = qobject_cast<QCPLegend*>(element)) { if (leg->selectedParts() != QCPLegend::spNone) result.append(leg); } } } } return result; } /*! Deselects all layerables (plottables, items, axes, legends,...) of the QCustomPlot. Since calling this function is not a user interaction, this does not emit the \ref selectionChangedByUser signal. The individual selectionChanged signals are emitted though, if the objects were previously selected. \see setInteractions, selectedPlottables, selectedItems, selectedAxes, selectedLegends */ void QCustomPlot::deselectAll() { for (int i=0; i<mLayers.size(); ++i) { QList<QCPLayerable*> layerables = mLayers.at(i)->children(); for (int k=0; k<layerables.size(); ++k) layerables.at(k)->deselectEvent(0); } } /*! Causes a complete replot into the internal buffer. Finally, update() is called, to redraw the buffer on the QCustomPlot widget surface. This is the method that must be called to make changes, for example on the axis ranges or data points of graphs, visible. Under a few circumstances, QCustomPlot causes a replot by itself. Those are resize events of the QCustomPlot widget and user interactions (object selection and range dragging/zooming). Before the replot happens, the signal \ref beforeReplot is emitted. After the replot, \ref afterReplot is emitted. It is safe to mutually connect the replot slot with any of those two signals on two QCustomPlots to make them replot synchronously, it won't cause an infinite recursion. */ void QCustomPlot::replot() { if (mReplotting) // incase signals loop back to replot slot return; mReplotting = true; emit beforeReplot(); mPaintBuffer.fill(mBackgroundBrush.style() == Qt::SolidPattern ? mBackgroundBrush.color() : Qt::transparent); QCPPainter painter; painter.begin(&mPaintBuffer); if (painter.isActive()) { painter.setRenderHint(QPainter::HighQualityAntialiasing); // to make Antialiasing look good if using the OpenGL graphicssystem if (mBackgroundBrush.style() != Qt::SolidPattern && mBackgroundBrush.style() != Qt::NoBrush) painter.fillRect(mViewport, mBackgroundBrush); draw(&painter); painter.end(); if (mPlottingHints.testFlag(QCP::phForceRepaint)) repaint(); else update(); } else // might happen if QCustomPlot has width or height zero qDebug() << Q_FUNC_INFO << "Couldn't activate painter on buffer"; emit afterReplot(); mReplotting = false; } /*! Rescales the axes such that all plottables (like graphs) in the plot are fully visible. It does this by calling \ref QCPAbstractPlottable::rescaleAxes on all plottables. if \a onlyVisible is set to true, only the plottables that have their visibility set to true (QCPLayerable::setVisible), will be used to rescale the axes. \see QCPAbstractPlottable::rescaleAxes */ void QCustomPlot::rescaleAxes(bool onlyVisible) { if (mPlottables.isEmpty()) return; bool firstPlottable = true; for (int i=0; i<mPlottables.size(); ++i) { if (mPlottables.at(i)->realVisibility() || !onlyVisible) { mPlottables.at(i)->rescaleAxes(!firstPlottable); // onlyEnlarge disabled on first plottable firstPlottable = false; } } } /*! Saves a PDF with the vectorized plot to the file \a fileName. The axis ratio as well as the scale of texts and lines will be derived from the specified \a width and \a height. This means, the output will look like the normal on-screen output of a QCustomPlot widget with the corresponding pixel width and height. If either \a width or \a height is zero, the exported image will have the same dimensions as the QCustomPlot widget currently has. \a noCosmeticPen disables the use of cosmetic pens when drawing to the PDF file. Cosmetic pens are pens with numerical width 0, which are always drawn as a one pixel wide line, no matter what zoom factor is set in the PDF-Viewer. For more information about cosmetic pens, see the QPainter and QPen documentation. The objects of the plot will appear in the current selection state. If you don't want any selected objects to be painted in their selected look, deselect everything with \ref deselectAll before calling this function. Returns true on success. \warning \li If you plan on editing the exported PDF file with a vector graphics editor like Inkscape, it is advised to set \a noCosmeticPen to true to avoid losing those cosmetic lines (which might be quite many, because cosmetic pens are the default for e.g. axes and tick marks). \li If calling this function inside the constructor of the parent of the QCustomPlot widget (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this function uses the current width and height of the QCustomPlot widget. However, in Qt, these aren't defined yet inside the constructor, so you would get an image that has strange widths/heights. \see savePng, saveBmp, saveJpg, saveRastered */ bool QCustomPlot::savePdf(const QString &fileName, bool noCosmeticPen, int width, int height) { bool success = false; int newWidth, newHeight; if (width == 0 || height == 0) { newWidth = this->width(); newHeight = this->height(); } else { newWidth = width; newHeight = height; } QPrinter printer(QPrinter::ScreenResolution); printer.setOutputFileName(fileName); printer.setOutputFormat(QPrinter::PdfFormat); printer.setFullPage(true); QRect oldViewport = viewport(); setViewport(QRect(0, 0, newWidth, newHeight)); printer.setPaperSize(viewport().size(), QPrinter::DevicePixel); QCPPainter printpainter; if (printpainter.begin(&printer)) { printpainter.setMode(QCPPainter::pmVectorized); printpainter.setMode(QCPPainter::pmNoCaching); printpainter.setMode(QCPPainter::pmNonCosmetic, noCosmeticPen); printpainter.setWindow(mViewport); if (mBackgroundBrush.style() != Qt::NoBrush && mBackgroundBrush.color() != Qt::white && mBackgroundBrush.color() != Qt::transparent && mBackgroundBrush.color().alpha() > 0) // draw pdf background color if not white/transparent printpainter.fillRect(viewport(), mBackgroundBrush); draw(&printpainter); printpainter.end(); success = true; } setViewport(oldViewport); return success; } /*! Saves a PNG image file to \a fileName on disc. The output plot will have the dimensions \a width and \a height in pixels. If either \a width or \a height is zero, the exported image will have the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full 200*200 pixel resolution. If you use a high scaling factor, it is recommended to enable antialiasing for all elements via temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows QCustomPlot to place objects with sub-pixel accuracy. \warning If calling this function inside the constructor of the parent of the QCustomPlot widget (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this function uses the current width and height of the QCustomPlot widget. However, in Qt, these aren't defined yet inside the constructor, so you would get an image that has strange widths/heights. The objects of the plot will appear in the current selection state. If you don't want any selected objects to be painted in their selected look, deselect everything with \ref deselectAll before calling this function. If you want the PNG to have a transparent background, call \ref setBackground(const QBrush &brush) with no brush (Qt::NoBrush) or a transparent color (Qt::transparent), before saving. PNG compression can be controlled with the \a quality parameter which must be between 0 and 100 or -1 to use the default setting. Returns true on success. If this function fails, most likely the PNG format isn't supported by the system, see Qt docs about QImageWriter::supportedImageFormats(). \see savePdf, saveBmp, saveJpg, saveRastered */ bool QCustomPlot::savePng(const QString &fileName, int width, int height, double scale, int quality) { return saveRastered(fileName, width, height, scale, "PNG", quality); } /*! Saves a JPG image file to \a fileName on disc. The output plot will have the dimensions \a width and \a height in pixels. If either \a width or \a height is zero, the exported image will have the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full 200*200 pixel resolution. If you use a high scaling factor, it is recommended to enable antialiasing for all elements via temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows QCustomPlot to place objects with sub-pixel accuracy. \warning If calling this function inside the constructor of the parent of the QCustomPlot widget (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this function uses the current width and height of the QCustomPlot widget. However, in Qt, these aren't defined yet inside the constructor, so you would get an image that has strange widths/heights. The objects of the plot will appear in the current selection state. If you don't want any selected objects to be painted in their selected look, deselect everything with \ref deselectAll before calling this function. JPG compression can be controlled with the \a quality parameter which must be between 0 and 100 or -1 to use the default setting. Returns true on success. If this function fails, most likely the JPG format isn't supported by the system, see Qt docs about QImageWriter::supportedImageFormats(). \see savePdf, savePng, saveBmp, saveRastered */ bool QCustomPlot::saveJpg(const QString &fileName, int width, int height, double scale, int quality) { return saveRastered(fileName, width, height, scale, "JPG", quality); } /*! Saves a BMP image file to \a fileName on disc. The output plot will have the dimensions \a width and \a height in pixels. If either \a width or \a height is zero, the exported image will have the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full 200*200 pixel resolution. If you use a high scaling factor, it is recommended to enable antialiasing for all elements via temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows QCustomPlot to place objects with sub-pixel accuracy. \warning If calling this function inside the constructor of the parent of the QCustomPlot widget (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this function uses the current width and height of the QCustomPlot widget. However, in Qt, these aren't defined yet inside the constructor, so you would get an image that has strange widths/heights. The objects of the plot will appear in the current selection state. If you don't want any selected objects to be painted in their selected look, deselect everything with \ref deselectAll before calling this function. Returns true on success. If this function fails, most likely the BMP format isn't supported by the system, see Qt docs about QImageWriter::supportedImageFormats(). \see savePdf, savePng, saveJpg, saveRastered */ bool QCustomPlot::saveBmp(const QString &fileName, int width, int height, double scale) { return saveRastered(fileName, width, height, scale, "BMP"); } /*! \internal Returns a minimum size hint that corresponds to the minimum size of the top level layout (\ref plotLayout). To prevent QCustomPlot from being collapsed to size/width zero, set a minimum size (setMinimumSize) either on the whole QCustomPlot or on any layout elements inside the plot. This is especially important, when placed in a QLayout where other components try to take in as much space as possible (e.g. QMdiArea). */ QSize QCustomPlot::minimumSizeHint() const { return mPlotLayout->minimumSizeHint(); } /*! \internal Returns a size hint that is the same as \ref minimumSizeHint. */ QSize QCustomPlot::sizeHint() const { return mPlotLayout->minimumSizeHint(); } /*! \internal Event handler for when the QCustomPlot widget needs repainting. This does not cause a \ref replot, but draws the internal buffer on the widget surface. */ void QCustomPlot::paintEvent(QPaintEvent *event) { Q_UNUSED(event); QPainter painter(this); painter.drawPixmap(0, 0, mPaintBuffer); } /*! \internal Event handler for a resize of the QCustomPlot widget. Causes the internal buffer to be resized to the new size. The viewport (which becomes the outer rect of mPlotLayout) is resized appropriately. Finally a \ref replot is performed. */ void QCustomPlot::resizeEvent(QResizeEvent *event) { // resize and repaint the buffer: mPaintBuffer = QPixmap(event->size()); setViewport(rect()); replot(); } /*! \internal Event handler for when a double click occurs. Emits the \ref mouseDoubleClick signal, then emits the specialized signals when certain objecs are clicked (e.g. \ref plottableDoubleClick, \ref axisDoubleClick, etc.). Finally determines the affected layout element and forwards the event to it. \see mousePressEvent, mouseReleaseEvent */ void QCustomPlot::mouseDoubleClickEvent(QMouseEvent *event) { emit mouseDoubleClick(event); QVariant details; QCPLayerable *clickedLayerable = layerableAt(event->pos(), false, &details); // emit specialized object double click signals: if (QCPAbstractPlottable *ap = qobject_cast<QCPAbstractPlottable*>(clickedLayerable)) emit plottableDoubleClick(ap, event); else if (QCPAxis *ax = qobject_cast<QCPAxis*>(clickedLayerable)) emit axisDoubleClick(ax, details.value<QCPAxis::SelectablePart>(), event); else if (QCPAbstractItem *ai = qobject_cast<QCPAbstractItem*>(clickedLayerable)) emit itemDoubleClick(ai, event); else if (QCPLegend *lg = qobject_cast<QCPLegend*>(clickedLayerable)) emit legendDoubleClick(lg, 0, event); else if (QCPAbstractLegendItem *li = qobject_cast<QCPAbstractLegendItem*>(clickedLayerable)) emit legendDoubleClick(li->parentLegend(), li, event); else if (QCPPlotTitle *pt = qobject_cast<QCPPlotTitle*>(clickedLayerable)) emit titleDoubleClick(event, pt); // call double click event of affected layout element: if (QCPLayoutElement *el = layoutElementAt(event->pos())) el->mouseDoubleClickEvent(event); // call release event of affected layout element (as in mouseReleaseEvent, since the mouseDoubleClick replaces the second release event in double click case): if (mMouseEventElement) { mMouseEventElement->mouseReleaseEvent(event); mMouseEventElement = 0; } //QWidget::mouseDoubleClickEvent(event); don't call base class implementation because it would just cause a mousePress/ReleaseEvent, which we don't want. } /*! \internal Event handler for when a mouse button is pressed. Emits the mousePress signal. Then determines the affected layout element and forwards the event to it. \see mouseMoveEvent, mouseReleaseEvent */ void QCustomPlot::mousePressEvent(QMouseEvent *event) { emit mousePress(event); mMousePressPos = event->pos(); // need this to determine in releaseEvent whether it was a click (no position change between press and release) // call event of affected layout element: mMouseEventElement = layoutElementAt(event->pos()); if (mMouseEventElement) mMouseEventElement->mousePressEvent(event); QWidget::mousePressEvent(event); } /*! \internal Event handler for when the cursor is moved. Emits the \ref mouseMove signal. If a layout element has mouse capture focus (a mousePressEvent happened on top of the layout element before), the mouseMoveEvent is forwarded to that element. \see mousePressEvent, mouseReleaseEvent */ void QCustomPlot::mouseMoveEvent(QMouseEvent *event) { emit mouseMove(event); // call event of affected layout element: if (mMouseEventElement) mMouseEventElement->mouseMoveEvent(event); QWidget::mouseMoveEvent(event); } /*! \internal Event handler for when a mouse button is released. Emits the \ref mouseRelease signal. If the mouse was moved less than a certain threshold in any direction since the \ref mousePressEvent, it is considered a click which causes the selection mechanism (if activated via \ref setInteractions) to possibly change selection states accordingly. Further, specialized mouse click signals are emitted (e.g. \ref plottableClick, \ref axisClick, etc.) If a layout element has mouse capture focus (a \ref mousePressEvent happened on top of the layout element before), the \ref mouseReleaseEvent is forwarded to that element. \see mousePressEvent, mouseMoveEvent */ void QCustomPlot::mouseReleaseEvent(QMouseEvent *event) { emit mouseRelease(event); bool doReplot = false; if ((mMousePressPos-event->pos()).manhattanLength() < 5) // determine whether it was a click operation { if (event->button() == Qt::LeftButton) { // handle selection mechanism: QVariant details; QCPLayerable *clickedLayerable = layerableAt(event->pos(), true, &details); bool selectionStateChanged = false; bool additive = mInteractions.testFlag(QCP::iMultiSelect) && event->modifiers().testFlag(mMultiSelectModifier); if (clickedLayerable && mInteractions.testFlag(clickedLayerable->selectionCategory())) { // a layerable was actually clicked, call its selectEvent: bool selChanged = false; clickedLayerable->selectEvent(event, additive, details, &selChanged); selectionStateChanged |= selChanged; } // deselect all other layerables if not additive selection: if (!additive) { for (int i=0; i<mLayers.size(); ++i) { QList<QCPLayerable*> layerables = mLayers.at(i)->children(); for (int k=0; k<layerables.size(); ++k) { if (layerables.at(k) != clickedLayerable && mInteractions.testFlag(layerables.at(k)->selectionCategory())) { bool selChanged = false; layerables.at(k)->deselectEvent(&selChanged); selectionStateChanged |= selChanged; } } } } doReplot = true; if (selectionStateChanged) emit selectionChangedByUser(); } // emit specialized object click signals: QVariant details; QCPLayerable *clickedLayerable = layerableAt(event->pos(), false, &details); // for these signals, selectability is ignored, that's why we call this again with onlySelectable set to false if (QCPAbstractPlottable *ap = qobject_cast<QCPAbstractPlottable*>(clickedLayerable)) emit plottableClick(ap, event); else if (QCPAxis *ax = qobject_cast<QCPAxis*>(clickedLayerable)) emit axisClick(ax, details.value<QCPAxis::SelectablePart>(), event); else if (QCPAbstractItem *ai = qobject_cast<QCPAbstractItem*>(clickedLayerable)) emit itemClick(ai, event); else if (QCPLegend *lg = qobject_cast<QCPLegend*>(clickedLayerable)) emit legendClick(lg, 0, event); else if (QCPAbstractLegendItem *li = qobject_cast<QCPAbstractLegendItem*>(clickedLayerable)) emit legendClick(li->parentLegend(), li, event); else if (QCPPlotTitle *pt = qobject_cast<QCPPlotTitle*>(clickedLayerable)) emit titleClick(event, pt); } // call event of affected layout element: if (mMouseEventElement) { mMouseEventElement->mouseReleaseEvent(event); mMouseEventElement = 0; } if (doReplot || noAntialiasingOnDrag()) replot(); QWidget::mouseReleaseEvent(event); } /*! \internal Event handler for mouse wheel events. First, the \ref mouseWheel signal is emitted. Then determines the affected layout element and forwards the event to it. */ void QCustomPlot::wheelEvent(QWheelEvent *event) { emit mouseWheel(event); // call event of affected layout element: if (QCPLayoutElement *el = layoutElementAt(event->pos())) el->wheelEvent(event); QWidget::wheelEvent(event); } /*! \internal This is the main draw function. It draws the entire plot, including background pixmap, with the specified \a painter. Note that it does not fill the background with the background brush (as the user may specify with \ref setBackground(const QBrush &brush)), this is up to the respective functions calling this method (e.g. \ref replot, \ref toPixmap and \ref toPainter). */ void QCustomPlot::draw(QCPPainter *painter) { // update all axis tick vectors: QList<QCPAxisRect*> rects = axisRects(); for (int i=0; i<rects.size(); ++i) { QList<QCPAxis*> axes = rects.at(i)->axes(); for (int k=0; k<axes.size(); ++k) axes.at(k)->setupTickVectors(); } // recalculate layout: mPlotLayout->update(); // draw viewport background pixmap: drawBackground(painter); // draw all layered objects (grid, axes, plottables, items, legend,...): for (int layerIndex=0; layerIndex < mLayers.size(); ++layerIndex) { QList<QCPLayerable*> layerChildren = mLayers.at(layerIndex)->children(); for (int k=0; k < layerChildren.size(); ++k) { QCPLayerable *child = layerChildren.at(k); if (child->realVisibility()) { painter->save(); painter->setClipRect(child->clipRect().translated(0, -1)); child->applyDefaultAntialiasingHint(painter); child->draw(painter); painter->restore(); } } } } /*! \internal Draws the viewport background pixmap of the plot. If a pixmap was provided via \ref setBackground, this function buffers the scaled version depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside the viewport with the provided \a painter. The scaled version is buffered in mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when the axis rect has changed in a way that requires a rescale of the background pixmap (this is dependant on the \ref setBackgroundScaledMode), or when a differend axis backgroud pixmap was set. Note that this function does not draw a fill with the background brush (\ref setBackground(const QBrush &brush)) beneath the pixmap. \see setBackground, setBackgroundScaled, setBackgroundScaledMode */ void QCustomPlot::drawBackground(QCPPainter *painter) { // Note: background color is handled in individual replot/save functions // draw background pixmap (on top of fill, if brush specified): if (!mBackgroundPixmap.isNull()) { if (mBackgroundScaled) { // check whether mScaledBackground needs to be updated: QSize scaledSize(mBackgroundPixmap.size()); scaledSize.scale(mViewport.size(), mBackgroundScaledMode); if (mScaledBackgroundPixmap.size() != scaledSize) mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mViewport.size(), mBackgroundScaledMode, Qt::SmoothTransformation); painter->drawPixmap(mViewport.topLeft(), mScaledBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height()) & mScaledBackgroundPixmap.rect()); } else { painter->drawPixmap(mViewport.topLeft(), mBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height())); } } } /*! \internal This method is used by \ref QCPAxisRect::removeAxis to report removed axes to the QCustomPlot so it may clear its QCustomPlot::xAxis, yAxis, xAxis2 and yAxis2 members accordingly. */ void QCustomPlot::axisRemoved(QCPAxis *axis) { if (xAxis == axis) xAxis = 0; if (xAxis2 == axis) xAxis2 = 0; if (yAxis == axis) yAxis = 0; if (yAxis2 == axis) yAxis2 = 0; // Note: No need to take care of range drag axes and range zoom axes, because they are stored in smart pointers } /*! \internal This method is used by the QCPLegend destructor to report legend removal to the QCustomPlot so it may clear its QCustomPlot::legend member accordingly. */ void QCustomPlot::legendRemoved(QCPLegend *legend) { if (this->legend == legend) this->legend = 0; } /*! \internal Assigns all layers their index (QCPLayer::mIndex) in the mLayers list. This method is thus called after every operation that changes the layer indices, like layer removal, layer creation, layer moving. */ void QCustomPlot::updateLayerIndices() const { for (int i=0; i<mLayers.size(); ++i) mLayers.at(i)->mIndex = i; } /*! \internal Returns the layerable at pixel position \a pos. If \a onlySelectable is set to true, only those layerables that are selectable will be considered. (Layerable subclasses communicate their selectability via the QCPLayerable::selectTest method, by returning -1.) \a selectionDetails is an output parameter that contains selection specifics of the affected layerable. This is useful if the respective layerable shall be given a subsequent QCPLayerable::selectEvent (like in \ref mouseReleaseEvent). \a selectionDetails usually contains information about which part of the layerable was hit, in multi-part layerables (e.g. QCPAxis::SelectablePart). */ QCPLayerable *QCustomPlot::layerableAt(const QPointF &pos, bool onlySelectable, QVariant *selectionDetails) const { for (int layerIndex=mLayers.size()-1; layerIndex>=0; --layerIndex) { const QList<QCPLayerable*> layerables = mLayers.at(layerIndex)->children(); double minimumDistance = selectionTolerance()*1.1; QCPLayerable *minimumDistanceLayerable = 0; for (int i=layerables.size()-1; i>=0; --i) { if (!layerables.at(i)->realVisibility()) continue; QVariant details; double dist = layerables.at(i)->selectTest(pos, onlySelectable, &details); if (dist >= 0 && dist < minimumDistance) { minimumDistance = dist; minimumDistanceLayerable = layerables.at(i); if (selectionDetails) *selectionDetails = details; } } if (minimumDistance < selectionTolerance()) return minimumDistanceLayerable; } return 0; } /*! Saves the plot to a rastered image file \a fileName in the image format \a format. The plot is sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and scale 2.0 lead to a full resolution file with width 200.) If the \a format supports compression, \a quality may be between 0 and 100 to control it. Returns true on success. If this function fails, most likely the given \a format isn't supported by the system, see Qt docs about QImageWriter::supportedImageFormats(). \see saveBmp, saveJpg, savePng, savePdf */ bool QCustomPlot::saveRastered(const QString &fileName, int width, int height, double scale, const char *format, int quality) { QPixmap buffer = toPixmap(width, height, scale); if (!buffer.isNull()) return buffer.save(fileName, format, quality); else return false; } /*! Renders the plot to a pixmap and returns it. The plot is sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and scale 2.0 lead to a full resolution pixmap with width 200.) \see toPainter, saveRastered, saveBmp, savePng, saveJpg, savePdf */ QPixmap QCustomPlot::toPixmap(int width, int height, double scale) { // this method is somewhat similar to toPainter. Change something here, and a change in toPainter might be necessary, too. int newWidth, newHeight; if (width == 0 || height == 0) { newWidth = this->width(); newHeight = this->height(); } else { newWidth = width; newHeight = height; } int scaledWidth = qRound(scale*newWidth); int scaledHeight = qRound(scale*newHeight); QPixmap result(scaledWidth, scaledHeight); result.fill(mBackgroundBrush.style() == Qt::SolidPattern ? mBackgroundBrush.color() : Qt::transparent); // if using non-solid pattern, make transparent now and draw brush pattern later QCPPainter painter; painter.begin(&result); if (painter.isActive()) { QRect oldViewport = viewport(); setViewport(QRect(0, 0, newWidth, newHeight)); painter.setMode(QCPPainter::pmNoCaching); if (!qFuzzyCompare(scale, 1.0)) { if (scale > 1.0) // for scale < 1 we always want cosmetic pens where possible, because else lines might disappear for very small scales painter.setMode(QCPPainter::pmNonCosmetic); painter.scale(scale, scale); } if (mBackgroundBrush.style() != Qt::SolidPattern && mBackgroundBrush.style() != Qt::NoBrush) painter.fillRect(mViewport, mBackgroundBrush); draw(&painter); setViewport(oldViewport); painter.end(); } else // might happen if pixmap has width or height zero { qDebug() << Q_FUNC_INFO << "Couldn't activate painter on pixmap"; return QPixmap(); } return result; } /*! Renders the plot using the passed \a painter. The plot is sized to \a width and \a height in pixels. If the \a painter's scale is not 1.0, the resulting plot will appear scaled accordingly. \note If you are restricted to using a QPainter (instead of QCPPainter), create a temporary QPicture and open a QCPPainter on it. Then call \ref toPainter with this QCPPainter. After ending the paint operation on the picture, draw it with the QPainter. This will reproduce the painter actions the QCPPainter took, with a QPainter. \see toPixmap */ void QCustomPlot::toPainter(QCPPainter *painter, int width, int height) { // this method is somewhat similar to toPixmap. Change something here, and a change in toPixmap might be necessary, too. int newWidth, newHeight; if (width == 0 || height == 0) { newWidth = this->width(); newHeight = this->height(); } else { newWidth = width; newHeight = height; } if (painter->isActive()) { QRect oldViewport = viewport(); setViewport(QRect(0, 0, newWidth, newHeight)); painter->setMode(QCPPainter::pmNoCaching); // warning: the following is different in toPixmap, because a solid background color is applied there via QPixmap::fill // here, we need to do this via QPainter::fillRect. if (mBackgroundBrush.style() != Qt::NoBrush) painter->fillRect(mViewport, mBackgroundBrush); draw(painter); setViewport(oldViewport); } else qDebug() << Q_FUNC_INFO << "Passed painter is not active"; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPData //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPData \brief Holds the data of one single data point for QCPGraph. The container for storing multiple data points is \ref QCPDataMap. The stored data is: \li \a key: coordinate on the key axis of this data point \li \a value: coordinate on the value axis of this data point \li \a keyErrorMinus: negative error in the key dimension (for error bars) \li \a keyErrorPlus: positive error in the key dimension (for error bars) \li \a valueErrorMinus: negative error in the value dimension (for error bars) \li \a valueErrorPlus: positive error in the value dimension (for error bars) \see QCPDataMap */ /*! Constructs a data point with key, value and all errors set to zero. */ QCPData::QCPData() : key(0), value(0), keyErrorPlus(0), keyErrorMinus(0), valueErrorPlus(0), valueErrorMinus(0) { } /*! Constructs a data point with the specified \a key and \a value. All errors are set to zero. */ QCPData::QCPData(double key, double value) : key(key), value(value), keyErrorPlus(0), keyErrorMinus(0), valueErrorPlus(0), valueErrorMinus(0) { } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPGraph //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPGraph \brief A plottable representing a graph in a plot. \image html QCPGraph.png Usually QCustomPlot creates graphs internally via QCustomPlot::addGraph and the resulting instance is accessed via QCustomPlot::graph. To plot data, assign it with the \ref setData or \ref addData functions. Graphs are used to display single-valued data. Single-valued means that there should only be one data point per unique key coordinate. In other words, the graph can't have \a loops. If you do want to plot non-single-valued curves, rather use the QCPCurve plottable. \section appearance Changing the appearance The appearance of the graph is mainly determined by the line style, scatter style, brush and pen of the graph (\ref setLineStyle, \ref setScatterStyle, \ref setBrush, \ref setPen). \subsection filling Filling under or between graphs QCPGraph knows two types of fills: Normal graph fills towards the zero-value-line parallel to the key axis of the graph, and fills between two graphs, called channel fills. To enable a fill, just set a brush with \ref setBrush which is neither Qt::NoBrush nor fully transparent. By default, a normal fill towards the zero-value-line will be drawn. To set up a channel fill between this graph and another one, call \ref setChannelFillGraph with the other graph as parameter. \see QCustomPlot::addGraph, QCustomPlot::graph, QCPLegend::addGraph */ /*! Constructs a graph which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have the same orientation. If either of these restrictions is violated, a corresponding message is printed to the debug output (qDebug), the construction is not aborted, though. The constructed QCPGraph can be added to the plot with QCustomPlot::addPlottable, QCustomPlot then takes ownership of the graph. To directly create a graph inside a plot, you can also use the simpler QCustomPlot::addGraph function. */ QCPGraph::QCPGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) : QCPAbstractPlottable(keyAxis, valueAxis) { mData = new QCPDataMap; setPen(QPen(Qt::blue, 0)); setErrorPen(QPen(Qt::black)); setBrush(Qt::NoBrush); setSelectedPen(QPen(QColor(80, 80, 255), 2.5)); setSelectedBrush(Qt::NoBrush); setLineStyle(lsLine); setErrorType(etNone); setErrorBarSize(6); setErrorBarSkipSymbol(true); setChannelFillGraph(0); } QCPGraph::~QCPGraph() { delete mData; } /*! Replaces the current data with the provided \a data. If \a copy is set to true, data points in \a data will only be copied. if false, the graph takes ownership of the passed data and replaces the internal data pointer with it. This is significantly faster than copying for large datasets. */ void QCPGraph::setData(QCPDataMap *data, bool copy) { if (copy) { *mData = *data; } else { delete mData; mData = data; } } /*! \overload Replaces the current data with the provided points in \a key and \a value pairs. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPGraph::setData(const QVector<double> &key, const QVector<double> &value) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; mData->insertMulti(newData.key, newData); } } /*! Replaces the current data with the provided points in \a key and \a value pairs. Additionally the symmetrical value error of the data points are set to the values in \a valueError. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. For asymmetrical errors (plus different from minus), see the overloaded version of this function. */ void QCPGraph::setDataValueError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &valueError) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, valueError.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.valueErrorMinus = valueError[i]; newData.valueErrorPlus = valueError[i]; mData->insertMulti(key[i], newData); } } /*! \overload Replaces the current data with the provided points in \a key and \a value pairs. Additionally the negative value error of the data points are set to the values in \a valueErrorMinus, the positive value error to \a valueErrorPlus. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPGraph::setDataValueError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &valueErrorMinus, const QVector<double> &valueErrorPlus) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, valueErrorMinus.size()); n = qMin(n, valueErrorPlus.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.valueErrorMinus = valueErrorMinus[i]; newData.valueErrorPlus = valueErrorPlus[i]; mData->insertMulti(key[i], newData); } } /*! Replaces the current data with the provided points in \a key and \a value pairs. Additionally the symmetrical key error of the data points are set to the values in \a keyError. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. For asymmetrical errors (plus different from minus), see the overloaded version of this function. */ void QCPGraph::setDataKeyError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &keyError) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, keyError.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.keyErrorMinus = keyError[i]; newData.keyErrorPlus = keyError[i]; mData->insertMulti(key[i], newData); } } /*! \overload Replaces the current data with the provided points in \a key and \a value pairs. Additionally the negative key error of the data points are set to the values in \a keyErrorMinus, the positive key error to \a keyErrorPlus. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPGraph::setDataKeyError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &keyErrorMinus, const QVector<double> &keyErrorPlus) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, keyErrorMinus.size()); n = qMin(n, keyErrorPlus.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.keyErrorMinus = keyErrorMinus[i]; newData.keyErrorPlus = keyErrorPlus[i]; mData->insertMulti(key[i], newData); } } /*! Replaces the current data with the provided points in \a key and \a value pairs. Additionally the symmetrical key and value errors of the data points are set to the values in \a keyError and \a valueError. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. For asymmetrical errors (plus different from minus), see the overloaded version of this function. */ void QCPGraph::setDataBothError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &keyError, const QVector<double> &valueError) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, valueError.size()); n = qMin(n, keyError.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.keyErrorMinus = keyError[i]; newData.keyErrorPlus = keyError[i]; newData.valueErrorMinus = valueError[i]; newData.valueErrorPlus = valueError[i]; mData->insertMulti(key[i], newData); } } /*! \overload Replaces the current data with the provided points in \a key and \a value pairs. Additionally the negative key and value errors of the data points are set to the values in \a keyErrorMinus and \a valueErrorMinus. The positive key and value errors are set to the values in \a keyErrorPlus \a valueErrorPlus. For error bars to show appropriately, see \ref setErrorType. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPGraph::setDataBothError(const QVector<double> &key, const QVector<double> &value, const QVector<double> &keyErrorMinus, const QVector<double> &keyErrorPlus, const QVector<double> &valueErrorMinus, const QVector<double> &valueErrorPlus) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); n = qMin(n, valueErrorMinus.size()); n = qMin(n, valueErrorPlus.size()); n = qMin(n, keyErrorMinus.size()); n = qMin(n, keyErrorPlus.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; newData.keyErrorMinus = keyErrorMinus[i]; newData.keyErrorPlus = keyErrorPlus[i]; newData.valueErrorMinus = valueErrorMinus[i]; newData.valueErrorPlus = valueErrorPlus[i]; mData->insertMulti(key[i], newData); } } /*! Sets how the single data points are connected in the plot. For scatter-only plots, set \a ls to \ref lsNone and \ref setScatterStyle to the desired scatter style. \see setScatterStyle */ void QCPGraph::setLineStyle(LineStyle ls) { mLineStyle = ls; } /*! Sets the visual appearance of single data points in the plot. If set to \ref QCPScatterStyle::ssNone, no scatter points are drawn (e.g. for line-only-plots with appropriate line style). \see QCPScatterStyle, setLineStyle */ void QCPGraph::setScatterStyle(const QCPScatterStyle &style) { mScatterStyle = style; } /*! Sets which kind of error bars (Key Error, Value Error or both) should be drawn on each data point. If you set \a errorType to something other than \ref etNone, make sure to actually pass error data via the specific setData functions along with the data points (e.g. \ref setDataValueError, \ref setDataKeyError, \ref setDataBothError). \see ErrorType */ void QCPGraph::setErrorType(ErrorType errorType) { mErrorType = errorType; } /*! Sets the pen with which the error bars will be drawn. \see setErrorBarSize, setErrorType */ void QCPGraph::setErrorPen(const QPen &pen) { mErrorPen = pen; } /*! Sets the width of the handles at both ends of an error bar in pixels. */ void QCPGraph::setErrorBarSize(double size) { mErrorBarSize = size; } /*! If \a enabled is set to true, the error bar will not be drawn as a solid line under the scatter symbol but leave some free space around the symbol. This feature uses the current scatter size (\ref QCPScatterStyle::setSize) to determine the size of the area to leave blank. So when drawing Pixmaps as scatter points (\ref QCPScatterStyle::ssPixmap), the scatter size must be set manually to a value corresponding to the size of the Pixmap, if the error bars should leave gaps to its boundaries. \ref setErrorType, setErrorBarSize, setScatterStyle */ void QCPGraph::setErrorBarSkipSymbol(bool enabled) { mErrorBarSkipSymbol = enabled; } /*! Sets the target graph for filling the area between this graph and \a targetGraph with the current brush (\ref setBrush). When \a targetGraph is set to 0, a normal graph fill to the zero-value-line will be shown. To disable any filling, set the brush to Qt::NoBrush. \see setBrush */ void QCPGraph::setChannelFillGraph(QCPGraph *targetGraph) { // prevent setting channel target to this graph itself: if (targetGraph == this) { qDebug() << Q_FUNC_INFO << "targetGraph is this graph itself"; mChannelFillGraph.clear(); return; } // prevent setting channel target to a graph not in the plot: if (targetGraph && targetGraph->mParentPlot != mParentPlot) { qDebug() << Q_FUNC_INFO << "targetGraph not in same plot"; mChannelFillGraph.clear(); return; } mChannelFillGraph = targetGraph; } /*! Adds the provided data points in \a dataMap to the current data. \see removeData */ void QCPGraph::addData(const QCPDataMap &dataMap) { mData->unite(dataMap); } /*! \overload Adds the provided single data point in \a data to the current data. \see removeData */ void QCPGraph::addData(const QCPData &data) { mData->insertMulti(data.key, data); } /*! \overload Adds the provided single data point as \a key and \a value pair to the current data. \see removeData */ void QCPGraph::addData(double key, double value) { QCPData newData; newData.key = key; newData.value = value; mData->insertMulti(newData.key, newData); } /*! \overload Adds the provided data points as \a key and \a value pairs to the current data. \see removeData */ void QCPGraph::addData(const QVector<double> &keys, const QVector<double> &values) { int n = qMin(keys.size(), values.size()); QCPData newData; for (int i=0; i<n; ++i) { newData.key = keys[i]; newData.value = values[i]; mData->insertMulti(newData.key, newData); } } /*! Removes all data points with keys smaller than \a key. \see addData, clearData */ void QCPGraph::removeDataBefore(double key) { QCPDataMap::iterator it = mData->begin(); while (it != mData->end() && it.key() < key) it = mData->erase(it); } /*! Removes all data points with keys greater than \a key. \see addData, clearData */ void QCPGraph::removeDataAfter(double key) { if (mData->isEmpty()) return; QCPDataMap::iterator it = mData->upperBound(key); while (it != mData->end()) it = mData->erase(it); } /*! Removes all data points with keys between \a fromKey and \a toKey. if \a fromKey is greater or equal to \a toKey, the function does nothing. To remove a single data point with known key, use \ref removeData(double key). \see addData, clearData */ void QCPGraph::removeData(double fromKey, double toKey) { if (fromKey >= toKey || mData->isEmpty()) return; QCPDataMap::iterator it = mData->upperBound(fromKey); QCPDataMap::iterator itEnd = mData->upperBound(toKey); while (it != itEnd) it = mData->erase(it); } /*! \overload Removes a single data point at \a key. If the position is not known with absolute precision, consider using \ref removeData(double fromKey, double toKey) with a small fuzziness interval around the suspected position, depeding on the precision with which the key is known. \see addData, clearData */ void QCPGraph::removeData(double key) { mData->remove(key); } /*! Removes all data points. \see removeData, removeDataAfter, removeDataBefore */ void QCPGraph::clearData() { mData->clear(); } /* inherits documentation from base class */ double QCPGraph::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if ((onlySelectable && !mSelectable) || mData->isEmpty()) return -1; return pointDistance(pos); } /*! \overload Allows to define whether error bars are taken into consideration when determining the new axis range. \see rescaleKeyAxis, rescaleValueAxis, QCPAbstractPlottable::rescaleAxes, QCustomPlot::rescaleAxes */ void QCPGraph::rescaleAxes(bool onlyEnlarge, bool includeErrorBars) const { rescaleKeyAxis(onlyEnlarge, includeErrorBars); rescaleValueAxis(onlyEnlarge, includeErrorBars); } /*! \overload Allows to define whether error bars (of kind \ref QCPGraph::etKey) are taken into consideration when determining the new axis range. \see rescaleAxes, QCPAbstractPlottable::rescaleKeyAxis */ void QCPGraph::rescaleKeyAxis(bool onlyEnlarge, bool includeErrorBars) const { // this code is a copy of QCPAbstractPlottable::rescaleKeyAxis with the only change // that getKeyRange is passed the includeErrorBars value. if (mData->isEmpty()) return; QCPAxis *keyAxis = mKeyAxis.data(); if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } SignDomain signDomain = sdBoth; if (keyAxis->scaleType() == QCPAxis::stLogarithmic) signDomain = (keyAxis->range().upper < 0 ? sdNegative : sdPositive); bool validRange; QCPRange newRange = getKeyRange(validRange, signDomain, includeErrorBars); if (validRange) { if (onlyEnlarge) { if (keyAxis->range().lower < newRange.lower) newRange.lower = keyAxis->range().lower; if (keyAxis->range().upper > newRange.upper) newRange.upper = keyAxis->range().upper; } keyAxis->setRange(newRange); } } /*! \overload Allows to define whether error bars (of kind \ref QCPGraph::etValue) are taken into consideration when determining the new axis range. \see rescaleAxes, QCPAbstractPlottable::rescaleValueAxis */ void QCPGraph::rescaleValueAxis(bool onlyEnlarge, bool includeErrorBars) const { // this code is a copy of QCPAbstractPlottable::rescaleValueAxis with the only change // is that getValueRange is passed the includeErrorBars value. if (mData->isEmpty()) return; QCPAxis *valueAxis = mValueAxis.data(); if (!valueAxis) { qDebug() << Q_FUNC_INFO << "invalid value axis"; return; } SignDomain signDomain = sdBoth; if (valueAxis->scaleType() == QCPAxis::stLogarithmic) signDomain = (valueAxis->range().upper < 0 ? sdNegative : sdPositive); bool validRange; QCPRange newRange = getValueRange(validRange, signDomain, includeErrorBars); if (validRange) { if (onlyEnlarge) { if (valueAxis->range().lower < newRange.lower) newRange.lower = valueAxis->range().lower; if (valueAxis->range().upper > newRange.upper) newRange.upper = valueAxis->range().upper; } valueAxis->setRange(newRange); } } /* inherits documentation from base class */ void QCPGraph::draw(QCPPainter *painter) { if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (mKeyAxis.data()->range().size() <= 0 || mData->isEmpty()) return; if (mLineStyle == lsNone && mScatterStyle.isNone()) return; // allocate line and (if necessary) point vectors: QVector<QPointF> *lineData = new QVector<QPointF>; QVector<QCPData> *pointData = 0; if (!mScatterStyle.isNone()) pointData = new QVector<QCPData>; // fill vectors with data appropriate to plot style: getPlotData(lineData, pointData); // check data validity if flag set: #ifdef QCUSTOMPLOT_CHECK_DATA QCPDataMap::const_iterator it; for (it = mData->constBegin(); it != mData->constEnd(); ++it) { if (QCP::isInvalidData(it.value().key, it.value().value) || QCP::isInvalidData(it.value().keyErrorPlus, it.value().keyErrorMinus) || QCP::isInvalidData(it.value().valueErrorPlus, it.value().valueErrorPlus)) qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "invalid." << "Plottable name:" << name(); } #endif // draw fill of graph: drawFill(painter, lineData); // draw line: if (mLineStyle == lsImpulse) drawImpulsePlot(painter, lineData); else if (mLineStyle != lsNone) drawLinePlot(painter, lineData); // also step plots can be drawn as a line plot // draw scatters: if (pointData) drawScatterPlot(painter, pointData); // free allocated line and point vectors: delete lineData; if (pointData) delete pointData; } /* inherits documentation from base class */ void QCPGraph::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const { // draw fill: if (mBrush.style() != Qt::NoBrush) { applyFillAntialiasingHint(painter); painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); } // draw line vertically centered: if (mLineStyle != lsNone) { applyDefaultAntialiasingHint(painter); painter->setPen(mPen); painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens } // draw scatter symbol: if (!mScatterStyle.isNone()) { applyScattersAntialiasingHint(painter); // scale scatter pixmap if it's too large to fit in legend icon rect: if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) { QCPScatterStyle scaledStyle(mScatterStyle); scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); scaledStyle.applyTo(painter, mPen); scaledStyle.drawShape(painter, QRectF(rect).center()); } else { mScatterStyle.applyTo(painter, mPen); mScatterStyle.drawShape(painter, QRectF(rect).center()); } } } /*! \internal This function branches out to the line style specific "get(...)PlotData" functions, according to the line style of the graph. \a lineData will be filled with raw points that will be drawn with the according draw functions, e.g. \ref drawLinePlot and \ref drawImpulsePlot. These aren't necessarily the original data points, since for step plots for example, additional points are needed for drawing lines that make up steps. If the line style of the graph is \ref lsNone, the \a lineData vector will be left untouched. \a pointData will be filled with the original data points so \ref drawScatterPlot can draw the scatter symbols accordingly. If no scatters need to be drawn, i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone, pass 0 as \a pointData, and this step will be skipped. \see getScatterPlotData, getLinePlotData, getStepLeftPlotData, getStepRightPlotData, getStepCenterPlotData, getImpulsePlotData */ void QCPGraph::getPlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { switch(mLineStyle) { case lsNone: getScatterPlotData(pointData); break; case lsLine: getLinePlotData(lineData, pointData); break; case lsStepLeft: getStepLeftPlotData(lineData, pointData); break; case lsStepRight: getStepRightPlotData(lineData, pointData); break; case lsStepCenter: getStepCenterPlotData(lineData, pointData); break; case lsImpulse: getImpulsePlotData(lineData, pointData); break; } } /*! \internal If line style is \ref lsNone and the scatter style's shape is not \ref QCPScatterStyle::ssNone, this function serves at providing the visible data points in \a pointData, so the \ref drawScatterPlot function can draw the scatter points accordingly. If line style is not \ref lsNone, this function is not called and the data for the scatter points are (if needed) calculated inside the corresponding other "get(...)PlotData" functions. \see drawScatterPlot */ void QCPGraph::getScatterPlotData(QVector<QCPData> *pointData) const { if (!pointData) return; QCPAxis *keyAxis = mKeyAxis.data(); if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { // prepare vectors: pointData->resize(dataCount); // position data points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; while (it != upperEnd) { (*pointData)[i] = it.value(); ++i; ++it; } } } /*! \internal Places the raw data points needed for a normal linearly connected graph in \a lineData. As for all plot data retrieval functions, \a pointData just contains all unaltered data (scatter) points that are visible for drawing scatter points, if necessary. If drawing scatter points is disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a pointData, and the function will skip filling the vector. \see drawLinePlot */ void QCPGraph::getLinePlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (!lineData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { lineData->reserve(dataCount+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill lineData->resize(dataCount); if (pointData) pointData->resize(dataCount); // position data points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; if (keyAxis->orientation() == Qt::Vertical) { while (it != upperEnd) { if (pointData) (*pointData)[i] = it.value(); (*lineData)[i].setX(valueAxis->coordToPixel(it.value().value)); (*lineData)[i].setY(keyAxis->coordToPixel(it.key())); ++i; ++it; } } else // key axis is horizontal { while (it != upperEnd) { if (pointData) (*pointData)[i] = it.value(); (*lineData)[i].setX(keyAxis->coordToPixel(it.key())); (*lineData)[i].setY(valueAxis->coordToPixel(it.value().value)); ++i; ++it; } } } } /*! \internal Places the raw data points needed for a step plot with left oriented steps in \a lineData. As for all plot data retrieval functions, \a pointData just contains all unaltered data (scatter) points that are visible for drawing scatter points, if necessary. If drawing scatter points is disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a pointData, and the function will skip filling the vector. \see drawLinePlot */ void QCPGraph::getStepLeftPlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (!lineData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { lineData->reserve(dataCount*2+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill lineData->resize(dataCount*2); // multiplied by 2 because step plot needs two polyline points per one actual data point if (pointData) pointData->resize(dataCount); // position data points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; int ipoint = 0; if (keyAxis->orientation() == Qt::Vertical) { double lastValue = valueAxis->coordToPixel(it.value().value); double key; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(lastValue); (*lineData)[i].setY(key); ++i; lastValue = valueAxis->coordToPixel(it.value().value); (*lineData)[i].setX(lastValue); (*lineData)[i].setY(key); ++i; ++it; } } else // key axis is horizontal { double lastValue = valueAxis->coordToPixel(it.value().value); double key; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(key); (*lineData)[i].setY(lastValue); ++i; lastValue = valueAxis->coordToPixel(it.value().value); (*lineData)[i].setX(key); (*lineData)[i].setY(lastValue); ++i; ++it; } } } } /*! \internal Places the raw data points needed for a step plot with right oriented steps in \a lineData. As for all plot data retrieval functions, \a pointData just contains all unaltered data (scatter) points that are visible for drawing scatter points, if necessary. If drawing scatter points is disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a pointData, and the function will skip filling the vector. \see drawLinePlot */ void QCPGraph::getStepRightPlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (!lineData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { lineData->reserve(dataCount*2+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill lineData->resize(dataCount*2); // multiplied by 2 because step plot needs two polyline points per one actual data point if (pointData) pointData->resize(dataCount); // position points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; int ipoint = 0; if (keyAxis->orientation() == Qt::Vertical) { double lastKey = keyAxis->coordToPixel(it.key()); double value; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } value = valueAxis->coordToPixel(it.value().value); (*lineData)[i].setX(value); (*lineData)[i].setY(lastKey); ++i; lastKey = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(value); (*lineData)[i].setY(lastKey); ++i; ++it; } } else // key axis is horizontal { double lastKey = keyAxis->coordToPixel(it.key()); double value; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } value = valueAxis->coordToPixel(it.value().value); (*lineData)[i].setX(lastKey); (*lineData)[i].setY(value); ++i; lastKey = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(lastKey); (*lineData)[i].setY(value); ++i; ++it; } } } } /*! \internal Places the raw data points needed for a step plot with centered steps in \a lineData. As for all plot data retrieval functions, \a pointData just contains all unaltered data (scatter) points that are visible for drawing scatter points, if necessary. If drawing scatter points is disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a pointData, and the function will skip filling the vector. \see drawLinePlot */ void QCPGraph::getStepCenterPlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (!lineData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { // added 2 to reserve memory for lower/upper fill base points that might be needed for base fill // multiplied by 2 because step plot needs two polyline points per one actual data point lineData->reserve(dataCount*2+2); lineData->resize(dataCount*2); if (pointData) pointData->resize(dataCount); // position points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; int ipoint = 0; if (keyAxis->orientation() == Qt::Vertical) { double lastKey = keyAxis->coordToPixel(it.key()); double lastValue = valueAxis->coordToPixel(it.value().value); double key; if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } (*lineData)[i].setX(lastValue); (*lineData)[i].setY(lastKey); ++it; ++i; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = (keyAxis->coordToPixel(it.key())-lastKey)*0.5 + lastKey; (*lineData)[i].setX(lastValue); (*lineData)[i].setY(key); ++i; lastValue = valueAxis->coordToPixel(it.value().value); lastKey = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(lastValue); (*lineData)[i].setY(key); ++it; ++i; } (*lineData)[i].setX(lastValue); (*lineData)[i].setY(lastKey); } else // key axis is horizontal { double lastKey = keyAxis->coordToPixel(it.key()); double lastValue = valueAxis->coordToPixel(it.value().value); double key; if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } (*lineData)[i].setX(lastKey); (*lineData)[i].setY(lastValue); ++it; ++i; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = (keyAxis->coordToPixel(it.key())-lastKey)*0.5 + lastKey; (*lineData)[i].setX(key); (*lineData)[i].setY(lastValue); ++i; lastValue = valueAxis->coordToPixel(it.value().value); lastKey = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(key); (*lineData)[i].setY(lastValue); ++it; ++i; } (*lineData)[i].setX(lastKey); (*lineData)[i].setY(lastValue); } } } /*! \internal Places the raw data points needed for an impulse plot in \a lineData. As for all plot data retrieval functions, \a pointData just contains all unaltered data (scatter) points that are visible for drawing scatter points, if necessary. If drawing scatter points is disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a pointData, and the function will skip filling the vector. \see drawImpulsePlot */ void QCPGraph::getImpulsePlotData(QVector<QPointF> *lineData, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (!lineData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } // get visible data range: QCPDataMap::const_iterator lower, upper; int dataCount = 0; getVisibleDataBounds(lower, upper, dataCount); if (dataCount > 0) { lineData->resize(dataCount*2); // no need to reserve 2 extra points, because there is no fill for impulse plot if (pointData) pointData->resize(dataCount); // position data points: QCPDataMap::const_iterator it = lower; QCPDataMap::const_iterator upperEnd = upper+1; int i = 0; int ipoint = 0; if (keyAxis->orientation() == Qt::Vertical) { double zeroPointX = valueAxis->coordToPixel(0); double key; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(zeroPointX); (*lineData)[i].setY(key); ++i; (*lineData)[i].setX(valueAxis->coordToPixel(it.value().value)); (*lineData)[i].setY(key); ++i; ++it; } } else // key axis is horizontal { double zeroPointY = valueAxis->coordToPixel(0); double key; while (it != upperEnd) { if (pointData) { (*pointData)[ipoint] = it.value(); ++ipoint; } key = keyAxis->coordToPixel(it.key()); (*lineData)[i].setX(key); (*lineData)[i].setY(zeroPointY); ++i; (*lineData)[i].setX(key); (*lineData)[i].setY(valueAxis->coordToPixel(it.value().value)); ++i; ++it; } } } } /*! \internal Draws the fill of the graph with the specified brush. If the fill is a normal fill towards the zero-value-line, only the \a lineData is required (and two extra points at the zero-value-line, which are added by \ref addFillBasePoints and removed by \ref removeFillBasePoints after the fill drawing is done). If the fill is a channel fill between this QCPGraph and another QCPGraph (mChannelFillGraph), the more complex polygon is calculated with the \ref getChannelFillPolygon function. \see drawLinePlot */ void QCPGraph::drawFill(QCPPainter *painter, QVector<QPointF> *lineData) const { if (mLineStyle == lsImpulse) return; // fill doesn't make sense for impulse plot if (mainBrush().style() == Qt::NoBrush || mainBrush().color().alpha() == 0) return; applyFillAntialiasingHint(painter); if (!mChannelFillGraph) { // draw base fill under graph, fill goes all the way to the zero-value-line: addFillBasePoints(lineData); painter->setPen(Qt::NoPen); painter->setBrush(mainBrush()); painter->drawPolygon(QPolygonF(*lineData)); removeFillBasePoints(lineData); } else { // draw channel fill between this graph and mChannelFillGraph: painter->setPen(Qt::NoPen); painter->setBrush(mainBrush()); painter->drawPolygon(getChannelFillPolygon(lineData)); } } /*! \internal Draws scatter symbols at every data point passed in \a pointData. scatter symbols are independent of the line style and are always drawn if the scatter style's shape is not \ref QCPScatterStyle::ssNone. Hence, the \a pointData vector is outputted by all "get(...)PlotData" functions, together with the (line style dependent) line data. \see drawLinePlot, drawImpulsePlot */ void QCPGraph::drawScatterPlot(QCPPainter *painter, QVector<QCPData> *pointData) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } // draw error bars: if (mErrorType != etNone) { applyErrorBarsAntialiasingHint(painter); painter->setPen(mErrorPen); if (keyAxis->orientation() == Qt::Vertical) { for (int i=0; i<pointData->size(); ++i) drawError(painter, valueAxis->coordToPixel(pointData->at(i).value), keyAxis->coordToPixel(pointData->at(i).key), pointData->at(i)); } else { for (int i=0; i<pointData->size(); ++i) drawError(painter, keyAxis->coordToPixel(pointData->at(i).key), valueAxis->coordToPixel(pointData->at(i).value), pointData->at(i)); } } // draw scatter point symbols: applyScattersAntialiasingHint(painter); mScatterStyle.applyTo(painter, mPen); if (keyAxis->orientation() == Qt::Vertical) { for (int i=0; i<pointData->size(); ++i) mScatterStyle.drawShape(painter, valueAxis->coordToPixel(pointData->at(i).value), keyAxis->coordToPixel(pointData->at(i).key)); } else { for (int i=0; i<pointData->size(); ++i) mScatterStyle.drawShape(painter, keyAxis->coordToPixel(pointData->at(i).key), valueAxis->coordToPixel(pointData->at(i).value)); } } /*! \internal Draws line graphs from the provided data. It connects all points in \a lineData, which was created by one of the "get(...)PlotData" functions for line styles that require simple line connections between the point vector they create. These are for example \ref getLinePlotData, \ref getStepLeftPlotData, \ref getStepRightPlotData and \ref getStepCenterPlotData. \see drawScatterPlot, drawImpulsePlot */ void QCPGraph::drawLinePlot(QCPPainter *painter, QVector<QPointF> *lineData) const { // draw line of graph: if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) { applyDefaultAntialiasingHint(painter); painter->setPen(mainPen()); painter->setBrush(Qt::NoBrush); /* Draws polyline in batches, currently not used: int p = 0; while (p < lineData->size()) { int batch = qMin(25, lineData->size()-p); if (p != 0) { ++batch; --p; // to draw the connection lines between two batches } painter->drawPolyline(lineData->constData()+p, batch); p += batch; } */ // if drawing solid line and not in PDF, use much faster line drawing instead of polyline: if (mParentPlot->plottingHints().testFlag(QCP::phFastPolylines) && painter->pen().style() == Qt::SolidLine && !painter->modes().testFlag(QCPPainter::pmVectorized)&& !painter->modes().testFlag(QCPPainter::pmNoCaching)) { for (int i=1; i<lineData->size(); ++i) painter->drawLine(lineData->at(i-1), lineData->at(i)); } else { painter->drawPolyline(QPolygonF(*lineData)); } } } /*! \internal Draws impulses from the provided data, i.e. it connects all line pairs in \a lineData, which was created by \ref getImpulsePlotData. \see drawScatterPlot, drawLinePlot */ void QCPGraph::drawImpulsePlot(QCPPainter *painter, QVector<QPointF> *lineData) const { // draw impulses: if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) { applyDefaultAntialiasingHint(painter); QPen pen = mainPen(); pen.setCapStyle(Qt::FlatCap); // so impulse line doesn't reach beyond zero-line painter->setPen(pen); painter->setBrush(Qt::NoBrush); painter->drawLines(*lineData); } } /*! \internal called by the scatter drawing function (\ref drawScatterPlot) to draw the error bars on one data point. \a x and \a y pixel positions of the data point are passed since they are already known in pixel coordinates in the drawing function, so we save some extra coordToPixel transforms here. \a data is therefore only used for the errors, not key and value. */ void QCPGraph::drawError(QCPPainter *painter, double x, double y, const QCPData &data) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } double a, b; // positions of error bar bounds in pixels double barWidthHalf = mErrorBarSize*0.5; double skipSymbolMargin = mScatterStyle.size(); // pixels left blank per side, when mErrorBarSkipSymbol is true if (keyAxis->orientation() == Qt::Vertical) { // draw key error vertically and value error horizontally if (mErrorType == etKey || mErrorType == etBoth) { a = keyAxis->coordToPixel(data.key-data.keyErrorMinus); b = keyAxis->coordToPixel(data.key+data.keyErrorPlus); if (keyAxis->rangeReversed()) qSwap(a,b); // draw spine: if (mErrorBarSkipSymbol) { if (a-y > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin painter->drawLine(QLineF(x, a, x, y+skipSymbolMargin)); if (y-b > skipSymbolMargin) painter->drawLine(QLineF(x, y-skipSymbolMargin, x, b)); } else painter->drawLine(QLineF(x, a, x, b)); // draw handles: painter->drawLine(QLineF(x-barWidthHalf, a, x+barWidthHalf, a)); painter->drawLine(QLineF(x-barWidthHalf, b, x+barWidthHalf, b)); } if (mErrorType == etValue || mErrorType == etBoth) { a = valueAxis->coordToPixel(data.value-data.valueErrorMinus); b = valueAxis->coordToPixel(data.value+data.valueErrorPlus); if (valueAxis->rangeReversed()) qSwap(a,b); // draw spine: if (mErrorBarSkipSymbol) { if (x-a > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin painter->drawLine(QLineF(a, y, x-skipSymbolMargin, y)); if (b-x > skipSymbolMargin) painter->drawLine(QLineF(x+skipSymbolMargin, y, b, y)); } else painter->drawLine(QLineF(a, y, b, y)); // draw handles: painter->drawLine(QLineF(a, y-barWidthHalf, a, y+barWidthHalf)); painter->drawLine(QLineF(b, y-barWidthHalf, b, y+barWidthHalf)); } } else // mKeyAxis->orientation() is Qt::Horizontal { // draw value error vertically and key error horizontally if (mErrorType == etKey || mErrorType == etBoth) { a = keyAxis->coordToPixel(data.key-data.keyErrorMinus); b = keyAxis->coordToPixel(data.key+data.keyErrorPlus); if (keyAxis->rangeReversed()) qSwap(a,b); // draw spine: if (mErrorBarSkipSymbol) { if (x-a > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin painter->drawLine(QLineF(a, y, x-skipSymbolMargin, y)); if (b-x > skipSymbolMargin) painter->drawLine(QLineF(x+skipSymbolMargin, y, b, y)); } else painter->drawLine(QLineF(a, y, b, y)); // draw handles: painter->drawLine(QLineF(a, y-barWidthHalf, a, y+barWidthHalf)); painter->drawLine(QLineF(b, y-barWidthHalf, b, y+barWidthHalf)); } if (mErrorType == etValue || mErrorType == etBoth) { a = valueAxis->coordToPixel(data.value-data.valueErrorMinus); b = valueAxis->coordToPixel(data.value+data.valueErrorPlus); if (valueAxis->rangeReversed()) qSwap(a,b); // draw spine: if (mErrorBarSkipSymbol) { if (a-y > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin painter->drawLine(QLineF(x, a, x, y+skipSymbolMargin)); if (y-b > skipSymbolMargin) painter->drawLine(QLineF(x, y-skipSymbolMargin, x, b)); } else painter->drawLine(QLineF(x, a, x, b)); // draw handles: painter->drawLine(QLineF(x-barWidthHalf, a, x+barWidthHalf, a)); painter->drawLine(QLineF(x-barWidthHalf, b, x+barWidthHalf, b)); } } } /*! \internal called by the specific plot data generating functions "get(...)PlotData" to determine which data range is visible, so only that needs to be processed. \a lower returns an iterator to the lowest data point that needs to be taken into account when plotting. Note that in order to get a clean plot all the way to the edge of the axes, \a lower may still be outside the visible range. \a upper returns an iterator to the highest data point. Same as before, \a upper may also lie outside of the visible range. \a count number of data points that need plotting, i.e. points between \a lower and \a upper, including them. This is useful for allocating the array of <tt>QPointF</tt>s in the specific drawing functions. if the graph contains no data, \a count is zero and both \a lower and \a upper point to constEnd. */ void QCPGraph::getVisibleDataBounds(QCPDataMap::const_iterator &lower, QCPDataMap::const_iterator &upper, int &count) const { if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } if (mData->isEmpty()) { lower = mData->constEnd(); upper = mData->constEnd(); count = 0; return; } // get visible data range as QMap iterators QCPDataMap::const_iterator lbound = mData->lowerBound(mKeyAxis.data()->range().lower); QCPDataMap::const_iterator ubound = mData->upperBound(mKeyAxis.data()->range().upper); bool lowoutlier = lbound != mData->constBegin(); // indicates whether there exist points below axis range bool highoutlier = ubound != mData->constEnd(); // indicates whether there exist points above axis range lower = (lowoutlier ? lbound-1 : lbound); // data point range that will be actually drawn upper = (highoutlier ? ubound : ubound-1); // data point range that will be actually drawn // count number of points in range lower to upper (including them), so we can allocate array for them in draw functions: QCPDataMap::const_iterator it = lower; count = 1; while (it != upper) { ++it; ++count; } } /*! \internal The line data vector generated by e.g. getLinePlotData contains only the line that connects the data points. If the graph needs to be filled, two additional points need to be added at the value-zero-line in the lower and upper key positions of the graph. This function calculates these points and adds them to the end of \a lineData. Since the fill is typically drawn before the line stroke, these added points need to be removed again after the fill is done, with the removeFillBasePoints function. The expanding of \a lineData by two points will not cause unnecessary memory reallocations, because the data vector generation functions (getLinePlotData etc.) reserve two extra points when they allocate memory for \a lineData. \see removeFillBasePoints, lowerFillBasePoint, upperFillBasePoint */ void QCPGraph::addFillBasePoints(QVector<QPointF> *lineData) const { if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } // append points that close the polygon fill at the key axis: if (mKeyAxis.data()->orientation() == Qt::Vertical) { *lineData << upperFillBasePoint(lineData->last().y()); *lineData << lowerFillBasePoint(lineData->first().y()); } else { *lineData << upperFillBasePoint(lineData->last().x()); *lineData << lowerFillBasePoint(lineData->first().x()); } } /*! \internal removes the two points from \a lineData that were added by \ref addFillBasePoints. \see addFillBasePoints, lowerFillBasePoint, upperFillBasePoint */ void QCPGraph::removeFillBasePoints(QVector<QPointF> *lineData) const { lineData->remove(lineData->size()-2, 2); } /*! \internal called by \ref addFillBasePoints to conveniently assign the point which closes the fill polygon on the lower side of the zero-value-line parallel to the key axis. The logarithmic axis scale case is a bit special, since the zero-value-line in pixel coordinates is in positive or negative infinity. So this case is handled separately by just closing the fill polygon on the axis which lies in the direction towards the zero value. \a lowerKey will be the the key (in pixels) of the returned point. Depending on whether the key axis is horizontal or vertical, \a lowerKey will end up as the x or y value of the returned point, respectively. \see upperFillBasePoint, addFillBasePoints */ QPointF QCPGraph::lowerFillBasePoint(double lowerKey) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } QPointF point; if (valueAxis->scaleType() == QCPAxis::stLinear) { if (keyAxis->axisType() == QCPAxis::atLeft) { point.setX(valueAxis->coordToPixel(0)); point.setY(lowerKey); } else if (keyAxis->axisType() == QCPAxis::atRight) { point.setX(valueAxis->coordToPixel(0)); point.setY(lowerKey); } else if (keyAxis->axisType() == QCPAxis::atTop) { point.setX(lowerKey); point.setY(valueAxis->coordToPixel(0)); } else if (keyAxis->axisType() == QCPAxis::atBottom) { point.setX(lowerKey); point.setY(valueAxis->coordToPixel(0)); } } else // valueAxis->mScaleType == QCPAxis::stLogarithmic { // In logarithmic scaling we can't just draw to value zero so we just fill all the way // to the axis which is in the direction towards zero if (keyAxis->orientation() == Qt::Vertical) { if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis point.setX(keyAxis->axisRect()->right()); else point.setX(keyAxis->axisRect()->left()); point.setY(lowerKey); } else if (keyAxis->axisType() == QCPAxis::atTop || keyAxis->axisType() == QCPAxis::atBottom) { point.setX(lowerKey); if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis point.setY(keyAxis->axisRect()->top()); else point.setY(keyAxis->axisRect()->bottom()); } } return point; } /*! \internal called by \ref addFillBasePoints to conveniently assign the point which closes the fill polygon on the upper side of the zero-value-line parallel to the key axis. The logarithmic axis scale case is a bit special, since the zero-value-line in pixel coordinates is in positive or negative infinity. So this case is handled separately by just closing the fill polygon on the axis which lies in the direction towards the zero value. \a upperKey will be the the key (in pixels) of the returned point. Depending on whether the key axis is horizontal or vertical, \a upperKey will end up as the x or y value of the returned point, respectively. \see lowerFillBasePoint, addFillBasePoints */ QPointF QCPGraph::upperFillBasePoint(double upperKey) const { QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } QPointF point; if (valueAxis->scaleType() == QCPAxis::stLinear) { if (keyAxis->axisType() == QCPAxis::atLeft) { point.setX(valueAxis->coordToPixel(0)); point.setY(upperKey); } else if (keyAxis->axisType() == QCPAxis::atRight) { point.setX(valueAxis->coordToPixel(0)); point.setY(upperKey); } else if (keyAxis->axisType() == QCPAxis::atTop) { point.setX(upperKey); point.setY(valueAxis->coordToPixel(0)); } else if (keyAxis->axisType() == QCPAxis::atBottom) { point.setX(upperKey); point.setY(valueAxis->coordToPixel(0)); } } else // valueAxis->mScaleType == QCPAxis::stLogarithmic { // In logarithmic scaling we can't just draw to value 0 so we just fill all the way // to the axis which is in the direction towards 0 if (keyAxis->orientation() == Qt::Vertical) { if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis point.setX(keyAxis->axisRect()->right()); else point.setX(keyAxis->axisRect()->left()); point.setY(upperKey); } else if (keyAxis->axisType() == QCPAxis::atTop || keyAxis->axisType() == QCPAxis::atBottom) { point.setX(upperKey); if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis point.setY(keyAxis->axisRect()->top()); else point.setY(keyAxis->axisRect()->bottom()); } } return point; } /*! \internal Generates the polygon needed for drawing channel fills between this graph (data passed via \a lineData) and the graph specified by mChannelFillGraph (data generated by calling its \ref getPlotData function). May return an empty polygon if the key ranges have no overlap or fill target graph and this graph don't have same orientation (i.e. both key axes horizontal or both key axes vertical). For increased performance (due to implicit sharing), keep the returned QPolygonF const. */ const QPolygonF QCPGraph::getChannelFillPolygon(const QVector<QPointF> *lineData) const { if (!mChannelFillGraph) return QPolygonF(); QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPolygonF(); } if (!mChannelFillGraph.data()->mKeyAxis) { qDebug() << Q_FUNC_INFO << "channel fill target key axis invalid"; return QPolygonF(); } if (mChannelFillGraph.data()->mKeyAxis.data()->orientation() != keyAxis->orientation()) return QPolygonF(); // don't have same axis orientation, can't fill that (Note: if keyAxis fits, valueAxis will fit too, because it's always orthogonal to keyAxis) if (lineData->isEmpty()) return QPolygonF(); QVector<QPointF> otherData; mChannelFillGraph.data()->getPlotData(&otherData, 0); if (otherData.isEmpty()) return QPolygonF(); QVector<QPointF> thisData; thisData.reserve(lineData->size()+otherData.size()); // because we will join both vectors at end of this function for (int i=0; i<lineData->size(); ++i) // don't use the vector<<(vector), it squeezes internally, which ruins the performance tuning with reserve() thisData << lineData->at(i); // pointers to be able to swap them, depending which data range needs cropping: QVector<QPointF> *staticData = &thisData; QVector<QPointF> *croppedData = &otherData; // crop both vectors to ranges in which the keys overlap (which coord is key, depends on axisType): if (keyAxis->orientation() == Qt::Horizontal) { // x is key // if an axis range is reversed, the data point keys will be descending. Reverse them, since following algorithm assumes ascending keys: if (staticData->first().x() > staticData->last().x()) { int size = staticData->size(); for (int i=0; i<size/2; ++i) qSwap((*staticData)[i], (*staticData)[size-1-i]); } if (croppedData->first().x() > croppedData->last().x()) { int size = croppedData->size(); for (int i=0; i<size/2; ++i) qSwap((*croppedData)[i], (*croppedData)[size-1-i]); } // crop lower bound: if (staticData->first().x() < croppedData->first().x()) // other one must be cropped qSwap(staticData, croppedData); int lowBound = findIndexBelowX(croppedData, staticData->first().x()); if (lowBound == -1) return QPolygonF(); // key ranges have no overlap croppedData->remove(0, lowBound); // set lowest point of cropped data to fit exactly key position of first static data // point via linear interpolation: if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation double slope; if (croppedData->at(1).x()-croppedData->at(0).x() != 0) slope = (croppedData->at(1).y()-croppedData->at(0).y())/(croppedData->at(1).x()-croppedData->at(0).x()); else slope = 0; (*croppedData)[0].setY(croppedData->at(0).y()+slope*(staticData->first().x()-croppedData->at(0).x())); (*croppedData)[0].setX(staticData->first().x()); // crop upper bound: if (staticData->last().x() > croppedData->last().x()) // other one must be cropped qSwap(staticData, croppedData); int highBound = findIndexAboveX(croppedData, staticData->last().x()); if (highBound == -1) return QPolygonF(); // key ranges have no overlap croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); // set highest point of cropped data to fit exactly key position of last static data // point via linear interpolation: if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation int li = croppedData->size()-1; // last index if (croppedData->at(li).x()-croppedData->at(li-1).x() != 0) slope = (croppedData->at(li).y()-croppedData->at(li-1).y())/(croppedData->at(li).x()-croppedData->at(li-1).x()); else slope = 0; (*croppedData)[li].setY(croppedData->at(li-1).y()+slope*(staticData->last().x()-croppedData->at(li-1).x())); (*croppedData)[li].setX(staticData->last().x()); } else // mKeyAxis->orientation() == Qt::Vertical { // y is key // similar to "x is key" but switched x,y. Further, lower/upper meaning is inverted compared to x, // because in pixel coordinates, y increases from top to bottom, not bottom to top like data coordinate. // if an axis range is reversed, the data point keys will be descending. Reverse them, since following algorithm assumes ascending keys: if (staticData->first().y() < staticData->last().y()) { int size = staticData->size(); for (int i=0; i<size/2; ++i) qSwap((*staticData)[i], (*staticData)[size-1-i]); } if (croppedData->first().y() < croppedData->last().y()) { int size = croppedData->size(); for (int i=0; i<size/2; ++i) qSwap((*croppedData)[i], (*croppedData)[size-1-i]); } // crop lower bound: if (staticData->first().y() > croppedData->first().y()) // other one must be cropped qSwap(staticData, croppedData); int lowBound = findIndexAboveY(croppedData, staticData->first().y()); if (lowBound == -1) return QPolygonF(); // key ranges have no overlap croppedData->remove(0, lowBound); // set lowest point of cropped data to fit exactly key position of first static data // point via linear interpolation: if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation double slope; if (croppedData->at(1).y()-croppedData->at(0).y() != 0) // avoid division by zero in step plots slope = (croppedData->at(1).x()-croppedData->at(0).x())/(croppedData->at(1).y()-croppedData->at(0).y()); else slope = 0; (*croppedData)[0].setX(croppedData->at(0).x()+slope*(staticData->first().y()-croppedData->at(0).y())); (*croppedData)[0].setY(staticData->first().y()); // crop upper bound: if (staticData->last().y() < croppedData->last().y()) // other one must be cropped qSwap(staticData, croppedData); int highBound = findIndexBelowY(croppedData, staticData->last().y()); if (highBound == -1) return QPolygonF(); // key ranges have no overlap croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); // set highest point of cropped data to fit exactly key position of last static data // point via linear interpolation: if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation int li = croppedData->size()-1; // last index if (croppedData->at(li).y()-croppedData->at(li-1).y() != 0) // avoid division by zero in step plots slope = (croppedData->at(li).x()-croppedData->at(li-1).x())/(croppedData->at(li).y()-croppedData->at(li-1).y()); else slope = 0; (*croppedData)[li].setX(croppedData->at(li-1).x()+slope*(staticData->last().y()-croppedData->at(li-1).y())); (*croppedData)[li].setY(staticData->last().y()); } // return joined: for (int i=otherData.size()-1; i>=0; --i) // insert reversed, otherwise the polygon will be twisted thisData << otherData.at(i); return QPolygonF(thisData); } /*! \internal Finds the smallest index of \a data, whose points x value is just above \a x. Assumes x values in \a data points are ordered ascending, as is the case when plotting with horizontal key axis. Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. */ int QCPGraph::findIndexAboveX(const QVector<QPointF> *data, double x) const { for (int i=data->size()-1; i>=0; --i) { if (data->at(i).x() < x) { if (i<data->size()-1) return i+1; else return data->size()-1; } } return -1; } /*! \internal Finds the highest index of \a data, whose points x value is just below \a x. Assumes x values in \a data points are ordered ascending, as is the case when plotting with horizontal key axis. Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. */ int QCPGraph::findIndexBelowX(const QVector<QPointF> *data, double x) const { for (int i=0; i<data->size(); ++i) { if (data->at(i).x() > x) { if (i>0) return i-1; else return 0; } } return -1; } /*! \internal Finds the smallest index of \a data, whose points y value is just above \a y. Assumes y values in \a data points are ordered descending, as is the case when plotting with vertical key axis. Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. */ int QCPGraph::findIndexAboveY(const QVector<QPointF> *data, double y) const { for (int i=0; i<data->size(); ++i) { if (data->at(i).y() < y) { if (i>0) return i-1; else return 0; } } return -1; } /*! \internal Calculates the (minimum) distance (in pixels) the graph's representation has from the given \a pixelPoint in pixels. This is used to determine whether the graph was clicked or not, e.g. in \ref selectTest. If either the graph has no data or if the line style is \ref lsNone and the scatter style's shape is \ref QCPScatterStyle::ssNone (i.e. there is no visual representation of the graph), returns 500. */ double QCPGraph::pointDistance(const QPointF &pixelPoint) const { if (mData->isEmpty()) { qDebug() << Q_FUNC_INFO << "requested point distance on graph" << mName << "without data"; return 500; } if (mData->size() == 1) { QPointF dataPoint = coordsToPixels(mData->constBegin().key(), mData->constBegin().value().value); return QVector2D(dataPoint-pixelPoint).length(); } if (mLineStyle == lsNone && mScatterStyle.isNone()) return 500; // calculate minimum distances to graph representation: if (mLineStyle == lsNone) { // no line displayed, only calculate distance to scatter points: QVector<QCPData> *pointData = new QVector<QCPData>; getScatterPlotData(pointData); double minDistSqr = std::numeric_limits<double>::max(); QPointF ptA; QPointF ptB = coordsToPixels(pointData->at(0).key, pointData->at(0).value); // getScatterPlotData returns in plot coordinates, so transform to pixels for (int i=1; i<pointData->size(); ++i) { ptA = ptB; ptB = coordsToPixels(pointData->at(i).key, pointData->at(i).value); double currentDistSqr = distSqrToLine(ptA, ptB, pixelPoint); if (currentDistSqr < minDistSqr) minDistSqr = currentDistSqr; } delete pointData; return sqrt(minDistSqr); } else { // line displayed calculate distance to line segments: QVector<QPointF> *lineData = new QVector<QPointF>; getPlotData(lineData, 0); // unlike with getScatterPlotData we get pixel coordinates here double minDistSqr = std::numeric_limits<double>::max(); if (mLineStyle == lsImpulse) { // impulse plot differs from other line styles in that the lineData points are only pairwise connected: for (int i=0; i<lineData->size()-1; i+=2) // iterate pairs { double currentDistSqr = distSqrToLine(lineData->at(i), lineData->at(i+1), pixelPoint); if (currentDistSqr < minDistSqr) minDistSqr = currentDistSqr; } } else { // all other line plots (line and step) connect points directly: for (int i=0; i<lineData->size()-1; ++i) { double currentDistSqr = distSqrToLine(lineData->at(i), lineData->at(i+1), pixelPoint); if (currentDistSqr < minDistSqr) minDistSqr = currentDistSqr; } } delete lineData; return sqrt(minDistSqr); } } /*! \internal Finds the highest index of \a data, whose points y value is just below \a y. Assumes y values in \a data points are ordered descending, as is the case when plotting with vertical key axis (since keys are ordered ascending). Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. */ int QCPGraph::findIndexBelowY(const QVector<QPointF> *data, double y) const { for (int i=data->size()-1; i>=0; --i) { if (data->at(i).y() > y) { if (i<data->size()-1) return i+1; else return data->size()-1; } } return -1; } /* inherits documentation from base class */ QCPRange QCPGraph::getKeyRange(bool &validRange, SignDomain inSignDomain) const { // just call the specialized version which takes an additional argument whether error bars // should also be taken into consideration for range calculation. We set this to true here. return getKeyRange(validRange, inSignDomain, true); } /* inherits documentation from base class */ QCPRange QCPGraph::getValueRange(bool &validRange, SignDomain inSignDomain) const { // just call the specialized version which takes an additional argument whether error bars // should also be taken into consideration for range calculation. We set this to true here. return getValueRange(validRange, inSignDomain, true); } /*! \overload Allows to specify whether the error bars should be included in the range calculation. \see getKeyRange(bool &validRange, SignDomain inSignDomain) */ QCPRange QCPGraph::getKeyRange(bool &validRange, SignDomain inSignDomain, bool includeErrors) const { QCPRange range; bool haveLower = false; bool haveUpper = false; double current, currentErrorMinus, currentErrorPlus; if (inSignDomain == sdBoth) // range may be anywhere { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().key; currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); if (current-currentErrorMinus < range.lower || !haveLower) { range.lower = current-currentErrorMinus; haveLower = true; } if (current+currentErrorPlus > range.upper || !haveUpper) { range.upper = current+currentErrorPlus; haveUpper = true; } ++it; } } else if (inSignDomain == sdNegative) // range may only be in the negative sign domain { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().key; currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus < 0) { range.lower = current-currentErrorMinus; haveLower = true; } if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus < 0) { range.upper = current+currentErrorPlus; haveUpper = true; } if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to geht that point. { if ((current < range.lower || !haveLower) && current < 0) { range.lower = current; haveLower = true; } if ((current > range.upper || !haveUpper) && current < 0) { range.upper = current; haveUpper = true; } } ++it; } } else if (inSignDomain == sdPositive) // range may only be in the positive sign domain { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().key; currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus > 0) { range.lower = current-currentErrorMinus; haveLower = true; } if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus > 0) { range.upper = current+currentErrorPlus; haveUpper = true; } if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to get that point. { if ((current < range.lower || !haveLower) && current > 0) { range.lower = current; haveLower = true; } if ((current > range.upper || !haveUpper) && current > 0) { range.upper = current; haveUpper = true; } } ++it; } } validRange = haveLower && haveUpper; return range; } /*! \overload Allows to specify whether the error bars should be included in the range calculation. \see getValueRange(bool &validRange, SignDomain inSignDomain) */ QCPRange QCPGraph::getValueRange(bool &validRange, SignDomain inSignDomain, bool includeErrors) const { QCPRange range; bool haveLower = false; bool haveUpper = false; double current, currentErrorMinus, currentErrorPlus; if (inSignDomain == sdBoth) // range may be anywhere { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().value; currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); if (current-currentErrorMinus < range.lower || !haveLower) { range.lower = current-currentErrorMinus; haveLower = true; } if (current+currentErrorPlus > range.upper || !haveUpper) { range.upper = current+currentErrorPlus; haveUpper = true; } ++it; } } else if (inSignDomain == sdNegative) // range may only be in the negative sign domain { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().value; currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus < 0) { range.lower = current-currentErrorMinus; haveLower = true; } if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus < 0) { range.upper = current+currentErrorPlus; haveUpper = true; } if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to get that point. { if ((current < range.lower || !haveLower) && current < 0) { range.lower = current; haveLower = true; } if ((current > range.upper || !haveUpper) && current < 0) { range.upper = current; haveUpper = true; } } ++it; } } else if (inSignDomain == sdPositive) // range may only be in the positive sign domain { QCPDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().value; currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus > 0) { range.lower = current-currentErrorMinus; haveLower = true; } if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus > 0) { range.upper = current+currentErrorPlus; haveUpper = true; } if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to geht that point. { if ((current < range.lower || !haveLower) && current > 0) { range.lower = current; haveLower = true; } if ((current > range.upper || !haveUpper) && current > 0) { range.upper = current; haveUpper = true; } } ++it; } } validRange = haveLower && haveUpper; return range; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPCurveData //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPCurveData \brief Holds the data of one single data point for QCPCurve. The container for storing multiple data points is \ref QCPCurveDataMap. The stored data is: \li \a t: the free parameter of the curve at this curve point (cp. the mathematical vector <em>(x(t), y(t))</em>) \li \a key: coordinate on the key axis of this curve point \li \a value: coordinate on the value axis of this curve point \see QCPCurveDataMap */ /*! Constructs a curve data point with t, key and value set to zero. */ QCPCurveData::QCPCurveData() : t(0), key(0), value(0) { } /*! Constructs a curve data point with the specified \a t, \a key and \a value. */ QCPCurveData::QCPCurveData(double t, double key, double value) : t(t), key(key), value(value) { } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPCurve //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPCurve \brief A plottable representing a parametric curve in a plot. \image html QCPCurve.png Unlike QCPGraph, plottables of this type may have multiple points with the same key coordinate, so their visual representation can have \a loops. This is realized by introducing a third coordinate \a t, which defines the order of the points described by the other two coordinates \a x and \a y. To plot data, assign it with the \ref setData or \ref addData functions. \section appearance Changing the appearance The appearance of the curve is determined by the pen and the brush (\ref setPen, \ref setBrush). \section usage Usage Like all data representing objects in QCustomPlot, the QCPCurve is a plottable (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies (QCustomPlot::plottable, QCustomPlot::addPlottable, QCustomPlot::removePlottable, etc.) Usually, you first create an instance: \code QCPCurve *newCurve = new QCPCurve(customPlot->xAxis, customPlot->yAxis);\endcode add it to the customPlot with QCustomPlot::addPlottable: \code customPlot->addPlottable(newCurve);\endcode and then modify the properties of the newly created plottable, e.g.: \code newCurve->setName("Fermat's Spiral"); newCurve->setData(tData, xData, yData);\endcode */ /*! Constructs a curve which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have the same orientation. If either of these restrictions is violated, a corresponding message is printed to the debug output (qDebug), the construction is not aborted, though. The constructed QCPCurve can be added to the plot with QCustomPlot::addPlottable, QCustomPlot then takes ownership of the graph. */ QCPCurve::QCPCurve(QCPAxis *keyAxis, QCPAxis *valueAxis) : QCPAbstractPlottable(keyAxis, valueAxis) { mData = new QCPCurveDataMap; mPen.setColor(Qt::blue); mPen.setStyle(Qt::SolidLine); mBrush.setColor(Qt::blue); mBrush.setStyle(Qt::NoBrush); mSelectedPen = mPen; mSelectedPen.setWidthF(2.5); mSelectedPen.setColor(QColor(80, 80, 255)); // lighter than Qt::blue of mPen mSelectedBrush = mBrush; setScatterStyle(QCPScatterStyle()); setLineStyle(lsLine); } QCPCurve::~QCPCurve() { delete mData; } /*! Replaces the current data with the provided \a data. If \a copy is set to true, data points in \a data will only be copied. if false, the plottable takes ownership of the passed data and replaces the internal data pointer with it. This is significantly faster than copying for large datasets. */ void QCPCurve::setData(QCPCurveDataMap *data, bool copy) { if (copy) { *mData = *data; } else { delete mData; mData = data; } } /*! \overload Replaces the current data with the provided points in \a t, \a key and \a value tuples. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPCurve::setData(const QVector<double> &t, const QVector<double> &key, const QVector<double> &value) { mData->clear(); int n = t.size(); n = qMin(n, key.size()); n = qMin(n, value.size()); QCPCurveData newData; for (int i=0; i<n; ++i) { newData.t = t[i]; newData.key = key[i]; newData.value = value[i]; mData->insertMulti(newData.t, newData); } } /*! \overload Replaces the current data with the provided \a key and \a value pairs. The t parameter of each data point will be set to the integer index of the respective key/value pair. */ void QCPCurve::setData(const QVector<double> &key, const QVector<double> &value) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); QCPCurveData newData; for (int i=0; i<n; ++i) { newData.t = i; // no t vector given, so we assign t the index of the key/value pair newData.key = key[i]; newData.value = value[i]; mData->insertMulti(newData.t, newData); } } /*! Sets the visual appearance of single data points in the plot. If set to \ref QCPScatterStyle::ssNone, no scatter points are drawn (e.g. for line-only plots with appropriate line style). \see QCPScatterStyle, setLineStyle */ void QCPCurve::setScatterStyle(const QCPScatterStyle &style) { mScatterStyle = style; } /*! Sets how the single data points are connected in the plot or how they are represented visually apart from the scatter symbol. For scatter-only plots, set \a style to \ref lsNone and \ref setScatterStyle to the desired scatter style. \see setScatterStyle */ void QCPCurve::setLineStyle(QCPCurve::LineStyle style) { mLineStyle = style; } /*! Adds the provided data points in \a dataMap to the current data. \see removeData */ void QCPCurve::addData(const QCPCurveDataMap &dataMap) { mData->unite(dataMap); } /*! \overload Adds the provided single data point in \a data to the current data. \see removeData */ void QCPCurve::addData(const QCPCurveData &data) { mData->insertMulti(data.t, data); } /*! \overload Adds the provided single data point as \a t, \a key and \a value tuple to the current data \see removeData */ void QCPCurve::addData(double t, double key, double value) { QCPCurveData newData; newData.t = t; newData.key = key; newData.value = value; mData->insertMulti(newData.t, newData); } /*! \overload Adds the provided single data point as \a key and \a value pair to the current data The t parameter of the data point is set to the t of the last data point plus 1. If there is no last data point, t will be set to 0. \see removeData */ void QCPCurve::addData(double key, double value) { QCPCurveData newData; if (!mData->isEmpty()) newData.t = (mData->constEnd()-1).key()+1; else newData.t = 0; newData.key = key; newData.value = value; mData->insertMulti(newData.t, newData); } /*! \overload Adds the provided data points as \a t, \a key and \a value tuples to the current data. \see removeData */ void QCPCurve::addData(const QVector<double> &ts, const QVector<double> &keys, const QVector<double> &values) { int n = ts.size(); n = qMin(n, keys.size()); n = qMin(n, values.size()); QCPCurveData newData; for (int i=0; i<n; ++i) { newData.t = ts[i]; newData.key = keys[i]; newData.value = values[i]; mData->insertMulti(newData.t, newData); } } /*! Removes all data points with curve parameter t smaller than \a t. \see addData, clearData */ void QCPCurve::removeDataBefore(double t) { QCPCurveDataMap::iterator it = mData->begin(); while (it != mData->end() && it.key() < t) it = mData->erase(it); } /*! Removes all data points with curve parameter t greater than \a t. \see addData, clearData */ void QCPCurve::removeDataAfter(double t) { if (mData->isEmpty()) return; QCPCurveDataMap::iterator it = mData->upperBound(t); while (it != mData->end()) it = mData->erase(it); } /*! Removes all data points with curve parameter t between \a fromt and \a tot. if \a fromt is greater or equal to \a tot, the function does nothing. To remove a single data point with known t, use \ref removeData(double t). \see addData, clearData */ void QCPCurve::removeData(double fromt, double tot) { if (fromt >= tot || mData->isEmpty()) return; QCPCurveDataMap::iterator it = mData->upperBound(fromt); QCPCurveDataMap::iterator itEnd = mData->upperBound(tot); while (it != itEnd) it = mData->erase(it); } /*! \overload Removes a single data point at curve parameter \a t. If the position is not known with absolute precision, consider using \ref removeData(double fromt, double tot) with a small fuzziness interval around the suspected position, depeding on the precision with which the curve parameter is known. \see addData, clearData */ void QCPCurve::removeData(double t) { mData->remove(t); } /*! Removes all data points. \see removeData, removeDataAfter, removeDataBefore */ void QCPCurve::clearData() { mData->clear(); } /* inherits documentation from base class */ double QCPCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if ((onlySelectable && !mSelectable) || mData->isEmpty()) return -1; return pointDistance(pos); } /* inherits documentation from base class */ void QCPCurve::draw(QCPPainter *painter) { if (mData->isEmpty()) return; // allocate line vector: QVector<QPointF> *lineData = new QVector<QPointF>; // fill with curve data: getCurveData(lineData); // check data validity if flag set: #ifdef QCUSTOMPLOT_CHECK_DATA QCPCurveDataMap::const_iterator it; for (it = mData->constBegin(); it != mData->constEnd(); ++it) { if (QCP::isInvalidData(it.value().t) || QCP::isInvalidData(it.value().key, it.value().value)) qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "invalid." << "Plottable name:" << name(); } #endif // draw curve fill: if (mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) { applyFillAntialiasingHint(painter); painter->setPen(Qt::NoPen); painter->setBrush(mainBrush()); painter->drawPolygon(QPolygonF(*lineData)); } // draw curve line: if (mLineStyle != lsNone && mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) { applyDefaultAntialiasingHint(painter); painter->setPen(mainPen()); painter->setBrush(Qt::NoBrush); // if drawing solid line and not in PDF, use much faster line drawing instead of polyline: if (mParentPlot->plottingHints().testFlag(QCP::phFastPolylines) && painter->pen().style() == Qt::SolidLine && !painter->modes().testFlag(QCPPainter::pmVectorized) && !painter->modes().testFlag(QCPPainter::pmNoCaching)) { for (int i=1; i<lineData->size(); ++i) painter->drawLine(lineData->at(i-1), lineData->at(i)); } else { painter->drawPolyline(QPolygonF(*lineData)); } } // draw scatters: if (!mScatterStyle.isNone()) drawScatterPlot(painter, lineData); // free allocated line data: delete lineData; } /* inherits documentation from base class */ void QCPCurve::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const { // draw fill: if (mBrush.style() != Qt::NoBrush) { applyFillAntialiasingHint(painter); painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); } // draw line vertically centered: if (mLineStyle != lsNone) { applyDefaultAntialiasingHint(painter); painter->setPen(mPen); painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens } // draw scatter symbol: if (!mScatterStyle.isNone()) { applyScattersAntialiasingHint(painter); // scale scatter pixmap if it's too large to fit in legend icon rect: if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) { QCPScatterStyle scaledStyle(mScatterStyle); scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); scaledStyle.applyTo(painter, mPen); scaledStyle.drawShape(painter, QRectF(rect).center()); } else { mScatterStyle.applyTo(painter, mPen); mScatterStyle.drawShape(painter, QRectF(rect).center()); } } } /*! \internal Draws scatter symbols at every data point passed in \a pointData. scatter symbols are independent of the line style and are always drawn if scatter shape is not \ref QCPScatterStyle::ssNone. */ void QCPCurve::drawScatterPlot(QCPPainter *painter, const QVector<QPointF> *pointData) const { // draw scatter point symbols: applyScattersAntialiasingHint(painter); mScatterStyle.applyTo(painter, mPen); for (int i=0; i<pointData->size(); ++i) mScatterStyle.drawShape(painter, pointData->at(i)); } /*! \internal called by QCPCurve::draw to generate a point vector (pixels) which represents the line of the curve. Line segments that aren't visible in the current axis rect are handled in an optimized way. */ void QCPCurve::getCurveData(QVector<QPointF> *lineData) const { /* Extended sides of axis rect R divide space into 9 regions: 1__|_4_|__7 2__|_R_|__8 3 | 6 | 9 General idea: If the two points of a line segment are in the same region (that is not R), the line segment corner is removed. Curves outside R become straight lines closely outside of R which greatly reduces drawing time, yet keeps the look of lines and fills inside R consistent. The region R has index 5. */ QCPAxis *keyAxis = mKeyAxis.data(); QCPAxis *valueAxis = mValueAxis.data(); if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } QRect axisRect = mKeyAxis.data()->axisRect()->rect() & mValueAxis.data()->axisRect()->rect(); lineData->reserve(mData->size()); QCPCurveDataMap::const_iterator it; int lastRegion = 5; int currentRegion = 5; double RLeft = keyAxis->range().lower; double RRight = keyAxis->range().upper; double RBottom = valueAxis->range().lower; double RTop = valueAxis->range().upper; double x, y; // current key/value bool addedLastAlready = true; bool firstPoint = true; // first point must always be drawn, to make sure fill works correctly for (it = mData->constBegin(); it != mData->constEnd(); ++it) { x = it.value().key; y = it.value().value; // determine current region: if (x < RLeft) // region 123 { if (y > RTop) currentRegion = 1; else if (y < RBottom) currentRegion = 3; else currentRegion = 2; } else if (x > RRight) // region 789 { if (y > RTop) currentRegion = 7; else if (y < RBottom) currentRegion = 9; else currentRegion = 8; } else // region 456 { if (y > RTop) currentRegion = 4; else if (y < RBottom) currentRegion = 6; else currentRegion = 5; } /* Watch out, the next part is very tricky. It modifies the curve such that it seems like the whole thing is still drawn, but actually the points outside the axisRect are simplified ("optimized") greatly. There are some subtle special cases when line segments are large and thereby each subsequent point may be in a different region or even skip some. */ // determine whether to keep current point: if (currentRegion == 5 || (firstPoint && mBrush.style() != Qt::NoBrush)) // current is in R, add current and last if it wasn't added already { if (!addedLastAlready) // in case curve just entered R, make sure the last point outside R is also drawn correctly lineData->append(coordsToPixels((it-1).value().key, (it-1).value().value)); // add last point to vector else if (lastRegion != 5) // added last already. If that's the case, we probably added it at optimized position. So go back and make sure it's at original position (else the angle changes under which this segment enters R) { if (!firstPoint) // because on firstPoint, currentRegion is 5 and addedLastAlready is true, although there is no last point lineData->replace(lineData->size()-1, coordsToPixels((it-1).value().key, (it-1).value().value)); } lineData->append(coordsToPixels(it.value().key, it.value().value)); // add current point to vector addedLastAlready = true; // so in next iteration, we don't add this point twice } else if (currentRegion != lastRegion) // changed region, add current and last if not added already { // using outsideCoordsToPixels instead of coorsToPixels for optimized point placement (places points just outside axisRect instead of potentially far away) // if we're coming from R or we skip diagonally over the corner regions (so line might still be visible in R), we can't place points optimized if (lastRegion == 5 || // coming from R ((lastRegion==2 && currentRegion==4) || (lastRegion==4 && currentRegion==2)) || // skip top left diagonal ((lastRegion==4 && currentRegion==8) || (lastRegion==8 && currentRegion==4)) || // skip top right diagonal ((lastRegion==8 && currentRegion==6) || (lastRegion==6 && currentRegion==8)) || // skip bottom right diagonal ((lastRegion==6 && currentRegion==2) || (lastRegion==2 && currentRegion==6)) // skip bottom left diagonal ) { // always add last point if not added already, original: if (!addedLastAlready) lineData->append(coordsToPixels((it-1).value().key, (it-1).value().value)); // add current point, original: lineData->append(coordsToPixels(it.value().key, it.value().value)); } else // no special case that forbids optimized point placement, so do it: { // always add last point if not added already, optimized: if (!addedLastAlready) lineData->append(outsideCoordsToPixels((it-1).value().key, (it-1).value().value, currentRegion, axisRect)); // add current point, optimized: lineData->append(outsideCoordsToPixels(it.value().key, it.value().value, currentRegion, axisRect)); } addedLastAlready = true; // so that if next point enters 5, or crosses another region boundary, we don't add this point twice } else // neither in R, nor crossed a region boundary, skip current point { addedLastAlready = false; } lastRegion = currentRegion; firstPoint = false; } // If curve ends outside R, we want to add very last point so the fill looks like it should when the curve started inside R: if (lastRegion != 5 && mBrush.style() != Qt::NoBrush && !mData->isEmpty()) lineData->append(coordsToPixels((mData->constEnd()-1).value().key, (mData->constEnd()-1).value().value)); } /*! \internal Calculates the (minimum) distance (in pixels) the curve's representation has from the given \a pixelPoint in pixels. This is used to determine whether the curve was clicked or not, e.g. in \ref selectTest. */ double QCPCurve::pointDistance(const QPointF &pixelPoint) const { if (mData->isEmpty()) { qDebug() << Q_FUNC_INFO << "requested point distance on curve" << mName << "without data"; return 500; } if (mData->size() == 1) { QPointF dataPoint = coordsToPixels(mData->constBegin().key(), mData->constBegin().value().value); return QVector2D(dataPoint-pixelPoint).length(); } // calculate minimum distance to line segments: QVector<QPointF> *lineData = new QVector<QPointF>; getCurveData(lineData); double minDistSqr = std::numeric_limits<double>::max(); for (int i=0; i<lineData->size()-1; ++i) { double currentDistSqr = distSqrToLine(lineData->at(i), lineData->at(i+1), pixelPoint); if (currentDistSqr < minDistSqr) minDistSqr = currentDistSqr; } delete lineData; return sqrt(minDistSqr); } /*! \internal This is a specialized \ref coordsToPixels function for points that are outside the visible axisRect and just crossing a boundary (since \ref getCurveData reduces non-visible curve segments to those line segments that cross region boundaries, see documentation there). It only uses the coordinate parallel to the region boundary of the axisRect. The other coordinate is picked just outside the axisRect (how far is determined by the scatter size and the line width). Together with the optimization in \ref getCurveData this improves performance for large curves (or zoomed in ones) significantly while keeping the illusion the whole curve and its filling is still being drawn for the viewer. */ QPointF QCPCurve::outsideCoordsToPixels(double key, double value, int region, QRect axisRect) const { int margin = qCeil(qMax(mScatterStyle.size(), (double)mPen.widthF())) + 2; QPointF result = coordsToPixels(key, value); switch (region) { case 2: result.setX(axisRect.left()-margin); break; // left case 8: result.setX(axisRect.right()+margin); break; // right case 4: result.setY(axisRect.top()-margin); break; // top case 6: result.setY(axisRect.bottom()+margin); break; // bottom case 1: result.setX(axisRect.left()-margin); result.setY(axisRect.top()-margin); break; // top left case 7: result.setX(axisRect.right()+margin); result.setY(axisRect.top()-margin); break; // top right case 9: result.setX(axisRect.right()+margin); result.setY(axisRect.bottom()+margin); break; // bottom right case 3: result.setX(axisRect.left()-margin); result.setY(axisRect.bottom()+margin); break; // bottom left } return result; } /* inherits documentation from base class */ QCPRange QCPCurve::getKeyRange(bool &validRange, SignDomain inSignDomain) const { QCPRange range; bool haveLower = false; bool haveUpper = false; double current; QCPCurveDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().key; if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) { if (current < range.lower || !haveLower) { range.lower = current; haveLower = true; } if (current > range.upper || !haveUpper) { range.upper = current; haveUpper = true; } } ++it; } validRange = haveLower && haveUpper; return range; } /* inherits documentation from base class */ QCPRange QCPCurve::getValueRange(bool &validRange, SignDomain inSignDomain) const { QCPRange range; bool haveLower = false; bool haveUpper = false; double current; QCPCurveDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().value; if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) { if (current < range.lower || !haveLower) { range.lower = current; haveLower = true; } if (current > range.upper || !haveUpper) { range.upper = current; haveUpper = true; } } ++it; } validRange = haveLower && haveUpper; return range; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPBarData //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPBarData \brief Holds the data of one single data point (one bar) for QCPBars. The container for storing multiple data points is \ref QCPBarDataMap. The stored data is: \li \a key: coordinate on the key axis of this bar \li \a value: height coordinate on the value axis of this bar \see QCPBarDataaMap */ /*! Constructs a bar data point with key and value set to zero. */ QCPBarData::QCPBarData() : key(0), value(0) { } /*! Constructs a bar data point with the specified \a key and \a value. */ QCPBarData::QCPBarData(double key, double value) : key(key), value(value) { } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPBars //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPBars \brief A plottable representing a bar chart in a plot. \image html QCPBars.png To plot data, assign it with the \ref setData or \ref addData functions. \section appearance Changing the appearance The appearance of the bars is determined by the pen and the brush (\ref setPen, \ref setBrush). Bar charts are stackable. This means, Two QCPBars plottables can be placed on top of each other (see \ref QCPBars::moveAbove). Then, when two bars are at the same key position, they will appear stacked. \section usage Usage Like all data representing objects in QCustomPlot, the QCPBars is a plottable (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies (QCustomPlot::plottable, QCustomPlot::addPlottable, QCustomPlot::removePlottable, etc.) Usually, you first create an instance: \code QCPBars *newBars = new QCPBars(customPlot->xAxis, customPlot->yAxis);\endcode add it to the customPlot with QCustomPlot::addPlottable: \code customPlot->addPlottable(newBars);\endcode and then modify the properties of the newly created plottable, e.g.: \code newBars->setName("Country population"); newBars->setData(xData, yData);\endcode */ /*! \fn QCPBars *QCPBars::barBelow() const Returns the bars plottable that is directly below this bars plottable. If there is no such plottable, returns 0. \see barAbove, moveBelow, moveAbove */ /*! \fn QCPBars *QCPBars::barAbove() const Returns the bars plottable that is directly above this bars plottable. If there is no such plottable, returns 0. \see barBelow, moveBelow, moveAbove */ /*! Constructs a bar chart which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have the same orientation. If either of these restrictions is violated, a corresponding message is printed to the debug output (qDebug), the construction is not aborted, though. The constructed QCPBars can be added to the plot with QCustomPlot::addPlottable, QCustomPlot then takes ownership of the bar chart. */ QCPBars::QCPBars(QCPAxis *keyAxis, QCPAxis *valueAxis) : QCPAbstractPlottable(keyAxis, valueAxis) { mData = new QCPBarDataMap; mPen.setColor(Qt::blue); mPen.setStyle(Qt::SolidLine); mBrush.setColor(QColor(40, 50, 255, 30)); mBrush.setStyle(Qt::SolidPattern); mSelectedPen = mPen; mSelectedPen.setWidthF(2.5); mSelectedPen.setColor(QColor(80, 80, 255)); // lighter than Qt::blue of mPen mSelectedBrush = mBrush; mWidth = 0.75; } QCPBars::~QCPBars() { if (mBarBelow || mBarAbove) connectBars(mBarBelow.data(), mBarAbove.data()); // take this bar out of any stacking delete mData; } /*! Sets the width of the bars in plot (key) coordinates. */ void QCPBars::setWidth(double width) { mWidth = width; } /*! Replaces the current data with the provided \a data. If \a copy is set to true, data points in \a data will only be copied. if false, the plottable takes ownership of the passed data and replaces the internal data pointer with it. This is significantly faster than copying for large datasets. */ void QCPBars::setData(QCPBarDataMap *data, bool copy) { if (copy) { *mData = *data; } else { delete mData; mData = data; } } /*! \overload Replaces the current data with the provided points in \a key and \a value tuples. The provided vectors should have equal length. Else, the number of added points will be the size of the smallest vector. */ void QCPBars::setData(const QVector<double> &key, const QVector<double> &value) { mData->clear(); int n = key.size(); n = qMin(n, value.size()); QCPBarData newData; for (int i=0; i<n; ++i) { newData.key = key[i]; newData.value = value[i]; mData->insertMulti(newData.key, newData); } } /*! Moves this bars plottable below \a bars. In other words, the bars of this plottable will appear below the bars of \a bars. The move target \a bars must use the same key and value axis as this plottable. Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already has a bars object below itself, this bars object is inserted between the two. If this bars object is already between two other bars, the two other bars will be stacked on top of each other after the operation. To remove this bars plottable from any stacking, set \a bars to 0. \see moveBelow, barAbove, barBelow */ void QCPBars::moveBelow(QCPBars *bars) { if (bars == this) return; if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) { qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; return; } // remove from stacking: connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 // if new bar given, insert this bar below it: if (bars) { if (bars->mBarBelow) connectBars(bars->mBarBelow.data(), this); connectBars(this, bars); } } /*! Moves this bars plottable above \a bars. In other words, the bars of this plottable will appear above the bars of \a bars. The move target \a bars must use the same key and value axis as this plottable. Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already has a bars object below itself, this bars object is inserted between the two. If this bars object is already between two other bars, the two other bars will be stacked on top of each other after the operation. To remove this bars plottable from any stacking, set \a bars to 0. \see moveBelow, barBelow, barAbove */ void QCPBars::moveAbove(QCPBars *bars) { if (bars == this) return; if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) { qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; return; } // remove from stacking: connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 // if new bar given, insert this bar above it: if (bars) { if (bars->mBarAbove) connectBars(this, bars->mBarAbove.data()); connectBars(bars, this); } } /*! Adds the provided data points in \a dataMap to the current data. \see removeData */ void QCPBars::addData(const QCPBarDataMap &dataMap) { mData->unite(dataMap); } /*! \overload Adds the provided single data point in \a data to the current data. \see removeData */ void QCPBars::addData(const QCPBarData &data) { mData->insertMulti(data.key, data); } /*! \overload Adds the provided single data point as \a key and \a value tuple to the current data \see removeData */ void QCPBars::addData(double key, double value) { QCPBarData newData; newData.key = key; newData.value = value; mData->insertMulti(newData.key, newData); } /*! \overload Adds the provided data points as \a key and \a value tuples to the current data. \see removeData */ void QCPBars::addData(const QVector<double> &keys, const QVector<double> &values) { int n = keys.size(); n = qMin(n, values.size()); QCPBarData newData; for (int i=0; i<n; ++i) { newData.key = keys[i]; newData.value = values[i]; mData->insertMulti(newData.key, newData); } } /*! Removes all data points with key smaller than \a key. \see addData, clearData */ void QCPBars::removeDataBefore(double key) { QCPBarDataMap::iterator it = mData->begin(); while (it != mData->end() && it.key() < key) it = mData->erase(it); } /*! Removes all data points with key greater than \a key. \see addData, clearData */ void QCPBars::removeDataAfter(double key) { if (mData->isEmpty()) return; QCPBarDataMap::iterator it = mData->upperBound(key); while (it != mData->end()) it = mData->erase(it); } /*! Removes all data points with key between \a fromKey and \a toKey. if \a fromKey is greater or equal to \a toKey, the function does nothing. To remove a single data point with known key, use \ref removeData(double key). \see addData, clearData */ void QCPBars::removeData(double fromKey, double toKey) { if (fromKey >= toKey || mData->isEmpty()) return; QCPBarDataMap::iterator it = mData->upperBound(fromKey); QCPBarDataMap::iterator itEnd = mData->upperBound(toKey); while (it != itEnd) it = mData->erase(it); } /*! \overload Removes a single data point at \a key. If the position is not known with absolute precision, consider using \ref removeData(double fromKey, double toKey) with a small fuzziness interval around the suspected position, depeding on the precision with which the key is known. \see addData, clearData */ void QCPBars::removeData(double key) { mData->remove(key); } /*! Removes all data points. \see removeData, removeDataAfter, removeDataBefore */ void QCPBars::clearData() { mData->clear(); } /* inherits documentation from base class */ double QCPBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; QCPBarDataMap::ConstIterator it; double posKey, posValue; pixelsToCoords(pos, posKey, posValue); for (it = mData->constBegin(); it != mData->constEnd(); ++it) { double baseValue = getBaseValue(it.key(), it.value().value >=0); QCPRange keyRange(it.key()-mWidth*0.5, it.key()+mWidth*0.5); QCPRange valueRange(baseValue, baseValue+it.value().value); if (keyRange.contains(posKey) && valueRange.contains(posValue)) return mParentPlot->selectionTolerance()*0.99; } return -1; } /* inherits documentation from base class */ void QCPBars::draw(QCPPainter *painter) { if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } if (mData->isEmpty()) return; QCPBarDataMap::const_iterator it; for (it = mData->constBegin(); it != mData->constEnd(); ++it) { // skip bar if not visible in key axis range: if (it.key()+mWidth*0.5 < mKeyAxis.data()->range().lower || it.key()-mWidth*0.5 > mKeyAxis.data()->range().upper) continue; // check data validity if flag set: #ifdef QCUSTOMPLOT_CHECK_DATA if (QCP::isInvalidData(it.value().key, it.value().value)) qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "of drawn range invalid." << "Plottable name:" << name(); #endif QPolygonF barPolygon = getBarPolygon(it.key(), it.value().value); // draw bar fill: if (mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) { applyFillAntialiasingHint(painter); painter->setPen(Qt::NoPen); painter->setBrush(mainBrush()); painter->drawPolygon(barPolygon); } // draw bar line: if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) { applyDefaultAntialiasingHint(painter); painter->setPen(mainPen()); painter->setBrush(Qt::NoBrush); painter->drawPolyline(barPolygon); } } } /* inherits documentation from base class */ void QCPBars::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const { // draw filled rect: applyDefaultAntialiasingHint(painter); painter->setBrush(mBrush); painter->setPen(mPen); QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); r.moveCenter(rect.center()); painter->drawRect(r); } /*! \internal Returns the polygon of a single bar with \a key and \a value. The Polygon is open at the bottom and shifted according to the bar stacking (see \ref moveAbove). */ QPolygonF QCPBars::getBarPolygon(double key, double value) const { QPolygonF result; double baseValue = getBaseValue(key, value >= 0); result << coordsToPixels(key-mWidth*0.5, baseValue); result << coordsToPixels(key-mWidth*0.5, baseValue+value); result << coordsToPixels(key+mWidth*0.5, baseValue+value); result << coordsToPixels(key+mWidth*0.5, baseValue); return result; } /*! \internal This function is called to find at which value to start drawing the base of a bar at \a key, when it is stacked on top of another QCPBars (e.g. with \ref moveAbove). positive and negative bars are separated per stack (positive are stacked above 0-value upwards, negative are stacked below 0-value downwards). This can be indicated with \a positive. So if the bar for which we need the base value is negative, set \a positive to false. */ double QCPBars::getBaseValue(double key, bool positive) const { if (mBarBelow) { double max = 0; // find bars of mBarBelow that are approximately at key and find largest one: QCPBarDataMap::const_iterator it = mBarBelow.data()->mData->lowerBound(key-mWidth*0.1); QCPBarDataMap::const_iterator itEnd = mBarBelow.data()->mData->upperBound(key+mWidth*0.1); while (it != itEnd) { if ((positive && it.value().value > max) || (!positive && it.value().value < max)) max = it.value().value; ++it; } // recurse down the bar-stack to find the total height: return max + mBarBelow.data()->getBaseValue(key, positive); } else return 0; } /*! \internal Connects \a below and \a above to each other via their mBarAbove/mBarBelow properties. The bar(s) currently below lower and upper will become disconnected to lower/upper. If lower is zero, upper will be disconnected at the bottom. If upper is zero, lower will be disconnected at the top. */ void QCPBars::connectBars(QCPBars *lower, QCPBars *upper) { if (!lower && !upper) return; if (!lower) // disconnect upper at bottom { // disconnect old bar below upper: if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) upper->mBarBelow.data()->mBarAbove.clear(); upper->mBarBelow.clear(); } else if (!upper) // disconnect lower at top { // disconnect old bar above lower: if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) lower->mBarAbove.data()->mBarBelow.clear(); lower->mBarAbove.clear(); } else // connect lower and upper { // disconnect old bar above lower: if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) lower->mBarAbove.data()->mBarBelow.clear(); // disconnect old bar below upper: if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) upper->mBarBelow.data()->mBarAbove.clear(); lower->mBarAbove = upper; upper->mBarBelow = lower; } } /* inherits documentation from base class */ QCPRange QCPBars::getKeyRange(bool &validRange, SignDomain inSignDomain) const { QCPRange range; bool haveLower = false; bool haveUpper = false; double current; double barWidthHalf = mWidth*0.5; QCPBarDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().key; if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current+barWidthHalf < 0) || (inSignDomain == sdPositive && current-barWidthHalf > 0)) { if (current-barWidthHalf < range.lower || !haveLower) { range.lower = current-barWidthHalf; haveLower = true; } if (current+barWidthHalf > range.upper || !haveUpper) { range.upper = current+barWidthHalf; haveUpper = true; } } ++it; } validRange = haveLower && haveUpper; return range; } /* inherits documentation from base class */ QCPRange QCPBars::getValueRange(bool &validRange, SignDomain inSignDomain) const { QCPRange range; bool haveLower = true; // set to true, because 0 should always be visible in bar charts bool haveUpper = true; // set to true, because 0 should always be visible in bar charts double current; QCPBarDataMap::const_iterator it = mData->constBegin(); while (it != mData->constEnd()) { current = it.value().value + getBaseValue(it.value().key, it.value().value >= 0); if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) { if (current < range.lower || !haveLower) { range.lower = current; haveLower = true; } if (current > range.upper || !haveUpper) { range.upper = current; haveUpper = true; } } ++it; } validRange = range.lower < range.upper; return range; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPStatisticalBox //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPStatisticalBox \brief A plottable representing a single statistical box in a plot. \image html QCPStatisticalBox.png To plot data, assign it with the individual parameter functions or use \ref setData to set all parameters at once. The individual funcions are: \li \ref setMinimum \li \ref setLowerQuartile \li \ref setMedian \li \ref setUpperQuartile \li \ref setMaximum Additionally you can define a list of outliers, drawn as circle datapoints: \li \ref setOutliers \section appearance Changing the appearance The appearance of the box itself is controlled via \ref setPen and \ref setBrush. You may change the width of the box with \ref setWidth in plot coordinates (not pixels). Analog functions exist for the minimum/maximum-whiskers: \ref setWhiskerPen, \ref setWhiskerBarPen, \ref setWhiskerWidth. The whisker width is the width of the bar at the top (maximum) and bottom (minimum). The median indicator line has its own pen, \ref setMedianPen. If the whisker backbone pen is changed, make sure to set the capStyle to Qt::FlatCap. Else, the backbone line might exceed the whisker bars by a few pixels due to the pen cap being not perfectly flat. The Outlier data points are drawn as normal scatter points. Their look can be controlled with \ref setOutlierStyle \section usage Usage Like all data representing objects in QCustomPlot, the QCPStatisticalBox is a plottable (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies (QCustomPlot::plottable, QCustomPlot::addPlottable, QCustomPlot::removePlottable, etc.) Usually, you first create an instance: \code QCPStatisticalBox *newBox = new QCPStatisticalBox(customPlot->xAxis, customPlot->yAxis);\endcode add it to the customPlot with QCustomPlot::addPlottable: \code customPlot->addPlottable(newBox);\endcode and then modify the properties of the newly created plottable, e.g.: \code newBox->setName("Measurement Series 1"); newBox->setData(1, 3, 4, 5, 7); newBox->setOutliers(QVector<double>() << 0.5 << 0.64 << 7.2 << 7.42);\endcode */ /*! Constructs a statistical box which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have the same orientation. If either of these restrictions is violated, a corresponding message is printed to the debug output (qDebug), the construction is not aborted, though. The constructed statistical box can be added to the plot with QCustomPlot::addPlottable, QCustomPlot then takes ownership of the statistical box. */ QCPStatisticalBox::QCPStatisticalBox(QCPAxis *keyAxis, QCPAxis *valueAxis) : QCPAbstractPlottable(keyAxis, valueAxis), mKey(0), mMinimum(0), mLowerQuartile(0), mMedian(0), mUpperQuartile(0), mMaximum(0) { setOutlierStyle(QCPScatterStyle(QCPScatterStyle::ssCircle, Qt::blue, 6)); setWhiskerWidth(0.2); setWidth(0.5); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue, 2.5)); setMedianPen(QPen(Qt::black, 3, Qt::SolidLine, Qt::FlatCap)); setWhiskerPen(QPen(Qt::black, 0, Qt::DashLine, Qt::FlatCap)); setWhiskerBarPen(QPen(Qt::black)); setBrush(Qt::NoBrush); setSelectedBrush(Qt::NoBrush); } /*! Sets the key coordinate of the statistical box. */ void QCPStatisticalBox::setKey(double key) { mKey = key; } /*! Sets the parameter "minimum" of the statistical box plot. This is the position of the lower whisker, typically the minimum measurement of the sample that's not considered an outlier. \see setMaximum, setWhiskerPen, setWhiskerBarPen, setWhiskerWidth */ void QCPStatisticalBox::setMinimum(double value) { mMinimum = value; } /*! Sets the parameter "lower Quartile" of the statistical box plot. This is the lower end of the box. The lower and the upper quartiles are the two statistical quartiles around the median of the sample, they contain 50% of the sample data. \see setUpperQuartile, setPen, setBrush, setWidth */ void QCPStatisticalBox::setLowerQuartile(double value) { mLowerQuartile = value; } /*! Sets the parameter "median" of the statistical box plot. This is the value of the median mark inside the quartile box. The median separates the sample data in half (50% of the sample data is below/above the median). \see setMedianPen */ void QCPStatisticalBox::setMedian(double value) { mMedian = value; } /*! Sets the parameter "upper Quartile" of the statistical box plot. This is the upper end of the box. The lower and the upper quartiles are the two statistical quartiles around the median of the sample, they contain 50% of the sample data. \see setLowerQuartile, setPen, setBrush, setWidth */ void QCPStatisticalBox::setUpperQuartile(double value) { mUpperQuartile = value; } /*! Sets the parameter "maximum" of the statistical box plot. This is the position of the upper whisker, typically the maximum measurement of the sample that's not considered an outlier. \see setMinimum, setWhiskerPen, setWhiskerBarPen, setWhiskerWidth */ void QCPStatisticalBox::setMaximum(double value) { mMaximum = value; } /*! Sets a vector of outlier values that will be drawn as circles. Any data points in the sample that are not within the whiskers (\ref setMinimum, \ref setMaximum) should be considered outliers and displayed as such. \see setOutlierStyle */ void QCPStatisticalBox::setOutliers(const QVector<double> &values) { mOutliers = values; } /*! Sets all parameters of the statistical box plot at once. \see setKey, setMinimum, setLowerQuartile, setMedian, setUpperQuartile, setMaximum */ void QCPStatisticalBox::setData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum) { setKey(key); setMinimum(minimum); setLowerQuartile(lowerQuartile); setMedian(median); setUpperQuartile(upperQuartile); setMaximum(maximum); } /*! Sets the width of the box in key coordinates. \see setWhiskerWidth */ void QCPStatisticalBox::setWidth(double width) { mWidth = width; } /*! Sets the width of the whiskers (\ref setMinimum, \ref setMaximum) in key coordinates. \see setWidth */ void QCPStatisticalBox::setWhiskerWidth(double width) { mWhiskerWidth = width; } /*! Sets the pen used for drawing the whisker backbone (That's the line parallel to the value axis). Make sure to set the \a pen capStyle to Qt::FlatCap to prevent the whisker backbone from reaching a few pixels past the whisker bars, when using a non-zero pen width. \see setWhiskerBarPen */ void QCPStatisticalBox::setWhiskerPen(const QPen &pen) { mWhiskerPen = pen; } /*! Sets the pen used for drawing the whisker bars (Those are the lines parallel to the key axis at each end of the whisker backbone). \see setWhiskerPen */ void QCPStatisticalBox::setWhiskerBarPen(const QPen &pen) { mWhiskerBarPen = pen; } /*! Sets the pen used for drawing the median indicator line inside the statistical box. */ void QCPStatisticalBox::setMedianPen(const QPen &pen) { mMedianPen = pen; } /*! Sets the appearance of the outlier data points. \see setOutliers */ void QCPStatisticalBox::setOutlierStyle(const QCPScatterStyle &style) { mOutlierStyle = style; } /* inherits documentation from base class */ void QCPStatisticalBox::clearData() { setOutliers(QVector<double>()); setKey(0); setMinimum(0); setLowerQuartile(0); setMedian(0); setUpperQuartile(0); setMaximum(0); } /* inherits documentation from base class */ double QCPStatisticalBox::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } double posKey, posValue; pixelsToCoords(pos, posKey, posValue); // quartile box: QCPRange keyRange(mKey-mWidth*0.5, mKey+mWidth*0.5); QCPRange valueRange(mLowerQuartile, mUpperQuartile); if (keyRange.contains(posKey) && valueRange.contains(posValue)) return mParentPlot->selectionTolerance()*0.99; // min/max whiskers: if (QCPRange(mMinimum, mMaximum).contains(posValue)) return qAbs(mKeyAxis.data()->coordToPixel(mKey)-mKeyAxis.data()->coordToPixel(posKey)); return -1; } /* inherits documentation from base class */ void QCPStatisticalBox::draw(QCPPainter *painter) { if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } // check data validity if flag set: #ifdef QCUSTOMPLOT_CHECK_DATA if (QCP::isInvalidData(mKey, mMedian) || QCP::isInvalidData(mLowerQuartile, mUpperQuartile) || QCP::isInvalidData(mMinimum, mMaximum)) qDebug() << Q_FUNC_INFO << "Data point at" << mKey << "of drawn range has invalid data." << "Plottable name:" << name(); for (int i=0; i<mOutliers.size(); ++i) if (QCP::isInvalidData(mOutliers.at(i))) qDebug() << Q_FUNC_INFO << "Data point outlier at" << mKey << "of drawn range invalid." << "Plottable name:" << name(); #endif QRectF quartileBox; drawQuartileBox(painter, &quartileBox); painter->save(); painter->setClipRect(quartileBox, Qt::IntersectClip); drawMedian(painter); painter->restore(); drawWhiskers(painter); drawOutliers(painter); } /* inherits documentation from base class */ void QCPStatisticalBox::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const { // draw filled rect: applyDefaultAntialiasingHint(painter); painter->setPen(mPen); painter->setBrush(mBrush); QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); r.moveCenter(rect.center()); painter->drawRect(r); } /*! \internal Draws the quartile box. \a box is an output parameter that returns the quartile box (in pixel coordinates) which is used to set the clip rect of the painter before calling \ref drawMedian (so the median doesn't draw outside the quartile box). */ void QCPStatisticalBox::drawQuartileBox(QCPPainter *painter, QRectF *quartileBox) const { QRectF box; box.setTopLeft(coordsToPixels(mKey-mWidth*0.5, mUpperQuartile)); box.setBottomRight(coordsToPixels(mKey+mWidth*0.5, mLowerQuartile)); applyDefaultAntialiasingHint(painter); painter->setPen(mainPen()); painter->setBrush(mainBrush()); painter->drawRect(box); if (quartileBox) *quartileBox = box; } /*! \internal Draws the median line inside the quartile box. */ void QCPStatisticalBox::drawMedian(QCPPainter *painter) const { QLineF medianLine; medianLine.setP1(coordsToPixels(mKey-mWidth*0.5, mMedian)); medianLine.setP2(coordsToPixels(mKey+mWidth*0.5, mMedian)); applyDefaultAntialiasingHint(painter); painter->setPen(mMedianPen); painter->drawLine(medianLine); } /*! \internal Draws both whisker backbones and bars. */ void QCPStatisticalBox::drawWhiskers(QCPPainter *painter) const { QLineF backboneMin, backboneMax, barMin, barMax; backboneMax.setPoints(coordsToPixels(mKey, mUpperQuartile), coordsToPixels(mKey, mMaximum)); backboneMin.setPoints(coordsToPixels(mKey, mLowerQuartile), coordsToPixels(mKey, mMinimum)); barMax.setPoints(coordsToPixels(mKey-mWhiskerWidth*0.5, mMaximum), coordsToPixels(mKey+mWhiskerWidth*0.5, mMaximum)); barMin.setPoints(coordsToPixels(mKey-mWhiskerWidth*0.5, mMinimum), coordsToPixels(mKey+mWhiskerWidth*0.5, mMinimum)); applyErrorBarsAntialiasingHint(painter); painter->setPen(mWhiskerPen); painter->drawLine(backboneMin); painter->drawLine(backboneMax); painter->setPen(mWhiskerBarPen); painter->drawLine(barMin); painter->drawLine(barMax); } /*! \internal Draws the outlier scatter points. */ void QCPStatisticalBox::drawOutliers(QCPPainter *painter) const { applyScattersAntialiasingHint(painter); mOutlierStyle.applyTo(painter, mPen); for (int i=0; i<mOutliers.size(); ++i) mOutlierStyle.drawShape(painter, coordsToPixels(mKey, mOutliers.at(i))); } /* inherits documentation from base class */ QCPRange QCPStatisticalBox::getKeyRange(bool &validRange, SignDomain inSignDomain) const { validRange = mWidth > 0; if (inSignDomain == sdBoth) { return QCPRange(mKey-mWidth*0.5, mKey+mWidth*0.5); } else if (inSignDomain == sdNegative) { if (mKey+mWidth*0.5 < 0) return QCPRange(mKey-mWidth*0.5, mKey+mWidth*0.5); else if (mKey < 0) return QCPRange(mKey-mWidth*0.5, mKey); else { validRange = false; return QCPRange(); } } else if (inSignDomain == sdPositive) { if (mKey-mWidth*0.5 > 0) return QCPRange(mKey-mWidth*0.5, mKey+mWidth*0.5); else if (mKey > 0) return QCPRange(mKey, mKey+mWidth*0.5); else { validRange = false; return QCPRange(); } } validRange = false; return QCPRange(); } /* inherits documentation from base class */ QCPRange QCPStatisticalBox::getValueRange(bool &validRange, SignDomain inSignDomain) const { if (inSignDomain == sdBoth) { double lower = qMin(mMinimum, qMin(mMedian, mLowerQuartile)); double upper = qMax(mMaximum, qMax(mMedian, mUpperQuartile)); for (int i=0; i<mOutliers.size(); ++i) { if (mOutliers.at(i) < lower) lower = mOutliers.at(i); if (mOutliers.at(i) > upper) upper = mOutliers.at(i); } validRange = upper > lower; return QCPRange(lower, upper); } else { QVector<double> values; // values that must be considered (i.e. all outliers and the five box-parameters) values.reserve(mOutliers.size() + 5); values << mMaximum << mUpperQuartile << mMedian << mLowerQuartile << mMinimum; values << mOutliers; // go through values and find the ones in legal range: bool haveUpper = false; bool haveLower = false; double upper = 0; double lower = 0; for (int i=0; i<values.size(); ++i) { if ((inSignDomain == sdNegative && values.at(i) < 0) || (inSignDomain == sdPositive && values.at(i) > 0)) { if (values.at(i) > upper || !haveUpper) { upper = values.at(i); haveUpper = true; } if (values.at(i) < lower || !haveLower) { lower = values.at(i); haveLower = true; } } } // return the bounds if we found some sensible values: if (haveLower && haveUpper && lower < upper) { validRange = true; return QCPRange(lower, upper); } else { validRange = false; return QCPRange(); } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemStraightLine //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemStraightLine \brief A straight line that spans infinitely in both directions \image html QCPItemStraightLine.png "Straight line example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a point1 and \a point2, which define the straight line. */ /*! Creates a straight line item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemStraightLine::QCPItemStraightLine(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), point1(createPosition("point1")), point2(createPosition("point2")) { point1->setCoords(0, 0); point2->setCoords(1, 1); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue,2)); } QCPItemStraightLine::~QCPItemStraightLine() { } /*! Sets the pen that will be used to draw the line \see setSelectedPen */ void QCPItemStraightLine::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line when selected \see setPen, setSelected */ void QCPItemStraightLine::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /* inherits documentation from base class */ double QCPItemStraightLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; return distToStraightLine(QVector2D(point1->pixelPoint()), QVector2D(point2->pixelPoint()-point1->pixelPoint()), QVector2D(pos)); } /* inherits documentation from base class */ void QCPItemStraightLine::draw(QCPPainter *painter) { QVector2D start(point1->pixelPoint()); QVector2D end(point2->pixelPoint()); // get visible segment of straight line inside clipRect: double clipPad = mainPen().widthF(); QLineF line = getRectClippedStraightLine(start, end-start, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); // paint visible segment, if existent: if (!line.isNull()) { painter->setPen(mainPen()); painter->drawLine(line); } } /*! \internal finds the shortest distance of \a point to the straight line defined by the base point \a base and the direction vector \a vec. This is a helper function for \ref selectTest. */ double QCPItemStraightLine::distToStraightLine(const QVector2D &base, const QVector2D &vec, const QVector2D &point) const { return qAbs((base.y()-point.y())*vec.x()-(base.x()-point.x())*vec.y())/vec.length(); } /*! \internal Returns the section of the straight line defined by \a base and direction vector \a vec, that is visible in the specified \a rect. This is a helper function for \ref draw. */ QLineF QCPItemStraightLine::getRectClippedStraightLine(const QVector2D &base, const QVector2D &vec, const QRect &rect) const { double bx, by; double gamma; QLineF result; if (vec.x() == 0 && vec.y() == 0) return result; if (qFuzzyIsNull(vec.x())) // line is vertical { // check top of rect: bx = rect.left(); by = rect.top(); gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); if (gamma >= 0 && gamma <= rect.width()) result.setLine(bx+gamma, rect.top(), bx+gamma, rect.bottom()); // no need to check bottom because we know line is vertical } else if (qFuzzyIsNull(vec.y())) // line is horizontal { // check left of rect: bx = rect.left(); by = rect.top(); gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); if (gamma >= 0 && gamma <= rect.height()) result.setLine(rect.left(), by+gamma, rect.right(), by+gamma); // no need to check right because we know line is horizontal } else // line is skewed { QList<QVector2D> pointVectors; // check top of rect: bx = rect.left(); by = rect.top(); gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); if (gamma >= 0 && gamma <= rect.width()) pointVectors.append(QVector2D(bx+gamma, by)); // check bottom of rect: bx = rect.left(); by = rect.bottom(); gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); if (gamma >= 0 && gamma <= rect.width()) pointVectors.append(QVector2D(bx+gamma, by)); // check left of rect: bx = rect.left(); by = rect.top(); gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); if (gamma >= 0 && gamma <= rect.height()) pointVectors.append(QVector2D(bx, by+gamma)); // check right of rect: bx = rect.right(); by = rect.top(); gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); if (gamma >= 0 && gamma <= rect.height()) pointVectors.append(QVector2D(bx, by+gamma)); // evaluate points: if (pointVectors.size() == 2) { result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); } else if (pointVectors.size() > 2) { // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: double distSqrMax = 0; QVector2D pv1, pv2; for (int i=0; i<pointVectors.size()-1; ++i) { for (int k=i+1; k<pointVectors.size(); ++k) { double distSqr = (pointVectors.at(i)-pointVectors.at(k)).lengthSquared(); if (distSqr > distSqrMax) { pv1 = pointVectors.at(i); pv2 = pointVectors.at(k); distSqrMax = distSqr; } } } result.setPoints(pv1.toPointF(), pv2.toPointF()); } } return result; } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemStraightLine::mainPen() const { return mSelected ? mSelectedPen : mPen; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemLine //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemLine \brief A line from one point to another \image html QCPItemLine.png "Line example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a start and \a end, which define the end points of the line. With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an arrow. */ /*! Creates a line item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemLine::QCPItemLine(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), start(createPosition("start")), end(createPosition("end")) { start->setCoords(0, 0); end->setCoords(1, 1); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue,2)); } QCPItemLine::~QCPItemLine() { } /*! Sets the pen that will be used to draw the line \see setSelectedPen */ void QCPItemLine::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line when selected \see setPen, setSelected */ void QCPItemLine::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the line ending style of the head. The head corresponds to the \a end position. Note that due to the overloaded QCPLineEnding constructor, you may directly specify a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode \see setTail */ void QCPItemLine::setHead(const QCPLineEnding &head) { mHead = head; } /*! Sets the line ending style of the tail. The tail corresponds to the \a start position. Note that due to the overloaded QCPLineEnding constructor, you may directly specify a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode \see setHead */ void QCPItemLine::setTail(const QCPLineEnding &tail) { mTail = tail; } /* inherits documentation from base class */ double QCPItemLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; return qSqrt(distSqrToLine(start->pixelPoint(), end->pixelPoint(), pos)); } /* inherits documentation from base class */ void QCPItemLine::draw(QCPPainter *painter) { QVector2D startVec(start->pixelPoint()); QVector2D endVec(end->pixelPoint()); if (startVec.toPoint() == endVec.toPoint()) return; // get visible segment of straight line inside clipRect: double clipPad = qMax(mHead.boundingDistance(), mTail.boundingDistance()); clipPad = qMax(clipPad, (double)mainPen().widthF()); QLineF line = getRectClippedLine(startVec, endVec, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); // paint visible segment, if existent: if (!line.isNull()) { painter->setPen(mainPen()); painter->drawLine(line); painter->setBrush(Qt::SolidPattern); if (mTail.style() != QCPLineEnding::esNone) mTail.draw(painter, startVec, startVec-endVec); if (mHead.style() != QCPLineEnding::esNone) mHead.draw(painter, endVec, endVec-startVec); } } /*! \internal Returns the section of the line defined by \a start and \a end, that is visible in the specified \a rect. This is a helper function for \ref draw. */ QLineF QCPItemLine::getRectClippedLine(const QVector2D &start, const QVector2D &end, const QRect &rect) const { bool containsStart = rect.contains(start.x(), start.y()); bool containsEnd = rect.contains(end.x(), end.y()); if (containsStart && containsEnd) return QLineF(start.toPointF(), end.toPointF()); QVector2D base = start; QVector2D vec = end-start; double bx, by; double gamma, mu; QLineF result; QList<QVector2D> pointVectors; if (!qFuzzyIsNull(vec.y())) // line is not horizontal { // check top of rect: bx = rect.left(); by = rect.top(); mu = (by-base.y())/vec.y(); if (mu >= 0 && mu <= 1) { gamma = base.x()-bx + mu*vec.x(); if (gamma >= 0 && gamma <= rect.width()) pointVectors.append(QVector2D(bx+gamma, by)); } // check bottom of rect: bx = rect.left(); by = rect.bottom(); mu = (by-base.y())/vec.y(); if (mu >= 0 && mu <= 1) { gamma = base.x()-bx + mu*vec.x(); if (gamma >= 0 && gamma <= rect.width()) pointVectors.append(QVector2D(bx+gamma, by)); } } if (!qFuzzyIsNull(vec.x())) // line is not vertical { // check left of rect: bx = rect.left(); by = rect.top(); mu = (bx-base.x())/vec.x(); if (mu >= 0 && mu <= 1) { gamma = base.y()-by + mu*vec.y(); if (gamma >= 0 && gamma <= rect.height()) pointVectors.append(QVector2D(bx, by+gamma)); } // check right of rect: bx = rect.right(); by = rect.top(); mu = (bx-base.x())/vec.x(); if (mu >= 0 && mu <= 1) { gamma = base.y()-by + mu*vec.y(); if (gamma >= 0 && gamma <= rect.height()) pointVectors.append(QVector2D(bx, by+gamma)); } } if (containsStart) pointVectors.append(start); if (containsEnd) pointVectors.append(end); // evaluate points: if (pointVectors.size() == 2) { result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); } else if (pointVectors.size() > 2) { // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: double distSqrMax = 0; QVector2D pv1, pv2; for (int i=0; i<pointVectors.size()-1; ++i) { for (int k=i+1; k<pointVectors.size(); ++k) { double distSqr = (pointVectors.at(i)-pointVectors.at(k)).lengthSquared(); if (distSqr > distSqrMax) { pv1 = pointVectors.at(i); pv2 = pointVectors.at(k); distSqrMax = distSqr; } } } result.setPoints(pv1.toPointF(), pv2.toPointF()); } return result; } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemLine::mainPen() const { return mSelected ? mSelectedPen : mPen; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemCurve //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemCurve \brief A curved line from one point to another \image html QCPItemCurve.png "Curve example. Blue dotted circles are anchors, solid blue discs are positions." It has four positions, \a start and \a end, which define the end points of the line, and two control points which define the direction the line exits from the start and the direction from which it approaches the end: \a startDir and \a endDir. With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an arrow. Often it is desirable for the control points to stay at fixed relative positions to the start/end point. This can be achieved by setting the parent anchor e.g. of \a startDir simply to \a start, and then specify the desired pixel offset with QCPItemPosition::setCoords on \a startDir. */ /*! Creates a curve item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemCurve::QCPItemCurve(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), start(createPosition("start")), startDir(createPosition("startDir")), endDir(createPosition("endDir")), end(createPosition("end")) { start->setCoords(0, 0); startDir->setCoords(0.5, 0); endDir->setCoords(0, 0.5); end->setCoords(1, 1); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue,2)); } QCPItemCurve::~QCPItemCurve() { } /*! Sets the pen that will be used to draw the line \see setSelectedPen */ void QCPItemCurve::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line when selected \see setPen, setSelected */ void QCPItemCurve::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the line ending style of the head. The head corresponds to the \a end position. Note that due to the overloaded QCPLineEnding constructor, you may directly specify a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode \see setTail */ void QCPItemCurve::setHead(const QCPLineEnding &head) { mHead = head; } /*! Sets the line ending style of the tail. The tail corresponds to the \a start position. Note that due to the overloaded QCPLineEnding constructor, you may directly specify a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode \see setHead */ void QCPItemCurve::setTail(const QCPLineEnding &tail) { mTail = tail; } /* inherits documentation from base class */ double QCPItemCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; QPointF startVec(start->pixelPoint()); QPointF startDirVec(startDir->pixelPoint()); QPointF endDirVec(endDir->pixelPoint()); QPointF endVec(end->pixelPoint()); QPainterPath cubicPath(startVec); cubicPath.cubicTo(startDirVec, endDirVec, endVec); QPolygonF polygon = cubicPath.toSubpathPolygons().first(); double minDistSqr = std::numeric_limits<double>::max(); for (int i=1; i<polygon.size(); ++i) { double distSqr = distSqrToLine(polygon.at(i-1), polygon.at(i), pos); if (distSqr < minDistSqr) minDistSqr = distSqr; } return qSqrt(minDistSqr); } /* inherits documentation from base class */ void QCPItemCurve::draw(QCPPainter *painter) { QPointF startVec(start->pixelPoint()); QPointF startDirVec(startDir->pixelPoint()); QPointF endDirVec(endDir->pixelPoint()); QPointF endVec(end->pixelPoint()); if (QVector2D(endVec-startVec).length() > 1e10) // too large curves cause crash return; QPainterPath cubicPath(startVec); cubicPath.cubicTo(startDirVec, endDirVec, endVec); // paint visible segment, if existent: QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); QRect cubicRect = cubicPath.controlPointRect().toRect(); if (cubicRect.isEmpty()) // may happen when start and end exactly on same x or y position cubicRect.adjust(0, 0, 1, 1); if (clip.intersects(cubicRect)) { painter->setPen(mainPen()); painter->drawPath(cubicPath); painter->setBrush(Qt::SolidPattern); if (mTail.style() != QCPLineEnding::esNone) mTail.draw(painter, QVector2D(startVec), M_PI-cubicPath.angleAtPercent(0)/180.0*M_PI); if (mHead.style() != QCPLineEnding::esNone) mHead.draw(painter, QVector2D(endVec), -cubicPath.angleAtPercent(1)/180.0*M_PI); } } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemCurve::mainPen() const { return mSelected ? mSelectedPen : mPen; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemRect //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemRect \brief A rectangle \image html QCPItemRect.png "Rectangle example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a topLeft and \a bottomRight, which define the rectangle. */ /*! Creates a rectangle item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemRect::QCPItemRect(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), topLeft(createPosition("topLeft")), bottomRight(createPosition("bottomRight")), top(createAnchor("top", aiTop)), topRight(createAnchor("topRight", aiTopRight)), right(createAnchor("right", aiRight)), bottom(createAnchor("bottom", aiBottom)), bottomLeft(createAnchor("bottomLeft", aiBottomLeft)), left(createAnchor("left", aiLeft)) { topLeft->setCoords(0, 1); bottomRight->setCoords(1, 0); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue,2)); setBrush(Qt::NoBrush); setSelectedBrush(Qt::NoBrush); } QCPItemRect::~QCPItemRect() { } /*! Sets the pen that will be used to draw the line of the rectangle \see setSelectedPen, setBrush */ void QCPItemRect::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line of the rectangle when selected \see setPen, setSelected */ void QCPItemRect::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the brush that will be used to fill the rectangle. To disable filling, set \a brush to Qt::NoBrush. \see setSelectedBrush, setPen */ void QCPItemRect::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the brush that will be used to fill the rectangle when selected. To disable filling, set \a brush to Qt::NoBrush. \see setBrush */ void QCPItemRect::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /* inherits documentation from base class */ double QCPItemRect::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()).normalized(); bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; return rectSelectTest(rect, pos, filledRect); } /* inherits documentation from base class */ void QCPItemRect::draw(QCPPainter *painter) { QPointF p1 = topLeft->pixelPoint(); QPointF p2 = bottomRight->pixelPoint(); if (p1.toPoint() == p2.toPoint()) return; QRectF rect = QRectF(p1, p2).normalized(); double clipPad = mainPen().widthF(); QRectF boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); if (boundingRect.intersects(clipRect())) // only draw if bounding rect of rect item is visible in cliprect { painter->setPen(mainPen()); painter->setBrush(mainBrush()); painter->drawRect(rect); } } /* inherits documentation from base class */ QPointF QCPItemRect::anchorPixelPoint(int anchorId) const { QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()); switch (anchorId) { case aiTop: return (rect.topLeft()+rect.topRight())*0.5; case aiTopRight: return rect.topRight(); case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; case aiBottomLeft: return rect.bottomLeft(); case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; } qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; return QPointF(); } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemRect::mainPen() const { return mSelected ? mSelectedPen : mPen; } /*! \internal Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item is not selected and mSelectedBrush when it is. */ QBrush QCPItemRect::mainBrush() const { return mSelected ? mSelectedBrush : mBrush; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemText //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemText \brief A text label \image html QCPItemText.png "Text example. Blue dotted circles are anchors, solid blue discs are positions." Its position is defined by the member \a position and the setting of \ref setPositionAlignment. The latter controls which part of the text rect shall be aligned with \a position. The text alignment itself (i.e. left, center, right) can be controlled with \ref setTextAlignment. The text may be rotated around the \a position point with \ref setRotation. */ /*! Creates a text item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemText::QCPItemText(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), position(createPosition("position")), topLeft(createAnchor("topLeft", aiTopLeft)), top(createAnchor("top", aiTop)), topRight(createAnchor("topRight", aiTopRight)), right(createAnchor("right", aiRight)), bottomRight(createAnchor("bottomRight", aiBottomRight)), bottom(createAnchor("bottom", aiBottom)), bottomLeft(createAnchor("bottomLeft", aiBottomLeft)), left(createAnchor("left", aiLeft)) { position->setCoords(0, 0); setRotation(0); setTextAlignment(Qt::AlignTop|Qt::AlignHCenter); setPositionAlignment(Qt::AlignCenter); setText("text"); setPen(Qt::NoPen); setSelectedPen(Qt::NoPen); setBrush(Qt::NoBrush); setSelectedBrush(Qt::NoBrush); setColor(Qt::black); setSelectedColor(Qt::blue); } QCPItemText::~QCPItemText() { } /*! Sets the color of the text. */ void QCPItemText::setColor(const QColor &color) { mColor = color; } /*! Sets the color of the text that will be used when the item is selected. */ void QCPItemText::setSelectedColor(const QColor &color) { mSelectedColor = color; } /*! Sets the pen that will be used do draw a rectangular border around the text. To disable the border, set \a pen to Qt::NoPen. \see setSelectedPen, setBrush, setPadding */ void QCPItemText::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used do draw a rectangular border around the text, when the item is selected. To disable the border, set \a pen to Qt::NoPen. \see setPen */ void QCPItemText::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the brush that will be used do fill the background of the text. To disable the background, set \a brush to Qt::NoBrush. \see setSelectedBrush, setPen, setPadding */ void QCPItemText::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the brush that will be used do fill the background of the text, when the item is selected. To disable the background, set \a brush to Qt::NoBrush. \see setBrush */ void QCPItemText::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /*! Sets the font of the text. \see setSelectedFont, setColor */ void QCPItemText::setFont(const QFont &font) { mFont = font; } /*! Sets the font of the text that will be used when the item is selected. \see setFont */ void QCPItemText::setSelectedFont(const QFont &font) { mSelectedFont = font; } /*! Sets the text that will be displayed. Multi-line texts are supported by inserting a line break character, e.g. '\n'. \see setFont, setColor, setTextAlignment */ void QCPItemText::setText(const QString &text) { mText = text; } /*! Sets which point of the text rect shall be aligned with \a position. Examples: \li If \a alignment is <tt>Qt::AlignHCenter | Qt::AlignTop</tt>, the text will be positioned such that the top of the text rect will be horizontally centered on \a position. \li If \a alignment is <tt>Qt::AlignLeft | Qt::AlignBottom</tt>, \a position will indicate the bottom left corner of the text rect. If you want to control the alignment of (multi-lined) text within the text rect, use \ref setTextAlignment. */ void QCPItemText::setPositionAlignment(Qt::Alignment alignment) { mPositionAlignment = alignment; } /*! Controls how (multi-lined) text is aligned inside the text rect (typically Qt::AlignLeft, Qt::AlignCenter or Qt::AlignRight). */ void QCPItemText::setTextAlignment(Qt::Alignment alignment) { mTextAlignment = alignment; } /*! Sets the angle in degrees by which the text (and the text rectangle, if visible) will be rotated around \a position. */ void QCPItemText::setRotation(double degrees) { mRotation = degrees; } /*! Sets the distance between the border of the text rectangle and the text. The appearance (and visibility) of the text rectangle can be controlled with \ref setPen and \ref setBrush. */ void QCPItemText::setPadding(const QMargins &padding) { mPadding = padding; } /* inherits documentation from base class */ double QCPItemText::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; // The rect may be rotated, so we transform the actual clicked pos to the rotated // coordinate system, so we can use the normal rectSelectTest function for non-rotated rects: QPointF positionPixels(position->pixelPoint()); QTransform inputTransform; inputTransform.translate(positionPixels.x(), positionPixels.y()); inputTransform.rotate(-mRotation); inputTransform.translate(-positionPixels.x(), -positionPixels.y()); QPointF rotatedPos = inputTransform.map(pos); QFontMetrics fontMetrics(mFont); QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); QPointF textPos = getTextDrawPoint(positionPixels, textBoxRect, mPositionAlignment); textBoxRect.moveTopLeft(textPos.toPoint()); return rectSelectTest(textBoxRect, rotatedPos, true); } /* inherits documentation from base class */ void QCPItemText::draw(QCPPainter *painter) { QPointF pos(position->pixelPoint()); QTransform transform = painter->transform(); transform.translate(pos.x(), pos.y()); if (!qFuzzyIsNull(mRotation)) transform.rotate(mRotation); painter->setFont(mainFont()); QRect textRect = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation textRect.moveTopLeft(textPos.toPoint()+QPoint(mPadding.left(), mPadding.top())); textBoxRect.moveTopLeft(textPos.toPoint()); double clipPad = mainPen().widthF(); QRect boundingRect = textBoxRect.adjusted(-clipPad, -clipPad, clipPad, clipPad); if (transform.mapRect(boundingRect).intersects(painter->transform().mapRect(clipRect()))) { painter->setTransform(transform); if ((mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) || (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0)) { painter->setPen(mainPen()); painter->setBrush(mainBrush()); painter->drawRect(textBoxRect); } painter->setBrush(Qt::NoBrush); painter->setPen(QPen(mainColor())); painter->drawText(textRect, Qt::TextDontClip|mTextAlignment, mText); } } /* inherits documentation from base class */ QPointF QCPItemText::anchorPixelPoint(int anchorId) const { // get actual rect points (pretty much copied from draw function): QPointF pos(position->pixelPoint()); QTransform transform; transform.translate(pos.x(), pos.y()); if (!qFuzzyIsNull(mRotation)) transform.rotate(mRotation); QFontMetrics fontMetrics(mainFont()); QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); QRectF textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation textBoxRect.moveTopLeft(textPos.toPoint()); QPolygonF rectPoly = transform.map(QPolygonF(textBoxRect)); switch (anchorId) { case aiTopLeft: return rectPoly.at(0); case aiTop: return (rectPoly.at(0)+rectPoly.at(1))*0.5; case aiTopRight: return rectPoly.at(1); case aiRight: return (rectPoly.at(1)+rectPoly.at(2))*0.5; case aiBottomRight: return rectPoly.at(2); case aiBottom: return (rectPoly.at(2)+rectPoly.at(3))*0.5; case aiBottomLeft: return rectPoly.at(3); case aiLeft: return (rectPoly.at(3)+rectPoly.at(0))*0.5; } qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; return QPointF(); } /*! \internal Returns the point that must be given to the QPainter::drawText function (which expects the top left point of the text rect), according to the position \a pos, the text bounding box \a rect and the requested \a positionAlignment. For example, if \a positionAlignment is <tt>Qt::AlignLeft | Qt::AlignBottom</tt> the returned point will be shifted upward by the height of \a rect, starting from \a pos. So if the text is finally drawn at that point, the lower left corner of the resulting text rect is at \a pos. */ QPointF QCPItemText::getTextDrawPoint(const QPointF &pos, const QRectF &rect, Qt::Alignment positionAlignment) const { if (positionAlignment == 0 || positionAlignment == (Qt::AlignLeft|Qt::AlignTop)) return pos; QPointF result = pos; // start at top left if (positionAlignment.testFlag(Qt::AlignHCenter)) result.rx() -= rect.width()/2.0; else if (positionAlignment.testFlag(Qt::AlignRight)) result.rx() -= rect.width(); if (positionAlignment.testFlag(Qt::AlignVCenter)) result.ry() -= rect.height()/2.0; else if (positionAlignment.testFlag(Qt::AlignBottom)) result.ry() -= rect.height(); return result; } /*! \internal Returns the font that should be used for drawing text. Returns mFont when the item is not selected and mSelectedFont when it is. */ QFont QCPItemText::mainFont() const { return mSelected ? mSelectedFont : mFont; } /*! \internal Returns the color that should be used for drawing text. Returns mColor when the item is not selected and mSelectedColor when it is. */ QColor QCPItemText::mainColor() const { return mSelected ? mSelectedColor : mColor; } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemText::mainPen() const { return mSelected ? mSelectedPen : mPen; } /*! \internal Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item is not selected and mSelectedBrush when it is. */ QBrush QCPItemText::mainBrush() const { return mSelected ? mSelectedBrush : mBrush; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemEllipse //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemEllipse \brief An ellipse \image html QCPItemEllipse.png "Ellipse example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a topLeft and \a bottomRight, which define the rect the ellipse will be drawn in. */ /*! Creates an ellipse item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemEllipse::QCPItemEllipse(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), topLeft(createPosition("topLeft")), bottomRight(createPosition("bottomRight")), topLeftRim(createAnchor("topLeftRim", aiTopLeftRim)), top(createAnchor("top", aiTop)), topRightRim(createAnchor("topRightRim", aiTopRightRim)), right(createAnchor("right", aiRight)), bottomRightRim(createAnchor("bottomRightRim", aiBottomRightRim)), bottom(createAnchor("bottom", aiBottom)), bottomLeftRim(createAnchor("bottomLeftRim", aiBottomLeftRim)), left(createAnchor("left", aiLeft)), center(createAnchor("center", aiCenter)) { topLeft->setCoords(0, 1); bottomRight->setCoords(1, 0); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue, 2)); setBrush(Qt::NoBrush); setSelectedBrush(Qt::NoBrush); } QCPItemEllipse::~QCPItemEllipse() { } /*! Sets the pen that will be used to draw the line of the ellipse \see setSelectedPen, setBrush */ void QCPItemEllipse::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line of the ellipse when selected \see setPen, setSelected */ void QCPItemEllipse::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the brush that will be used to fill the ellipse. To disable filling, set \a brush to Qt::NoBrush. \see setSelectedBrush, setPen */ void QCPItemEllipse::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the brush that will be used to fill the ellipse when selected. To disable filling, set \a brush to Qt::NoBrush. \see setBrush */ void QCPItemEllipse::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /* inherits documentation from base class */ double QCPItemEllipse::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; double result = -1; QPointF p1 = topLeft->pixelPoint(); QPointF p2 = bottomRight->pixelPoint(); QPointF center((p1+p2)/2.0); double a = qAbs(p1.x()-p2.x())/2.0; double b = qAbs(p1.y()-p2.y())/2.0; double x = pos.x()-center.x(); double y = pos.y()-center.y(); // distance to border: double c = 1.0/qSqrt(x*x/(a*a)+y*y/(b*b)); result = qAbs(c-1)*qSqrt(x*x+y*y); // filled ellipse, allow click inside to count as hit: if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) { if (x*x/(a*a) + y*y/(b*b) <= 1) result = mParentPlot->selectionTolerance()*0.99; } return result; } /* inherits documentation from base class */ void QCPItemEllipse::draw(QCPPainter *painter) { QPointF p1 = topLeft->pixelPoint(); QPointF p2 = bottomRight->pixelPoint(); if (p1.toPoint() == p2.toPoint()) return; QRectF ellipseRect = QRectF(p1, p2).normalized(); QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); if (ellipseRect.intersects(clip)) // only draw if bounding rect of ellipse is visible in cliprect { painter->setPen(mainPen()); painter->setBrush(mainBrush()); #ifdef __EXCEPTIONS try // drawEllipse sometimes throws exceptions if ellipse is too big { #endif painter->drawEllipse(ellipseRect); #ifdef __EXCEPTIONS } catch (...) { qDebug() << Q_FUNC_INFO << "Item too large for memory, setting invisible"; setVisible(false); } #endif } } /* inherits documentation from base class */ QPointF QCPItemEllipse::anchorPixelPoint(int anchorId) const { QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()); switch (anchorId) { case aiTopLeftRim: return rect.center()+(rect.topLeft()-rect.center())*1/qSqrt(2); case aiTop: return (rect.topLeft()+rect.topRight())*0.5; case aiTopRightRim: return rect.center()+(rect.topRight()-rect.center())*1/qSqrt(2); case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; case aiBottomRightRim: return rect.center()+(rect.bottomRight()-rect.center())*1/qSqrt(2); case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; case aiBottomLeftRim: return rect.center()+(rect.bottomLeft()-rect.center())*1/qSqrt(2); case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; case aiCenter: return (rect.topLeft()+rect.bottomRight())*0.5; } qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; return QPointF(); } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemEllipse::mainPen() const { return mSelected ? mSelectedPen : mPen; } /*! \internal Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item is not selected and mSelectedBrush when it is. */ QBrush QCPItemEllipse::mainBrush() const { return mSelected ? mSelectedBrush : mBrush; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemPixmap //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemPixmap \brief An arbitrary pixmap \image html QCPItemPixmap.png "Pixmap example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a topLeft and \a bottomRight, which define the rectangle the pixmap will be drawn in. Depending on the scale setting (\ref setScaled), the pixmap will be either scaled to fit the rectangle or be drawn aligned to the topLeft position. If scaling is enabled and \a topLeft is further to the bottom/right than \a bottomRight (as shown on the right side of the example image), the pixmap will be flipped in the respective orientations. */ /*! Creates a rectangle item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemPixmap::QCPItemPixmap(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), topLeft(createPosition("topLeft")), bottomRight(createPosition("bottomRight")), top(createAnchor("top", aiTop)), topRight(createAnchor("topRight", aiTopRight)), right(createAnchor("right", aiRight)), bottom(createAnchor("bottom", aiBottom)), bottomLeft(createAnchor("bottomLeft", aiBottomLeft)), left(createAnchor("left", aiLeft)) { topLeft->setCoords(0, 1); bottomRight->setCoords(1, 0); setPen(Qt::NoPen); setSelectedPen(QPen(Qt::blue)); setScaled(false, Qt::KeepAspectRatio); } QCPItemPixmap::~QCPItemPixmap() { } /*! Sets the pixmap that will be displayed. */ void QCPItemPixmap::setPixmap(const QPixmap &pixmap) { mPixmap = pixmap; if (mPixmap.isNull()) qDebug() << Q_FUNC_INFO << "pixmap is null"; } /*! Sets whether the pixmap will be scaled to fit the rectangle defined by the \a topLeft and \a bottomRight positions. */ void QCPItemPixmap::setScaled(bool scaled, Qt::AspectRatioMode aspectRatioMode) { mScaled = scaled; mAspectRatioMode = aspectRatioMode; updateScaledPixmap(); } /*! Sets the pen that will be used to draw a border around the pixmap. \see setSelectedPen, setBrush */ void QCPItemPixmap::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw a border around the pixmap when selected \see setPen, setSelected */ void QCPItemPixmap::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /* inherits documentation from base class */ double QCPItemPixmap::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; return rectSelectTest(getFinalRect(), pos, true); } /* inherits documentation from base class */ void QCPItemPixmap::draw(QCPPainter *painter) { bool flipHorz = false; bool flipVert = false; QRect rect = getFinalRect(&flipHorz, &flipVert); double clipPad = mainPen().style() == Qt::NoPen ? 0 : mainPen().widthF(); QRect boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); if (boundingRect.intersects(clipRect())) { updateScaledPixmap(rect, flipHorz, flipVert); painter->drawPixmap(rect.topLeft(), mScaled ? mScaledPixmap : mPixmap); QPen pen = mainPen(); if (pen.style() != Qt::NoPen) { painter->setPen(pen); painter->setBrush(Qt::NoBrush); painter->drawRect(rect); } } } /* inherits documentation from base class */ QPointF QCPItemPixmap::anchorPixelPoint(int anchorId) const { bool flipHorz; bool flipVert; QRect rect = getFinalRect(&flipHorz, &flipVert); // we actually want denormal rects (negative width/height) here, so restore // the flipped state: if (flipHorz) rect.adjust(rect.width(), 0, -rect.width(), 0); if (flipVert) rect.adjust(0, rect.height(), 0, -rect.height()); switch (anchorId) { case aiTop: return (rect.topLeft()+rect.topRight())*0.5; case aiTopRight: return rect.topRight(); case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; case aiBottomLeft: return rect.bottomLeft(); case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5;; } qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; return QPointF(); } /*! \internal Creates the buffered scaled image (\a mScaledPixmap) to fit the specified \a finalRect. The parameters \a flipHorz and \a flipVert control whether the resulting image shall be flipped horizontally or vertically. (This is used when \a topLeft is further to the bottom/right than \a bottomRight.) This function only creates the scaled pixmap when the buffered pixmap has a different size than the expected result, so calling this function repeatedly, e.g. in the \ref draw function, does not cause expensive rescaling every time. If scaling is disabled, sets mScaledPixmap to a null QPixmap. */ void QCPItemPixmap::updateScaledPixmap(QRect finalRect, bool flipHorz, bool flipVert) { if (mPixmap.isNull()) return; if (mScaled) { if (finalRect.isNull()) finalRect = getFinalRect(&flipHorz, &flipVert); if (finalRect.size() != mScaledPixmap.size()) { mScaledPixmap = mPixmap.scaled(finalRect.size(), mAspectRatioMode, Qt::SmoothTransformation); if (flipHorz || flipVert) mScaledPixmap = QPixmap::fromImage(mScaledPixmap.toImage().mirrored(flipHorz, flipVert)); } } else if (!mScaledPixmap.isNull()) mScaledPixmap = QPixmap(); } /*! \internal Returns the final (tight) rect the pixmap is drawn in, depending on the current item positions and scaling settings. The output parameters \a flippedHorz and \a flippedVert return whether the pixmap should be drawn flipped horizontally or vertically in the returned rect. (The returned rect itself is always normalized, i.e. the top left corner of the rect is actually further to the top/left than the bottom right corner). This is the case when the item position \a topLeft is further to the bottom/right than \a bottomRight. If scaling is disabled, returns a rect with size of the original pixmap and the top left corner aligned with the item position \a topLeft. The position \a bottomRight is ignored. */ QRect QCPItemPixmap::getFinalRect(bool *flippedHorz, bool *flippedVert) const { QRect result; bool flipHorz = false; bool flipVert = false; QPoint p1 = topLeft->pixelPoint().toPoint(); QPoint p2 = bottomRight->pixelPoint().toPoint(); if (p1 == p2) return QRect(p1, QSize(0, 0)); if (mScaled) { QSize newSize = QSize(p2.x()-p1.x(), p2.y()-p1.y()); QPoint topLeft = p1; if (newSize.width() < 0) { flipHorz = true; newSize.rwidth() *= -1; topLeft.setX(p2.x()); } if (newSize.height() < 0) { flipVert = true; newSize.rheight() *= -1; topLeft.setY(p2.y()); } QSize scaledSize = mPixmap.size(); scaledSize.scale(newSize, mAspectRatioMode); result = QRect(topLeft, scaledSize); } else { result = QRect(p1, mPixmap.size()); } if (flippedHorz) *flippedHorz = flipHorz; if (flippedVert) *flippedVert = flipVert; return result; } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemPixmap::mainPen() const { return mSelected ? mSelectedPen : mPen; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemTracer //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemTracer \brief Item that sticks to QCPGraph data points \image html QCPItemTracer.png "Tracer example. Blue dotted circles are anchors, solid blue discs are positions." The tracer can be connected with a QCPGraph via \ref setGraph. Then it will automatically adopt the coordinate axes of the graph and update its \a position to be on the graph's data. This means the key stays controllable via \ref setGraphKey, but the value will follow the graph data. If a QCPGraph is connected, note that setting the coordinates of the tracer item directly via \a position will have no effect because they will be overriden in the next redraw (this is when the coordinate update happens). If the specified key in \ref setGraphKey is outside the key bounds of the graph, the tracer will stay at the corresponding end of the graph. With \ref setInterpolating you may specify whether the tracer may only stay exactly on data points or whether it interpolates data points linearly, if given a key that lies between two data points of the graph. The tracer has different visual styles, see \ref setStyle. It is also possible to make the tracer have no own visual appearance (set the style to \ref tsNone), and just connect other item positions to the tracer \a position (used as an anchor) via \ref QCPItemPosition::setParentAnchor. \note The tracer position is only automatically updated upon redraws. So when the data of the graph changes and immediately afterwards (without a redraw) the a position coordinates of the tracer are retrieved, they will not reflect the updated data of the graph. In this case \ref updatePosition must be called manually, prior to reading the tracer coordinates. */ /*! Creates a tracer item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemTracer::QCPItemTracer(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), position(createPosition("position")), mGraph(0) { position->setCoords(0, 0); setBrush(Qt::NoBrush); setSelectedBrush(Qt::NoBrush); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue, 2)); setStyle(tsCrosshair); setSize(6); setInterpolating(false); setGraphKey(0); } QCPItemTracer::~QCPItemTracer() { } /*! Sets the pen that will be used to draw the line of the tracer \see setSelectedPen, setBrush */ void QCPItemTracer::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the line of the tracer when selected \see setPen, setSelected */ void QCPItemTracer::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the brush that will be used to draw any fills of the tracer \see setSelectedBrush, setPen */ void QCPItemTracer::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the brush that will be used to draw any fills of the tracer, when selected. \see setBrush, setSelected */ void QCPItemTracer::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /*! Sets the size of the tracer in pixels, if the style supports setting a size (e.g. \ref tsSquare does, \ref tsCrosshair does not). */ void QCPItemTracer::setSize(double size) { mSize = size; } /*! Sets the style/visual appearance of the tracer. If you only want to use the tracer \a position as an anchor for other items, set \a style to \ref tsNone. */ void QCPItemTracer::setStyle(QCPItemTracer::TracerStyle style) { mStyle = style; } /*! Sets the QCPGraph this tracer sticks to. The tracer \a position will be set to type QCPItemPosition::ptPlotCoords and the axes will be set to the axes of \a graph. To free the tracer from any graph, set \a graph to 0. The tracer \a position can then be placed freely like any other item position. This is the state the tracer will assume when its graph gets deleted while still attached to it. \see setGraphKey */ void QCPItemTracer::setGraph(QCPGraph *graph) { if (graph) { if (graph->parentPlot() == mParentPlot) { position->setType(QCPItemPosition::ptPlotCoords); position->setAxes(graph->keyAxis(), graph->valueAxis()); mGraph = graph; updatePosition(); } else qDebug() << Q_FUNC_INFO << "graph isn't in same QCustomPlot instance as this item"; } else { mGraph = 0; } } /*! Sets the key of the graph's data point the tracer will be positioned at. This is the only free coordinate of a tracer when attached to a graph. Depending on \ref setInterpolating, the tracer will be either positioned on the data point closest to \a key, or will stay exactly at \a key and interpolate the value linearly. \see setGraph, setInterpolating */ void QCPItemTracer::setGraphKey(double key) { mGraphKey = key; } /*! Sets whether the value of the graph's data points shall be interpolated, when positioning the tracer. If \a enabled is set to false and a key is given with \ref setGraphKey, the tracer is placed on the data point of the graph which is closest to the key, but which is not necessarily exactly there. If \a enabled is true, the tracer will be positioned exactly at the specified key, and the appropriate value will be interpolated from the graph's data points linearly. \see setGraph, setGraphKey */ void QCPItemTracer::setInterpolating(bool enabled) { mInterpolating = enabled; } /* inherits documentation from base class */ double QCPItemTracer::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; QPointF center(position->pixelPoint()); double w = mSize/2.0; QRect clip = clipRect(); switch (mStyle) { case tsNone: return -1; case tsPlus: { if (clipRect().intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) return qSqrt(qMin(distSqrToLine(center+QPointF(-w, 0), center+QPointF(w, 0), pos), distSqrToLine(center+QPointF(0, -w), center+QPointF(0, w), pos))); break; } case tsCrosshair: { return qSqrt(qMin(distSqrToLine(QPointF(clip.left(), center.y()), QPointF(clip.right(), center.y()), pos), distSqrToLine(QPointF(center.x(), clip.top()), QPointF(center.x(), clip.bottom()), pos))); } case tsCircle: { if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) { // distance to border: double centerDist = QVector2D(center-pos).length(); double circleLine = w; double result = qAbs(centerDist-circleLine); // filled ellipse, allow click inside to count as hit: if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) { if (centerDist <= circleLine) result = mParentPlot->selectionTolerance()*0.99; } return result; } break; } case tsSquare: { if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) { QRectF rect = QRectF(center-QPointF(w, w), center+QPointF(w, w)); bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; return rectSelectTest(rect, pos, filledRect); } break; } } return -1; } /* inherits documentation from base class */ void QCPItemTracer::draw(QCPPainter *painter) { updatePosition(); if (mStyle == tsNone) return; painter->setPen(mainPen()); painter->setBrush(mainBrush()); QPointF center(position->pixelPoint()); double w = mSize/2.0; QRect clip = clipRect(); switch (mStyle) { case tsNone: return; case tsPlus: { if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) { painter->drawLine(QLineF(center+QPointF(-w, 0), center+QPointF(w, 0))); painter->drawLine(QLineF(center+QPointF(0, -w), center+QPointF(0, w))); } break; } case tsCrosshair: { if (center.y() > clip.top() && center.y() < clip.bottom()) painter->drawLine(QLineF(clip.left(), center.y(), clip.right(), center.y())); if (center.x() > clip.left() && center.x() < clip.right()) painter->drawLine(QLineF(center.x(), clip.top(), center.x(), clip.bottom())); break; } case tsCircle: { if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) painter->drawEllipse(center, w, w); break; } case tsSquare: { if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) painter->drawRect(QRectF(center-QPointF(w, w), center+QPointF(w, w))); break; } } } /*! If the tracer is connected with a graph (\ref setGraph), this function updates the tracer's \a position to reside on the graph data, depending on the configured key (\ref setGraphKey). It is called automatically on every redraw and normally doesn't need to be called manually. One exception is when you want to read the tracer coordinates via \a position and are not sure that the graph's data (or the tracer key with \ref setGraphKey) hasn't changed since the last redraw. In that situation, call this function before accessing \a position, to make sure you don't get out-of-date coordinates. If there is no graph set on this tracer, this function does nothing. */ void QCPItemTracer::updatePosition() { if (mGraph) { if (mParentPlot->hasPlottable(mGraph)) { if (mGraph->data()->size() > 1) { QCPDataMap::const_iterator first = mGraph->data()->constBegin(); QCPDataMap::const_iterator last = mGraph->data()->constEnd()-1; if (mGraphKey < first.key()) position->setCoords(first.key(), first.value().value); else if (mGraphKey > last.key()) position->setCoords(last.key(), last.value().value); else { QCPDataMap::const_iterator it = first; it = mGraph->data()->lowerBound(mGraphKey); if (it != first) // mGraphKey is somewhere between iterators { QCPDataMap::const_iterator prevIt = it-1; if (mInterpolating) { // interpolate between iterators around mGraphKey: double slope = (it.value().value-prevIt.value().value)/(it.key()-prevIt.key()); position->setCoords(mGraphKey, (mGraphKey-prevIt.key())*slope+prevIt.value().value); } else { // find iterator with key closest to mGraphKey: if (mGraphKey < (prevIt.key()+it.key())*0.5) it = prevIt; position->setCoords(it.key(), it.value().value); } } else // mGraphKey is exactly on first iterator position->setCoords(it.key(), it.value().value); } } else if (mGraph->data()->size() == 1) { QCPDataMap::const_iterator it = mGraph->data()->constBegin(); position->setCoords(it.key(), it.value().value); } else qDebug() << Q_FUNC_INFO << "graph has no data"; } else qDebug() << Q_FUNC_INFO << "graph not contained in QCustomPlot instance (anymore)"; } } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemTracer::mainPen() const { return mSelected ? mSelectedPen : mPen; } /*! \internal Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item is not selected and mSelectedBrush when it is. */ QBrush QCPItemTracer::mainBrush() const { return mSelected ? mSelectedBrush : mBrush; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPItemBracket //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPItemBracket \brief A bracket for referencing/highlighting certain parts in the plot. \image html QCPItemBracket.png "Bracket example. Blue dotted circles are anchors, solid blue discs are positions." It has two positions, \a left and \a right, which define the span of the bracket. If \a left is actually farther to the left than \a right, the bracket is opened to the bottom, as shown in the example image. The bracket supports multiple styles via \ref setStyle. The length, i.e. how far the bracket stretches away from the embraced span, can be controlled with \ref setLength. \image html QCPItemBracket-length.png <center>Demonstrating the effect of different values for \ref setLength, for styles \ref bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.</center> It provides an anchor \a center, to allow connection of other items, e.g. an arrow (QCPItemLine or QCPItemCurve) or a text label (QCPItemText), to the bracket. */ /*! Creates a bracket item and sets default values. The constructed item can be added to the plot with QCustomPlot::addItem. */ QCPItemBracket::QCPItemBracket(QCustomPlot *parentPlot) : QCPAbstractItem(parentPlot), left(createPosition("left")), right(createPosition("right")), center(createAnchor("center", aiCenter)) { left->setCoords(0, 0); right->setCoords(1, 1); setPen(QPen(Qt::black)); setSelectedPen(QPen(Qt::blue, 2)); setLength(8); setStyle(bsCalligraphic); } QCPItemBracket::~QCPItemBracket() { } /*! Sets the pen that will be used to draw the bracket. Note that when the style is \ref bsCalligraphic, only the color will be taken from the pen, the stroke and width are ignored. To change the apparent stroke width of a calligraphic bracket, use \ref setLength, which has a similar effect. \see setSelectedPen */ void QCPItemBracket::setPen(const QPen &pen) { mPen = pen; } /*! Sets the pen that will be used to draw the bracket when selected \see setPen, setSelected */ void QCPItemBracket::setSelectedPen(const QPen &pen) { mSelectedPen = pen; } /*! Sets the \a length in pixels how far the bracket extends in the direction towards the embraced span of the bracket (i.e. perpendicular to the <i>left</i>-<i>right</i>-direction) \image html QCPItemBracket-length.png <center>Demonstrating the effect of different values for \ref setLength, for styles \ref bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.</center> */ void QCPItemBracket::setLength(double length) { mLength = length; } /*! Sets the style of the bracket, i.e. the shape/visual appearance. \see setPen */ void QCPItemBracket::setStyle(QCPItemBracket::BracketStyle style) { mStyle = style; } /* inherits documentation from base class */ double QCPItemBracket::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; QVector2D leftVec(left->pixelPoint()); QVector2D rightVec(right->pixelPoint()); if (leftVec.toPoint() == rightVec.toPoint()) return -1; QVector2D widthVec = (rightVec-leftVec)*0.5; QVector2D lengthVec(-widthVec.y(), widthVec.x()); lengthVec = lengthVec.normalized()*mLength; QVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; return qSqrt(distSqrToLine((centerVec-widthVec).toPointF(), (centerVec+widthVec).toPointF(), pos)); } /* inherits documentation from base class */ void QCPItemBracket::draw(QCPPainter *painter) { QVector2D leftVec(left->pixelPoint()); QVector2D rightVec(right->pixelPoint()); if (leftVec.toPoint() == rightVec.toPoint()) return; QVector2D widthVec = (rightVec-leftVec)*0.5; QVector2D lengthVec(-widthVec.y(), widthVec.x()); lengthVec = lengthVec.normalized()*mLength; QVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; QPolygon boundingPoly; boundingPoly << leftVec.toPoint() << rightVec.toPoint() << (rightVec-lengthVec).toPoint() << (leftVec-lengthVec).toPoint(); QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); if (clip.intersects(boundingPoly.boundingRect())) { painter->setPen(mainPen()); switch (mStyle) { case bsSquare: { painter->drawLine((centerVec+widthVec).toPointF(), (centerVec-widthVec).toPointF()); painter->drawLine((centerVec+widthVec).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); painter->drawLine((centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); break; } case bsRound: { painter->setBrush(Qt::NoBrush); QPainterPath path; path.moveTo((centerVec+widthVec+lengthVec).toPointF()); path.cubicTo((centerVec+widthVec).toPointF(), (centerVec+widthVec).toPointF(), centerVec.toPointF()); path.cubicTo((centerVec-widthVec).toPointF(), (centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); painter->drawPath(path); break; } case bsCurly: { painter->setBrush(Qt::NoBrush); QPainterPath path; path.moveTo((centerVec+widthVec+lengthVec).toPointF()); path.cubicTo((centerVec+widthVec*1-lengthVec*0.8).toPointF(), (centerVec+0.4*widthVec+1*lengthVec).toPointF(), centerVec.toPointF()); path.cubicTo((centerVec-0.4*widthVec+1*lengthVec).toPointF(), (centerVec-widthVec*1-lengthVec*0.8).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); painter->drawPath(path); break; } case bsCalligraphic: { painter->setPen(Qt::NoPen); painter->setBrush(QBrush(mainPen().color())); QPainterPath path; path.moveTo((centerVec+widthVec+lengthVec).toPointF()); path.cubicTo((centerVec+widthVec*1-lengthVec*0.8).toPointF(), (centerVec+0.4*widthVec+0.8*lengthVec).toPointF(), centerVec.toPointF()); path.cubicTo((centerVec-0.4*widthVec+0.8*lengthVec).toPointF(), (centerVec-widthVec*1-lengthVec*0.8).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); path.cubicTo((centerVec-widthVec*1-lengthVec*0.5).toPointF(), (centerVec-0.2*widthVec+1.2*lengthVec).toPointF(), (centerVec+lengthVec*0.2).toPointF()); path.cubicTo((centerVec+0.2*widthVec+1.2*lengthVec).toPointF(), (centerVec+widthVec*1-lengthVec*0.5).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); painter->drawPath(path); break; } } } } /* inherits documentation from base class */ QPointF QCPItemBracket::anchorPixelPoint(int anchorId) const { QVector2D leftVec(left->pixelPoint()); QVector2D rightVec(right->pixelPoint()); if (leftVec.toPoint() == rightVec.toPoint()) return leftVec.toPointF(); QVector2D widthVec = (rightVec-leftVec)*0.5; QVector2D lengthVec(-widthVec.y(), widthVec.x()); lengthVec = lengthVec.normalized()*mLength; QVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; switch (anchorId) { case aiCenter: return centerVec.toPointF(); } qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; return QPointF(); } /*! \internal Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected and mSelectedPen when it is. */ QPen QCPItemBracket::mainPen() const { return mSelected ? mSelectedPen : mPen; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPAxisRect //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPAxisRect \brief Holds multiple axes and arranges them in a rectangular shape. This class represents an axis rect, a rectangular area that is bounded on all sides with an arbitrary number of axes. Initially QCustomPlot has one axis rect, accessible via QCustomPlot::axisRect(). However, the layout system allows to have multiple axis rects, e.g. arranged in a grid layout (QCustomPlot::plotLayout). By default, QCPAxisRect comes with four axes, at bottom, top, left and right. They can be accessed via \ref axis by providing the respective axis type (\ref QCPAxis::AxisType) and index. If you need all axes in the axis rect, use \ref axes. The top and right axes are set to be invisible initially (QCPAxis::setVisible). To add more axes to a side, use \ref addAxis or \ref addAxes. To remove an axis, use \ref removeAxis. The axis rect layerable itself only draws a background pixmap or color, if specified (\ref setBackground). It is placed on the "background" layer initially (see \ref QCPLayer for an explanation of the QCustomPlot layer system). The axes that are held by the axis rect can be placed on other layers, independently of the axis rect. Every axis rect has a child layout of type \ref QCPLayoutInset. It is accessible via \ref insetLayout and can be used to have other layout elements (or even other layouts with multiple elements) hovering inside the axis rect. If an axis rect is clicked and dragged, it processes this by moving certain axis ranges. The behaviour can be controlled with \ref setRangeDrag and \ref setRangeDragAxes. If the mouse wheel is scrolled while the cursor is on the axis rect, certain axes are scaled. This is controllable via \ref setRangeZoom, \ref setRangeZoomAxes and \ref setRangeZoomFactor. These interactions are only enabled if \ref QCustomPlot::setInteractions contains \ref QCP::iRangeDrag and \ref QCP::iRangeZoom. \image html AxisRectSpacingOverview.png <center>Overview of the spacings and paddings that define the geometry of an axis. The dashed line on the far left indicates the viewport/widget border.</center> */ /* start documentation of inline functions */ /*! \fn QCPLayoutInset *QCPAxisRect::insetLayout() const Returns the inset layout of this axis rect. It can be used to place other layout elements (or even layouts with multiple other elements) inside/on top of an axis rect. \see QCPLayoutInset */ /*! \fn int QCPAxisRect::left() const Returns the pixel position of the left border of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn int QCPAxisRect::right() const Returns the pixel position of the right border of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn int QCPAxisRect::top() const Returns the pixel position of the top border of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn int QCPAxisRect::bottom() const Returns the pixel position of the bottom border of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn int QCPAxisRect::width() const Returns the pixel width of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn int QCPAxisRect::height() const Returns the pixel height of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QSize QCPAxisRect::size() const Returns the pixel size of this axis rect. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QPoint QCPAxisRect::topLeft() const Returns the top left corner of this axis rect in pixels. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QPoint QCPAxisRect::topRight() const Returns the top right corner of this axis rect in pixels. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QPoint QCPAxisRect::bottomLeft() const Returns the bottom left corner of this axis rect in pixels. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QPoint QCPAxisRect::bottomRight() const Returns the bottom right corner of this axis rect in pixels. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /*! \fn QPoint QCPAxisRect::center() const Returns the center of this axis rect in pixels. Margins are not taken into account here, so the returned value is with respect to the inner \ref rect. */ /* end documentation of inline functions */ /*! Creates a QCPAxisRect instance and sets default values. An axis is added for each of the four sides, the top and right axes are set invisible initially. */ QCPAxisRect::QCPAxisRect(QCustomPlot *parentPlot, bool setupDefaultAxes) : QCPLayoutElement(parentPlot), mBackgroundBrush(Qt::NoBrush), mBackgroundScaled(true), mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), mInsetLayout(new QCPLayoutInset), mRangeDrag(Qt::Horizontal|Qt::Vertical), mRangeZoom(Qt::Horizontal|Qt::Vertical), mRangeZoomFactorHorz(0.85), mRangeZoomFactorVert(0.85), mDragging(false) { mInsetLayout->initializeParentPlot(mParentPlot); mInsetLayout->setParentLayerable(this); mInsetLayout->setParent(this); setMinimumSize(50, 50); setMinimumMargins(QMargins(15, 15, 15, 15)); mAxes.insert(QCPAxis::atLeft, QList<QCPAxis*>()); mAxes.insert(QCPAxis::atRight, QList<QCPAxis*>()); mAxes.insert(QCPAxis::atTop, QList<QCPAxis*>()); mAxes.insert(QCPAxis::atBottom, QList<QCPAxis*>()); if (setupDefaultAxes) { QCPAxis *xAxis = addAxis(QCPAxis::atBottom); QCPAxis *yAxis = addAxis(QCPAxis::atLeft); QCPAxis *xAxis2 = addAxis(QCPAxis::atTop); QCPAxis *yAxis2 = addAxis(QCPAxis::atRight); setRangeDragAxes(xAxis, yAxis); setRangeZoomAxes(xAxis, yAxis); xAxis2->setVisible(false); yAxis2->setVisible(false); xAxis->grid()->setVisible(true); yAxis->grid()->setVisible(true); xAxis2->grid()->setVisible(false); yAxis2->grid()->setVisible(false); xAxis2->grid()->setZeroLinePen(Qt::NoPen); yAxis2->grid()->setZeroLinePen(Qt::NoPen); xAxis2->grid()->setVisible(false); yAxis2->grid()->setVisible(false); } } QCPAxisRect::~QCPAxisRect() { delete mInsetLayout; mInsetLayout = 0; QList<QCPAxis*> axesList = axes(); for (int i=0; i<axesList.size(); ++i) removeAxis(axesList.at(i)); } /*! Returns the number of axes on the axis rect side specified with \a type. \see axis */ int QCPAxisRect::axisCount(QCPAxis::AxisType type) const { return mAxes.value(type).size(); } /*! Returns the axis with the given \a index on the axis rect side specified with \a type. \see axisCount, axes */ QCPAxis *QCPAxisRect::axis(QCPAxis::AxisType type, int index) const { QList<QCPAxis*> ax(mAxes.value(type)); if (index >= 0 && index < ax.size()) { return ax.at(index); } else { qDebug() << Q_FUNC_INFO << "Axis index out of bounds:" << index; return 0; } } /*! Returns all axes on the axis rect sides specified with \a types. \a types may be a single \ref QCPAxis::AxisType or an <tt>or</tt>-combination, to get the axes of multiple sides. \see axis */ QList<QCPAxis*> QCPAxisRect::axes(QCPAxis::AxisTypes types) const { QList<QCPAxis*> result; if (types.testFlag(QCPAxis::atLeft)) result << mAxes.value(QCPAxis::atLeft); if (types.testFlag(QCPAxis::atRight)) result << mAxes.value(QCPAxis::atRight); if (types.testFlag(QCPAxis::atTop)) result << mAxes.value(QCPAxis::atTop); if (types.testFlag(QCPAxis::atBottom)) result << mAxes.value(QCPAxis::atBottom); return result; } /*! \overload Returns all axes of this axis rect. */ QList<QCPAxis*> QCPAxisRect::axes() const { QList<QCPAxis*> result; QHashIterator<QCPAxis::AxisType, QList<QCPAxis*> > it(mAxes); while (it.hasNext()) { it.next(); result << it.value(); } return result; } /*! Adds a new axis to the axis rect side specified with \a type, and returns it. If an axis rect side already contains one or more axes, the lower and upper endings of the new axis (\ref QCPAxis::setLowerEnding, \ref QCPAxis::setUpperEnding) are initialized to \ref QCPLineEnding::esHalfBar. \see addAxes, setupFullAxesBox */ QCPAxis *QCPAxisRect::addAxis(QCPAxis::AxisType type) { QCPAxis *newAxis = new QCPAxis(this, type); if (mAxes[type].size() > 0) // multiple axes on one side, add half-bar axis ending to additional axes with offset { bool invert = (type == QCPAxis::atRight) || (type == QCPAxis::atBottom); newAxis->setLowerEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, !invert)); newAxis->setUpperEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, invert)); } mAxes[type].append(newAxis); return newAxis; } /*! Adds a new axis with \ref addAxis to each axis rect side specified in \a types. This may be an <tt>or</tt>-combination of QCPAxis::AxisType, so axes can be added to multiple sides at once. Returns a list of the added axes. \see addAxis, setupFullAxesBox */ QList<QCPAxis*> QCPAxisRect::addAxes(QCPAxis::AxisTypes types) { QList<QCPAxis*> result; if (types.testFlag(QCPAxis::atLeft)) result << addAxis(QCPAxis::atLeft); if (types.testFlag(QCPAxis::atRight)) result << addAxis(QCPAxis::atRight); if (types.testFlag(QCPAxis::atTop)) result << addAxis(QCPAxis::atTop); if (types.testFlag(QCPAxis::atBottom)) result << addAxis(QCPAxis::atBottom); return result; } /*! Removes the specified \a axis from the axis rect and deletes it. Returns true on success, i.e. if \a axis was a valid axis in this axis rect. \see addAxis */ bool QCPAxisRect::removeAxis(QCPAxis *axis) { // don't access axis->axisType() to provide safety when axis is an invalid pointer, rather go through all axis containers: QHashIterator<QCPAxis::AxisType, QList<QCPAxis*> > it(mAxes); while (it.hasNext()) { it.next(); if (it.value().contains(axis)) { mAxes[it.key()].removeOne(axis); if (qobject_cast<QCustomPlot*>(parentPlot())) // make sure this isn't called from QObject dtor when QCustomPlot is already destructed (happens when the axis rect is not in any layout and thus QObject-child of QCustomPlot) parentPlot()->axisRemoved(axis); delete axis; return true; } } qDebug() << Q_FUNC_INFO << "Axis isn't in axis rect:" << reinterpret_cast<quintptr>(axis); return false; } /*! Convenience function to create an axis on each side that doesn't have any axes yet, and assign the top/right axes the following properties of the bottom/left axes (even if they already existed and weren't created by this function): \li range (\ref QCPAxis::setRange) \li range reversed (\ref QCPAxis::setRangeReversed) \li scale type (\ref QCPAxis::setScaleType) \li scale log base (\ref QCPAxis::setScaleLogBase) \li ticks (\ref QCPAxis::setTicks) \li auto (major) tick count (\ref QCPAxis::setAutoTickCount) \li sub tick count (\ref QCPAxis::setSubTickCount) \li auto sub ticks (\ref QCPAxis::setAutoSubTicks) \li tick step (\ref QCPAxis::setTickStep) \li auto tick step (\ref QCPAxis::setAutoTickStep) Tick labels (\ref QCPAxis::setTickLabels) of the right and top axes are set to false. If \a connectRanges is true, the rangeChanged signals of the bottom and left axes are connected to the \ref QCPAxis::setRange slots of the top and right axes. */ void QCPAxisRect::setupFullAxesBox(bool connectRanges) { QCPAxis *xAxis, *yAxis, *xAxis2, *yAxis2; if (axisCount(QCPAxis::atBottom) == 0) xAxis = addAxis(QCPAxis::atBottom); else xAxis = axis(QCPAxis::atBottom); if (axisCount(QCPAxis::atLeft) == 0) yAxis = addAxis(QCPAxis::atLeft); else yAxis = axis(QCPAxis::atLeft); if (axisCount(QCPAxis::atTop) == 0) xAxis2 = addAxis(QCPAxis::atTop); else xAxis2 = axis(QCPAxis::atTop); if (axisCount(QCPAxis::atRight) == 0) yAxis2 = addAxis(QCPAxis::atRight); else yAxis2 = axis(QCPAxis::atRight); xAxis2->setVisible(true); xAxis2->setTickLabels(false); if (xAxis) { xAxis2->setAutoSubTicks(xAxis->autoSubTicks()); xAxis2->setAutoTickCount(xAxis->autoTickCount()); xAxis2->setAutoTickStep(xAxis->autoTickStep()); xAxis2->setScaleType(xAxis->scaleType()); xAxis2->setScaleLogBase(xAxis->scaleLogBase()); xAxis2->setTicks(xAxis->ticks()); xAxis2->setSubTickCount(xAxis->subTickCount()); xAxis2->setTickStep(xAxis->tickStep()); xAxis2->setRange(xAxis->range()); xAxis2->setRangeReversed(xAxis->rangeReversed()); } yAxis2->setVisible(true); yAxis2->setTickLabels(false); if (yAxis) { yAxis2->setAutoSubTicks(yAxis->autoSubTicks()); yAxis2->setAutoTickCount(yAxis->autoTickCount()); yAxis2->setAutoTickStep(yAxis->autoTickStep()); yAxis2->setScaleType(yAxis->scaleType()); yAxis2->setScaleLogBase(yAxis->scaleLogBase()); yAxis2->setTicks(yAxis->ticks()); yAxis2->setSubTickCount(yAxis->subTickCount()); yAxis2->setTickStep(yAxis->tickStep()); yAxis2->setRange(yAxis->range()); yAxis2->setRangeReversed(yAxis->rangeReversed()); } if (connectRanges) { connect(xAxis, SIGNAL(rangeChanged(QCPRange)), xAxis2, SLOT(setRange(QCPRange))); connect(yAxis, SIGNAL(rangeChanged(QCPRange)), yAxis2, SLOT(setRange(QCPRange))); } } /*! Returns a list of all the plottables that are associated with this axis rect. A plottable is considered associated with an axis rect if its key or value axis (or both) is in this axis rect. \see graphs, items */ QList<QCPAbstractPlottable*> QCPAxisRect::plottables() const { // Note: don't append all QCPAxis::plottables() into a list, because we might get duplicate entries QList<QCPAbstractPlottable*> result; for (int i=0; i<mParentPlot->mPlottables.size(); ++i) { if (mParentPlot->mPlottables.at(i)->keyAxis()->axisRect() == this ||mParentPlot->mPlottables.at(i)->valueAxis()->axisRect() == this) result.append(mParentPlot->mPlottables.at(i)); } return result; } /*! Returns a list of all the graphs that are associated with this axis rect. A graph is considered associated with an axis rect if its key or value axis (or both) is in this axis rect. \see plottables, items */ QList<QCPGraph*> QCPAxisRect::graphs() const { // Note: don't append all QCPAxis::graphs() into a list, because we might get duplicate entries QList<QCPGraph*> result; for (int i=0; i<mParentPlot->mGraphs.size(); ++i) { if (mParentPlot->mGraphs.at(i)->keyAxis()->axisRect() == this || mParentPlot->mGraphs.at(i)->valueAxis()->axisRect() == this) result.append(mParentPlot->mGraphs.at(i)); } return result; } /*! Returns a list of all the items that are associated with this axis rect. An item is considered associated with an axis rect if any of its positions has key or value axis set to an axis that is in this axis rect, or if any of its positions has \ref QCPItemPosition::setAxisRect set to the axis rect, or if the clip axis rect (\ref QCPAbstractItem::setClipAxisRect) is set to this axis rect. \see plottables, graphs */ QList<QCPAbstractItem *> QCPAxisRect::items() const { // Note: don't just append all QCPAxis::items() into a list, because we might get duplicate entries // and miss those items that have this axis rect as clipAxisRect. QList<QCPAbstractItem*> result; for (int itemId=0; itemId<mParentPlot->mItems.size(); ++itemId) { if (mParentPlot->mItems.at(itemId)->clipAxisRect() == this) { result.append(mParentPlot->mItems.at(itemId)); continue; } QList<QCPItemPosition*> positions = mParentPlot->mItems.at(itemId)->positions(); for (int posId=0; posId<positions.size(); ++itemId) { if (positions.at(posId)->axisRect() == this || positions.at(posId)->keyAxis()->axisRect() == this || positions.at(posId)->valueAxis()->axisRect() == this) { result.append(mParentPlot->mItems.at(itemId)); break; } } } return result; } /*! This method is called automatically upon replot and doesn't need to be called by users of QCPAxisRect. Calls the base class implementation to update the margins (see \ref QCPLayoutElement::update), and finally passes the \ref rect to the inset layout (\ref insetLayout) and calls its QCPInsetLayout::update function. */ void QCPAxisRect::update() { QCPLayoutElement::update(); // pass update call on to inset layout (doesn't happen automatically, because QCPAxisRect doesn't derive from QCPLayout): mInsetLayout->setOuterRect(rect()); mInsetLayout->update(); } /* inherits documentation from base class */ QList<QCPLayoutElement*> QCPAxisRect::elements(bool recursive) const { QList<QCPLayoutElement*> result; if (mInsetLayout) { result << mInsetLayout; if (recursive) result << mInsetLayout->elements(recursive); } return result; } /* inherits documentation from base class */ void QCPAxisRect::applyDefaultAntialiasingHint(QCPPainter *painter) const { painter->setAntialiasing(false); } /* inherits documentation from base class */ void QCPAxisRect::draw(QCPPainter *painter) { drawBackground(painter); } /*! Sets \a pm as the axis background pixmap. The axis background pixmap will be drawn inside the axis rect. Since axis rects place themselves on the "background" layer by default, the axis rect backgrounds are usually drawn below everything else. For cases where the provided pixmap doesn't have the same size as the axis rect, scaling can be enabled with \ref setBackgroundScaled and the scaling mode (i.e. whether and how the aspect ratio is preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, consider using the overloaded version of this function. Below the pixmap, the axis rect may be optionally filled with a brush, if specified with \ref setBackground(const QBrush &brush). \see setBackgroundScaled, setBackgroundScaledMode, setBackground(const QBrush &brush) */ void QCPAxisRect::setBackground(const QPixmap &pm) { mBackgroundPixmap = pm; mScaledBackgroundPixmap = QPixmap(); } /*! \overload Sets \a brush as the background brush. The axis rect background will be filled with this brush. Since axis rects place themselves on the "background" layer by default, the axis rect backgrounds are usually drawn below everything else. The brush will be drawn before (under) any background pixmap, which may be specified with \ref setBackground(const QPixmap &pm). To disable drawing of a background brush, set \a brush to Qt::NoBrush. \see setBackground(const QPixmap &pm) */ void QCPAxisRect::setBackground(const QBrush &brush) { mBackgroundBrush = brush; } /*! \overload Allows setting the background pixmap of the axis rect, whether it shall be scaled and how it shall be scaled in one call. \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode */ void QCPAxisRect::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) { mBackgroundPixmap = pm; mScaledBackgroundPixmap = QPixmap(); mBackgroundScaled = scaled; mBackgroundScaledMode = mode; } /*! Sets whether the axis background pixmap shall be scaled to fit the axis rect or not. If \a scaled is set to true, you may control whether and how the aspect ratio of the original pixmap is preserved with \ref setBackgroundScaledMode. Note that the scaled version of the original pixmap is buffered, so there is no performance penalty on replots. (Except when the axis rect dimensions are changed continuously.) \see setBackground, setBackgroundScaledMode */ void QCPAxisRect::setBackgroundScaled(bool scaled) { mBackgroundScaled = scaled; } /*! If scaling of the axis background pixmap is enabled (\ref setBackgroundScaled), use this function to define whether and how the aspect ratio of the original pixmap passed to \ref setBackground is preserved. \see setBackground, setBackgroundScaled */ void QCPAxisRect::setBackgroundScaledMode(Qt::AspectRatioMode mode) { mBackgroundScaledMode = mode; } /*! Returns the range drag axis of the \a orientation provided. \see setRangeDragAxes */ QCPAxis *QCPAxisRect::rangeDragAxis(Qt::Orientation orientation) { return (orientation == Qt::Horizontal ? mRangeDragHorzAxis.data() : mRangeDragVertAxis.data()); } /*! Returns the range zoom axis of the \a orientation provided. \see setRangeZoomAxes */ QCPAxis *QCPAxisRect::rangeZoomAxis(Qt::Orientation orientation) { return (orientation == Qt::Horizontal ? mRangeZoomHorzAxis.data() : mRangeZoomVertAxis.data()); } /*! Returns the range zoom factor of the \a orientation provided. \see setRangeZoomFactor */ double QCPAxisRect::rangeZoomFactor(Qt::Orientation orientation) { return (orientation == Qt::Horizontal ? mRangeZoomFactorHorz : mRangeZoomFactorVert); } /*! Sets which axis orientation may be range dragged by the user with mouse interaction. What orientation corresponds to which specific axis can be set with \ref setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical). By default, the horizontal axis is the bottom axis (xAxis) and the vertical axis is the left axis (yAxis). To disable range dragging entirely, pass 0 as \a orientations or remove \ref QCP::iRangeDrag from \ref QCustomPlot::setInteractions. To enable range dragging for both directions, pass <tt>Qt::Horizontal | Qt::Vertical</tt> as \a orientations. In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions contains \ref QCP::iRangeDrag to enable the range dragging interaction. \see setRangeZoom, setRangeDragAxes, setNoAntialiasingOnDrag */ void QCPAxisRect::setRangeDrag(Qt::Orientations orientations) { mRangeDrag = orientations; } /*! Sets which axis orientation may be zoomed by the user with the mouse wheel. What orientation corresponds to which specific axis can be set with \ref setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical). By default, the horizontal axis is the bottom axis (xAxis) and the vertical axis is the left axis (yAxis). To disable range zooming entirely, pass 0 as \a orientations or remove \ref QCP::iRangeZoom from \ref QCustomPlot::setInteractions. To enable range zooming for both directions, pass <tt>Qt::Horizontal | Qt::Vertical</tt> as \a orientations. In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions contains \ref QCP::iRangeZoom to enable the range zooming interaction. \see setRangeZoomFactor, setRangeZoomAxes, setRangeDrag */ void QCPAxisRect::setRangeZoom(Qt::Orientations orientations) { mRangeZoom = orientations; } /*! Sets the axes whose range will be dragged when \ref setRangeDrag enables mouse range dragging on the QCustomPlot widget. \see setRangeZoomAxes */ void QCPAxisRect::setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical) { mRangeDragHorzAxis = horizontal; mRangeDragVertAxis = vertical; } /*! Sets the axes whose range will be zoomed when \ref setRangeZoom enables mouse wheel zooming on the QCustomPlot widget. The two axes can be zoomed with different strengths, when different factors are passed to \ref setRangeZoomFactor(double horizontalFactor, double verticalFactor). \see setRangeDragAxes */ void QCPAxisRect::setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical) { mRangeZoomHorzAxis = horizontal; mRangeZoomVertAxis = vertical; } /*! Sets how strong one rotation step of the mouse wheel zooms, when range zoom was activated with \ref setRangeZoom. The two parameters \a horizontalFactor and \a verticalFactor provide a way to let the horizontal axis zoom at different rates than the vertical axis. Which axis is horizontal and which is vertical, can be set with \ref setRangeZoomAxes. When the zoom factor is greater than one, scrolling the mouse wheel backwards (towards the user) will zoom in (make the currently visible range smaller). For zoom factors smaller than one, the same scrolling direction will zoom out. */ void QCPAxisRect::setRangeZoomFactor(double horizontalFactor, double verticalFactor) { mRangeZoomFactorHorz = horizontalFactor; mRangeZoomFactorVert = verticalFactor; } /*! \overload Sets both the horizontal and vertical zoom \a factor. */ void QCPAxisRect::setRangeZoomFactor(double factor) { mRangeZoomFactorHorz = factor; mRangeZoomFactorVert = factor; } /*! \internal Draws the background of this axis rect. It may consist of a background fill (a QBrush) and a pixmap. If a brush was given via \ref setBackground(const QBrush &brush), this function first draws an according filling inside the axis rect with the provided \a painter. Then, if a pixmap was provided via \ref setBackground, this function buffers the scaled version depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside the axis rect with the provided \a painter. The scaled version is buffered in mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when the axis rect has changed in a way that requires a rescale of the background pixmap (this is dependant on the \ref setBackgroundScaledMode), or when a differend axis backgroud pixmap was set. \see setBackground, setBackgroundScaled, setBackgroundScaledMode */ void QCPAxisRect::drawBackground(QCPPainter *painter) { // draw background fill: if (mBackgroundBrush != Qt::NoBrush) painter->fillRect(mRect, mBackgroundBrush); // draw background pixmap (on top of fill, if brush specified): if (!mBackgroundPixmap.isNull()) { if (mBackgroundScaled) { // check whether mScaledBackground needs to be updated: QSize scaledSize(mBackgroundPixmap.size()); scaledSize.scale(mRect.size(), mBackgroundScaledMode); if (mScaledBackgroundPixmap.size() != scaledSize) mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mRect.size(), mBackgroundScaledMode, Qt::SmoothTransformation); painter->drawPixmap(mRect.topLeft(), mScaledBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height()) & mScaledBackgroundPixmap.rect()); } else { painter->drawPixmap(mRect.topLeft(), mBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height())); } } } /*! \internal This function makes sure multiple axes on the side specified with \a type don't collide, but are distributed according to their respective space requirement (QCPAxis::calculateMargin). It does this by setting an appropriate offset (\ref QCPAxis::setOffset) on all axes except the one with index zero. This function is called by \ref calculateAutoMargin. */ void QCPAxisRect::updateAxesOffset(QCPAxis::AxisType type) { const QList<QCPAxis*> axesList = mAxes.value(type); for (int i=1; i<axesList.size(); ++i) axesList.at(i)->setOffset(axesList.at(i-1)->offset() + axesList.at(i-1)->calculateMargin() + axesList.at(i)->tickLengthIn()); } /* inherits documentation from base class */ int QCPAxisRect::calculateAutoMargin(QCP::MarginSide side) { if (!mAutoMargins.testFlag(side)) qDebug() << Q_FUNC_INFO << "Called with side that isn't specified as auto margin"; updateAxesOffset(QCPAxis::marginSideToAxisType(side)); // note: only need to look at the last (outer most) axis to determine the total margin, due to updateAxisOffset call const QList<QCPAxis*> axesList = mAxes.value(QCPAxis::marginSideToAxisType(side)); if (axesList.size() > 0) return axesList.last()->offset() + axesList.last()->calculateMargin(); else return 0; } /*! \internal Event handler for when a mouse button is pressed on the axis rect. If the left mouse button is pressed, the range dragging interaction is initialized (the actual range manipulation happens in the \ref mouseMoveEvent). The mDragging flag is set to true and some anchor points are set that are needed to determine the distance the mouse was dragged in the mouse move/release events later. \see mouseMoveEvent, mouseReleaseEvent */ void QCPAxisRect::mousePressEvent(QMouseEvent *event) { mDragStart = event->pos(); // need this even when not LeftButton is pressed, to determine in releaseEvent whether it was a full click (no position change between press and release) if (event->buttons() & Qt::LeftButton) { mDragging = true; // initialize antialiasing backup in case we start dragging: if (mParentPlot->noAntialiasingOnDrag()) { mAADragBackup = mParentPlot->antialiasedElements(); mNotAADragBackup = mParentPlot->notAntialiasedElements(); } // Mouse range dragging interaction: if (mParentPlot->interactions().testFlag(QCP::iRangeDrag)) { if (mRangeDragHorzAxis) mDragStartHorzRange = mRangeDragHorzAxis.data()->range(); if (mRangeDragVertAxis) mDragStartVertRange = mRangeDragVertAxis.data()->range(); } } } /*! \internal Event handler for when the mouse is moved on the axis rect. If range dragging was activated in a preceding \ref mousePressEvent, the range is moved accordingly. \see mousePressEvent, mouseReleaseEvent */ void QCPAxisRect::mouseMoveEvent(QMouseEvent *event) { // Mouse range dragging interaction: if (mDragging && mParentPlot->interactions().testFlag(QCP::iRangeDrag)) { if (mRangeDrag.testFlag(Qt::Horizontal)) { if (QCPAxis *rangeDragHorzAxis = mRangeDragHorzAxis.data()) { if (rangeDragHorzAxis->mScaleType == QCPAxis::stLinear) { double diff = rangeDragHorzAxis->pixelToCoord(mDragStart.x()) - rangeDragHorzAxis->pixelToCoord(event->pos().x()); rangeDragHorzAxis->setRange(mDragStartHorzRange.lower+diff, mDragStartHorzRange.upper+diff); } else if (rangeDragHorzAxis->mScaleType == QCPAxis::stLogarithmic) { double diff = rangeDragHorzAxis->pixelToCoord(mDragStart.x()) / rangeDragHorzAxis->pixelToCoord(event->pos().x()); rangeDragHorzAxis->setRange(mDragStartHorzRange.lower*diff, mDragStartHorzRange.upper*diff); } } } if (mRangeDrag.testFlag(Qt::Vertical)) { if (QCPAxis *rangeDragVertAxis = mRangeDragVertAxis.data()) { if (rangeDragVertAxis->mScaleType == QCPAxis::stLinear) { double diff = rangeDragVertAxis->pixelToCoord(mDragStart.y()) - rangeDragVertAxis->pixelToCoord(event->pos().y()); rangeDragVertAxis->setRange(mDragStartVertRange.lower+diff, mDragStartVertRange.upper+diff); } else if (rangeDragVertAxis->mScaleType == QCPAxis::stLogarithmic) { double diff = rangeDragVertAxis->pixelToCoord(mDragStart.y()) / rangeDragVertAxis->pixelToCoord(event->pos().y()); rangeDragVertAxis->setRange(mDragStartVertRange.lower*diff, mDragStartVertRange.upper*diff); } } } if (mRangeDrag != 0) // if either vertical or horizontal drag was enabled, do a replot { if (mParentPlot->noAntialiasingOnDrag()) mParentPlot->setNotAntialiasedElements(QCP::aeAll); mParentPlot->replot(); } } } /* inherits documentation from base class */ void QCPAxisRect::mouseReleaseEvent(QMouseEvent *event) { Q_UNUSED(event) mDragging = false; if (mParentPlot->noAntialiasingOnDrag()) { mParentPlot->setAntialiasedElements(mAADragBackup); mParentPlot->setNotAntialiasedElements(mNotAADragBackup); } } /*! \internal Event handler for mouse wheel events. If rangeZoom is Qt::Horizontal, Qt::Vertical or both, the ranges of the axes defined as rangeZoomHorzAxis and rangeZoomVertAxis are scaled. The center of the scaling operation is the current cursor position inside the axis rect. The scaling factor is dependant on the mouse wheel delta (which direction the wheel was rotated) to provide a natural zooming feel. The Strength of the zoom can be controlled via \ref setRangeZoomFactor. Note, that event->delta() is usually +/-120 for single rotation steps. However, if the mouse wheel is turned rapidly, many steps may bunch up to one event, so the event->delta() may then be multiples of 120. This is taken into account here, by calculating \a wheelSteps and using it as exponent of the range zoom factor. This takes care of the wheel direction automatically, by inverting the factor, when the wheel step is negative (f^-1 = 1/f). */ void QCPAxisRect::wheelEvent(QWheelEvent *event) { // Mouse range zooming interaction: if (mParentPlot->interactions().testFlag(QCP::iRangeZoom)) { if (mRangeZoom != 0) { double factor; double wheelSteps = event->delta()/120.0; // a single step delta is +/-120 usually if (mRangeZoom.testFlag(Qt::Horizontal)) { factor = pow(mRangeZoomFactorHorz, wheelSteps); if (mRangeZoomHorzAxis.data()) mRangeZoomHorzAxis.data()->scaleRange(factor, mRangeZoomHorzAxis.data()->pixelToCoord(event->pos().x())); } if (mRangeZoom.testFlag(Qt::Vertical)) { factor = pow(mRangeZoomFactorVert, wheelSteps); if (mRangeZoomVertAxis.data()) mRangeZoomVertAxis.data()->scaleRange(factor, mRangeZoomVertAxis.data()->pixelToCoord(event->pos().y())); } mParentPlot->replot(); } } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPAbstractLegendItem //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPAbstractLegendItem \brief The abstract base class for all entries in a QCPLegend. It defines a very basic interface for entries in a QCPLegend. For representing plottables in the legend, the subclass \ref QCPPlottableLegendItem is more suitable. Only derive directly from this class when you need absolute freedom (e.g. a custom legend entry that's not even associated with a plottable). You must implement the following pure virtual functions: \li \ref draw (from QCPLayerable) You inherit the following members you may use: <table> <tr> <td>QCPLegend *\b mParentLegend</td> <td>A pointer to the parent QCPLegend.</td> </tr><tr> <td>QFont \b mFont</td> <td>The generic font of the item. You should use this font for all or at least the most prominent text of the item.</td> </tr> </table> */ /* start of documentation of signals */ /*! \fn void QCPAbstractLegendItem::selectionChanged(bool selected) This signal is emitted when the selection state of this legend item has changed, either by user interaction or by a direct call to \ref setSelected. */ /* end of documentation of signals */ /*! Constructs a QCPAbstractLegendItem and associates it with the QCPLegend \a parent. This does not cause the item to be added to \a parent, so \ref QCPLegend::addItem must be called separately. */ QCPAbstractLegendItem::QCPAbstractLegendItem(QCPLegend *parent) : QCPLayoutElement(parent->parentPlot()), mParentLegend(parent), mFont(parent->font()), mTextColor(parent->textColor()), mSelectedFont(parent->selectedFont()), mSelectedTextColor(parent->selectedTextColor()), mSelectable(true), mSelected(false) { setLayer("legend"); setMargins(QMargins(8, 2, 8, 2)); } /*! Sets the default font of this specific legend item to \a font. \see setTextColor, QCPLegend::setFont */ void QCPAbstractLegendItem::setFont(const QFont &font) { mFont = font; } /*! Sets the default text color of this specific legend item to \a color. \see setFont, QCPLegend::setTextColor */ void QCPAbstractLegendItem::setTextColor(const QColor &color) { mTextColor = color; } /*! When this legend item is selected, \a font is used to draw generic text, instead of the normal font set with \ref setFont. \see setFont, QCPLegend::setSelectedFont */ void QCPAbstractLegendItem::setSelectedFont(const QFont &font) { mSelectedFont = font; } /*! When this legend item is selected, \a color is used to draw generic text, instead of the normal color set with \ref setTextColor. \see setTextColor, QCPLegend::setSelectedTextColor */ void QCPAbstractLegendItem::setSelectedTextColor(const QColor &color) { mSelectedTextColor = color; } /*! Sets whether this specific legend item is selectable. \see setSelectedParts, QCustomPlot::setInteractions */ void QCPAbstractLegendItem::setSelectable(bool selectable) { mSelectable = selectable; } /*! Sets whether this specific legend item is selected. It is possible to set the selection state of this item by calling this function directly, even if setSelectable is set to false. \see setSelectableParts, QCustomPlot::setInteractions */ void QCPAbstractLegendItem::setSelected(bool selected) { if (mSelected != selected) { mSelected = selected; emit selectionChanged(mSelected); } } /* inherits documentation from base class */ double QCPAbstractLegendItem::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (!mParentPlot) return -1; if (onlySelectable && (!mSelectable || !mParentLegend->selectableParts().testFlag(QCPLegend::spItems))) return -1; if (mRect.contains(pos.toPoint())) return mParentPlot->selectionTolerance()*0.99; else return -1; } /* inherits documentation from base class */ void QCPAbstractLegendItem::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeLegendItems); } /* inherits documentation from base class */ QRect QCPAbstractLegendItem::clipRect() const { return mOuterRect; } /* inherits documentation from base class */ void QCPAbstractLegendItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) Q_UNUSED(details) if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) { bool selBefore = mSelected; setSelected(additive ? !mSelected : true); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ void QCPAbstractLegendItem::deselectEvent(bool *selectionStateChanged) { if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) { bool selBefore = mSelected; setSelected(false); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPPlottableLegendItem //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPPlottableLegendItem \brief A legend item representing a plottable with an icon and the plottable name. This is the standard legend item for plottables. It displays an icon of the plottable next to the plottable name. The icon is drawn by the respective plottable itself (\ref QCPAbstractPlottable::drawLegendIcon), and tries to give an intuitive symbol for the plottable. For example, the QCPGraph draws a centered horizontal line and/or a single scatter point in the middle. Legend items of this type are always associated with one plottable (retrievable via the plottable() function and settable with the constructor). You may change the font of the plottable name with \ref setFont. Icon padding and border pen is taken from the parent QCPLegend, see \ref QCPLegend::setIconBorderPen and \ref QCPLegend::setIconTextPadding. The function \ref QCPAbstractPlottable::addToLegend/\ref QCPAbstractPlottable::removeFromLegend creates/removes legend items of this type in the default implementation. However, these functions may be reimplemented such that a different kind of legend item (e.g a direct subclass of QCPAbstractLegendItem) is used for that plottable. Since QCPLegend is based on QCPLayoutGrid, a legend item itself is just a subclass of QCPLayoutElement. While it could be added to a legend (or any other layout) via the normal layout interface, QCPLegend has specialized functions for handling legend items conveniently, see the documentation of \ref QCPLegend. */ /*! Creates a new legend item associated with \a plottable. Once it's created, it can be added to the legend via \ref QCPLegend::addItem. A more convenient way of adding/removing a plottable to/from the legend is via the functions \ref QCPAbstractPlottable::addToLegend and \ref QCPAbstractPlottable::removeFromLegend. */ QCPPlottableLegendItem::QCPPlottableLegendItem(QCPLegend *parent, QCPAbstractPlottable *plottable) : QCPAbstractLegendItem(parent), mPlottable(plottable) { } /*! \internal Returns the pen that shall be used to draw the icon border, taking into account the selection state of this item. */ QPen QCPPlottableLegendItem::getIconBorderPen() const { return mSelected ? mParentLegend->selectedIconBorderPen() : mParentLegend->iconBorderPen(); } /*! \internal Returns the text color that shall be used to draw text, taking into account the selection state of this item. */ QColor QCPPlottableLegendItem::getTextColor() const { return mSelected ? mSelectedTextColor : mTextColor; } /*! \internal Returns the font that shall be used to draw text, taking into account the selection state of this item. */ QFont QCPPlottableLegendItem::getFont() const { return mSelected ? mSelectedFont : mFont; } /*! \internal Draws the item with \a painter. The size and position of the drawn legend item is defined by the parent layout (typically a \ref QCPLegend) and the \ref minimumSizeHint and \ref maximumSizeHint of this legend item. */ void QCPPlottableLegendItem::draw(QCPPainter *painter) { if (!mPlottable) return; painter->setFont(getFont()); painter->setPen(QPen(getTextColor())); QSizeF iconSize = mParentLegend->iconSize(); QRectF textRect = painter->fontMetrics().boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); QRectF iconRect(mRect.topLeft(), iconSize); int textHeight = qMax(textRect.height(), iconSize.height()); // if text has smaller height than icon, center text vertically in icon height, else align tops painter->drawText(mRect.x()+iconSize.width()+mParentLegend->iconTextPadding(), mRect.y(), textRect.width(), textHeight, Qt::TextDontClip, mPlottable->name()); // draw icon: painter->save(); painter->setClipRect(iconRect, Qt::IntersectClip); mPlottable->drawLegendIcon(painter, iconRect); painter->restore(); // draw icon border: if (getIconBorderPen().style() != Qt::NoPen) { painter->setPen(getIconBorderPen()); painter->setBrush(Qt::NoBrush); painter->drawRect(iconRect); } } /*! \internal Calculates and returns the size of this item. This includes the icon, the text and the padding in between. */ QSize QCPPlottableLegendItem::minimumSizeHint() const { if (!mPlottable) return QSize(); QSize result(0, 0); QRect textRect; QFontMetrics fontMetrics(getFont()); QSize iconSize = mParentLegend->iconSize(); textRect = fontMetrics.boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); result.setWidth(iconSize.width() + mParentLegend->iconTextPadding() + textRect.width() + mMargins.left() + mMargins.right()); result.setHeight(qMax(textRect.height(), iconSize.height()) + mMargins.top() + mMargins.bottom()); return result; } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPLegend //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPLegend \brief Manages a legend inside a QCustomPlot. A legend is a small box somewhere in the plot which lists plottables with their name and icon. Normally, the legend is populated by calling \ref QCPAbstractPlottable::addToLegend. The respective legend item can be removed with \ref QCPAbstractPlottable::removeFromLegend. However, QCPLegend also offers an interface to add and manipulate legend items directly: \ref item, \ref itemWithPlottable, \ref itemCount, \ref addItem, \ref removeItem, etc. The QCPLegend derives from QCPLayoutGrid and as such can be placed in any position a QCPLayoutElement may be positioned. The legend items are themselves QCPLayoutElements which are placed in the grid layout of the legend. QCPLegend only adds an interface specialized for handling child elements of type QCPAbstractLegendItem, as mentioned above. In principle, any other layout elements may also be added to a legend via the normal \ref QCPLayoutGrid interface. However, the QCPAbstractLegendItem-Interface will ignore those elements (e.g. \ref itemCount will only return the number of items with QCPAbstractLegendItems type). By default, every QCustomPlot has one legend (QCustomPlot::legend) which is placed in the inset layout of the main axis rect (\ref QCPAxisRect::insetLayout). To move the legend to another position inside the axis rect, use the methods of the \ref QCPLayoutInset. To move the legend outside of the axis rect, place it anywhere else with the QCPLayout/QCPLayoutElement interface. */ /* start of documentation of signals */ /*! \fn void QCPLegend::selectionChanged(QCPLegend::SelectableParts selection); This signal is emitted when the selection state of this legend has changed. \see setSelectedParts, setSelectableParts */ /* end of documentation of signals */ /*! Constructs a new QCPLegend instance with \a parentPlot as the containing plot and default values. Note that by default, QCustomPlot already contains a legend ready to be used as QCustomPlot::legend */ QCPLegend::QCPLegend() { setRowSpacing(0); setColumnSpacing(10); setMargins(QMargins(2, 3, 2, 2)); setAntialiased(false); setIconSize(32, 18); setIconTextPadding(7); setSelectableParts(spLegendBox | spItems); setSelectedParts(spNone); setBorderPen(QPen(Qt::black)); setSelectedBorderPen(QPen(Qt::blue, 2)); setIconBorderPen(Qt::NoPen); setSelectedIconBorderPen(QPen(Qt::blue, 2)); setBrush(Qt::white); setSelectedBrush(Qt::white); setTextColor(Qt::black); setSelectedTextColor(Qt::blue); } QCPLegend::~QCPLegend() { clearItems(); if (mParentPlot) mParentPlot->legendRemoved(this); } /* no doc for getter, see setSelectedParts */ QCPLegend::SelectableParts QCPLegend::selectedParts() const { // check whether any legend elements selected, if yes, add spItems to return value bool hasSelectedItems = false; for (int i=0; i<itemCount(); ++i) { if (item(i) && item(i)->selected()) { hasSelectedItems = true; break; } } if (hasSelectedItems) return mSelectedParts | spItems; else return mSelectedParts & ~spItems; } /*! Sets the pen, the border of the entire legend is drawn with. */ void QCPLegend::setBorderPen(const QPen &pen) { mBorderPen = pen; } /*! Sets the brush of the legend background. */ void QCPLegend::setBrush(const QBrush &brush) { mBrush = brush; } /*! Sets the default font of legend text. Legend items that draw text (e.g. the name of a graph) will use this font by default. However, a different font can be specified on a per-item-basis by accessing the specific legend item. This function will also set \a font on all already existing legend items. \see QCPAbstractLegendItem::setFont */ void QCPLegend::setFont(const QFont &font) { mFont = font; for (int i=0; i<itemCount(); ++i) { if (item(i)) item(i)->setFont(mFont); } } /*! Sets the default color of legend text. Legend items that draw text (e.g. the name of a graph) will use this color by default. However, a different colors can be specified on a per-item-basis by accessing the specific legend item. This function will also set \a color on all already existing legend items. \see QCPAbstractLegendItem::setTextColor */ void QCPLegend::setTextColor(const QColor &color) { mTextColor = color; for (int i=0; i<itemCount(); ++i) { if (item(i)) item(i)->setTextColor(color); } } /*! Sets the size of legend icons. Legend items that draw an icon (e.g. a visual representation of the graph) will use this size by default. */ void QCPLegend::setIconSize(const QSize &size) { mIconSize = size; } /*! \overload */ void QCPLegend::setIconSize(int width, int height) { mIconSize.setWidth(width); mIconSize.setHeight(height); } /*! Sets the horizontal space in pixels between the legend icon and the text next to it. Legend items that draw an icon (e.g. a visual representation of the graph) and text (e.g. the name of the graph) will use this space by default. */ void QCPLegend::setIconTextPadding(int padding) { mIconTextPadding = padding; } /*! Sets the pen used to draw a border around each legend icon. Legend items that draw an icon (e.g. a visual representation of the graph) will use this pen by default. If no border is wanted, set this to \a Qt::NoPen. */ void QCPLegend::setIconBorderPen(const QPen &pen) { mIconBorderPen = pen; } /*! Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. (When \ref QCustomPlot::setInteractions contains iSelectLegend.) However, even when \a selectable is set to a value not allowing the selection of a specific part, it is still possible to set the selection of this part manually, by calling \ref setSelectedParts directly. \see SelectablePart, setSelectedParts */ void QCPLegend::setSelectableParts(const SelectableParts &selectable) { mSelectableParts = selectable; } /*! Sets the selected state of the respective legend parts described by \ref SelectablePart. When a part is selected, it uses a different pen/font and brush. If some legend items are selected and \a selected doesn't contain \ref spItems, those items become deselected. The entire selection mechanism is handled automatically when \ref QCustomPlot::setInteractions contains iSelectLegend. You only need to call this function when you wish to change the selection state manually. This function can change the selection state of a part even when \ref setSelectableParts was set to a value that actually excludes the part. emits the \ref selectionChanged signal when \a selected is different from the previous selection state. Note that it doesn't make sense to set the selected state \ref spItems here when it wasn't set before, because there's no way to specify which exact items to newly select. Do this by calling \ref QCPAbstractLegendItem::setSelected directly on the legend item you wish to select. \see SelectablePart, setSelectableParts, selectTest, setSelectedBorderPen, setSelectedIconBorderPen, setSelectedBrush, setSelectedFont */ void QCPLegend::setSelectedParts(const SelectableParts &selected) { SelectableParts newSelected = selected; mSelectedParts = this->selectedParts(); // update mSelectedParts in case item selection changed if (mSelectedParts != newSelected) { if (!mSelectedParts.testFlag(spItems) && newSelected.testFlag(spItems)) // attempt to set spItems flag (can't do that) { qDebug() << Q_FUNC_INFO << "spItems flag can not be set, it can only be unset with this function"; newSelected &= ~spItems; } if (mSelectedParts.testFlag(spItems) && !newSelected.testFlag(spItems)) // spItems flag was unset, so clear item selection { for (int i=0; i<itemCount(); ++i) { if (item(i)) item(i)->setSelected(false); } } mSelectedParts = newSelected; emit selectionChanged(mSelectedParts); } } /*! When the legend box is selected, this pen is used to draw the border instead of the normal pen set via \ref setBorderPen. \see setSelectedParts, setSelectableParts, setSelectedBrush */ void QCPLegend::setSelectedBorderPen(const QPen &pen) { mSelectedBorderPen = pen; } /*! Sets the pen legend items will use to draw their icon borders, when they are selected. \see setSelectedParts, setSelectableParts, setSelectedFont */ void QCPLegend::setSelectedIconBorderPen(const QPen &pen) { mSelectedIconBorderPen = pen; } /*! When the legend box is selected, this brush is used to draw the legend background instead of the normal brush set via \ref setBrush. \see setSelectedParts, setSelectableParts, setSelectedBorderPen */ void QCPLegend::setSelectedBrush(const QBrush &brush) { mSelectedBrush = brush; } /*! Sets the default font that is used by legend items when they are selected. This function will also set \a font on all already existing legend items. \see setFont, QCPAbstractLegendItem::setSelectedFont */ void QCPLegend::setSelectedFont(const QFont &font) { mSelectedFont = font; for (int i=0; i<itemCount(); ++i) { if (item(i)) item(i)->setSelectedFont(font); } } /*! Sets the default text color that is used by legend items when they are selected. This function will also set \a color on all already existing legend items. \see setTextColor, QCPAbstractLegendItem::setSelectedTextColor */ void QCPLegend::setSelectedTextColor(const QColor &color) { mSelectedTextColor = color; for (int i=0; i<itemCount(); ++i) { if (item(i)) item(i)->setSelectedTextColor(color); } } /*! Returns the item with index \a i. \see itemCount */ QCPAbstractLegendItem *QCPLegend::item(int index) const { return qobject_cast<QCPAbstractLegendItem*>(elementAt(index)); } /*! Returns the QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). If such an item isn't in the legend, returns 0. \see hasItemWithPlottable */ QCPPlottableLegendItem *QCPLegend::itemWithPlottable(const QCPAbstractPlottable *plottable) const { for (int i=0; i<itemCount(); ++i) { if (QCPPlottableLegendItem *pli = qobject_cast<QCPPlottableLegendItem*>(item(i))) { if (pli->plottable() == plottable) return pli; } } return 0; } /*! Returns the number of items currently in the legend. \see item */ int QCPLegend::itemCount() const { return elementCount(); } /*! Returns whether the legend contains \a itm. */ bool QCPLegend::hasItem(QCPAbstractLegendItem *item) const { for (int i=0; i<itemCount(); ++i) { if (item == this->item(i)) return true; } return false; } /*! Returns whether the legend contains a QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). If such an item isn't in the legend, returns false. \see itemWithPlottable */ bool QCPLegend::hasItemWithPlottable(const QCPAbstractPlottable *plottable) const { return itemWithPlottable(plottable); } /*! Adds \a item to the legend, if it's not present already. Returns true on sucess, i.e. if the item wasn't in the list already and has been successfuly added. The legend takes ownership of the item. */ bool QCPLegend::addItem(QCPAbstractLegendItem *item) { if (!hasItem(item)) { return addElement(rowCount(), 0, item); } else return false; } /*! Removes the item with index \a index from the legend. Returns true, if successful. \see itemCount, clearItems */ bool QCPLegend::removeItem(int index) { if (QCPAbstractLegendItem *ali = item(index)) { bool success = remove(ali); simplify(); return success; } else return false; } /*! \overload Removes \a item from the legend. Returns true, if successful. \see clearItems */ bool QCPLegend::removeItem(QCPAbstractLegendItem *item) { bool success = remove(item); simplify(); return success; } /*! Removes all items from the legend. */ void QCPLegend::clearItems() { for (int i=itemCount()-1; i>=0; --i) removeItem(i); } /*! Returns the legend items that are currently selected. If no items are selected, the list is empty. \see QCPAbstractLegendItem::setSelected, setSelectable */ QList<QCPAbstractLegendItem *> QCPLegend::selectedItems() const { QList<QCPAbstractLegendItem*> result; for (int i=0; i<itemCount(); ++i) { if (QCPAbstractLegendItem *ali = item(i)) { if (ali->selected()) result.append(ali); } } return result; } /*! \internal A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter before drawing main legend elements. This is the antialiasing state the painter passed to the \ref draw method is in by default. This function takes into account the local setting of the antialiasing flag as well as the overrides set with \ref QCustomPlot::setAntialiasedElements and \ref QCustomPlot::setNotAntialiasedElements. \see setAntialiased */ void QCPLegend::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeLegend); } /*! \internal Returns the pen used to paint the border of the legend, taking into account the selection state of the legend box. */ QPen QCPLegend::getBorderPen() const { return mSelectedParts.testFlag(spLegendBox) ? mSelectedBorderPen : mBorderPen; } /*! \internal Returns the brush used to paint the background of the legend, taking into account the selection state of the legend box. */ QBrush QCPLegend::getBrush() const { return mSelectedParts.testFlag(spLegendBox) ? mSelectedBrush : mBrush; } /*! \internal Draws the legend box with the provided \a painter. The individual legend items are layerables themselves, thus are drawn independently. */ void QCPLegend::draw(QCPPainter *painter) { // draw background rect: painter->setBrush(getBrush()); painter->setPen(getBorderPen()); painter->drawRect(mOuterRect); } /* inherits documentation from base class */ double QCPLegend::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { if (!mParentPlot) return -1; if (onlySelectable && !mSelectableParts.testFlag(spLegendBox)) return -1; if (mOuterRect.contains(pos.toPoint())) { if (details) details->setValue(spLegendBox); return mParentPlot->selectionTolerance()*0.99; } return -1; } /* inherits documentation from base class */ void QCPLegend::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) mSelectedParts = selectedParts(); // in case item selection has changed if (details.value<SelectablePart>() == spLegendBox && mSelectableParts.testFlag(spLegendBox)) { SelectableParts selBefore = mSelectedParts; setSelectedParts(additive ? mSelectedParts^spLegendBox : mSelectedParts|spLegendBox); // no need to unset spItems in !additive case, because they will be deselected by QCustomPlot (they're normal QCPLayerables with own deselectEvent) if (selectionStateChanged) *selectionStateChanged = mSelectedParts != selBefore; } } /* inherits documentation from base class */ void QCPLegend::deselectEvent(bool *selectionStateChanged) { mSelectedParts = selectedParts(); // in case item selection has changed if (mSelectableParts.testFlag(spLegendBox)) { SelectableParts selBefore = mSelectedParts; setSelectedParts(selectedParts() & ~spLegendBox); if (selectionStateChanged) *selectionStateChanged = mSelectedParts != selBefore; } } /* inherits documentation from base class */ QCP::Interaction QCPLegend::selectionCategory() const { return QCP::iSelectLegend; } /* inherits documentation from base class */ QCP::Interaction QCPAbstractLegendItem::selectionCategory() const { return QCP::iSelectLegend; } /* inherits documentation from base class */ void QCPLegend::parentPlotInitialized(QCustomPlot *parentPlot) { Q_UNUSED(parentPlot) } //////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////// QCPPlotTitle //////////////////////////////////////////////////////////////////////////////////////////////////// /*! \class QCPPlotTitle \brief A layout element displaying a plot title text The text may be specified with \ref setText, theformatting can be controlled with \ref setFont and \ref setTextColor. A plot title can be added as follows: \code customPlot->plotLayout()->insertRow(0); // inserts an empty row above the default axis rect customPlot->plotLayout()->addElement(0, 0, new QCPPlotTitle(customPlot, "Your Plot Title")); \endcode Since a plot title is a common requirement, QCustomPlot offers specialized selection signals for easy interaction with QCPPlotTitle. If a layout element of type QCPPlotTitle is clicked, the signal \ref QCustomPlot::titleClick is emitted. A double click emits the \ref QCustomPlot::titleDoubleClick signal. */ /* start documentation of signals */ /*! \fn void QCPPlotTitle::selectionChanged(bool selected) This signal is emitted when the selection state has changed to \a selected, either by user interaction or by a direct call to \ref setSelected. \see setSelected, setSelectable */ /* end documentation of signals */ /*! Creates a new QCPPlotTitle instance and sets default values. The initial text is empty (\ref setText). To set the title text in the constructor, rather use \ref QCPPlotTitle(QCustomPlot *parentPlot, const QString &text). */ QCPPlotTitle::QCPPlotTitle(QCustomPlot *parentPlot) : QCPLayoutElement(parentPlot), mFont(QFont("sans serif", 13*1.5, QFont::Bold)), mTextColor(Qt::black), mSelectedFont(QFont("sans serif", 13*1.6, QFont::Bold)), mSelectedTextColor(Qt::blue), mSelectable(false), mSelected(false) { if (parentPlot) { setLayer(parentPlot->currentLayer()); mFont = QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.5, QFont::Bold); mSelectedFont = QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.6, QFont::Bold); } setMargins(QMargins(5, 5, 5, 0)); } /*! \overload Creates a new QCPPlotTitle instance and sets default values. The initial text is set to \a text. */ QCPPlotTitle::QCPPlotTitle(QCustomPlot *parentPlot, const QString &text) : QCPLayoutElement(parentPlot), mText(text), mFont(QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.5, QFont::Bold)), mTextColor(Qt::black), mSelectedFont(QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.6, QFont::Bold)), mSelectedTextColor(Qt::blue), mSelectable(false), mSelected(false) { setLayer("axes"); setMargins(QMargins(5, 5, 5, 0)); } /*! Sets the text that will be displayed to \a text. Multiple lines can be created by insertion of "\n". \see setFont, setTextColor */ void QCPPlotTitle::setText(const QString &text) { mText = text; } /*! Sets the \a font of the title text. \see setTextColor, setSelectedFont */ void QCPPlotTitle::setFont(const QFont &font) { mFont = font; } /*! Sets the \a color of the title text. \see setFont, setSelectedTextColor */ void QCPPlotTitle::setTextColor(const QColor &color) { mTextColor = color; } /*! Sets the \a font of the title text that will be used if the plot title is selected (\ref setSelected). \see setFont */ void QCPPlotTitle::setSelectedFont(const QFont &font) { mSelectedFont = font; } /*! Sets the \a color of the title text that will be used if the plot title is selected (\ref setSelected). \see setTextColor */ void QCPPlotTitle::setSelectedTextColor(const QColor &color) { mSelectedTextColor = color; } /*! Sets whether the user may select this plot title to \a selectable. Note that even when \a selectable is set to <tt>false</tt>, the selection state may be changed programmatically via \ref setSelected. */ void QCPPlotTitle::setSelectable(bool selectable) { mSelectable = selectable; } /*! Sets the selection state of this plot title to \a selected. If the selection has changed, \ref selectionChanged is emitted. Note that this function can change the selection state independently of the current \ref setSelectable state. */ void QCPPlotTitle::setSelected(bool selected) { if (mSelected != selected) { mSelected = selected; emit selectionChanged(mSelected); } } /* inherits documentation from base class */ void QCPPlotTitle::applyDefaultAntialiasingHint(QCPPainter *painter) const { applyAntialiasingHint(painter, mAntialiased, QCP::aeNone); } /* inherits documentation from base class */ void QCPPlotTitle::draw(QCPPainter *painter) { painter->setFont(mainFont()); painter->setPen(QPen(mainTextColor())); painter->drawText(mRect, Qt::AlignCenter, mText, &mTextBoundingRect); } /* inherits documentation from base class */ QSize QCPPlotTitle::minimumSizeHint() const { QFontMetrics metrics(mFont); QSize result = metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size(); result.rwidth() += mMargins.left() + mMargins.right(); result.rheight() += mMargins.top() + mMargins.bottom(); return result; } /* inherits documentation from base class */ QSize QCPPlotTitle::maximumSizeHint() const { QFontMetrics metrics(mFont); QSize result = metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size(); result.rheight() += mMargins.top() + mMargins.bottom(); result.setWidth(QWIDGETSIZE_MAX); return result; } /* inherits documentation from base class */ void QCPPlotTitle::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) { Q_UNUSED(event) Q_UNUSED(details) if (mSelectable) { bool selBefore = mSelected; setSelected(additive ? !mSelected : true); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ void QCPPlotTitle::deselectEvent(bool *selectionStateChanged) { if (mSelectable) { bool selBefore = mSelected; setSelected(false); if (selectionStateChanged) *selectionStateChanged = mSelected != selBefore; } } /* inherits documentation from base class */ double QCPPlotTitle::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const { Q_UNUSED(details) if (onlySelectable && !mSelectable) return -1; if (mTextBoundingRect.contains(pos.toPoint())) return mParentPlot->selectionTolerance()*0.99; else return -1; } /*! \internal Returns the main font to be used. This is mSelectedFont if \ref setSelected is set to <tt>true</tt>, else mFont is returned. */ QFont QCPPlotTitle::mainFont() const { return mSelected ? mSelectedFont : mFont; } /*! \internal Returns the main color to be used. This is mSelectedTextColor if \ref setSelected is set to <tt>true</tt>, else mTextColor is returned. */ QColor QCPPlotTitle::mainTextColor() const { return mSelected ? mSelectedTextColor : mTextColor; }
[ "epasonic@gmail.com" ]
epasonic@gmail.com
9858dd5d1e368fae9a6c15231503eca8b716682d
3c33b35b2c07270e22f046f09019e0db284cc0db
/network-programming-for-mswin-cdrom/chapter04/NetBIOS/wsnbdef.cpp
c98ce118beb4838ea061c23e2380d3736e222eee
[]
no_license
tpn/misc-projects
a89dc8048ceb6680ba6488a95be1b5b033d374e5
2f4d61b36c30c20281322dd6b0b98e724d11404c
refs/heads/master
2020-04-07T11:27:03.261283
2015-07-01T21:59:10
2015-07-01T21:59:10
28,649,968
3
3
null
null
null
null
UTF-8
C++
false
false
5,452
cpp
// Module Name: wsnbdef.cpp // // Description: // This file contains common definitions and functions used // by all the NetBIOS Winsock samples. // // Compile: // See wsnbclnt.cpp, wsnbsvr.cpp, and wsnbdgs.cpp for compilation // instructions. // #include <winsock2.h> #include <wsnetbs.h> #include <stdio.h> #include <stdlib.h> #include "wsnbdef.h" extern int iSocketType; // // Function: FindProtocol // // Description: // Search through the available network service providers for // AF_NETBIOS compatible protocols. The number of providers // returned will be equal to 2 times the number of LANAs we // would have in NetBIOS. This is because there is two providers // for each LANA: one datagram and one session oriented provider. // BOOL FindProtocol(WSAPROTOCOL_INFO **wsapi, DWORD *dwCount) { WSAPROTOCOL_INFO *lpProtocolBuf=NULL; DWORD dwErr, dwRet, dwBufLen=0, i; *dwCount = 0; if (SOCKET_ERROR != WSAEnumProtocols(NULL, lpProtocolBuf, &dwBufLen)) { // This should never happen as there is a NULL buffer // printf("WSAEnumProtocols failed!\n"); return FALSE; } else if (WSAENOBUFS != (dwErr = WSAGetLastError())) { // We failed for some reason not relating to buffer size - // also odd // printf("WSAEnumProtocols failed: %d\n", dwErr); return FALSE; } // Allocate the correct buffer size for WSAEnumProtocols as // well as the buffer to return // lpProtocolBuf = (WSAPROTOCOL_INFO *)GlobalAlloc(GMEM_FIXED, dwBufLen); *wsapi = (WSAPROTOCOL_INFO *)GlobalAlloc(GMEM_FIXED, dwBufLen); if ((lpProtocolBuf == NULL) || (*wsapi == NULL)) { printf("GlobalAlloc failed: %d\n", GetLastError()); return FALSE; } dwRet = WSAEnumProtocols(NULL, lpProtocolBuf, &dwBufLen); if (dwRet == SOCKET_ERROR) { printf("WSAEnumProtocols failed: %d\n", WSAGetLastError()); GlobalFree(lpProtocolBuf); return FALSE; } // Loop through the returned protocol information looking for those // that are in the AF_NETBIOS address family. // for (i=0; i < dwRet ;i++) { if (lpProtocolBuf[i].iAddressFamily == AF_NETBIOS) { if (iSocketType == SOCK_SEQPACKET) { if ( (lpProtocolBuf[i].dwServiceFlags1 & XP1_GUARANTEED_DELIVERY) && (lpProtocolBuf[i].dwServiceFlags1 & XP1_GUARANTEED_ORDER) && ((lpProtocolBuf[i].dwServiceFlags1 & XP1_CONNECTIONLESS) == 0) && (lpProtocolBuf[i].iSocketType == iSocketType)) { (*wsapi)[(*dwCount)++] = lpProtocolBuf[i]; } } else if (iSocketType == SOCK_DGRAM) { if ( !(lpProtocolBuf[i].dwServiceFlags1 & XP1_GUARANTEED_DELIVERY) && !(lpProtocolBuf[i].dwServiceFlags1 & XP1_GUARANTEED_ORDER) && ((lpProtocolBuf[i].dwServiceFlags1 & XP1_CONNECTIONLESS) != 0) && (lpProtocolBuf[i].iSocketType == iSocketType)) { (*wsapi)[(*dwCount)++] = lpProtocolBuf[i]; } } } } GlobalFree(lpProtocolBuf); return TRUE; } // // Function: CullInvalidProviders // // Description: // This routine goes through a set of NetBIOS providers and verifies they // are valid. This is done by creating and binding a socket from each // provider. Some providers allow sockets to be created but will not allow // them to be bound while others will simply fail on socket creation. // If an unusuable provider is found it is removed from the array and the // provider count is updated. // void CullInvalidProviders(WSAPROTOCOL_INFO *info, DWORD *count) { SOCKET s; SOCKADDR_NB nbaddr; BOOL bValid; int limit, rc, i, j; if (count == NULL) return; SET_NETBIOS_SOCKADDR(&nbaddr, NETBIOS_UNIQUE_NAME, "JUNKTEST", 10); limit = *count; printf("starting with %d providers\n", limit); for(i=0; i < limit ;i++) { printf("%s\n", info[i].szProtocol); } printf("\n\n"); i=0; while (i < limit) { bValid = FALSE; s = WSASocket(FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO, &info[i], 0, WSA_FLAG_OVERLAPPED); if (s != INVALID_SOCKET) { rc = bind(s, (SOCKADDR *)&nbaddr, sizeof(nbaddr)); if (rc != SOCKET_ERROR) { bValid = TRUE; } closesocket(s); } if (bValid == FALSE) { printf("Invalid entry '%s'\n", info[i].szProtocol); for(j=i; j < limit-1 ;j++) { memcpy(&info[j], &info[j+1], sizeof(WSAPROTOCOL_INFO)); } limit--; (*count)--; } else { i++; } } printf("resulting provider count: %d\n", *count); return; }
[ "trent@trent.me" ]
trent@trent.me
292bda8827edc6622c5176143f6542875a8c3b68
1da3f575d8e31e4b6198f173cee53721fbc111a1
/include/cps/rapidxml/rapidxml_iterators.hpp
b6ad1ef2664546bc4ebef8aaa3c8dcb006eaa879
[ "MIT" ]
permissive
clusterpoint/cpp-client-api
4a41f1a1a3508c1a2ca7b1c72dfe1d1d9c735215
605825f0d46678c1ebdabb006bc0c138e4b0b7f3
refs/heads/master
2021-01-18T23:14:33.136008
2017-02-16T12:29:27
2017-02-16T12:29:27
38,151,345
1
0
null
null
null
null
UTF-8
C++
false
false
3,466
hpp
/** \internal */ #ifndef RAPIDXML_ITERATORS_HPP_INCLUDED #define RAPIDXML_ITERATORS_HPP_INCLUDED // Copyright (C) 2006, 2009 Marcin Kalicinski // Version 1.13 // Revision $DateTime: 2009/05/13 01:46:17 $ //! \file rapidxml_iterators.hpp This file contains rapidxml iterators #include "rapidxml.hpp" namespace rapidxml { //! Iterator of child nodes of xml_node template<class Ch> class node_iterator { public: typedef typename xml_node<Ch> value_type; typedef typename xml_node<Ch> &reference; typedef typename xml_node<Ch> *pointer; typedef std::ptrdiff_t difference_type; typedef std::bidirectional_iterator_tag iterator_category; node_iterator() : m_node(0) { } node_iterator(xml_node<Ch> *node) : m_node(node->first_node()) { } reference operator *() const { assert(m_node); return *m_node; } pointer operator->() const { assert(m_node); return m_node; } node_iterator &operator++() { assert(m_node); m_node = m_node->next_sibling(); return *this; } node_iterator operator++(int) { node_iterator tmp = *this; ++this; return tmp; } node_iterator &operator--() { assert(m_node && m_node->previous_sibling()); m_node = m_node->previous_sibling(); return *this; } node_iterator operator--(int) { node_iterator tmp = *this; ++this; return tmp; } bool operator ==(const node_iterator<Ch> &rhs) { return m_node == rhs.m_node; } bool operator !=(const node_iterator<Ch> &rhs) { return m_node != rhs.m_node; } private: xml_node<Ch> *m_node; }; //! Iterator of child attributes of xml_node template<class Ch> class attribute_iterator { public: typedef typename xml_attribute<Ch> value_type; typedef typename xml_attribute<Ch> &reference; typedef typename xml_attribute<Ch> *pointer; typedef std::ptrdiff_t difference_type; typedef std::bidirectional_iterator_tag iterator_category; attribute_iterator() : m_attribute(0) { } attribute_iterator(xml_node<Ch> *node) : m_attribute(node->first_attribute()) { } reference operator *() const { assert(m_attribute); return *m_attribute; } pointer operator->() const { assert(m_attribute); return m_attribute; } attribute_iterator &operator++() { assert(m_attribute); m_attribute = m_attribute->next_attribute(); return *this; } attribute_iterator operator++(int) { attribute_iterator tmp = *this; ++this; return tmp; } attribute_iterator &operator--() { assert(m_attribute && m_attribute->previous_attribute()); m_attribute = m_attribute->previous_attribute(); return *this; } attribute_iterator operator--(int) { attribute_iterator tmp = *this; ++this; return tmp; } bool operator ==(const attribute_iterator<Ch> &rhs) { return m_attribute == rhs.m_attribute; } bool operator !=(const attribute_iterator<Ch> &rhs) { return m_attribute != rhs.m_attribute; } private: xml_attribute<Ch> *m_attribute; }; } #endif
[ "aigars@clusterpoint.com" ]
aigars@clusterpoint.com
6d5355741af9ac42361038b76eabc440b41fc8cb
1e5be978c24c359a7c4b858370d183b45e168420
/Classes/ProgressBar.cpp
20e37e77bf7d1bdd43db65a756c548d7f055c2ac
[]
no_license
JeremyAzoomee/Azoomee2
d752ea7512e048d7b22db38be2ec21ab046520e5
f57292c18de9a9138bd3635893bcd23fc171a21f
refs/heads/master
2021-05-18T14:51:23.389050
2020-03-13T15:59:09
2020-03-13T15:59:09
251,271,764
0
0
null
null
null
null
UTF-8
C++
false
false
1,658
cpp
// // ProgressBar.cpp // Azoomee // // Created by Macauley on 16/07/2019. // #include "ProgressBar.h" #include <AzoomeeCommon/UI/LayoutParams.h> #include <AzoomeeCommon/UI/Style.h> using namespace cocos2d; NS_AZOOMEE_BEGIN bool ProgressBar::init() { if(!Super::init()) { return false; } setLayoutType(Type::HORIZONTAL); setAnchorPoint(Vec2::ANCHOR_MIDDLE); setNumberOfSteps(3); setProgress(1); return true; } void ProgressBar::onEnter() { Super::onEnter(); } void ProgressBar::onExit() { Super::onExit(); } void ProgressBar::setNumberOfSteps(int steps) { if(steps < 2 || _progressIcons.size() == steps) { return; } this->removeAllChildren(); _progressIcons.clear(); for(int i = 0; i < steps; i++) { ui::ImageView* progressIcon = ui::ImageView::create((i == 0 || i == steps - 1) ? "res/onboarding/progress_bar_end.png" : "res/onboarding/progress_bar_middle.png"); progressIcon->setNormalizedPosition(Vec2::ANCHOR_MIDDLE); progressIcon->setRotation(i == steps - 1 ? 180 : 0); progressIcon->setLayoutParameter(CreateCenterVerticalLinearLayoutParam(ui::Margin(3,0,3,0))); progressIcon->setColor(Style::Color::strongPink); progressIcon->setOpacity(100); this->addChild(progressIcon); _progressIcons.pushBack(progressIcon); this->setContentSize(this->getContentSize() + Size(progressIcon->getContentSize().width + 6, i == 0 ? progressIcon->getContentSize().height : 0)); } } void ProgressBar::setProgress(int progress) { progress = MIN(progress, (int)_progressIcons.size()); for(int i = 0; i < _progressIcons.size(); i++) { _progressIcons.at(i)->setOpacity(i < progress ? 255 : 100); } } NS_AZOOMEE_END
[ "mitch@two-tails.com" ]
mitch@two-tails.com
5b2bd059344d826d9c8ae59fb70a82e6d526f2e0
45193c63e2eeff53046acd781dedb10434b8b94d
/example/yaul/tml/times.cpp
d0636d8c8179692cf5a29026d9777ea853904e66
[ "BSL-1.0" ]
permissive
ptomulik/yaul-tml
b3d39274f9c8b75f9fc2da05404f18f2a80b190b
2b8bf3f88742996bd8199375678cdebd6e3206d9
refs/heads/master
2021-01-22T13:41:47.026647
2015-03-16T15:10:10
2015-03-16T15:10:10
31,795,386
0
0
null
null
null
null
UTF-8
C++
false
false
768
cpp
// Copyright (C) 2014, Pawel Tomulik <ptomulik@meil.pw.edu.pl> // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) /** // doc: yaul/tml/times.cpp {{{ * \file yaul/tml/times.cpp * \example yaul/tml/times.cpp * \brief Usage example for \ref yaul::tml::times */ // }}} // [Code] #include <yaul/tml/times.hpp> #include <yaul/tml/int.hpp> #include <yaul/tml/long.hpp> using namespace yaul::tml; typedef times<int_<2>, long_<3>, int_<4> >::type r; #include <yaul/tml/is_same.hpp> static_assert(is_same<r, long_<24> >::value, ""); // [Code] int main() { return 0; } // vim: set expandtab tabstop=2 shiftwidth=2: // vim: set foldmethod=marker foldcolumn=4:
[ "ptomulik@meil.pw.edu.pl" ]
ptomulik@meil.pw.edu.pl
ff04af840e5d3d9e3ca5f0823d4ec331760d0c61
2c97fc62eab1f78c4a5d1a83826a75209ebb6d39
/绍兴一中集训/7.26/杨培源/laser/laser2.cpp
b38bf75c356515c07ad6c92cf4ded6aa724f9888
[]
no_license
GaisaiYuno/My-OI-Code-1
f32932f1004e593ffee0b0e97cffd25d9e2851bf
c57ec4e2aaa1d770ee9490a42710d1cf71a153f2
refs/heads/master
2020-12-31T23:13:46.913582
2020-02-08T01:09:46
2020-02-08T01:09:46
null
0
0
null
null
null
null
GB18030
C++
false
false
1,844
cpp
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define maxn 10 #define maxm 100000 using namespace std; typedef long long ll; inline void qread(int &x){ x=0; int sign=1; char c=getchar(); while(c<'0'||c>'9'){ if(c=='-') sign=-1; c=getchar(); } while(c>='0'&&c<='9'){ x=x*10+c-'0'; c=getchar(); } x=x*sign; } inline void qprint(int x){ if(x<0){ putchar('-'); qprint(-x); }else if(x==0){ putchar('0'); return; }else{ if(x>=10) qprint(x/10); putchar('0'+x%10); } } int n,m,q; int gcd(int a,int b){ return b==0?a:gcd(b,a%b); } struct point{ int x; int y; point(){ } point(int _x,int _y){ x=_x; y=_y; } friend bool operator == (point p,point q){ return p.x==q.x&&p.y==q.y; } friend bool operator < (point p,point q){ if(p.x==q.x) return p.y<q.y; else return p.x<q.x; } }; point a[maxn+5],b[maxm+5]; bool mark[maxm+5]; int query(int x,int y){ int cnt=0; for(int j=1;j<=m;j++){ if(x==b[j].x&&y==b[j].y) cnt++; } for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(x==b[j].x&&y==b[j].y) continue; //这种情况要特判,否则会被不同直线算多次 if((ll)a[i].x*(y-b[j].y)==(ll)a[i].y*(x-b[j].x)){ cnt++; } } } return cnt; } int main(){ // freopen("laser.in","r",stdin); // freopen("laser.ans","w",stdout); int xx,yy; qread(n); for(int i=1;i<=n;i++){ qread(a[i].x); qread(a[i].y); int g=gcd(a[i].x,a[i].y); a[i].x/=g; a[i].y/=g; } sort(a+1,a+1+n); n=unique(a+1,a+1+n)-a-1; qread(m); for(int i=1;i<=m;i++){ qread(b[i].x); qread(b[i].y); } qread(q); for(int i=1;i<=q;i++){ qread(xx); qread(yy); // printf("query %d (%d,%d): ",i,xx,yy); qprint(query(xx,yy)); putchar('\n'); } } /* 3 1 1 1 2 1 3 3 1 1 1 2 1 3 3 0 0 -1 0 -2 0 4 1 1 1 2 1 3 4 4 3 1 1 1 2 1 3 3 0 0 -1 0 -2 0 */
[ "1980878786@qq.com" ]
1980878786@qq.com
d32776e5062bf8b6d7fcf884b9e9b078d238c2c3
e82891164da47342f3cd832b38e79bbe41720858
/include/Function.h
38167b83e49d7db7ddd8a9d102afbde68041e2e6
[]
no_license
Maxim-Doronin/NeuralNetwork
800d9c50432b22454ec754296242da73fc99013b
f19aeb833f2d5c5882f9fb64e5441e1ab093e78d
refs/heads/master
2020-08-01T07:15:16.014929
2017-06-11T12:31:39
2017-06-11T12:31:39
73,583,461
0
0
null
2017-02-20T17:34:59
2016-11-12T23:00:54
C++
UTF-8
C++
false
false
727
h
#ifndef _FUNCTION_H_ #define _FUNCTION_H_ #include <cmath> class Function { public: Function() {}; virtual ~Function() {}; virtual double Process(double x) = 0; virtual double Derivative(double x) = 0; }; class Linear : public Function { public: Linear() {}; virtual ~Linear() {}; virtual double Process(double x); virtual double Derivative(double x); }; class Sigmoid : public Function { public: Sigmoid() {}; virtual ~Sigmoid() {}; virtual double Process(double x); virtual double Derivative(double x); }; class BipolarSigmoid : public Function { public: BipolarSigmoid() {}; virtual ~BipolarSigmoid() {}; virtual double Process(double x); virtual double Derivative(double x); }; #endif // !_FUNCTION_H_
[ "doro156@me.com" ]
doro156@me.com
711440336cf79f9a4982baa04fcd9428ea110c54
cfe27800398bc97bd3f9ac72dc06bbb0462eeb5d
/src/include/solusek/MDatabaseHandle.h
c85016ff7cf3609326c5e29a32746fa63a2c7ad2
[ "Apache-2.0" ]
permissive
aubriaco/solusek
b511011f36cc601d4f109ebbab6dbe69da90d609
7c4a87877022e8dc2be59d4be83456e3897e1cc9
refs/heads/master
2023-02-09T15:42:28.234316
2023-02-01T19:28:28
2023-02-01T19:28:28
229,855,121
0
1
Apache-2.0
2021-08-23T20:58:43
2019-12-24T02:24:44
C++
UTF-8
C++
false
false
654
h
/* ** Solusek by Alessandro Ubriaco ** ** Copyright (c) 2019 Alessandro Ubriaco ** */ #ifndef __M_DATABASE_HANDLE_INCLUDED__ #define __M_DATABASE_HANDLE_INCLUDED__ #include <string> #include <vector> namespace solusek { class MDatabaseHandle { public: virtual std::string getID() = 0; virtual void setID(const std::string& id) = 0; virtual std::vector< std::vector<std::string> > getData() = 0; virtual unsigned int size() = 0; virtual void dispose() = 0; virtual std::string disposeAndGetError() = 0; virtual std::string disposeAndGetID() = 0; virtual bool isError() = 0; virtual std::string getError() = 0; }; } #endif
[ "alessandro.ubriaco@gmail.com" ]
alessandro.ubriaco@gmail.com
cf8de855f040415a2ada32bdec0d8e3403ef8abb
a8dc575097c5e0e87cfd652ff2fa6bdd66e96b5c
/HOJ/1583/main.cpp
10e249a944ad0859f71744a6346f6eec98985d6d
[]
no_license
theodore/olympiads
7066c4eada4b6a8379cb0140e08f727e5f7a19aa
5b6cdece84527542524b75b4e996ac80b3cdfa55
refs/heads/master
2020-06-02T22:17:30.812486
2019-06-11T08:24:09
2019-06-11T08:24:09
191,326,084
0
0
null
null
null
null
UTF-8
C++
false
false
869
cpp
#include <cstdio> #include <cassert> #ifdef unix # define lld "%lld" #else # define lld "%I64d" #endif const int N(4000010); const long long INF(-1llu>>1); int a[2], b[2], d[2]; long long l[2][N]; int h[2], t[2]; long long f(long long c, int x) { return a[x] * c / d[x] + b[x]; } int main() { int s, n; scanf("%d%d", &s, &n); for (int i = 0; i < 2; ++i) scanf("%d%d%d", a + i, b + i, d + i); long long la = 0; l[0][t[0]++] = s; while (n--) { #ifdef DB printf("n = %d\n", n); #endif static long long min[2]; static bool d; min[0] = (h[0] == t[0]) ? INF : l[0][h[0]]; min[1] = (h[1] == t[1]) ? INF : l[1][h[1]]; assert(min[0] != INF || min[1] != INF); d = min[1] < min[0]; ++h[d]; if (la == min[d]) ++n; else { l[0][t[0]++] = f(min[d], 0); l[1][t[1]++] = f(min[d], 1); la = min[d]; } } printf(lld"\n", la); return 0; }
[ "theodoreyou@gmail.com" ]
theodoreyou@gmail.com
5a84d82ae6b79d78c575f0f4b11b07d762296870
b85b494c0e8c1776d7b4643553693c1563df4b0b
/Chapter 7/task10.cpp
5a76f5d0c0301a4bbfee14ccb5b792b49f42aa45
[]
no_license
lut1y/Stephen_Prata_Ansi_C_plusplus-6thE-Code-Example-and-Answers
c9d1f79b66ac7ed7f48b3ce85de3c7ae9337cb58
e14dd78639b1016ed8f842e8adaa597347c4446e
refs/heads/master
2023-07-05T13:08:51.860207
2021-08-12T16:02:34
2021-08-12T16:02:34
393,147,210
0
0
null
null
null
null
UTF-8
C++
false
false
1,100
cpp
#include <iostream> double calcutate(double, double, double (*pf)(double, double)); double add(double x, double y); double multiple(double x, double y); double divide(double x, double y); int task10() { double q = calcutate(2.5, 10.4, add); std::cout << "Add: " << q << std::endl; q = calcutate(2.5, 10.4, multiple); std::cout << "Multiply: "<< q << std::endl; double r; /*std::cout << "Enter pair x and y: "; while ((std::cin >> q >> r) && (q != 0 && r != 0)) { std::cin.ignore(); std::cout << "Add: " << calcutate(q, r, add) << std::endl; std::cout << "Multiply: "<< calcutate(q, r, multiple) << std::endl; std::cout << "Enter next pair x and y: "; }*/ double (*pf[3]) (double, double) = {add, multiple, divide}; for(int i=0; i<3; i++) { std::cout << calcutate(8, 4, pf[i]) << std::endl; } return 0; } double calcutate(double x, double y, double (*pf)(double, double)) { return (*pf) (x, y); } double add(double x, double y) { return x + y; } double multiple(double x, double y) { return x * y; } double divide(double x, double y) { return x / y; }
[ "lut1y@mail.ru" ]
lut1y@mail.ru
98688ec544a335cc097901f21a844d2dadcb13f2
1797d13fdb47f24684e74246119b187b4fdd6a24
/Agente Viajero - AG/main.cpp
eb6a7b957055dfa59eafcc66f9f28cae75f7505a
[]
no_license
JazmineAlfaro/Inteligencia-Artificial
4f605e5ab9a54c40afe1c575008e65cad28768b5
232cb5014e7b3ab4b4a3ac77718f5547fb388ea3
refs/heads/master
2020-05-07T12:23:12.698451
2019-06-25T04:14:07
2019-06-25T04:14:07
180,502,606
0
0
null
null
null
null
ISO-8859-10
C++
false
false
11,581
cpp
#define GLUT_DISABLE_ATEXIT_HACK #include <windows.h> #include <utility> #include <time.h> #include <iostream> #include <list> #include <algorithm> #include <string.h> #include <math.h> #include <vector> #include<GL/glut.h> #define KEY_ESC 27 #define KEY_IZQ 97 #define KEY_DER 100 #define KEY_UP 119 #define KEY_DWN 115 #define KEY_ADD 9 ///tab #define KEY_REMOV 8 ///retro #define KEY_INTRO 13 using namespace std; vector<int> num_iteraciones = {10,100,1000,2000,5000,10000,20000,50000}; int rdtsc(){ __asm__ __volatile__("rdtsc"); } float randNum(float LO, float HI){ srand(rdtsc()); float r = LO + static_cast <float> (rand()) / (static_cast <float> (RAND_MAX/(HI-LO))); return r; } class Node; class Edge; class Graph; struct Node { float m_data; int m_x,m_y; vector<Edge*> m_edges; float dis(Node *aux){ return sqrt(pow(aux->m_x-m_x,2)+pow(aux->m_y-m_y,2)); } }; struct Edge { Node* m_nodes[2]; float m_data; void print(){ cout<<m_nodes[0]->m_data<<" "<<m_data<<" "<<m_nodes[1]->m_data<<endl; } }; class Graph { public: vector<Node*> m_nodes; void insertNode(float node, int x0, int y0) { Node *t = new Node; t->m_data = node; t->m_x = x0; t->m_y = y0; m_nodes.push_back(t); } void insertEdge(float edge, Node* a, Node* b) { Edge *t = new Edge; t->m_data = edge; t->m_nodes[0] = a; t->m_nodes[1] = b; a->m_edges.push_back(t); Edge *p = new Edge; p->m_data = edge; p->m_nodes[0] = b; p->m_nodes[1] = a; b->m_edges.push_back(p); } Graph(){;} Graph(int tam){ for(int i=1;i<=tam;i++){ int a = randNum(-150+tam*2,150-tam*2); int b = randNum(-150+tam*2,150-tam*2); insertNode(i-1,a-i*8,b+i*4); } int num=0; for(int i=0;i<tam;++i){ for(int j =1+i;j<tam;++j){ insertEdge(m_nodes[i]->dis(m_nodes[j]),m_nodes[i],m_nodes[j]); } } } float find_weight(int index_node_a, int index_node_b){ for(int i=0;i< (m_nodes[index_node_a]->m_edges).size();++i){ if( (m_nodes[index_node_a]->m_edges[i]->m_nodes[1])->m_data == index_node_b ){ return (m_nodes[index_node_a]->m_edges[i])->m_data; } } } }; Graph* grafo; class Individuo{ private: void calcular_aptitud(){ aptitud = 0; for ( int i = 1 ; i < genes.size() ; ++i){ short pos_prev = genes[i-1]; short pos_cur = genes[i]; aptitud += grafo->find_weight( pos_prev , pos_cur ); } } public: vector<short> genes; //orden de las ciudades que lo componen al individuo(genes) float aptitud; Individuo( vector<short> genes_): genes(genes_.begin(), genes_.end()){ calcular_aptitud(); } void print(){ for(int i = 0 ; i < genes.size() ; ++i){ cout << genes[i] << " "; }cout << endl << " - aptitud: " << aptitud << endl; } }; bool comparacion( Individuo* ind1, Individuo* ind2 ){ return ( ind1->aptitud < ind2->aptitud ); } class Algoritmo_genetico{ private: void swap_rand_values(vector<short>& individuo){ int pos_swap1 = rand()%(num_ciudades-2)+1; int pos_swap2 = rand()%(num_ciudades-2)+1; while ( pos_swap2 == pos_swap1 ) pos_swap2 = rand()%(num_ciudades-2)+1; short aux = individuo[pos_swap1]; individuo[pos_swap1] = individuo[pos_swap2]; individuo[pos_swap2] = aux; } float mutacion(){ int i, j; for( i = poblacion.size(), j=0 ; i < tam_poblacion ; ++i, ++j){ if (j >= num_elite) j = 0;//generar nuevos pobladores a parrtir de la elite vector<short> individuo(poblacion[j]->genes.begin(), poblacion[j]->genes.end()); swap_rand_values(individuo); poblacion.push_back(new Individuo(individuo)); } float average = 0; for( i = 0 ; i < poblacion.size() ; ++i){ average += poblacion[i]->aptitud; } return average/tam_poblacion; } float seleccion(){ sort(poblacion.begin(), poblacion.end(), comparacion); //ordeno segun aptitud poblacion.erase(poblacion.begin()+num_elite, poblacion.end()); //escojo a la elite return poblacion[0]->aptitud; } public: vector<Individuo*> poblacion; int tam_poblacion; int num_generaciones; int num_elite; //individuos que permaneces despues de cada seleccion int cur_generacion; int num_ciudades; vector<float> best_path; vector<float> average_path; Algoritmo_genetico( int tam_poblacion_, int num_generaciones_, int num_elite_, int num_ciudades_): tam_poblacion(tam_poblacion_), num_generaciones(num_generaciones_), num_elite(num_elite_), num_ciudades(num_ciudades_), cur_generacion(0){ vector<short> ciudades_plantilla(num_ciudades); for(int i = 0; i < num_ciudades; ++i){ ciudades_plantilla[i] = i;//ciudades = {0,1,2,3,4} } float average=0; for(int i = 0; i < tam_poblacion; ++i){//generacion aleatoria del vector de ciudades para los primeros individuos de la poblaicion vector<short> ciudades(ciudades_plantilla.begin(), ciudades_plantilla.end()); vector<short> individuo( num_ciudades+1 ); individuo[0] = individuo[ individuo.size()-1 ] = rand()%num_ciudades; ciudades.erase(ciudades.begin() + individuo[0], ciudades.begin() + individuo[0]+1); for(int j = 1; j < individuo.size() - 1 ; ++j){ int pos = rand()%ciudades.size(); individuo[j] = ciudades[pos]; ciudades.erase(ciudades.begin() + pos, ciudades.begin() + pos+1); } poblacion.push_back(new Individuo(individuo)); average+=poblacion[poblacion.size()-1]->aptitud;//para el promedio } //para aņadir el mejor y el promedio sort(poblacion.begin(), poblacion.end(), comparacion); best_path.push_back(poblacion[0]->aptitud); average_path.push_back(average/tam_poblacion); } void generar_poblacion( int iteraciones = 1 ){ cur_generacion += 1; for ( int i=0; i < iteraciones - 1 ; ++i){ seleccion(); mutacion(); } best_path.push_back( seleccion() ); average_path.push_back( mutacion() ); //print_poblacion(); } void print_poblacion(){ cout << "generacion actual: " << cur_generacion << endl; for(int i = 0 ; i < poblacion.size() ; ++i){ poblacion[i]->print(); }cout << endl << endl; } }; Algoritmo_genetico* ag; void displayPoint(){ glPointSize(5.0f); glBegin(GL_POINTS); glColor3f(0.0f,0.0f,0.0f); glBegin(GL_POINTS); for(int i=0;i<grafo->m_nodes.size();++i){ glVertex2i(grafo->m_nodes[i]->m_x,grafo->m_nodes[i]->m_y); } glEnd(); } void displayEdges(){ glPushMatrix(); glLineWidth(1.0f); glEnable(GL_LINE_SMOOTH); glColor3f(0.0f,1.0f,0.0f); glBegin(GL_LINES); for(int i=0;i<grafo->m_nodes.size();++i){ for(int j=0;j<grafo->m_nodes[i]->m_edges.size();++j){ glVertex2i(grafo->m_nodes[i]->m_x, grafo->m_nodes[i]->m_y); glVertex2i(grafo->m_nodes[i]->m_edges[j]->m_nodes[1]->m_x, grafo->m_nodes[i]->m_edges[j]->m_nodes[1]->m_y); } } glEnd(); glPopMatrix(); glPushMatrix(); glColor3f(1.0f,0.0f,0.0f); glBegin(GL_LINES); for(int i=1;i< (ag->poblacion[0]->genes).size() ;++i){ short pos = ag->poblacion[0]->genes[i-1]; short pos2 = ag->poblacion[0]->genes[i]; glVertex2i( grafo->m_nodes[pos]->m_x , grafo->m_nodes[pos]->m_y ); glVertex2i( grafo->m_nodes[pos2]->m_x , grafo->m_nodes[pos2]->m_y ); } glEnd(); glPopMatrix(); } void OnMouseClick(int button, int state, int x, int y) { if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN) { } } void OnMouseMotion(int x, int y) { //opcional //hacer algo x,z cuando se mueve el mouse } void idle(){ // AGREGAR ESTA FUNCION glutPostRedisplay(); } //funcion llamada a cada imagen void glPaint(void) { //El fondo de la escena al color initial glClear(GL_COLOR_BUFFER_BIT); //CAMBIO glLoadIdentity(); glOrtho(-300.0f, 300.0f,-300.0f, 300.0f, -1.0f, 1.0f); displayEdges(); displayPoint(); //doble buffer, mantener esta instruccion al fin de la funcion glutSwapBuffers(); } // //en el caso que la ventana cambie de tamaņo GLvoid window_redraw(GLsizei width, GLsizei height) { glViewport(0, 0, width, height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); } void load_path(); GLvoid window_key(unsigned char key, int x, int y) { ; } void display() { glClear(GL_COLOR_BUFFER_BIT); //CAMBIO glLoadIdentity(); glOrtho(-300.0f, 300.0f, -300.0f, 300.0f, -1.0f, 1.0f); glClearColor(1.0f, 1.0f, 1.0f, 0.0f); //(R, G, B, transparencia) en este caso un fondo negro glutInitWindowPosition(350, 50); //modo projeccion glMatrixMode(GL_PROJECTION); glLoadIdentity(); glLineWidth(2.0f); glBegin(GL_LINES); glEnable(GL_LINE_SMOOTH); glColor3f(0.0f, 0.0f, 0.0f); glVertex2i(-250,-250); glVertex2i(250,-250); glVertex2i(-250,-250); glVertex2i(-250,250); ///dibujar los ejes for(int i=1;i<=16;++i){ glVertex2i(-250+i*30,-245); glVertex2i(-250+i*30,-255); } for(int i=1;i<=16;++i){ glVertex2i(-255,-250+i*30); glVertex2i(-245,-250+i*30); } glEnd(); ///mejores glPointSize(5.0f); glBegin(GL_POINTS); for(int i=0; i < ag->best_path.size();++i){ glColor3f(1.0f,0.0f,1.0f); glVertex2f(-250+(i+1)*30,-310+ ag->best_path[i]/10); } for(int i=0;i<ag->average_path.size();++i){ glColor3f(0.0f,0.0f,1.0f); glVertex2f(-250+(i+1)*30,-310+ag->average_path[i]/10); } glEnd(); glBegin(GL_LINES); glEnable(GL_LINE_SMOOTH); glColor3f(1.0f, 0.0f, 1.0f); for(int i=0; i < ag->best_path.size()-1 ;++i){ glVertex2f(-250+(i+1)*30,-310+ag->best_path[i]/10); glVertex2f(-250+(i+2)*30,-310+ag->best_path[i+1]/10); } glColor3f(0.0f, 0.0f, 1.0f); for(int i=0;i<ag->average_path.size()-1;++i){ glVertex2f(-250+(i+1)*30,-310+ag->average_path[i]/10); glVertex2f(-250+(i+2)*30,-310+ag->average_path[i+1]/10); } glEnd(); glutSwapBuffers(); } //inicializacion de OpenGL // void init_GL(void) { glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB); glutInitWindowSize(600, 600); //tamaņo de la ventana glutInitWindowPosition(50, 50); //posicion de la ventana glutCreateWindow("Grafo"); //titulo de la ventana glClearColor(1.0f, 1.0f, 1.0f, 0.0f); //(R, G, B, transparencia) en este caso un fondo de la escena negro //modo projeccion glMatrixMode(GL_PROJECTION); glLoadIdentity(); glutDisplayFunc(glPaint); glutReshapeFunc(&window_redraw); glutIdleFunc(&idle); //init_GL(); //funcion de inicializacion de OpenGL glutInitWindowPosition(650, 50); //posicion de la ventana glutCreateWindow("Grafico"); // Create a window 2 glutDisplayFunc(display); } int main(int argc, char** argv) { srand(time(NULL)); int num_ciudades = 10; int tam_poblacion = 20; int num_generaciones = 20; int num_elite = tam_poblacion/2; //20% de la poblacion sera elite grafo = new Graph(num_ciudades); ag = new Algoritmo_genetico( tam_poblacion , num_generaciones , num_elite , num_ciudades ); ///*****************bucle para las iteraciones de generar poblaicon***************** for(int i = 0; i<num_iteraciones.size(); ++i){ ag->generar_poblacion(num_iteraciones[i]); } for(int i = 0; i< ag->best_path.size(); ++i){ cout << ag->best_path[i] << " " << ag->average_path[i] << endl; } //Inicializacion de la GLUT glutInit(&argc, argv); init_GL(); //funcion de inicializacion de OpenGL glutMainLoop(); //bucle de rendering //no escribir nada abajo de mainloop }
[ "noreply@github.com" ]
JazmineAlfaro.noreply@github.com
348a3d4c017de9fc2a709d509a82a1d5e19b15bf
45c84e64a486a3c48bd41a78e28252acbc0cc1b0
/src/third_party/blink/renderer/core/loader/frame_loader.h
035c5e7f1f734af32eabe4b46b4c474eafecdba6
[ "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-only", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft" ]
permissive
stanleywxc/chromium-noupdator
47f9cccc6256b1e5b0cb22c598b7a86f5453eb42
637f32e9bf9079f31430c9aa9c64a75247993a71
refs/heads/master
2022-12-03T22:00:20.940455
2019-10-04T16:29:31
2019-10-04T16:29:31
212,851,250
1
2
MIT
2022-11-17T09:51:04
2019-10-04T15:49:33
null
UTF-8
C++
false
false
13,457
h
/* * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. * (http://www.torchmobile.com/) * Copyright (C) Research In Motion Limited 2009. All rights reserved. * Copyright (C) 2011 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_FRAME_LOADER_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_FRAME_LOADER_H_ #include <memory> #include "base/bind_helpers.h" #include "base/macros.h" #include "third_party/blink/public/common/user_agent/user_agent_metadata.h" #include "third_party/blink/public/mojom/loader/request_context_frame_type.mojom-blink.h" #include "third_party/blink/public/platform/scheduler/web_scoped_virtual_time_pauser.h" #include "third_party/blink/public/web/web_document_loader.h" #include "third_party/blink/public/web/web_frame_load_type.h" #include "third_party/blink/public/web/web_navigation_type.h" #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/core/dom/document.h" #include "third_party/blink/renderer/core/frame/frame_types.h" #include "third_party/blink/renderer/core/frame/sandbox_flags.h" #include "third_party/blink/renderer/core/loader/frame_loader_state_machine.h" #include "third_party/blink/renderer/core/loader/frame_loader_types.h" #include "third_party/blink/renderer/core/loader/history_item.h" #include "third_party/blink/renderer/platform/heap/handle.h" #include "third_party/blink/renderer/platform/loader/fetch/fetch_client_settings_object.h" #include "third_party/blink/renderer/platform/wtf/forward.h" #include "third_party/blink/renderer/platform/wtf/hash_set.h" namespace blink { class ContentSecurityPolicy; class DocumentLoader; class LocalFrame; class Frame; class LocalFrameClient; class ProgressTracker; class ResourceRequest; class TracedValue; struct FrameLoadRequest; struct WebNavigationInfo; struct WebNavigationParams; CORE_EXPORT bool IsBackForwardLoadType(WebFrameLoadType); CORE_EXPORT bool IsReloadLoadType(WebFrameLoadType); class CORE_EXPORT FrameLoader final { DISALLOW_NEW(); public: explicit FrameLoader(LocalFrame*); ~FrameLoader(); void Init(); ResourceRequest ResourceRequestForReload( WebFrameLoadType, ClientRedirectPolicy = ClientRedirectPolicy::kNotClientRedirect); ProgressTracker& Progress() const { return *progress_tracker_; } // Starts a navigation. It will eventually send the navigation to the // browser process, or call LoadInSameDocument for same-document navigation. // For reloads, an appropriate WebFrameLoadType should be given. Otherwise, // kStandard should be used (and the final WebFrameLoadType // will be computed). void StartNavigation(const FrameLoadRequest&, WebFrameLoadType = WebFrameLoadType::kStandard); // Called when the browser process has asked this renderer process to commit // a navigation in this frame. This method skips most of the checks assuming // that browser process has already performed any checks necessary. // See WebNavigationParams for details. void CommitNavigation( std::unique_ptr<WebNavigationParams> navigation_params, std::unique_ptr<WebDocumentLoader::ExtraData> extra_data, base::OnceClosure call_before_attaching_new_document = base::DoNothing::Once(), bool is_javascript_url = false); // Called before the browser process is asked to navigate this frame, to mark // the frame as loading and save some navigation information for later use. bool WillStartNavigation(const WebNavigationInfo& info, bool is_history_navigation_in_new_frame); // This runs the "stop document loading" algorithm in HTML: // https://html.spec.whatwg.org/C/browsing-the-web.html#stop-document-loading // Note, this function only cancels ongoing navigation handled through // FrameLoader. You might also want to call // LocalFrameClient::AbortClientNavigation() if appropriate. // // Warning: StopAllLoaders() may detach the LocalFrame to which this // FrameLoader belongs. Callers need to be careful about checking the // existence of the frame after StopAllLoaders() returns. void StopAllLoaders(); // Notifies the client that the initial empty document has been accessed, and // thus it is no longer safe to show a provisional URL above the document // without risking a URL spoof. The client must not call back into JavaScript. void DidAccessInitialDocument(); DocumentLoader* GetDocumentLoader() const { return document_loader_.Get(); } void SetDefersLoading(bool); void DidExplicitOpen(); String UserAgent() const; blink::UserAgentMetadata UserAgentMetadata() const; void DispatchDidClearWindowObjectInMainWorld(); void DispatchDidClearDocumentOfWindowObject(); void DispatchDocumentElementAvailable(); void RunScriptsAtDocumentElementAvailable(); // The following sandbox flags will be forced, regardless of changes to the // sandbox attribute of any parent frames. void ForceSandboxFlags(WebSandboxFlags flags) { forced_sandbox_flags_ |= flags; } // Includes the collection of forced, inherited, and FrameOwner's sandbox // flags. Note: with FeaturePolicyForSandbox the frame owner's sandbox flags // only includes the flags which are *not* implemented as feature policies // already present in the FrameOwner's ContainerPolicy. WebSandboxFlags EffectiveSandboxFlags() const; // Modifying itself is done based on |fetch_client_settings_object|. // |document_for_logging| is used only for logging, use counters, // UKM-related things. void ModifyRequestForCSP( ResourceRequest&, const FetchClientSettingsObject* fetch_client_settings_object, Document* document_for_logging, network::mojom::RequestContextFrameType) const; void ReportLegacyTLSVersion(const KURL& url, bool is_subresource, bool is_ad_resource); Frame* Opener(); void SetOpener(LocalFrame*); const AtomicString& RequiredCSP() const { return required_csp_; } void RecordLatestRequiredCSP(); void Detach(); void FinishedParsing(); enum class NavigationFinishState { kSuccess, kFailure }; void DidFinishNavigation(NavigationFinishState); void DidFinishSameDocumentNavigation(const KURL&, WebFrameLoadType, HistoryItem*); // This will attempt to detach the current document. It will dispatch unload // events and abort XHR requests. Returns true if the frame is ready to // receive the next document commit, or false otherwise. bool DetachDocument(SecurityOrigin* committing_origin, base::Optional<Document::UnloadEventTiming>*); FrameLoaderStateMachine* StateMachine() const { return &state_machine_; } bool ShouldClose(bool is_reload = false); // Dispatches the Unload event for the current document. If this is due to the // commit of a navigation, both |committing_origin| and the // Optional<Document::UnloadEventTiming>* should be non null. // |committing_origin| is the origin of the document that is being committed. // If it is allowed to access the unload timings of the current document, the // Document::UnloadEventTiming will be created and populated. // If the dispatch of the unload event is not due to a commit, both parameters // should be null. void DispatchUnloadEvent(SecurityOrigin* committing_origin, base::Optional<Document::UnloadEventTiming>*); bool AllowPlugins(ReasonForCallingAllowPlugins); void SaveScrollAnchor(); void SaveScrollState(); void RestoreScrollPositionAndViewState(); bool HasProvisionalNavigation() const { return committing_navigation_ || client_navigation_.get(); } bool MaybeRenderFallbackContent(); // Like ClearClientNavigation, but also notifies the client to actually cancel // the navigation. void CancelClientNavigation(); void DetachProvisionalDocumentLoader(); void Trace(blink::Visitor*); void DidDropNavigation(); void MarkAsLoading(); ContentSecurityPolicy* GetLastOriginDocumentCSP() { return last_origin_document_csp_.Get(); } bool ShouldReuseDefaultView(const scoped_refptr<const SecurityOrigin>&, const ContentSecurityPolicy*); bool IsClientNavigationInitialHistoryLoad(); private: bool AllowRequestForThisFrame(const FrameLoadRequest&); WebFrameLoadType DetermineFrameLoadType(const KURL& url, const AtomicString& http_method, Document* origin_document, const KURL& failing_url, WebFrameLoadType); bool ShouldPerformFragmentNavigation(bool is_form_submission, const String& http_method, WebFrameLoadType, const KURL&); void ProcessFragment(const KURL&, WebFrameLoadType, LoadStartType); // Returns whether we should continue with new navigation. bool CancelProvisionalLoaderForNewNavigation(); // Clears any information about client navigation, see client_navigation_. void ClearClientNavigation(); void RestoreScrollPositionAndViewState(WebFrameLoadType, bool is_same_document, const HistoryItem::ViewState&, HistoryScrollRestorationType); void DetachDocumentLoader(Member<DocumentLoader>&, bool flush_microtask_queue = false); std::unique_ptr<TracedValue> ToTracedValue() const; void TakeObjectSnapshot() const; // Commits the given |document_loader|. void CommitDocumentLoader(DocumentLoader* document_loader, const base::Optional<Document::UnloadEventTiming>&); LocalFrameClient* Client() const; Member<LocalFrame> frame_; AtomicString required_csp_; // FIXME: These should be std::unique_ptr<T> to reduce build times and // simplify header dependencies unless performance testing proves otherwise. // Some of these could be lazily created for memory savings on devices. mutable FrameLoaderStateMachine state_machine_; Member<ProgressTracker> progress_tracker_; // Document loaders for the three phases of frame loading. Note that while a // new request is being loaded, the old document loader may still be // referenced. E.g. while a new request is in the "policy" state, the old // document loader may be consulted in particular as it makes sense to imply // certain settings on the new loader. Member<DocumentLoader> document_loader_; Member<DocumentLoader> provisional_document_loader_; // This struct holds information about a navigation, which is being // initiated by the client through the browser process, until the navigation // is either committed or cancelled. struct ClientNavigationState { KURL url; AtomicString http_method; bool is_history_navigation_in_new_frame = false; }; std::unique_ptr<ClientNavigationState> client_navigation_; bool in_restore_scroll_; WebSandboxFlags forced_sandbox_flags_; bool dispatching_did_clear_window_object_in_main_world_; bool detached_; bool committing_navigation_ = false; WebScopedVirtualTimePauser virtual_time_pauser_; Member<ContentSecurityPolicy> last_origin_document_csp_; // The origins for which a legacy TLS version warning has been printed. The // size of this set is capped, after which no more warnings are printed. HashSet<String> tls_version_warning_origins_; DISALLOW_COPY_AND_ASSIGN(FrameLoader); }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_FRAME_LOADER_H_
[ "stanley@moon.lan" ]
stanley@moon.lan
c64cb9af15e7f243ad8dc19dcf4218f80d30ce4e
0076faef6e56da5ee49dd2d0266c40103a5dee6d
/reverse.cpp
5d6624016c507de9c103410bb6509d26ed4d8388
[]
no_license
Shady2320/Codeforces
296dc182e779484eba370aa1de01839f147f11c6
34b0ccb5806f820827bc9409877fd5f6d902510e
refs/heads/main
2023-08-02T04:45:04.002898
2021-09-17T08:51:20
2021-09-17T08:51:20
343,446,226
1
0
null
null
null
null
UTF-8
C++
false
false
345
cpp
#include<bits/stdc++.h> using namespace std; int main() { int arr[] = {1,2,3,4,5,6}; int n = sizeof(arr) / sizeof(arr[0]); int start = 0; int end = n-1; int i; while(start < end) { int temp = arr[start]; arr[start] = arr[end]; arr[end] = temp; start++; end--; } for(i=0;i<n;i++) { cout<<arr[i]; } }
[ "noreply@github.com" ]
Shady2320.noreply@github.com
407b797782ca1c960c604e9987dcde2d948c21a3
e76ea38dbe5774fccaf14e1a0090d9275cdaee08
/src/chrome/browser/policy/configuration_policy_provider_test.h
8b1cd66f8332e0c8c22f9c2745cbf12c7dbcd72b
[ "BSD-3-Clause" ]
permissive
eurogiciel-oss/Tizen_Crosswalk
efc424807a5434df1d5c9e8ed51364974643707d
a68aed6e29bd157c95564e7af2e3a26191813e51
refs/heads/master
2021-01-18T19:19:04.527505
2014-02-06T13:43:21
2014-02-06T13:43:21
16,070,101
1
3
null
null
null
null
UTF-8
C++
false
false
5,266
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_TEST_H_ #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_TEST_H_ #include <string> #include "base/basictypes.h" #include "base/callback_forward.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" #include "chrome/browser/policy/policy_types.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { class DictionaryValue; class ListValue; class SequencedTaskRunner; class Value; } namespace policy { class ConfigurationPolicyProvider; struct PolicyDefinitionList; // A stripped-down policy definition list that contains entries for the // different policy setting types supported. namespace test_policy_definitions { // String policy keys. extern const char kKeyString[]; extern const char kKeyBoolean[]; extern const char kKeyInteger[]; extern const char kKeyStringList[]; extern const char kKeyDictionary[]; // Policy definition list that contains entries for the keys above. extern const PolicyDefinitionList kList; } // namespace test_policy_definitions class PolicyTestBase : public testing::Test { public: PolicyTestBase(); virtual ~PolicyTestBase(); // testing::Test: virtual void TearDown() OVERRIDE; protected: // Create an actual IO loop (needed by FilePathWatcher). base::MessageLoopForIO loop_; private: DISALLOW_COPY_AND_ASSIGN(PolicyTestBase); }; // An interface for creating a test policy provider and creating a policy // provider instance for testing. Used as the parameter to the abstract // ConfigurationPolicyProviderTest below. class PolicyProviderTestHarness { public: // |level| and |scope| are the level and scope of the policies returned by // the providers from CreateProvider(). PolicyProviderTestHarness(PolicyLevel level, PolicyScope scope); virtual ~PolicyProviderTestHarness(); // Actions to run at gtest SetUp() time. virtual void SetUp() = 0; // Create a new policy provider. virtual ConfigurationPolicyProvider* CreateProvider( scoped_refptr<base::SequencedTaskRunner> task_runner, const PolicyDefinitionList* policy_definition_list) = 0; // Returns the policy level and scope set by the policy provider. PolicyLevel policy_level() const; PolicyScope policy_scope() const; // Helpers to configure the environment the policy provider reads from. virtual void InstallEmptyPolicy() = 0; virtual void InstallStringPolicy(const std::string& policy_name, const std::string& policy_value) = 0; virtual void InstallIntegerPolicy(const std::string& policy_name, int policy_value) = 0; virtual void InstallBooleanPolicy(const std::string& policy_name, bool policy_value) = 0; virtual void InstallStringListPolicy(const std::string& policy_name, const base::ListValue* policy_value) = 0; virtual void InstallDictionaryPolicy( const std::string& policy_name, const base::DictionaryValue* policy_value) = 0; // Not every provider supports installing 3rd party policy. Those who do // should override this method; the default just makes the test fail. virtual void Install3rdPartyPolicy(const base::DictionaryValue* policies); private: PolicyLevel level_; PolicyScope scope_; DISALLOW_COPY_AND_ASSIGN(PolicyProviderTestHarness); }; // A factory method for creating a test harness. typedef PolicyProviderTestHarness* (*CreatePolicyProviderTestHarness)(); // Abstract policy provider test. This is meant to be instantiated for each // policy provider implementation, passing in a suitable harness factory // function as the test parameter. class ConfigurationPolicyProviderTest : public PolicyTestBase, public testing::WithParamInterface<CreatePolicyProviderTestHarness> { protected: ConfigurationPolicyProviderTest(); virtual ~ConfigurationPolicyProviderTest(); virtual void SetUp() OVERRIDE; virtual void TearDown() OVERRIDE; // Installs a valid policy and checks whether the provider returns the // |expected_value|. void CheckValue(const char* policy_name, const base::Value& expected_value, base::Closure install_value); scoped_ptr<PolicyProviderTestHarness> test_harness_; scoped_ptr<ConfigurationPolicyProvider> provider_; private: DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyProviderTest); }; // An extension of ConfigurationPolicyProviderTest that also tests loading of // 3rd party policy. Policy provider implementations that support loading of // 3rd party policy should also instantiate these tests. class Configuration3rdPartyPolicyProviderTest : public ConfigurationPolicyProviderTest { protected: Configuration3rdPartyPolicyProviderTest(); virtual ~Configuration3rdPartyPolicyProviderTest(); private: DISALLOW_COPY_AND_ASSIGN(Configuration3rdPartyPolicyProviderTest); }; } // namespace policy #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_TEST_H_
[ "ronan@fridu.net" ]
ronan@fridu.net
a950c73c3a18d786e395d3e03cf2096921eacabe
03f037d0f6371856ede958f0c9d02771d5402baf
/graphics/VTK-7.0.0/Filters/General/vtkClipConvexPolyData.cxx
323689e26673d143e79756e73ff67521ac200c58
[ "BSD-3-Clause" ]
permissive
hlzz/dotfiles
b22dc2dc5a9086353ed6dfeee884f7f0a9ddb1eb
0591f71230c919c827ba569099eb3b75897e163e
refs/heads/master
2021-01-10T10:06:31.018179
2016-09-27T08:13:18
2016-09-27T08:13:18
55,040,954
4
0
null
null
null
null
UTF-8
C++
false
false
20,382
cxx
/*========================================================================= Program: Visualization Toolkit Module: vtkClipConvexPolyData.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "vtkClipConvexPolyData.h" #include "vtkCellArray.h" #include "vtkMath.h" #include "vtkInformation.h" #include "vtkInformationVector.h" #include "vtkObjectFactory.h" #include "vtkPlane.h" #include "vtkPlaneCollection.h" #include "vtkPolyData.h" #include <vector> #include <set> #include <algorithm> #include <iterator> vtkStandardNewMacro(vtkClipConvexPolyData); vtkCxxSetObjectMacro(vtkClipConvexPolyData,Planes,vtkPlaneCollection); // ---------------------------------------------------------------------------- class vtkCCPDVertex { public: double Point[3]; }; // ---------------------------------------------------------------------------- class vtkCCPDPolygon { public: std::vector<vtkCCPDVertex*> Vertices; std::vector<vtkCCPDVertex*> NewVertices; }; // ---------------------------------------------------------------------------- class vtkClipConvexPolyDataInternals { public: std::vector<vtkCCPDPolygon*> Polygons; }; // ---------------------------------------------------------------------------- // Constructor vtkClipConvexPolyData::vtkClipConvexPolyData() { this->Planes=NULL; this->Internal=new vtkClipConvexPolyDataInternals; } // ---------------------------------------------------------------------------- // Destructor vtkClipConvexPolyData::~vtkClipConvexPolyData() { this->SetPlanes(NULL); this->ClearInternals(); delete this->Internal; } // ---------------------------------------------------------------------------- // Description: // Redefines this method, as this filter depends on time of its components // (planes) unsigned long int vtkClipConvexPolyData::GetMTime() { unsigned long int result=Superclass::GetMTime(); if(this->Planes!=0) { unsigned long int planesTime=this->Planes->GetMTime(); if(planesTime>result) { result=planesTime; } } return result; } // ---------------------------------------------------------------------------- void vtkClipConvexPolyData::ClearInternals() { unsigned int j; for(unsigned int i=0; i<this->Internal->Polygons.size(); i++) { for (j=0; j<this->Internal->Polygons[i]->Vertices.size(); j++) { delete this->Internal->Polygons[i]->Vertices[j]; } this->Internal->Polygons[i]->Vertices.clear(); for (j=0; j<this->Internal->Polygons[i]->NewVertices.size(); j++) { delete this->Internal->Polygons[i]->NewVertices[j]; } this->Internal->Polygons[i]->NewVertices.clear(); delete this->Internal->Polygons[i]; } this->Internal->Polygons.clear(); } // ---------------------------------------------------------------------------- void vtkClipConvexPolyData::ClearNewVertices() { for(unsigned int i=0; i<this->Internal->Polygons.size(); i++) { for(unsigned int j=0; j<this->Internal->Polygons[i]->NewVertices.size(); j++) { delete this->Internal->Polygons[i]->NewVertices[j]; } this->Internal->Polygons[i]->NewVertices.clear(); } } // ---------------------------------------------------------------------------- void vtkClipConvexPolyData::RemoveEmptyPolygons() { bool done = false; while (!done ) { done = true; for(unsigned int i=0; i<this->Internal->Polygons.size(); i++) { if ( this->Internal->Polygons[i]->Vertices.size() == 0 ) { std::vector<vtkCCPDPolygon*>::iterator where = std::find(this->Internal->Polygons.begin(), this->Internal->Polygons.end(), this->Internal->Polygons[i]); if ( where != this->Internal->Polygons.end() ) { delete this->Internal->Polygons[i]; this->Internal->Polygons.erase(where); done = false; break; } } } } } // ---------------------------------------------------------------------------- // int vtkClipConvexPolyData::RequestData( vtkInformation *vtkNotUsed(request), vtkInformationVector **inputVector, vtkInformationVector *outputVector) { // Pre-conditions if(this->Planes==0) { vtkErrorMacro("plane collection is null"); return 0; } if(this->Planes->GetNumberOfItems()==0) { vtkErrorMacro("plane collection is empty"); return 0; } // get the info objects vtkInformation *inInfo = inputVector[0]->GetInformationObject(0); vtkInformation *outInfo = outputVector->GetInformationObject(0); // get the input and ouptut vtkPolyData *input = vtkPolyData::SafeDownCast( inInfo->Get(vtkDataObject::DATA_OBJECT())); vtkPolyData *output = vtkPolyData::SafeDownCast( outInfo->Get(vtkDataObject::DATA_OBJECT())); vtkCellArray *polys = input->GetPolys(); vtkPoints *points = input->GetPoints(); // Compute tolerance to be 0.00001 of diagonal double min[3] = {VTK_DOUBLE_MAX, VTK_DOUBLE_MAX, VTK_DOUBLE_MAX}; double max[3] = {VTK_DOUBLE_MIN, VTK_DOUBLE_MIN, VTK_DOUBLE_MIN}; size_t i, j; double tolerance; for ( i = 0; i < static_cast<size_t>(points->GetNumberOfPoints()); i++ ) { double pt[3]; points->GetPoint(static_cast<vtkIdType>(i), pt); for ( j = 0; j < 3; j++ ) { min[j] = (pt[j] < min[j])?(pt[j]):(min[j]); max[j] = (pt[j] > max[j])?(pt[j]):(max[j]); } } tolerance = sqrt(vtkMath::Distance2BetweenPoints(min,max))*0.00001; // Copy the polygons from the polys array to the internal // data structure vtkIdType npts; vtkIdType *pts; polys->InitTraversal(); while ( polys->GetNextCell(npts, pts) ) { vtkCCPDPolygon *polygon = new vtkCCPDPolygon; for ( i = 0; i < static_cast<size_t>(npts); i++ ) { vtkCCPDVertex *v = new vtkCCPDVertex; points->GetPoint(pts[i], v->Point); polygon->Vertices.push_back(v); } this->Internal->Polygons.push_back(polygon); } this->Planes->InitTraversal(); vtkPlane *plane; // For each plane in the collection, clip the polygons with the plane. while ( (plane = this->Planes->GetNextItem()) ) { if ( !this->HasDegeneracies( plane ) ) { this->ClipWithPlane( plane, tolerance ); } } // Create a new set of points and polygons into which the results will // be stored vtkPoints *outPoints = vtkPoints::New(); vtkCellArray *outPolys = vtkCellArray::New(); for ( i = 0; i < this->Internal->Polygons.size(); i++ ) { size_t numPoints = this->Internal->Polygons[i]->Vertices.size(); vtkIdType *polyPts = new vtkIdType[numPoints]; for ( j = 0; j < numPoints; j++ ) { polyPts[j] = outPoints->InsertNextPoint( this->Internal->Polygons[i]->Vertices[j]->Point ); } outPolys->InsertNextCell(static_cast<vtkIdType>(numPoints), polyPts ); delete [] polyPts; } // Set the output vertices and polygons output->SetPoints(outPoints); output->SetPolys(outPolys); // Delete the temporary storage outPoints->Delete(); outPolys->Delete(); this->ClearInternals(); return 1; } // ---------------------------------------------------------------------------- void vtkClipConvexPolyData::ClipWithPlane( vtkPlane *plane, double tolerance ) { double origin[3]; double normal[4]; plane->GetOrigin( origin ); plane->GetNormal( normal ); vtkMath::Normalize(normal); normal[3] = -(origin[0]*normal[0] + origin[1]*normal[1] + origin[2]*normal[2]); int numNewPoints = 0; unsigned int i; size_t j; // For each polygon for ( i = 0; i < this->Internal->Polygons.size(); i++ ) { // the new polygon. We are clipping the existing polygon then // removing that old polygon and adding this clipped polygon vtkCCPDPolygon *newPoly = new vtkCCPDPolygon; int somePositive = 0; // Look around the polygon - we only want to process it if // there are some positive vertices when passed through the // plane equation. If they are all negative, then it is entirely // clipped. If they are either negative or 0, then this is a boundary // condition and we also don't want to consider it size_t numVertices = this->Internal->Polygons[i]->Vertices.size(); for ( j = 0; j < numVertices; j++ ) { double *p1=this->Internal->Polygons[i]->Vertices[j]->Point; double p1D=p1[0]*normal[0]+p1[1]*normal[1]+p1[2]*normal[2] + normal[3]; if ( p1D < 2.0*tolerance && p1D > -2.0*tolerance ) { p1D = 0; } if ( p1D > 0 ) { somePositive = 1; break; } } if ( somePositive ) { // For each vertex for ( j = 0; j < numVertices; j++ ) { double *p1=this->Internal->Polygons[i]->Vertices[j]->Point; double *p2= this->Internal->Polygons[i]->Vertices[(j+1)%numVertices]->Point; double p1D=p1[0]*normal[0]+p1[1]*normal[1]+p1[2]*normal[2] + normal[3]; double p2D=p2[0]*normal[0]+p2[1]*normal[1]+p2[2]*normal[2] + normal[3]; // We want to avoid the case where we just barely clip a vertex. If we allow // that to happen then we wind up with too many candidate points all in // approximately the same place when we try to form a loop to close off // the cut. So if the point is within a 1/10th of the tolerance factor // we've set, we'll just consider it not clipped. if ( p1D < 2*tolerance && p1D > -2.0*tolerance ) { p1D = 0; } if ( p2D < 2*tolerance && p2D > -2.0*tolerance ) { p2D = 0; } // Add p1 in if it is not clipped. If the whole polygon is unclipped // then we'll just add in each vertex in turn. If the whole polygon // is clipped we won't add in any vertices. If the polygon is // clipped, we'll add in two new points corresponding the the // crossing location of the plane on two edges of the polygon if ( p1D >= 0 ) { vtkCCPDVertex *v = new vtkCCPDVertex; v->Point[0] = p1[0]; v->Point[1] = p1[1]; v->Point[2] = p1[2]; newPoly->Vertices.push_back(v); } // If the first point is exactly on the boundary, we need to also count it // as a new point if ( p1D == 0 && p2D <= 0) { vtkCCPDVertex *v = new vtkCCPDVertex; v->Point[0] = p1[0]; v->Point[1] = p1[1]; v->Point[2] = p1[2]; this->Internal->Polygons[i]->NewVertices.push_back(v); numNewPoints++; } if ( p2D == 0 && p1D <= 0 ) { vtkCCPDVertex *v = new vtkCCPDVertex; v->Point[0] = p2[0]; v->Point[1] = p2[1]; v->Point[2] = p2[2]; this->Internal->Polygons[i]->NewVertices.push_back(v); numNewPoints++; } // If the plane clips this edge - find the crossing point. We'll need // to add this point to the new polygon if ( p1D*p2D < 0 ) { double w = -p1D / (p2D - p1D); vtkCCPDVertex *v = new vtkCCPDVertex; v->Point[0] = p1[0] + w * (p2[0]-p1[0]); v->Point[1] = p1[1] + w * (p2[1]-p1[1]); v->Point[2] = p1[2] + w * (p2[2]-p1[2]); newPoly->Vertices.push_back(v); v = new vtkCCPDVertex; v->Point[0] = p1[0] + w * (p2[0]-p1[0]); v->Point[1] = p1[1] + w * (p2[1]-p1[1]); v->Point[2] = p1[2] + w * (p2[2]-p1[2]); this->Internal->Polygons[i]->NewVertices.push_back(v); numNewPoints++; } } } // Remove the current polygon for ( j = 0; j < numVertices; j++ ) { delete this->Internal->Polygons[i]->Vertices[j]; } this->Internal->Polygons[i]->Vertices.clear(); // copy in the new polygon if it isn't entirely clipped numVertices = newPoly->Vertices.size(); if ( numVertices > 0 ) { for ( j = 0; j < numVertices; j++ ) { this->Internal->Polygons[i]->Vertices.push_back(newPoly->Vertices[j]); } newPoly->Vertices.clear(); } delete newPoly; } // If we've added any new points when clipping the polydata then // we must have added at least six. Otherwise something is wrong if ( numNewPoints ) { if ( numNewPoints < 6 ) { vtkErrorMacro(<< "Failure - not enough new points"); return; } // Check that all new arrays contain exactly 0 or 2 points for ( i = 0; i < this->Internal->Polygons.size(); i++ ) { if ( this->Internal->Polygons[i]->NewVertices.size() != 0 && this->Internal->Polygons[i]->NewVertices.size() != 2 ) { vtkErrorMacro( << "Horrible error - we have " << this->Internal->Polygons[i]->NewVertices.size() << " crossing points"); return; } } // Find the first polygon with a new point size_t idx = 0; bool idxFound=false; for ( i = 0; !idxFound && i < this->Internal->Polygons.size(); i++ ) { idxFound=this->Internal->Polygons[i]->NewVertices.size() > 0; if(idxFound) { idx=i; } } if (!idxFound) { vtkErrorMacro( << "Couldn't find any new vertices!"); return; } // the new polygon vtkCCPDPolygon *newPoly = new vtkCCPDPolygon; vtkCCPDVertex *v = new vtkCCPDVertex; v->Point[0] = this->Internal->Polygons[idx]->NewVertices[0]->Point[0]; v->Point[1] = this->Internal->Polygons[idx]->NewVertices[0]->Point[1]; v->Point[2] = this->Internal->Polygons[idx]->NewVertices[0]->Point[2]; newPoly->Vertices.push_back(v); v = new vtkCCPDVertex; v->Point[0] = this->Internal->Polygons[idx]->NewVertices[1]->Point[0]; v->Point[1] = this->Internal->Polygons[idx]->NewVertices[1]->Point[1]; v->Point[2] = this->Internal->Polygons[idx]->NewVertices[1]->Point[2]; newPoly->Vertices.push_back(v); double lastPoint[3]; lastPoint[0] = this->Internal->Polygons[idx]->NewVertices[1]->Point[0]; lastPoint[1] = this->Internal->Polygons[idx]->NewVertices[1]->Point[1]; lastPoint[2] = this->Internal->Polygons[idx]->NewVertices[1]->Point[2]; size_t lastPointIdx = idx; size_t subIdx; while ( static_cast<int>(newPoly->Vertices.size()) < numNewPoints / 2 ) { // Find the index of the closest new vertex that matches the // lastPoint but not the lastPointIdx. subIdx = 0; float closestDistance = VTK_FLOAT_MAX; bool foundSubIdx=false; for ( i = 0; i < this->Internal->Polygons.size(); i++ ) { if ( i != lastPointIdx && this->Internal->Polygons[i]->NewVertices.size() > 0 ) { for ( j = 0; j < 2; j++ ) { float testDistance = vtkMath::Distance2BetweenPoints(lastPoint, this->Internal->Polygons[i]->NewVertices[j]->Point); if ( testDistance < tolerance && testDistance < closestDistance) { closestDistance = testDistance; idx = i; subIdx =j; foundSubIdx=true; } } } } if ( !foundSubIdx ) { vtkErrorMacro("Could not find a match"); } v = new vtkCCPDVertex; v->Point[0] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[0]; v->Point[1] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[1]; v->Point[2] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[2]; newPoly->Vertices.push_back(v); lastPoint[0] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[0]; lastPoint[1] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[1]; lastPoint[2] = this->Internal->Polygons[idx]->NewVertices[(subIdx+1)%2]->Point[2]; lastPointIdx = idx; } // check to see that the polygon vertices are in the right order. // cross product of p1p2 and p3p2 should point in the same direction // as the plane normal. Otherwise, reverse the order int flipCount = 0; int checkCount = 0; for (size_t startV = 0; startV+2 < newPoly->Vertices.size(); startV++) { double *p1 = newPoly->Vertices[startV]->Point; double *p2 = newPoly->Vertices[startV+1]->Point; double *p3 = newPoly->Vertices[startV+2]->Point; double v1[3]; double v2[3]; double cross[3]; v1[0] = p1[0] - p2[0]; v1[1] = p1[1] - p2[1]; v1[2] = p1[2] - p2[2]; v2[0] = p3[0] - p2[0]; v2[1] = p3[1] - p2[1]; v2[2] = p3[2] - p2[2]; vtkMath::Cross(v1,v2,cross); double nd = vtkMath::Normalize(cross); // only check if the length of the cross product is long // enough - otherwise we might be working with points that // are all too close together and we might wind up with // misleading results if ( nd > tolerance ) { if ( vtkMath::Dot(cross,normal) < 0 ) { flipCount++; } checkCount++; } } // As long as more than half the time we checked we got the answer // that we should flip, go ahead and flip it if ( flipCount > checkCount/2 ) { std::reverse(newPoly->Vertices.begin(), newPoly->Vertices.end()); } this->Internal->Polygons.push_back(newPoly); } this->RemoveEmptyPolygons(); this->ClearNewVertices(); } // ---------------------------------------------------------------------------- bool vtkClipConvexPolyData::HasDegeneracies(vtkPlane *plane) { double origin[3]; double normal[4]; plane->GetOrigin( origin ); plane->GetNormal( normal ); normal[3] = -(origin[0]*normal[0] + origin[1]*normal[1] + origin[2]*normal[2]); unsigned int i; size_t j; // For each polygon int totalNumNewVertices = 0; for ( i = 0; i < this->Internal->Polygons.size(); i++ ) { // For each vertex size_t numVertices = this->Internal->Polygons[i]->Vertices.size(); int numNewVertices = 0; for ( j = 0; j < numVertices; j++ ) { double *p1 = this->Internal->Polygons[i]->Vertices[j]->Point; double *p2 = this->Internal->Polygons[i]->Vertices[(j+1)%numVertices]->Point; double p1D=p1[0]*normal[0]+p1[1]*normal[1]+p1[2]*normal[2]+normal[3]; double p2D=p2[0]*normal[0]+p2[1]*normal[1]+p2[2]*normal[2]+normal[3]; // If the plane clips this edge - find the crossing point if ( p1D*p2D <= 0 ) { numNewVertices++; } } if ( numNewVertices != 0 && numNewVertices != 2) { return true; } totalNumNewVertices += numNewVertices; } if ( totalNumNewVertices < 6 ) { return true; } return false; } // ---------------------------------------------------------------------------- void vtkClipConvexPolyData::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os,indent); os << indent << "Planes: " << this->Planes << endl; }
[ "shentianweipku@gmail.com" ]
shentianweipku@gmail.com
85172191a25fb3f08a83021ff27642fb35264ca0
7aa77fb63702732228a47cc2c98cd0ed3079eb84
/SPOUTSDK/SpoutGL/SpoutReceiver.h
38fe97afde07d09c3ac016bac9bbac9c680bc587
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
MGrG1183/Spout2
0b9a8445d79ca704465c1fcc7620b8a1edc81c89
75104f7e9d0b9ecf70be084d2d296a8adf924bed
refs/heads/master
2023-07-18T19:56:24.989118
2021-09-29T06:22:48
2021-09-29T06:22:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,167
h
/* SpoutReceiver.h Copyright (c) 2014-2021, Lynn Jarvis. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #ifndef __SpoutReceiver__ #define __SpoutReceiver__ #include "Spout.h" class SPOUT_DLLEXP SpoutReceiver { public: SpoutReceiver(); ~SpoutReceiver(); // Specify sender for connection // The application will not connect to any other unless the user selects one // If that sender closes, the application will wait for the nominated sender to open // If no name is specified, the receiver will connect to the active sender void SetReceiverName(const char * sendername); // Close receiver and release resources ready to connect to another sender void ReleaseReceiver(); // Receive shared texture // Connect to a sender and retrieve texture details ready for access // (see BindSharedTexture and UnBindSharedTexture) bool ReceiveTexture(); // Receive OpenGL texture // Connect to a sender and inform the application to update // the receiving texture if it has changed dimensions // For no change, copy the sender shared texture to the application texture bool ReceiveTexture(GLuint TextureID, GLuint TextureTarget, bool bInvert = false, GLuint HostFbo = 0); // Receive image pixels // Connect to a sender and inform the application to update // the receiving buffer if it has changed dimensions // For no change, copy the sender shared texture to the pixel buffer bool ReceiveImage(unsigned char* pixels, GLenum glFormat = GL_RGBA, bool bInvert = false, GLuint HostFbo = 0); // Query whether the sender has changed // Checked at every cycle before receiving data bool IsUpdated(); // Query sender connection // If the sender closes, receiving functions return false, bool IsConnected(); // Query received frame status // The receiving texture or pixel buffer is only refreshed if the sender has produced a new frame // This can be queried to process texture data only for new frames bool IsFrameNew(); // Received sender name const char * GetSenderName(); // Received sender width unsigned int GetSenderWidth(); // Received sender height unsigned int GetSenderHeight(); // Received sender DX11 texture format DWORD GetSenderFormat(); // Received sender frame rate double GetSenderFps(); // Received sender frame number long GetSenderFrame(); // Received sender share handle HANDLE GetSenderHandle(); // Received sender sharing method bool GetSenderCPU(); // Received sender GL/DX hardware compatibility bool GetSenderGLDX(); // Open sender selection dialog void SelectSender(); // // Frame count // // Enable or disable frame counting globally void SetFrameCount(bool bEnable); // Disable frame counting specifically for this application void DisableFrameCount(); // Return frame count status bool IsFrameCountEnabled(); // Frame rate control void HoldFps(int fps); // Signal sync event void SetFrameSync(const char* SenderName); // Wait or test for a sync event bool WaitFrameSync(const char *SenderName, DWORD dwTimeout = 0); // // Data sharing // // Read data int ReadMemoryBuffer(const char* name, char* data, int maxlength); // Get the size of a shared memory buffer int GetMemoryBufferSize(const char* name); // // OpenGL shared texture access // // Bind OpenGL shared texture bool BindSharedTexture(); // Un-bind OpenGL shared texture bool UnBindSharedTexture(); // OpenGL shared texture ID GLuint GetSharedTextureID(); // // Graphics compatibility // // Get user auto GPU/CPU share bool GetAutoShare(); // Set application auto GPU/CPU share void SetAutoShare(bool bAuto = true); // Get user CPU share bool GetCPUshare(); // Set application CPU share // (re-test GL/DX compatibility if set to false) void SetCPUshare(bool bCPU = true); // OpenGL texture share compatibility bool IsGLDXready(); // // Sender names // // Number of senders int GetSenderCount(); // Sender item name bool GetSender(int index, char* sendername, int MaxSize = 256); // Sender information bool GetSenderInfo(const char* sendername, unsigned int &width, unsigned int &height, HANDLE &dxShareHandle, DWORD &dwFormat); // Current active sender bool GetActiveSender(char* sendername); // Set sender as active bool SetActiveSender(const char* sendername); // // Adapter functions // // The number of graphics adapters in the system int GetNumAdapters(); // Get adapter item name bool GetAdapterName(int index, char *adaptername, int maxchars = 256); // Current adapter name char * AdapterName(); // Get current adapter index int GetAdapter(); // Set graphics adapter for output bool SetAdapter(int index = 0); // Get the current adapter description bool GetAdapterInfo(char *renderdescription, char *displaydescription, int maxchars); // // User settings recorded by "SpoutSettings" // // Get user buffering mode bool GetBufferMode(); // Set application buffering mode void SetBufferMode(bool bActive = true); // Get user number of pixel buffers int GetBuffers(); // Set application number of pixel buffers void SetBuffers(int nBuffers); // Get user Maximum senders allowed int GetMaxSenders(); // Set user Maximum senders allowed void SetMaxSenders(int maxSenders); // // 2.006 compatibility // // Get user DX9 mode bool GetDX9(); // Set user DX9 mode bool SetDX9(bool bDX9 = true); // Get user memory share mode bool GetMemoryShareMode(); // Set user memory share mode bool SetMemoryShareMode(bool bMem = true); // Get user CPU mode bool GetCPUmode(); // Set user CPU mode bool SetCPUmode(bool bCPU); // Get user share mode // 0 - texture, 1 - memory, 2 - CPU int GetShareMode(); // Set user share mode // 0 - texture, 1 - memory, 2 - CPU void SetShareMode(int mode); // // Information // // The path of the host that produced the sender bool GetHostPath(const char *sendername, char *hostpath, int maxchars); // Vertical sync status int GetVerticalSync(); // Lock to monitor vertical sync bool SetVerticalSync(bool bSync = true); // Get Spout version int GetSpoutVersion(); // // OpenGL utilities // // Create an OpenGL window and context for situations where there is none. // Not used if applications already have an OpenGL context. // Always call CloseOpenGL afterwards. bool CreateOpenGL(); // Close OpenGL window bool CloseOpenGL(); // Copy OpenGL texture with optional invert // Textures must be the same size bool CopyTexture(GLuint SourceID, GLuint SourceTarget, GLuint DestID, GLuint DestTarget, unsigned int width, unsigned int height, bool bInvert = false, GLuint HostFBO = 0); // // 2.006 compatibility // // Create receiver connection bool CreateReceiver(char* Sendername, unsigned int &width, unsigned int &height, bool bUseActive = false); // Check receiver connection bool CheckReceiver(char* Sendername, unsigned int &width, unsigned int &height, bool &bConnected); // Receive OpenGL texture bool ReceiveTexture(char* Sendername, unsigned int &width, unsigned int &height, GLuint TextureID = 0, GLuint TextureTarget = 0, bool bInvert = false, GLuint HostFBO = 0); // Receive image pixels bool ReceiveImage(char* Sendername, unsigned int &width, unsigned int &height, unsigned char* pixels, GLenum glFormat = GL_RGBA, bool bInvert = false, GLuint HostFBO = 0); // Open dialog for the user to select a sender // Optional message argument bool SelectSenderPanel(const char* message = nullptr); // Receiver detect sender selection bool CheckSenderPanel(char *sendername, int maxchars = 256); // Legacy OpenGL Draw function // See _SpoutCommon.h_ #define legacyOpenGL #ifdef legacyOpenGL // Render the shared texture bool DrawSharedTexture(float max_x = 1.0, float max_y = 1.0, float aspect = 1.0, bool bInvert = true, GLuint HostFBO = 0); #endif // For access to all functions Spout spout; }; #endif
[ "spout@zeal.co" ]
spout@zeal.co
878f4f5c94ff6b2a9636b7d97c04b5416d5503e5
ec6db7952c1609b4512a95bcd95962212f4054ce
/cpsc1021/Lab10/Person.h
493decfd5aca100c95663c33ca99e0c2571b6c62
[]
no_license
TheEnjoyneer/clemsonyear2
e24696deff2f1b678c3a235fcc7be4d8e13e4781
276d21db39e5ca12f2c58c268b7d73a754e5bd11
refs/heads/master
2020-06-15T13:36:05.898924
2018-11-29T17:21:43
2018-11-29T17:21:43
94,138,727
0
0
null
null
null
null
UTF-8
C++
false
false
575
h
/* Person.h * Christopher Brant * cbrant * Jay Cox * jay4 * Lab 10 * Lab Section 002 * Lauren Fuller */ #ifndef PERSON_H #define PERSON_H #include <string> using namespace std; class Person { private: string name; string address; string city; string state; int zip; public: Person(string, string, string, string, int); Person(); void setName(string); void setAddress(string); void setState(string); void setCity(string); void setZip(int); void printSenderInfo(); void printRecipientInfo(); }; #endif
[ "noreply@github.com" ]
TheEnjoyneer.noreply@github.com
1bfae2a3850ce442a4c1265ddee69ff30d026a6b
2b08a93dbc0c666426fd7409b32a3fc0fe16ee0b
/SortAll/SortAll/stdafx.cpp
3cae0606bb2945d3fde517766869bf9fb4b3bb8b
[]
no_license
fjkfjk/Practice_2017
abe14fd26c8c08abddbdc6f0c578d5bd85b69112
a809c6d4890b15240632290f55c15cd6d5ab45f7
refs/heads/master
2021-01-15T13:11:19.461816
2017-03-18T09:41:20
2017-03-18T09:41:20
78,749,477
3
0
null
2017-01-17T12:36:57
2017-01-12T13:44:01
Shell
GB18030
C++
false
false
258
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // SortAll.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中引用任何所需的附加头文件, //而不是在此文件中引用
[ "1047149316@qq.com" ]
1047149316@qq.com
63f56b75b10718540384f87c9f03559854cdb1ee
3ad968797a01a4e4b9a87e2200eeb3fb47bf269a
/COM 1 Samples/aptsur/CSTA.h
7237f45ef848eececfc5adb876f6f5346578303a
[]
no_license
LittleDrogon/MFC-Examples
403641a1ae9b90e67fe242da3af6d9285698f10b
1d8b5d19033409cd89da3aba3ec1695802c89a7a
refs/heads/main
2023-03-20T22:53:02.590825
2020-12-31T09:56:37
2020-12-31T09:56:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,517
h
//////////////////////////////////////////////////////// // // CSTA.h - Copyright 1997, Don Box // // A SingleThreadedApartment that accepts activation // requests via PostMessage. // #ifndef _CSTA_H #define _CSTA_H #include <windows.h> #include <assert.h> class CSingleThreadedApartment { DWORD m_dwThreadId; HANDLE m_hthread; CRITICAL_SECTION m_cs; HANDLE m_heventDone; IStream *m_pStmMarshalData; HRESULT m_hresultRequest; CLSID m_clsid; IID m_iid; enum REQUEST_TYPE { WM_CREATEINSTANCE = WM_USER + 0x400, WM_GETCLASSOBJECT }; static DWORD WINAPI ThreadProc(void*); HRESULT SwitchToApartment(REQUEST_TYPE rt, REFCLSID rclsid, REFIID riid, void **ppv); void OnCreateInstance(void); void OnGetClassObject(void); class Lock { CRITICAL_SECTION *m_pcs; public: Lock(CSingleThreadedApartment *pThis) : m_pcs(&pThis->m_cs) { EnterCriticalSection(m_pcs); } ~Lock(void) { LeaveCriticalSection(m_pcs); } }; friend class Lock; public: CSingleThreadedApartment(void); ~CSingleThreadedApartment(void); HRESULT RequestNewObject(REFCLSID rclsid, REFIID riid, void **ppv); HRESULT RequestClassObject(REFCLSID rclsid, REFIID riid, void **ppv); DWORD RequestShutdown(DWORD dwTimeOut = INFINITE); }; #endif
[ "pkedpekr@gmail.com" ]
pkedpekr@gmail.com
64ff3dfb65bae06c40786aef285f17a0bbfeb9ab
87cf60ce18b6b5638a9052bf57a3ae4f4f628a32
/tmp/fix_lubrication_update_PKN.cpp
3e34bbd2a9e62f2cd1d751575bb8d76c0b2dfdfa
[]
no_license
Uitsin/USER-HF
38ff7333e3f306a16306676b3ba2e80a10cc3693
974a66cfb56f2a5500840da531c5b65aa39fab41
refs/heads/master
2016-08-12T10:40:06.720664
2016-03-10T16:17:57
2016-03-10T16:17:57
53,222,973
3
0
null
null
null
null
UTF-8
C++
false
false
19,341
cpp
/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ #include "string.h" #include "math.h" #include "fix_lubrication_update_PKN.h" #include "group.h" #include "modify.h" #include "error.h" #include "atom.h" #include "atom_vec.h" #include "force.h" #include "stdlib.h" #include "math.h" #include "mpi.h" #include "comm.h" #include "update.h" #include "memory.h" #include "neighbor.h" #include "types.h" #define TINY 1.e-3 ; #define FAKE_INT_VALUE -991; using namespace LAMMPS_NS; using namespace FixConst; /* ---------------------------------------------------------------------- */ FixLubricationUpdatePKN::FixLubricationUpdatePKN(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg) { if (narg < 12) error->all(FLERR,"Illegal fix lubrication/update command"); // ID group-ID fixchannelini // cutoff = atof(arg[3]); injection_x = atof(arg[3]); injection_y = atof(arg[4]); injection_z = atof(arg[5]); PKN_X = atof(arg[7]); PKN_Y = atof(arg[9]); PKN_Z = atof(arg[11]); partner = NULL; nmax =0; } FixLubricationUpdatePKN::~FixLubricationUpdatePKN() { memory->destroy(partner); } /*============ setmask ============*/ int FixLubricationUpdatePKN::setmask() { int mask = 0; mask |= PRE_FORCE; mask |= FINAL_INTEGRATE; return mask; } /*================================== called before force routine ==================================*/ //void FixLubricationUpdatePKN::pre_force(int vflag) void FixLubricationUpdatePKN::final_integrate() { if (atom->nmax > nmax) { memory->destroy(partner); nmax = atom->nmax; memory->create(partner,nmax,"fix_lubrication_update:partner"); } //comm->borders(); comm->forward_comm(); new_channel(); comm->forward_comm(); bond_break(); neighbor->build_topology(); comm->forward_comm(); comm->forward_comm(); cal_channel_pressure(); comm->forward_comm(); lubrication(); comm->forward_comm(); neighbor->build_topology(); channel_update(); comm->forward_comm(); } /*================================== calculate channel pressure ==================================*/ void FixLubricationUpdatePKN::cal_channel_pressure() { int n; int nlocal = atom->nlocal; int *atype = atom->type; int *num_bond_rock_channel_atom = atom->num_bond_rock_channel_atom; int **bond_rock_channel_atom = atom->bond_rock_channel_atom; int rock_atom1, rock_atom2,channel_atom; double **x0 = atom->x0; double **x = atom->x; double **f0 = atom->f0; double delta_x,delta_y,delta_z; double pressure; double *channel_pressure = atom->channel_pressure; double *channel_width = atom->channel_width; double delta_mag; int *tag = atom->tag; double check_force; for (n=0; n<nlocal; n++){ if (atype[n] != CONNECTED_CHANNEL_ATOM_TYPE) continue; channel_atom = n; rock_atom1 = atom->map(bond_rock_channel_atom[channel_atom][0]); rock_atom2 = atom->map(bond_rock_channel_atom[channel_atom][1]); delta_x = (x0[rock_atom1][0] - x0[rock_atom2][0]); delta_y = (x0[rock_atom1][1] - x0[rock_atom2][1]); delta_z = (x0[rock_atom1][2] - x0[rock_atom2][2]); delta_mag = sqrt( delta_x*delta_x + delta_y*delta_y + delta_z*delta_z); check_force = (f0[rock_atom1][0]*delta_x + f0[rock_atom1][1]*delta_y + f0[rock_atom1][2]*delta_z )/delta_mag; if ( (update->ntimestep > 10) && check_force ==0 ) fprintf(screen, "Wrong!! force is zero !!!%f at timestep %d\n", check_force, update->ntimestep); pressure =-( (f0[rock_atom1][0]*delta_x+f0[rock_atom1][1]*delta_y + f0[rock_atom1][2]*delta_z) -(f0[rock_atom2][0]*delta_x+f0[rock_atom2][1]*delta_y + f0[rock_atom2][2]*delta_z) )/2.0/delta_mag; if (pressure < 0) pressure = 0; // this channel is partially filled with water channel_pressure[channel_atom] = pressure; if ((update->ntimestep %50000)==0) fprintf(screen, "channel pressure is %.2f MPa at x y z %f %f %f \n",channel_pressure[channel_atom]*1.e-6,x0[channel_atom][0],x0[channel_atom][1],x0[channel_atom][2]); } } /*====================================== routine used to check channel pressure only ======================================*/ /* void FixLubricationUpdatePKN:: check_channel_pressure() { int n; int nbondlist = neighbor->nbondlist; int **bondlist = neighbor->bondlist; int rock_atom1,rock_atom2,btype; int channel_atom; int *atype = atom->type; double *channel_pressure = atom->channel_pressure; double **x0 = atom->x0; for (n = 0; n < nbondlist; n++) { rock_atom1 = bondlist[n][0]; rock_atom2 = bondlist[n][1]; btype = bondlist[n][2]; if (btype != WET_CHANNEL_BOND_TYPE ) continue; channel_atom = find_channel_atom(rock_atom1, rock_atom2); // fprintf(screen, "===== check atype of this channel is %d (3?), channel_atom= %d at x y %f %f, pressure %f \n",atype[channel_atom],channel_atom, x0[channel_atom][0],x0[channel_atom][1],channel_pressure[channel_atom]); } } */ /*======================================== channel flow based on lubrication approximation ========================================*/ void FixLubricationUpdatePKN::lubrication(){ int n; int nlocal = atom->nlocal; int *atype = atom->type; double **x0 = atom ->x0; double **x = atom ->x; double channel_wi, channel_wj; double channel_pi, channel_pj; double local_w; double on_twelve_mu_L; double **v = atom->v; double L = 1.0; double vil; double mu = 1.e-3; //Pa.s int channel_atomi, channel_atomj; int *num_bond_channel_atom = atom ->num_bond_channel_atom; int **bond_channel_atom = atom->bond_channel_atom; int **bond_rock_channel_atom = atom->bond_rock_channel_atom; int ii; int *tag = atom->tag; double *channel_width = atom->channel_width; double *channel_width_old = atom->channel_width_old; double *channel_pressure = atom->channel_pressure; double vij; int rock_atom1, rock_atom2; int nstep = update->ntimestep; double ntime = update->dt; double dw; on_twelve_mu_L =1.0/(12.0*mu*L);// need to be rescaled if lattice spacing is not 1 meter. for (n=0; n<nlocal;n++){ if (atype[n] != CONNECTED_CHANNEL_ATOM_TYPE) continue; channel_width_old[n]= channel_width[n]; } for (n=0; n<nlocal;n++){ if (atype[n] != CONNECTED_CHANNEL_ATOM_TYPE ) continue; channel_atomi = n; for (ii = 0; ii <num_bond_channel_atom[channel_atomi]; ii++){ // if (tag[channel_atomi] > tag[channel_atomj]) continue; // double counting channel_atomj = atom->map(bond_channel_atom[channel_atomi][ii] ); if (atype[channel_atomj] != CONNECTED_CHANNEL_ATOM_TYPE ) continue; channel_wi = channel_width_old[channel_atomi]; channel_pi = channel_pressure[channel_atomi]; channel_wj = channel_width_old[channel_atomj]; channel_pj = channel_pressure[channel_atomj]; if (channel_pi > channel_pj){local_w = channel_wi;} else {local_w = channel_wj;} vij = (channel_pj-channel_pi)*local_w*local_w*local_w*on_twelve_mu_L; // channel_width[channel_atomi]+=vij *update->dt; dw = vij * update->dt; channel_width[channel_atomi]+=0.5*dw; channel_width[channel_atomj]-=0.5*dw; //channel_width[channel_atomi]+=dw; } } } /*======================================== channel atom update based on new channel width ========================================*/ void FixLubricationUpdatePKN::channel_update(){ int n; int nbondlist = neighbor->nbondlist; int **bondlist = neighbor->bondlist; int rock_atom1, rock_atom2,channel_atom; int btype; int *atype = atom->type; double *channel_width = atom->channel_width; double channel_w; double delta_x, delta_y, delta_z, delta_mag; double **x0 = atom->x0; double **x = atom->x; int newton_bond = force->newton_bond; int nlocal = atom->nlocal; // neighbor->build_topology(); for (n = 0; n < nbondlist; n++) { rock_atom1 = bondlist[n][0]; rock_atom2 = bondlist[n][1]; btype = bondlist[n][2]; if (btype != WET_CHANNEL_BOND_TYPE) continue;// this is not a wet channel channel_atom = find_channel_atom(rock_atom1, rock_atom2); if (atype[channel_atom] != CONNECTED_CHANNEL_ATOM_TYPE ) {fprintf(screen, "!!!!this bond should be wet channel but it is %d. Check again \n",atype[channel_atom]); continue;} channel_w = channel_width[channel_atom]; delta_x = x0[rock_atom1][0] - x0[rock_atom2][0]; delta_y = x0[rock_atom1][1] - x0[rock_atom2][1]; delta_z = x0[rock_atom1][2] - x0[rock_atom2][2]; delta_mag = sqrt (delta_x *delta_x + delta_y *delta_y +delta_z *delta_z); if (newton_bond || rock_atom1 <nlocal){ if (fabs(delta_x) == delta_mag) { x[rock_atom1][0] = x[channel_atom][0] +0.5*(1+channel_w) * delta_x/delta_mag; } if (fabs(delta_y) == delta_mag) { x[rock_atom1][1] = x[channel_atom][1] +0.5*(1+channel_w) * delta_y/delta_mag; } if (fabs(delta_z) == delta_mag) { x[rock_atom1][2] = x[channel_atom][2] +0.5*(1+channel_w) * delta_z/delta_mag; } } if (newton_bond || rock_atom2 <nlocal){ if (fabs(delta_x) == delta_mag) { x[rock_atom2][0] = x[channel_atom][0] -0.5*(1+channel_w) * delta_x/delta_mag; } if (fabs(delta_y) == delta_mag) { x[rock_atom2][1] = x[channel_atom][1] -0.5*(1+channel_w) * delta_y/delta_mag; } if (fabs(delta_z) == delta_mag) { x[rock_atom2][2] = x[channel_atom][2] -0.5*(1+channel_w) * delta_z/delta_mag; } } } } /*==================================================== find channel_atom between rock_atom1, and rock_atom2 ====================================================*/ int FixLubricationUpdatePKN::find_channel_atom(int rock_atom1, int rock_atom2){ int ii,jj; int return_channel_atom; double channelx,channely,channelz; double **x0 = atom->x0; int *num_bond_rock_channel_atom = atom->num_bond_rock_channel_atom; int **bond_rock_channel_atom = atom-> bond_rock_channel_atom; int *num_bond_channel_atom = atom->num_bond_channel_atom; int channel_atom; int *tag = atom->tag; return_channel_atom = -991; for (ii = 0; ii<num_bond_rock_channel_atom[rock_atom1]; ii++){ channelx = 0.5* ( x0[rock_atom1][0] + x0[rock_atom2][0]); channely = 0.5* ( x0[rock_atom1][1] + x0[rock_atom2][1]); channelz = 0.5* ( x0[rock_atom1][2] + x0[rock_atom2][2]); channel_atom = atom->map(bond_rock_channel_atom[rock_atom1][ii]); if ( (fabs(x0[channel_atom][0] - channelx) <1.e-6) && (fabs(x0[channel_atom][1] - channely) <1.e-6) && (fabs(x0[channel_atom][2] - channelz) <1.e-6) ){ return_channel_atom = channel_atom; } } return return_channel_atom; } void FixLubricationUpdatePKN::new_channel() { int *atype = atom->type; int n; int nlocal = atom->nlocal; int channel_atom; int rock_atom1, rock_atom2; double delta_x, delta_y, delta_z,dist; double **x = atom->x; int **bond_rock_channel_atom = atom->bond_rock_channel_atom; double *channel_width = atom->channel_width; int max_bond_num; int *num_bond_channel_atom = atom->num_bond_channel_atom; int **bond_channel_atom = atom->bond_channel_atom; int ii; int channel_atomj; int connection_check[6];//={0,0,0,0,0,0}; int check; int m; int PKN_cond; int cond0,cond1,cond2, cond3, cond4,cond5; int temp_channel_atom; double **x0 = atom->x0; double *channel_delta_cutoff = atom -> channel_delta_cutoff; double cutoff; for (n = 0; n<nlocal; n++){ // if (atype[n] != CHANNEL_ATOM_TYPE ) continue; if (atype[n] != ISOLATED_CHANNEL_ATOM_TYPE ) continue; channel_atom =n; rock_atom1 = atom->map(bond_rock_channel_atom[channel_atom][0]); rock_atom2 = atom->map(bond_rock_channel_atom[channel_atom][1]); delta_x = x[rock_atom1][0] - x[rock_atom2][0]; delta_y = x[rock_atom1][1] - x[rock_atom2][1]; delta_z = x[rock_atom1][2] - x[rock_atom2][2]; dist = sqrt (delta_x *delta_x + delta_y *delta_y +delta_z *delta_z); max_bond_num = num_bond_channel_atom[channel_atom]; check = 0; // check if this channel is connected to wet channel atoms for (m = 0;m <max_bond_num;m++){ temp_channel_atom = atom->map(bond_channel_atom[channel_atom][m]); check = (check || atype[temp_channel_atom] == CONNECTED_CHANNEL_ATOM_TYPE ); } if (check == 1){ // this dry channel atom becomes a wet channel atom now atype[channel_atom] = CONNECTED_CHANNEL_ATOM_TYPE; channel_width[channel_atom] = 0.0; } /* cutoff = channel_delta_cutoff[channel_atom]; // if (dist >cutoff && check ==1 ){ if (dist >cutoff){ PKN_cond = 1 ; if ( fabs(x0[channel_atom][0]- injection_x)> 0.5 *PKN_X ) { PKN_cond = 0; } if ( fabs(x0[channel_atom][1]- injection_y)> 0.5 *PKN_Y ) { PKN_cond = 0; } if ( fabs(x0[channel_atom][2]- injection_z)> 0.5 *PKN_Z ) { PKN_cond = 0; } if (PKN_cond == 0 ) continue; // outside the main fracture system if (check == 1) { // this atom becomes a wet channel atom now atype[channel_atom] = CONNECTED_CHANNEL_ATOM_TYPE; channel_width[channel_atom] = 0.0; } // else if (check == 0) {atype[channel_atom] = ISOLATED_CHANNEL_ATOM_TYPE;} // this atom becomes a dry channel atom now } */ } } void FixLubricationUpdatePKN::bond_break() { int n, m, rock_atom1, rock_atom2; int nlocal = atom->nlocal; int *atype = atom -> type; int *num_bond = atom-> num_bond; int **bond_atom = atom-> bond_atom; double atom1x, atom1y, atom1z; double atom2x, atom2y, atom2z; double delta_x, delta_y, delta_z; double dist; double **x = atom->x; double **x0 = atom->x0; int **bond_type = atom -> bond_type; int channel_atom; int nstep = update->ntimestep; double *channel_width = atom->channel_width; int PKN_cond; // add restrictions to fix fracture height double *channel_delta_cutoff = atom -> channel_delta_cutoff; double cutoff; for (n =0; n <nlocal; n++) { if (atype[n] != ROCK_ATOM_TYPE ) continue; // this is not a rock atom rock_atom1 = n; for (m = 0; m < num_bond[rock_atom1]; m++) { rock_atom2 = atom->map(bond_atom[rock_atom1][m]); if (atype[rock_atom2] != ROCK_ATOM_TYPE ) {fprintf(screen, "warning!! this should be a rock atom!!\n"); continue;} atom1x=x[rock_atom1][0]; atom1y=x[rock_atom1][1]; atom1z=x[rock_atom1][2]; atom2x=x[rock_atom2][0]; atom2y=x[rock_atom2][1]; atom2z=x[rock_atom2][2]; delta_x = atom1x - atom2x; delta_y = atom1y - atom2y; delta_z = atom1z - atom2z; dist = sqrt (delta_x*delta_x +delta_y*delta_y + delta_z*delta_z); if(dist > 1.1) { fprintf(screen, "!!!!! rock takes apart, dist = %f too big !!!\n", dist ); error->one(FLERR,"rock takes apart!"); // error->done(); // MPI_Finalize(); // exit(1); } channel_atom = find_channel_atom(rock_atom1, rock_atom2); // fprintf(screen, "injecting at x y z %.1f %.1f %.1f PKN X Y Z %.1f %.1f %.1f\n",injection_x, injection_y, injection_z, PKN_X, PKN_Y, PKN_Z); // fprintf(screen, "fixed pkn_y is %f\n ", PKN_Y); cutoff = channel_delta_cutoff[channel_atom]; if (bond_type[rock_atom1][m]== SPRING_BOND_TYPE && dist >cutoff){ PKN_cond = 1 ; if ( fabs(x0[channel_atom][0]- injection_x)> 0.5 *PKN_X ) { PKN_cond = 0; if ((update->ntimestep %50000)==0) fprintf(screen, "PKN x-constraint is on at x y z %.0f %.0f %.0f \n", x0[channel_atom][0],x0[channel_atom][1], x0[channel_atom][2]); } if ( fabs(x0[channel_atom][1]- injection_y)> 0.5 *PKN_Y ) { PKN_cond = 0; if ((update->ntimestep %50000)==0) fprintf(screen, "PKN y-constraint is on at x y z %.0f %.0f %.0f \n", x0[channel_atom][0],x0[channel_atom][1], x0[channel_atom][2]); } if ( fabs(x0[channel_atom][2]- injection_z)> 0.5 *PKN_Z ) { PKN_cond = 0; if ((update->ntimestep %50000)==0) fprintf(screen, "PKN z-constraint is on at x y z %.0f %.0f %.0f \n", x0[channel_atom][0],x0[channel_atom][1], x0[channel_atom][2]); } if (PKN_cond == 0 ) continue; // outside the main fracture system fprintf(screen, "ntimestep %d bond break dist %f > cutoff %f at atom1xyz,atom2xyz (%.0f %.0f %.0f), (%.0f %.0f %.0f) \n", nstep, dist, cutoff, x0[rock_atom1][0], x0[rock_atom1][1],x0[rock_atom1][2], x0[rock_atom2][0], x0[rock_atom2][1],x0[rock_atom2][2]); bond_type[rock_atom1][m] = DRY_CHANNEL_BOND_TYPE; atype[channel_atom] = ISOLATED_CHANNEL_ATOM_TYPE; } // channel bond type upate if ( bond_type[rock_atom1][m] == DRY_CHANNEL_BOND_TYPE && atype[channel_atom] == CONNECTED_CHANNEL_ATOM_TYPE ){ //dry channel bond becomes wet channel bond if it is a wet channel atom x[channel_atom][0] = 0.5*(x[rock_atom1][0] + x[rock_atom2][0] ); x[channel_atom][1] = 0.5*(x[rock_atom1][1] + x[rock_atom2][1] ); x[channel_atom][2] = 0.5*(x[rock_atom1][2] + x[rock_atom2][2] ); if (channel_width[channel_atom]+1 >dist) { bond_type[rock_atom1][m] = WET_CHANNEL_BOND_TYPE; fprintf(screen, "ntimestep %d wet channel created, dist %f > cutoff %f at x y z %f %f %f \n", nstep, dist, cutoff, x0[channel_atom][0], x0[channel_atom][1], x0[channel_atom][2]); } } } } } /*------------------------------------------------------*/ int FixLubricationUpdatePKN::pack_comm(int n, int *list, double *buf, int pbc_flag, int *pbc) { int i,j,m; m = 0; for (i = 0; i < n; i++) { j = list[i]; buf[m++] = partner[j]; } return 1; } /* ---------------------------------------------------------------------- */ void FixLubricationUpdatePKN::unpack_comm(int n, int first, double *buf) { int i,m,last; m = 0; last = first + n; for (i = first; i < last; i++){ partner[i] = static_cast<int> (buf[m++]); } } /* ---------------------------------------------------------------------- */ int FixLubricationUpdatePKN::pack_reverse_comm(int n, int first, double *buf) { int i,m,last; m = 0; last = first + n; for (i = first; i < last; i++){ buf[m++] = partner[i]; } return 1; } /* ---------------------------------------------------------------------- */ void FixLubricationUpdatePKN::unpack_reverse_comm(int n, int *list, double *buf) { int i,j,m; m = 0; for (i = 0; i < n; i++) { j = list[i]; partner[j] += static_cast<int> (buf[m++]); } } /*============================= =============================*/ double FixLubricationUpdatePKN::memory_usage() { int nmax = atom->nmax; double bytes = nmax*sizeof(int); return bytes; }
[ "weijin@dhcp-180-211.ph.utexas.edu" ]
weijin@dhcp-180-211.ph.utexas.edu
c1004facbdd79b593d465a3a5ed9546531ac528d
24c3b6ee3e2b06288bed587e34751969b4a73e31
/AtCoder/Virtual/20200605/E.cpp
08f21044e9fa74696146bf45deceede0698837eb
[]
no_license
KatsuyaKikuchi/ProgrammingContest
89afbda50d1cf59fc58d8a9e25e6660334f18a2a
d9254202eec56f96d8c5b508556464a3f87a0a4f
refs/heads/master
2023-06-05T20:07:36.334182
2021-06-13T13:55:06
2021-06-13T13:55:06
318,641,671
0
0
null
null
null
null
UTF-8
C++
false
false
930
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll, ll> pll; #define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i)) #define REP(i, n) FOR(i,n,0) #define OF64 std::setprecision(10) const ll MOD = 1000000007; const ll INF = (ll) 1e15; ll N, K; ll A[200005]; ll F[200005]; bool check(ll n) { ll k = 0; REP(i, N) { if (A[i] * F[i] <= n) continue; ll p = n / F[i]; k += A[i] - p; } return k <= K; } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> K; REP(i, N) { cin >> A[i]; } REP(i, N) { cin >> F[i]; } sort(A, A + N, greater<ll>()); sort(F, F + N); ll ans = INF, ng = -1; while (abs(ans - ng) > 1) { ll mid = (ans + ng) / 2; if (check(mid)) ans = mid; else ng = mid; } cout << ans << endl; return 0; }
[ "k.kikuchi.ah@gmail.com" ]
k.kikuchi.ah@gmail.com
3bce8cdbcf6878595528d41afa636fb461c7598e
e5c2ccc63424284d9c6b734c6f6756dc14fa76ed
/SoooA/src/ssd/MultiBoxLossLayer.cpp
d91d1ae8c6c17a7d637067f9edf9130d7a4ead6c
[ "Apache-2.0" ]
permissive
XJTUeducation/SoooA
2bf37b5f75bad133d7704045eeac4e981fbdef32
ac00d07167f03380477d88c58f0aaaade469c873
refs/heads/master
2020-04-09T18:49:01.022527
2017-11-30T07:08:22
2017-11-30T07:08:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
30,673
cpp
/* * MultiBoxLossLayer.cpp * * Created on: Apr 27, 2017 * Author: jkim */ #include "MultiBoxLossLayer.h" #include "ssd_common.h" #include "SmoothL1LossLayer.h" #include "SoftmaxWithLossLayer.h" #include "SysLog.h" #include "BBoxUtil.h" #include "MathFunctions.h" #include "PropMgmt.h" #include "EnumDef.h" #include "InnerLayerFunc.h" #include "PlanParser.h" #define MULTIBOXLOSSLAYER_LOG 0 using namespace std; template <typename Dtype> MultiBoxLossLayer<Dtype>::MultiBoxLossLayer() : LossLayer<Dtype>(), locPred("locPred"), locGt("locGt"), locLoss("locLoss"), confPred("confPred"), confGt("confGt"), confLoss("confLoss") { this->type = Layer<Dtype>::MultiBoxLoss; vector<bool>& propDown = SLPROP_BASE(propDown); if (propDown.size() == 0) { propDown.push_back(true); propDown.push_back(true); propDown.push_back(false); propDown.push_back(false); } const int numClasses = SLPROP(MultiBoxLoss, numClasses); const bool shareLocation = SLPROP(MultiBoxLoss, shareLocation); const MiningType miningType = SLPROP(MultiBoxLoss, miningType); bool& doNegMining = SLPROP(MultiBoxLoss, doNegMining); // Get other parameters. SASSERT(numClasses >= 0, "Must provide numClasses > 0"); doNegMining = (miningType != MiningType::MINING_NONE) ? true : false; this->locClasses = shareLocation ? 1 : numClasses; if (doNegMining) { SASSERT(shareLocation, "Currently only support negative mining if shareLocation is true."); } #if 0 InnerLayerFunc::initLayer(0); InnerLayerFunc::initLayer(1); // 일단 constructor에서 test // 현 시점에서 input/output data가 레이어에 설정되지 않았다면 reshape에서 1번만 실행하도록. // -> 일단 input/output data를 ref하지 않긴한데... // inner layer 자체적으로 input/output data가 아직 지정되지 않았을 수 있음. InnerLayerFunc::setInOutTensor(0, (void*)&this->locPred, true, 0); InnerLayerFunc::setInOutTensor(0, (void*)&this->locGt, true, 1); InnerLayerFunc::setInOutTensor(0, (void*)&this->locLoss, false, 0); InnerLayerFunc::setInOutTensor(1, (void*)&this->confPred, true, 0); InnerLayerFunc::setInOutTensor(1, (void*)&this->confGt, true, 1); InnerLayerFunc::setInOutTensor(1, (void*)&this->confLoss, false, 0); #endif #if 0 vector<uint32_t> lossShape(4, 1); // Set up localization loss layer // fake shape vector<uint32_t> locShape(4, 1); locShape[3] = 4; this->locPred.reshape(locShape); this->locGt.reshape(locShape); this->locInputVec.push_back(&this->locPred); this->locInputVec.push_back(&this->locGt); this->locLoss.reshape(lossShape); this->locOutputVec.push_back(&this->locLoss); if (SLPROP(MultiBoxLoss, locLossType) == LocLossType::SMOOTH_L1) { /* SmoothL1LossLayer<float>::Builder* smoothL1LossLayerBuilder = new typename SmoothL1LossLayer<float>::Builder(); smoothL1LossLayerBuilder ->id(0) ->name(this->name + "_smooth_L1_loc") ->lossWeight(SLPROP(MultiBoxLoss, locWeight)); this->locLossLayer = smoothL1LossLayerBuilder->build(); */ } else { SASSERT(false, "Unknown localization loss type."); } setLayerData(this->locLossLayer, "input", this->locInputVec); setLayerData(this->locLossLayer, "output", this->locOutputVec); // Set up confidence loss layer. this->confInputVec.push_back(&this->confPred); this->confInputVec.push_back(&this->confGt); this->confLoss.reshape(lossShape); this->confOutputVec.push_back(&this->confLoss); if (SLPROP(MultiBoxLoss, confLossType) == ConfLossType::SOFTMAX) { /* SASSERT(SLPROP(MultiBoxLoss, backgroundLabelId) >= 0, "backgroundLabelId should be within [0, numClasses) for Softmax."); SASSERT(SLPROP(MultiBoxLoss, backgroundLabelId) < numClasses, "backgroundLabelId should be within [0, numClasses) for Softmax."); SoftmaxWithLossLayer<float>::Builder* softmaxWithLossLayerBuilder = new typename SoftmaxWithLossLayer<float>::Builder(); softmaxWithLossLayerBuilder ->id(0) ->name(this->name + "_softmax_conf") ->lossWeight(Dtype(1.)) ->normalization(LossLayer<float>::NormalizationMode::NoNormalization) ->softmaxAxis(3); this->confLossLayer = softmaxWithLossLayerBuilder->build(); */ } else { SASSERT(false, "Unknown confidence loss type."); } setLayerData(this->confLossLayer, "input", this->confInputVec); setLayerData(this->confLossLayer, "output", this->confOutputVec); #endif const LocLossType locLossType = SLPROP(MultiBoxLoss, locLossType); this->locLossLayer = buildLocLossLayer(locLossType); const ConfLossType confLossType = SLPROP(MultiBoxLoss, confLossType); this->confLossLayer = buildConfLossLayer(confLossType); } template <typename Dtype> MultiBoxLossLayer<Dtype>::~MultiBoxLossLayer() { } template <typename Dtype> void MultiBoxLossLayer<Dtype>::reshape() { Layer<Dtype>::_adjustInputShape(); bool inputShapeChanged = false; for (int i = 0; i < this->_inputData.size(); i++) { if (Layer<Dtype>::_isInputShapeChanged(0)) { inputShapeChanged = true; break; } } if (!inputShapeChanged) return; const int numClasses = SLPROP(MultiBoxLoss, numClasses); this->num = this->_inputData[0]->batches(); this->numPriors = this->_inputData[2]->channels() / 4; this->numGt = this->_inputData[3]->height(); //cout << "num=" << this->num << ", numPriors=" << this->numPriors << // ", numGt=" << this->numGt << ", locClasses=" << this->locClasses << endl; //cout << "channel0=" << this->_inputData[0]->channels() << ", channel1=" << this->_inputData[1]->channels() << endl; SASSERT0(this->_inputData[0]->batches() == this->_inputData[1]->batches()); SASSERT(this->numPriors * this->locClasses * 4 == this->_inputData[0]->channels(), "Number of priors must match number of location predictions."); SASSERT(this->numPriors * numClasses == this->_inputData[1]->channels(), "Number of priors must match number of confidence predictions."); this->_outputData[0]->reshape({1, 1, 1, 1}); this->_outputData[0]->mutable_host_grad()[0] = SLPROP(Loss, lossWeight); } template <typename Dtype> void MultiBoxLossLayer<Dtype>::feedforward() { #if 0 #endif reshape(); const int sampleSize = SLPROP(MultiBoxLoss, sampleSize); const uint32_t backgroundLabelId = SLPROP(MultiBoxLoss, backgroundLabelId); const uint32_t numClasses = SLPROP(MultiBoxLoss, numClasses); const float overlapThreshold = SLPROP(MultiBoxLoss, overlapThreshold); const float negPosRatio = SLPROP(MultiBoxLoss, negPosRatio); const float negOverlap = SLPROP(MultiBoxLoss, negOverlap); const float locWeight = SLPROP(MultiBoxLoss, locWeight); const bool useDifficultGt = SLPROP(MultiBoxLoss, useDifficultGt); const bool shareLocation = SLPROP(MultiBoxLoss, shareLocation); const bool bpInside = SLPROP(MultiBoxLoss, bpInside); const bool doNegMining = SLPROP(MultiBoxLoss, doNegMining); const bool mapObjectToAgnostic = SLPROP(MultiBoxLoss, mapObjectToAgnostic); const bool usePriorForMatching = SLPROP(MultiBoxLoss, usePriorForMatching); const bool encodeVarianceInTarget = SLPROP(MultiBoxLoss, encodeVarianceInTarget); const bool ignoreCrossBoundaryBBox = SLPROP(MultiBoxLoss, ignoreCrossBoundaryBBox); const bool usePriorForNMS = SLPROP(MultiBoxLoss, usePriorForNMS); const MatchType matchType = SLPROP(MultiBoxLoss, matchType); const CodeType codeType = SLPROP(MultiBoxLoss, codeType); const ConfLossType confLossType = SLPROP(MultiBoxLoss, confLossType); const LocLossType locLossType = SLPROP(MultiBoxLoss, locLossType); const MiningType miningType = SLPROP(MultiBoxLoss, miningType); const NonMaximumSuppressionParam& nmsParam = SLPROP(MultiBoxLoss, nmsParam); const Dtype* locData = this->_inputData[0]->host_data(); const Dtype* confData = this->_inputData[1]->host_data(); const Dtype* priorData = this->_inputData[2]->host_data(); const Dtype* gtData = this->_inputData[3]->host_data(); this->allMatchIndices.clear(); this->allNegIndices.clear(); // Retrieve all ground truth // key: item_id (index in batch), value: gt bbox list belongs to item_id map<int, vector<NormalizedBBox>> allGtBBoxes; GetGroundTruth(gtData, this->numGt, backgroundLabelId, useDifficultGt, &allGtBBoxes); #if 0//MULTIBOXLOSSLAYER_LOG cout << "GetGroundTruth()" << endl; for (auto it = allGtBBoxes.begin(); it != allGtBBoxes.end(); it++) { //cout << "for itemId: " << it->first << endl; for (int i = 0; i < it->second.size(); i++) { //cout << "\t" << i << endl; //it->second[i].print(); cout << it->second[i].xmin << "," << it->second[i].ymin << "," << it->second[i].xmax << "," << it->second[i].ymax << "," << it->second[i].label << "," << it->second[i].difficult << "," << it->second[i].score << "," << it->second[i].size << endl; } } #endif // Retrieve all prior bboxes. It is same withing a batch since we assume all // images in a batch are of same dimension. // all prior bboxes vector<NormalizedBBox> priorBBoxes; // all prior variances vector<vector<float>> priorVariances; GetPriorBBoxes(priorData, this->numPriors, &priorBBoxes, &priorVariances); #if 0//MULTIBOXLOSSLAYER_LOG cout << "GetPriorBBoxes()" << endl; for (int i = 0; i < priorBBoxes.size(); i++) { cout << priorBBoxes[i].xmin << "," << priorBBoxes[i].ymin << "," << priorBBoxes[i].xmax << "," << priorBBoxes[i].ymax << "," << priorBBoxes[i].label << "," << priorBBoxes[i].difficult << "," << priorBBoxes[i].score << "," << priorBBoxes[i].size << endl; //priorBBoxes[i].print(); //cout << "-----" << endl; } cout << "priorVariances ... " << endl; for (int i = 0; i < priorVariances.size(); i++) { cout << priorVariances[i][0] << "," << priorVariances[i][1] << "," << priorVariances[i][2] << "," << priorVariances[i][3] << endl; //for (int j = 0; j < 4; j++) { // cout << priorVariances[i][j] << ","; //cout << "-----" << endl; //} //cout << endl; } #endif // Retrieve all predictions. // allLocPreds[0]: 첫번째 이미지의 prediction ... // allLocPreds[0][-1]: shareLocation==true인 경우 label은 오직 -1뿐, // -1 key에 전체 prediction box list를 value로 contain. vector<LabelBBox> allLocPreds; GetLocPredictions(locData, this->num, this->numPriors, this->locClasses, shareLocation, &allLocPreds); #if 0//MULTIBOXLOSSLAYER_LOG //this->_printOn(); //this->_inputData[0]->print_data({}, false); //this->_printOff(); cout << "GetLocPredictions()" << endl; for (int i = 0; i < allLocPreds.size(); i++) { /* LabelBBox& labelBBox = allLocPreds[i]; for (LabelBBox::iterator it = labelBBox.begin(); it != labelBBox.end(); it++) { //cout << it->first << endl; //for (int j = 0; j < 10; j++) { // it->second[j].print(); // cout << "-------" << endl; //} } */ map<int, vector<NormalizedBBox>>& locPred = allLocPreds[i]; for (map<int, vector<NormalizedBBox>>::iterator it = locPred.begin(); it != locPred.end(); it++) { //cout << "for itemId: " << it->first << endl; for (int i = 0; i < it->second.size(); i++) { //cout << "\t" << i << endl; //it->second[i].print(); cout << it->second[i].xmin << "," << it->second[i].ymin << "," << it->second[i].xmax << "," << it->second[i].ymax << "," << it->second[i].label << "," << it->second[i].difficult << "," << it->second[i].score << "," << it->second[i].size << endl; } } } #endif // Find matches between source bboxes and ground truth bboxes. // for each image in batch, (label : overlaps for each prior bbox) vector<map<int, vector<float>>> allMatchOverlaps; // allMatchOverlaps: batch내 각 이미지에 대한 (label=-1:prior bbox overlap)맵 리스트 // allMatchIndices: batch내 각 이미지에 대한 최대 match gt index 맵 리스트 FindMatches(allLocPreds, allGtBBoxes, priorBBoxes, priorVariances, numClasses, shareLocation, matchType, overlapThreshold, usePriorForMatching, backgroundLabelId, codeType, encodeVarianceInTarget, ignoreCrossBoundaryBBox, &allMatchOverlaps, &this->allMatchIndices); #if MULTIBOXLOSSLAYER_LOG cout << "FindMatches()" << endl; cout << "allMatchOverlaps: " << allMatchOverlaps.size() << endl; for (int i = 0; i < allMatchOverlaps.size(); i++) { map<int, vector<float>>& matchOverlaps = allMatchOverlaps[i]; for (map<int, vector<float>>::iterator it = matchOverlaps.begin(); it != matchOverlaps.end(); it++) { cout << it->first << ": " << it->second.size() << endl; for (int j = 0; j < it->second.size(); j++) { cout << it->second[j] << ","; if ((j+1) % 1000 == 0) cout << endl; //if (it->second[j] > 1e-6) { //cout << j << "\t\t" << it->second[j] << endl; //} } cout << endl; } } cout << "allMatchIndices: " << this->allMatchIndices.size() << endl; for (int i = 0; i < this->allMatchIndices.size(); i++) { int matchCount = 0; map<int, vector<int>>& matchIndices = this->allMatchIndices[i]; for (map<int, vector<int>>::iterator it = matchIndices.begin(); it != matchIndices.end(); it++) { cout << it->first << ": " << it->second.size() << endl; for (int j = 0; j < it->second.size(); j++) { cout << it->second[j] << ","; if ((j+1) % 1000 == 0) cout << endl; //if (it->second[j] > -1) { //cout << j << "\t\t" << it->second[j] << endl; //matchCount++; //} } cout << endl; } //cout << "match count: " << matchCount << endl; } #endif this->numMatches = 0; int numNegs = 0; // Sample hard negative (and positive) examples based on mining type. // allNegInidices: batch내 이미지별 negative sample 리스트. MineHardExamples(*this->_inputData[1], allLocPreds, allGtBBoxes, priorBBoxes, priorVariances, allMatchOverlaps, numClasses, backgroundLabelId, usePriorForNMS, confLossType, miningType, locLossType, negPosRatio, negOverlap, codeType, encodeVarianceInTarget, nmsParam.nmsThreshold, nmsParam.topK, sampleSize, bpInside, usePriorForMatching, &this->numMatches, &numNegs, &this->allMatchIndices, &this->allNegIndices); #if MULTIBOXLOSSLAYER_LOG // std::vector<std::vector<int>> allNegIndices; for (int i = 0; i < this->allNegIndices.size(); i++) { cout << i << "-----" << endl; for (int j = 0; j < this->allNegIndices[i].size(); j++) { cout << j << "\t\t" << this->allNegIndices[i][j] << endl; } } cout << "numNegs: " << numNegs << endl; #endif // if (this->numMatches >= 1) { // Form data to pass on to locLossLayer vector<uint32_t> locShape(4, 1); locShape[3] = this->numMatches * 4; this->locPred.reshape(locShape); // {1, 1, 1, numMatches * 4} this->locGt.reshape(locShape); // {1, 1, 1, numMatches * 4} Dtype* locPredData = this->locPred.mutable_host_data(); Dtype* locGtData = this->locGt.mutable_host_data(); EncodeLocPrediction(allLocPreds, allGtBBoxes, this->allMatchIndices, priorBBoxes, priorVariances, codeType, encodeVarianceInTarget, bpInside, usePriorForMatching, locPredData, locGtData); #if MULTIBOXLOSSLAYER_LOG this->_printOn(); this->locPred.print_data({}, false, -1); this->locGt.print_data({}, false, -1); this->_printOff(); #endif //this->locLossLayer->reshape(); ->> feedforward에서 reshape하므로 삭제! #if MULTIBOXLOSSLAYER_LOG this->locPred.print_shape(); this->locGt.print_shape(); this->locLoss.print_shape(); #endif this->locLossLayer->feedforward(); //InnerLayerFunc::runForward(0, -1); } else { this->locLoss.mutable_host_data()[0] = 0; } #if MULTIBOXLOSSLAYER_LOG this->_printOn(); this->locLoss.print_data({}, false, -1); this->_printOff(); #endif // Form data to pass on to confLossLayer. if (doNegMining) { this->numConf = this->numMatches + numNegs; } else { this->numConf = this->num * this->numPriors; } if (this->numConf >= 1) { // Reshape the confidence data. vector<uint32_t> confShape(4, 1); if (confLossType == ConfLossType::SOFTMAX) { confShape[0] = this->numConf; this->confGt.reshape(confShape); // {numConf, 1, 1, 1} confShape[1] = numClasses; this->confPred.reshape(confShape); // {numConf, numClasses, 1, 1} } else { SASSERT(false, "Unknown confidence loss type."); } if (!doNegMining) { // Consider all scores. // Share data and grad with inputData[1] SASSERT0(this->confPred.getCount() == this->_inputData[1]->getCount()); this->confPred.share_data(this->_inputData[1]); } Dtype* confPredData = this->confPred.mutable_host_data(); Dtype* confGtData = this->confGt.mutable_host_data(); soooa_set(this->confGt.getCount(), Dtype(backgroundLabelId), confGtData); EncodeConfPrediction(confData, this->num, this->numPriors, numClasses, backgroundLabelId, mapObjectToAgnostic, miningType, confLossType, this->allMatchIndices, this->allNegIndices, allGtBBoxes, confPredData, confGtData); #if MULTIBOXLOSSLAYER_LOG this->_printOn(); this->confGt.print_data({}, false, -1); this->confPred.print_data({}, false, -1); this->_printOff(); #endif //this->confLossLayer->reshape(); ->> feedforward에서 reshap하므로 삭제! this->confLossLayer->feedforward(); //InnerLayerFunc::runForward(0, -1); } else { this->confLoss.mutable_host_data()[0] = 0; } this->_outputData[0]->mutable_host_data()[0] = 0; const NormalizationMode normalizationMode = SLPROP(Loss, normalization); if (SLPROP_BASE(propDown)[0]) { Dtype normalizer = LossLayer<Dtype>::getNormalizer(normalizationMode, this->num, this->numPriors, this->numMatches); this->_outputData[0]->mutable_host_data()[0] += locWeight * this->locLoss.host_data()[0] / normalizer; } if (SLPROP_BASE(propDown)[1]) { Dtype normalizer = LossLayer<Dtype>::getNormalizer(normalizationMode, this->num, this->numPriors, this->numMatches); this->_outputData[0]->mutable_host_data()[0] += this->confLoss.host_data()[0] / normalizer; } } template <typename Dtype> void MultiBoxLossLayer<Dtype>::backpropagation() { SASSERT(!SLPROP_BASE(propDown)[2], "MultiBoxLossLayer cannot backpropagate to prior inputs."); SASSERT(!SLPROP_BASE(propDown)[3], "MultiBoxLossLayer cannot backpropagate to label inputs."); //this->_printOn(); //this->_inputData[0]->print_data({}, false, -1); // Back propagate on location prediction. if (SLPROP_BASE(propDown)[0]) { Dtype* locInputGrad = this->_inputData[0]->mutable_host_grad(); soooa_set(this->_inputData[0]->getCount(), Dtype(0), locInputGrad); //this->_inputData[0]->print_grad({}, false, -1); if (this->numMatches >= 1) { /* vector<bool> locPropDown; // Only back propagate on prediction, not ground truth. locPropDown.push_back(true); locPropDown.push_back(false); this->locLossLayer->_propDown = locPropDown; */ this->locLossLayer->backpropagation(); //InnerLayerFunc::runBackward(0); // Scale gradient. const NormalizationMode normalizationMode = SLPROP(Loss, normalization); Dtype normalizer = LossLayer<Dtype>::getNormalizer(normalizationMode, this->num, this->numPriors, this->numMatches); Dtype lossWeight = this->_outputData[0]->host_grad()[0] / normalizer; soooa_gpu_scal(this->locPred.getCount(), lossWeight, this->locPred.mutable_device_grad()); //this->locPred.print_grad({}, false, -1); // Copy gradient back to inputData[0] const Dtype* locPredGrad = this->locPred.host_grad(); int count = 0; for (int i = 0; i < this->num; i++) { for (map<int, vector<int>>::iterator it = this->allMatchIndices[i].begin(); it != this->allMatchIndices[i].end(); it++) { const int label = SLPROP(MultiBoxLoss, shareLocation) ? 0 : it->first; const vector<int>& matchIndex = it->second; for (int j = 0; j < matchIndex.size(); j++) { if (matchIndex[j] <= -1) { continue; } // Copy the grad to the right place. int startIdx = this->locClasses * 4 * j + label * 4; soooa_copy<Dtype>(4, locPredGrad + count * 4, locInputGrad + startIdx); count++; } } locInputGrad += this->_inputData[0]->offset(1); } //this->_inputData[0]->print_grad({}, false, -1); } } //this->_printOff(); // Back propagate on confidence prediction. if (SLPROP_BASE(propDown)[1]) { Dtype* confInputGrad = this->_inputData[1]->mutable_host_grad(); soooa_set(this->_inputData[1]->getCount(), Dtype(0), confInputGrad); if (this->numConf >= 1) { /* vector<bool> confPropDown; // Only back propagate on prediction, not ground truth. confPropDown.push_back(true); confPropDown.push_back(false); this->confLossLayer->_propDown = confPropDown; */ this->confLossLayer->backpropagation(); //InnerLayerFunc::runBackward(1); //this->_printOn(); //this->locPred.print_grad({}, false, -1); //this->_printOff(); // Scale gradient. const NormalizationMode normalizationMode = SLPROP(Loss, normalization); Dtype normalizer = LossLayer<Dtype>::getNormalizer(normalizationMode, this->num, this->numPriors, this->numMatches); Dtype lossWeight = this->_outputData[0]->host_grad()[0] / normalizer; soooa_gpu_scal(this->confPred.getCount(), lossWeight, this->confPred.mutable_device_grad()); // Copy gradient back to inputData[1] const Dtype* confPredGrad = this->confPred.host_grad(); if (SLPROP(MultiBoxLoss, doNegMining)) { int count = 0; for (int i = 0; i < this->num; i++) { // Copy matched (positive) bboxes scores' grad. const map<int, vector<int>>& matchIndices = this->allMatchIndices[i]; for (map<int, vector<int>>::const_iterator it = matchIndices.begin(); it != matchIndices.end(); it++) { const vector<int>& matchIndex = it->second; SASSERT0(matchIndex.size() == this->numPriors); for (int j = 0; j < this->numPriors; j++) { if (matchIndex[j] <= -1) { continue; } // Copy the grad to the right place. soooa_copy<Dtype>(SLPROP(MultiBoxLoss, numClasses), confPredGrad + count * SLPROP(MultiBoxLoss, numClasses), confInputGrad + j * SLPROP(MultiBoxLoss, numClasses)); count++; } } // Copy negative bboxes scores' grad for (int n = 0; n < this->allNegIndices[i].size(); n++) { int j = this->allNegIndices[i][n]; SASSERT0(j < this->numPriors); soooa_copy<Dtype>(SLPROP(MultiBoxLoss, numClasses), confPredGrad + count * SLPROP(MultiBoxLoss, numClasses), confInputGrad + j * SLPROP(MultiBoxLoss, numClasses)); count++; } confInputGrad += this->_inputData[1]->offset(1); } } else { // The grad is already computed and stored. this->_inputData[1]->share_grad(&this->confPred); } } } // After backward, remove match statistics. this->allMatchIndices.clear(); this->allNegIndices.clear(); } template <typename Dtype> Dtype MultiBoxLossLayer<Dtype>::cost() { return this->_outputData[0]->host_data()[0]; } template <typename Dtype> void MultiBoxLossLayer<Dtype>::setLayerData(Layer<Dtype>* layer, const std::string& type, std::vector<Data<Dtype>*>& dataVec) { /* if (type == "input") { for (int i = 0; i < dataVec.size(); i++) { layer->_inputs.push_back(dataVec[i]->_name); layer->_inputData.push_back(dataVec[i]); } } else if (type == "output") { for (int i = 0; i < dataVec.size(); i++) { layer->_outputs.push_back(dataVec[i]->_name); layer->_outputData.push_back(dataVec[i]); } } else { SASSERT(false, "invalid layer data type."); } */ } template <typename Dtype> Layer<Dtype>* MultiBoxLossLayer<Dtype>::buildLocLossLayer(const LocLossType locLossType) { const float locWeight = SLPROP(MultiBoxLoss, locWeight); Layer<Dtype>* locLossLayer = NULL; vector<uint32_t> lossShape(4, 1); // {1, 1, 1, 1} // Set up localization loss layer vector<Data<Dtype>*> locInputVec; vector<Data<Dtype>*> locOutputVec; // fake shape vector<uint32_t> locShape(4, 1); locShape[3] = 4; this->locPred.reshape(locShape); this->locGt.reshape(locShape); locInputVec.push_back(&this->locPred); locInputVec.push_back(&this->locGt); this->locLoss.reshape(lossShape); locOutputVec.push_back(&this->locLoss); switch(locLossType) { case SMOOTH_L1: { stringstream smoothl1lossDef; smoothl1lossDef << "{\n"; smoothl1lossDef << "\t\"name\" : \"inner_smooth_l1_loss\",\n"; smoothl1lossDef << "\t\"id\" : 0,\n"; smoothl1lossDef << "\t\"layer\" : \"SmoothL1Loss\",\n"; smoothl1lossDef << "\t\"input\" : [\"locPred\", \"locGt\"],\n"; smoothl1lossDef << "\t\"output\" : [\"locLoss\"],\n"; smoothl1lossDef << "\t\"lossWeight\" : " << std::fixed << std::setprecision(5) << locWeight << ",\n"; smoothl1lossDef << "\t\"propDown\" : [true, false]\n"; //smoothl1lossDef << "\t\"\" : \"\",\n"; smoothl1lossDef << "}\n"; cout << smoothl1lossDef.str() << endl; _SmoothL1LossPropLayer* prop = new _SmoothL1LossPropLayer(); Json::Reader reader; Json::Value layer; reader.parse(smoothl1lossDef, layer); vector<string> keys = layer.getMemberNames(); string layerType = layer["layer"].asCString(); for (int j = 0; j < keys.size(); j++) { string key = keys[j]; Json::Value val = layer[key.c_str()]; if (strcmp(key.c_str(), "layer") == 0) continue; if (strcmp(key.c_str(), "innerLayer") == 0) continue; PlanParser::setPropValue(val, true, layerType, key, (void*)prop); } locLossLayer = new SmoothL1LossLayer<Dtype>(prop); delete prop; } break; default: SASSERT(false, "Unknown localization loss type."); break; } //setLayerData(this->locLossLayer, "input", this->locInputVec); //setLayerData(this->locLossLayer, "output", this->locOutputVec); locLossLayer->_inputData = locInputVec; locLossLayer->_outputData = locOutputVec; return locLossLayer; } template <typename Dtype> Layer<Dtype>* MultiBoxLossLayer<Dtype>::buildConfLossLayer(const ConfLossType confLossType) { Layer<Dtype>* confLossLayer = NULL; const int numClasses = SLPROP(MultiBoxLoss, numClasses); vector<uint32_t> lossShape(4, 1); // {1, 1, 1, 1} vector<Data<Dtype>*> confInputVec; vector<Data<Dtype>*> confOutputVec; // Set up confidence loss layer. confInputVec.push_back(&this->confPred); confInputVec.push_back(&this->confGt); this->confLoss.reshape(lossShape); confOutputVec.push_back(&this->confLoss); switch(confLossType) { case SOFTMAX: { SASSERT(SLPROP(MultiBoxLoss, backgroundLabelId) >= 0, "backgroundLabelId should be within [0, numClasses) for Softmax."); SASSERT(SLPROP(MultiBoxLoss, backgroundLabelId) < numClasses, "backgroundLabelId should be within [0, numClasses) for Softmax."); stringstream softmaxWithLossDef; softmaxWithLossDef << "{\n"; softmaxWithLossDef << "\t\"name\" : \"inner_softmax_with_loss\",\n"; softmaxWithLossDef << "\t\"id\" : 0,\n"; softmaxWithLossDef << "\t\"layer\" : \"SoftmaxWithLoss\",\n"; softmaxWithLossDef << "\t\"input\" : [\"confPred\", \"confGt\"],\n"; softmaxWithLossDef << "\t\"output\" : [\"confLoss\"],\n"; softmaxWithLossDef << "\t\"lossWeight\" : 1.0,\n"; //softmaxWithLossDef << "\t\"normalization\" : NormalizationMode::NoNormalization,\n"; softmaxWithLossDef << "\t\"normalization\" : \"NoNormalization\",\n"; softmaxWithLossDef << "\t\"softmaxAxis\" : 1,\n"; softmaxWithLossDef << "\t\"propDown\" : [true, false]\n"; //softmaxWithLossDef << "\t\"\" : \"\",\n"; softmaxWithLossDef << "}\n"; cout << softmaxWithLossDef.str() << endl; _SoftmaxWithLossPropLayer* prop = new _SoftmaxWithLossPropLayer(); Json::Reader reader; Json::Value layer; reader.parse(softmaxWithLossDef, layer); vector<string> keys = layer.getMemberNames(); string layerType = layer["layer"].asCString(); for (int j = 0; j < keys.size(); j++) { string key = keys[j]; Json::Value val = layer[key.c_str()]; if (strcmp(key.c_str(), "layer") == 0) continue; if (strcmp(key.c_str(), "innerLayer") == 0) continue; PlanParser::setPropValue(val, true, layerType, key, (void*)prop); } for (int i = 0; i < prop->_propDown_.size(); i++) { cout << "propDown=" << prop->_propDown_[i] << endl; } confLossLayer = new SoftmaxWithLossLayer<Dtype>(prop); delete prop; /* SoftmaxWithLossLayer<float>::Builder* softmaxWithLossLayerBuilder = new typename SoftmaxWithLossLayer<float>::Builder(); softmaxWithLossLayerBuilder ->id(0) ->name(this->name + "_softmax_conf") ->lossWeight(Dtype(1.)) ->normalization(LossLayer<float>::NormalizationMode::NoNormalization) ->softmaxAxis(3); this->confLossLayer = softmaxWithLossLayerBuilder->build(); */ } break; default: SASSERT(false, "Unknown confidence loss type."); break; } //setLayerData(this->confLossLayer, "input", this->confInputVec); //setLayerData(this->confLossLayer, "output", this->confOutputVec); confLossLayer->_inputData = confInputVec; confLossLayer->_outputData = confOutputVec; return confLossLayer; } /**************************************************************************** * layer callback functions ****************************************************************************/ template<typename Dtype> void* MultiBoxLossLayer<Dtype>::initLayer() { MultiBoxLossLayer* layer = new MultiBoxLossLayer<Dtype>(); return (void*)layer; } template<typename Dtype> void MultiBoxLossLayer<Dtype>::destroyLayer(void* instancePtr) { MultiBoxLossLayer<Dtype>* layer = (MultiBoxLossLayer<Dtype>*)instancePtr; delete layer; } template<typename Dtype> void MultiBoxLossLayer<Dtype>::setInOutTensor(void* instancePtr, void* tensorPtr, bool isInput, int index) { if (isInput) { SASSERT0(index < 4); } else { SASSERT0(index < 1); } MultiBoxLossLayer<Dtype>* layer = (MultiBoxLossLayer<Dtype>*)instancePtr; if (isInput) { SASSERT0(layer->_inputData.size() == index); layer->_inputData.push_back((Data<Dtype>*)tensorPtr); } else { SASSERT0(layer->_outputData.size() == index); layer->_outputData.push_back((Data<Dtype>*)tensorPtr); } } template<typename Dtype> bool MultiBoxLossLayer<Dtype>::allocLayerTensors(void* instancePtr) { MultiBoxLossLayer<Dtype>* layer = (MultiBoxLossLayer<Dtype>*)instancePtr; layer->reshape(); return true; } template<typename Dtype> void MultiBoxLossLayer<Dtype>::forwardTensor(void* instancePtr, int miniBatchIdx) { MultiBoxLossLayer<Dtype>* layer = (MultiBoxLossLayer<Dtype>*)instancePtr; layer->feedforward(); } template<typename Dtype> void MultiBoxLossLayer<Dtype>::backwardTensor(void* instancePtr) { MultiBoxLossLayer<Dtype>* layer = (MultiBoxLossLayer<Dtype>*)instancePtr; layer->backpropagation(); } template<typename Dtype> void MultiBoxLossLayer<Dtype>::learnTensor(void* instancePtr) { SASSERT0(false); } template class MultiBoxLossLayer<float>;
[ "jhkim@laonbud.com" ]
jhkim@laonbud.com
e3a2b2d8e1b3d392dbc760caf7950b8847f159e8
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/squid/hunk_5587.cpp
ec4584213e55780f18ffcfbbb5ab045c871059f9
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
594
cpp
if (!basedn || !searchfilter) { fprintf(stderr, "Usage: squid_ldap_match -f basedn -f filter [options] ldap_server_name\n\n"); fprintf(stderr, "\t-b basedn (REQUIRED)\tbase dn under where to search\n"); - fprintf(stderr, "\t-f filter (REQUIRED)\tsearch filter pattern. %v = user, %a = group\n"); + fprintf(stderr, "\t-f filter (REQUIRED)\tsearch filter pattern. %%v = user, %%a = group\n"); fprintf(stderr, "\t-s base|one|sub\t\tsearch scope\n"); fprintf(stderr, "\t-D binddn\t\tDN to bind as to perform searches\n"); fprintf(stderr, "\t-w bindpasswd\t\tpassword for binddn\n");
[ "993273596@qq.com" ]
993273596@qq.com
56024c02776a1e67cda2234bfa1357813fa5cd76
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/d3/3beec2e7efbf8d/main.cpp
3ea3fedede53bf5bd7f6ac75c748c25f6c042ab9
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
706
cpp
#include <boost/spirit/include/qi.hpp> #include <boost/spirit/include/phoenix.hpp> namespace qi = boost::spirit::qi; namespace ascii = boost::spirit::ascii; using namespace qi::labels; using qi::eps; template <typename Iterator, typename Any> struct parser : qi::grammar<Iterator, Any(), qi::locals<bool> > { parser() : parser::base_type(p) { p = eps[_a=false] >> eps(_a); } qi::rule<Iterator, Any(), qi::locals<bool> > p; }; int main(int argc, const char *argv[]) { int val; std::string data; auto i = data.cbegin(); auto end = data.cend(); parser<decltype(i), decltype(val) > p; bool rv = phrase_parse(i, end, p, ascii::blank, val); return rv ? 0 : 1; }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
61ef6e59dade59e00caef3a06b7550b63c8f7623
51b4213bc648463a7904ee8e020f028bf865853c
/4.20/ExampleProject/Plugins/PlayFab/Source/PlayFab/Classes/PlayFabMatchmakerModels.h
f0f2d04e14a615d9b7c01c36f6ef624992dc5f7d
[ "Apache-2.0" ]
permissive
dorgonman/UnrealMarketplacePlugin
9fe08b82c47a23516116e4c5b96164046fa6520a
199cb1e972af6a37af3b382ce4fce3e5a24d2813
refs/heads/master
2020-04-07T02:18:42.839763
2018-11-14T23:59:38
2018-11-14T23:59:38
157,971,478
0
0
Apache-2.0
2018-11-17T09:53:27
2018-11-17T09:53:27
null
UTF-8
C++
false
false
8,290
h
////////////////////////////////////////////////////// // Copyright (C) Microsoft. 2018. All rights reserved. ////////////////////////////////////////////////////// #pragma once ////////////////////////////////////////////////////////////////////////////////////////////// // Automatically generated model file for the UE4 PlayFab plugin. // This model file contains the request and response USTRUCTS // // API: Matchmaker ////////////////////////////////////////////////////////////////////////////////////////////// #include "CoreMinimal.h" #include "Kismet/BlueprintFunctionLibrary.h" #include "PlayFabEnums.h" #include "PlayFabMatchmakerModels.generated.h" class UPlayFabJsonObject; ////////////////////////////////////////////////////////////////////////// // Generated PlayFab Matchmaker API Functions ////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////// // Matchmaking ////////////////////////////////////////////////////// USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerAuthUserRequest { GENERATED_USTRUCT_BODY() public: /** Session Ticket provided by the client. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString AuthorizationTicket; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerAuthUserResponse { GENERATED_USTRUCT_BODY() public: /** Boolean indicating if the user has been authorized to use the external match-making service. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") bool Authorized = false; /** PlayFab unique identifier of the account that has been authorized. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString PlayFabId; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerPlayerJoinedRequest { GENERATED_USTRUCT_BODY() public: /** * Unique identifier of the Game Server Instance the user is joining. This must be a Game Server Instance started with the * Matchmaker/StartGame API. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString LobbyId; /** PlayFab unique identifier for the player joining. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString PlayFabId; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerPlayerJoinedResponse { GENERATED_USTRUCT_BODY() public: }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerPlayerLeftRequest { GENERATED_USTRUCT_BODY() public: /** * Unique identifier of the Game Server Instance the user is leaving. This must be a Game Server Instance started with the * Matchmaker/StartGame API. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString LobbyId; /** PlayFab unique identifier for the player leaving. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString PlayFabId; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerPlayerLeftResponse { GENERATED_USTRUCT_BODY() public: }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerStartGameRequest { GENERATED_USTRUCT_BODY() public: /** Unique identifier of the previously uploaded build executable which is to be started. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString Build; /** Custom command line argument when starting game server process. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString CustomCommandLineData; /** * HTTP endpoint URL for receiving game status events, if using an external matchmaker. When the game ends, PlayFab will * make a POST request to this URL with the X-SecretKey header set to the value of the game's secret and an * application/json body of { "EventName": "game_ended", "GameID": "<gameid>" }. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString ExternalMatchmakerEventEndpoint; /** Game mode for this Game Server Instance. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString GameMode; /** Region with which to associate the server, for filtering. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") ERegion Region; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerStartGameResponse { GENERATED_USTRUCT_BODY() public: /** Unique identifier for the game/lobby in the new Game Server Instance. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString GameID; /** IPV4 address of the server */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString ServerIPV4Address; /** IPV6 address of the new Game Server Instance. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString ServerIPV6Address; /** Port number for communication with the Game Server Instance. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") int32 ServerPort = 0; /** Public DNS name (if any) of the server */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString ServerPublicDNSName; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerUserInfoRequest { GENERATED_USTRUCT_BODY() public: /** * Minimum catalog version for which data is requested (filters the results to only contain inventory items which have a * catalog version of this or higher). */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") int32 MinCatalogVersion = 0; /** PlayFab unique identifier of the user whose information is being requested. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString PlayFabId; }; USTRUCT(BlueprintType) struct PLAYFAB_API FMatchmakerUserInfoResponse { GENERATED_USTRUCT_BODY() public: /** Array of inventory items in the user's current inventory. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") TArray<UPlayFabJsonObject*> Inventory; /** Boolean indicating whether the user is a developer. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") bool IsDeveloper = false; /** PlayFab unique identifier of the user whose information was requested. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString PlayFabId; /** Steam unique identifier, if the user has an associated Steam account. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString SteamId; /** Title specific display name, if set. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString TitleDisplayName; /** PlayFab unique user name. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") FString Username; /** Array of virtual currency balance(s) belonging to the user. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") UPlayFabJsonObject* VirtualCurrency; /** Array of remaining times and timestamps for virtual currencies. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "PlayFab | Matchmaker | Matchmaking Models") UPlayFabJsonObject* VirtualCurrencyRechargeTimes = nullptr; };
[ "jenkins-bot@playfab.com" ]
jenkins-bot@playfab.com
79c8fc7645033404002b571067b24679967aa723
49d4680dafecbb4f903a2b8295dcd22db4939426
/circulo.cpp
d2744c6bc4e5cd316ac49c3201afbc386d434297
[]
no_license
AdamoFonteneles/abstrata
19ce5582e7df577e9927aab03aa5287028b3f2f0
99c15afd289cb9a321b89cf0995aab27c6705296
refs/heads/master
2020-12-30T11:39:52.515587
2017-05-17T05:58:19
2017-05-17T05:58:19
91,512,877
0
0
null
null
null
null
UTF-8
C++
false
false
895
cpp
#include <iostream> #include "circulo.h" #include <cmath> #define PI 3.141592653 using namespace std; Circulo::Circulo(int x0, int y0, int raio, int tipo){ x=x0; y=y0; this->raio=raio; fillmode=tipo; } void Circulo::draw(Screen &t){ if(raio>0){ if(fillmode){ for(int i=0;i<t.getLinhas();i++){ for(int j=0;j<t.getColunas();j++){ if(sqrt((i-x)*(i-x)+(j-y)*(j-y))<=raio) t.setPixel(i,j); } } } else{ for(float teta=0;teta<2*PI;teta+=0.1){ int x_aux, y_aux; x_aux=x+raio*cos(teta); y_aux=y+raio*sin(teta); t.setPixel(x_aux,y_aux); } } } } int Circulo::getRaio(void){ return raio; } void Circulo::set_Brush(char bru, Screen &t){ t.setBrush(bru); }
[ "adamocuber@gmail.com" ]
adamocuber@gmail.com
c6f2882358b61b41805adf91bce6722e28239966
dcce690ca5af181962a47b4409550b61298e9313
/shaderGen/source/lex/zsl/zslCompoundSection.cpp
105d4472f2f5a955a12fc1ede1672543e1a9f7f1
[]
no_license
kmvisscher/shaderGen
be627b6270a7366eb4ad3cd16ef0fae61a1da283
00fe7da6dd55de2bfe3fa26f3bd314a353976b92
refs/heads/master
2021-01-18T17:09:34.328153
2016-01-04T15:44:38
2016-01-04T15:44:38
48,363,322
0
0
null
null
null
null
UTF-8
C++
false
false
1,008
cpp
#include "common/util.h" #include "ast/abstractSyntaxHub.h" #include "ast/abstractSyntaxNode.h" #include "ast/abstractSyntaxTree.h" #include "lex/zsl/zslTokenizer.h" #include "lex/zsl/zslCompoundSection.h" bool ZslLexer::HandleCompoundSection( ASTDriver *driver, Tokenizer::iterator &it ) { const Token &token = *( it ); // compound tokens only make sense if they are single character if ( !token.IsChar() ) { return false; } if ( token.Equals( "{" ) ) { ASTNode *parent = driver->GetScopeNodes().top(); // add a new scope node ASTNode *newHub = driver->Create< ASTHub >( token.SourceLineOrigin(), token.SourceFileOrigin(), "Compound" ); parent->AddChild( newHub ); driver->GetScopeNodes().push( newHub ); } else if ( token.Equals( "}" ) ) { // pop the last scope driver->GetScopeNodes().pop(); } else { // not a comment region return false; } return true; }
[ "koen.visscher@hotmail.com" ]
koen.visscher@hotmail.com
fb7aa6002dc55602dcfe6dd6bb6bdee110174d3f
6d77e738c66bdf8809e47ad9be85f9c7361a1bd9
/src/server/scripts/Pandaria/vale_of_eternal_blossoms.cpp
a061f13837a88abecb0fb4eac9327177d95829a3
[]
no_license
Ramys/Hooaahcore
e768e8b8a2b2c1dba7501495161cf6c0419b9de2
dad11ee863d34a9f02186936b1dbbca168912ecd
refs/heads/main
2023-02-27T16:18:27.916812
2021-02-07T23:38:52
2021-02-07T23:38:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,714
cpp
/* * Copyright (C) 2021 Hooaahcore * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "SpellScript.h" #include "ScriptMgr.h" #include "ScriptedCreature.h" #include "ScriptedGossip.h" #include "ScriptedEscortAI.h" #include "vale_of_eternal_blossoms.h" // Zhao-Jin the Bloodletter - 60273 class mob_zhao_jin : public CreatureScript { public: mob_zhao_jin() : CreatureScript("mob_zhao_jin") {} struct mob_zhao_jinAI : public ScriptedAI { mob_zhao_jinAI(Creature* creature) : ScriptedAI(creature) {} EventMap events; void Reset() override { events.Reset(); events.ScheduleEvent(EVENT_LAVA_BURST, 10000); events.ScheduleEvent(EVENT_LIGHTNING_SPEAR, 15000); } void UpdateAI(uint32 diff) override { if (!UpdateVictim()) return; events.Update(diff); while (uint32 eventId = events.ExecuteEvent()) { switch (eventId) { case EVENT_LAVA_BURST: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_LAVA_BURST, false); events.ScheduleEvent(EVENT_LAVA_BURST, 10000); break; case EVENT_LIGHTNING_SPEAR: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_LIGHTNING_SPEAR, false); events.ScheduleEvent(EVENT_LIGHTNING_SPEAR, 15000); break; default: break; } } DoMeleeAttackIfReady(); } }; CreatureAI* GetAI(Creature* creature) const override { return new mob_zhao_jinAI(creature); } }; // Reanimated Jade Warrior - 60121 class mob_reanimated_jade_warrior : public CreatureScript { public: mob_reanimated_jade_warrior() : CreatureScript("mob_reanimated_jade_warrior") {} struct mob_reanimated_jade_warriorAI : public ScriptedAI { mob_reanimated_jade_warriorAI(Creature* creature) : ScriptedAI(creature) {} uint32 jadeFireTimer; uint32 jadeStrenghtTimer; void Reset() override { jadeFireTimer = urand(10000, 12000); jadeStrenghtTimer = urand(5000, 7000); } void UpdateAI(uint32 diff) override { if (!UpdateVictim()) return; if (jadeFireTimer <= diff) { if (Unit* target = me->SelectNearestTarget(5.0f)) if (!target->IsFriendlyTo(me)) me->CastSpell(target, SPELL_JADE_FIRE, true); jadeFireTimer = urand(20000, 22000); } else jadeFireTimer -= diff; if (jadeStrenghtTimer <= diff) { me->CastSpell(me, SPELL_JADE_STRENGHT, true); jadeStrenghtTimer = urand(20000, 22000); } else jadeStrenghtTimer -= diff; DoMeleeAttackIfReady(); } }; CreatureAI* GetAI(Creature* creature) const override { return new mob_reanimated_jade_warriorAI(creature); } }; // Subjugated Serpent - 59158 class mob_subjuged_serpent : public CreatureScript { public: mob_subjuged_serpent() : CreatureScript("mob_subjuged_serpent") {} struct mob_subjuged_serpentAI : public ScriptedAI { mob_subjuged_serpentAI(Creature* creature) : ScriptedAI(creature) { } uint32 lightningBreathTimer; uint32 lightningPoolTimer; uint32 lightningWhirlTimer; void Reset() override { lightningBreathTimer = urand(2000, 3000); lightningPoolTimer = urand(5000, 7000); lightningWhirlTimer = urand(3000, 6000); } void UpdateAI(uint32 diff) override { if (!UpdateVictim()) return; if (lightningBreathTimer <= diff) { if (Unit* target = me->SelectNearestTarget(5.0f)) { if (!target->IsFriendlyTo(me)) { me->CastSpell(target, SPELL_LIGHTNING_BREATH, true); lightningBreathTimer = urand(13000, 18000); } } } else lightningBreathTimer -= diff; if (lightningPoolTimer <= diff) { if (Unit* target = me->SelectNearestTarget(5.0f)) { if (!target->IsFriendlyTo(me)) { me->CastSpell(target, SPELL_LIGHTNING_POOL, true); lightningPoolTimer = urand(27000, 29000); } } } else lightningPoolTimer -= diff; if (lightningWhirlTimer <= diff) { if (Unit* target = me->SelectNearestTarget(5.0f)) { if (!target->IsFriendlyTo(me)) { me->CastSpell(target, SPELL_LIGHTNING_WHIRL, true); lightningWhirlTimer = urand(7000, 10000); } } } else lightningWhirlTimer -= diff; DoMeleeAttackIfReady(); } }; CreatureAI* GetAI(Creature* creature) const override { return new mob_subjuged_serpentAI(creature); } }; // Shao-Tien Behemoth - 65824 class mob_shao_tien_behemoth : public CreatureScript { public: mob_shao_tien_behemoth() : CreatureScript("mob_shao_tien_behemoth") {} struct mob_shao_tien_behemothAI : public ScriptedAI { mob_shao_tien_behemothAI(Creature* creature) : ScriptedAI(creature) {} uint32 lightningBreathTimer; uint32 lightningPoolTimer; uint32 lightningWhirlTimer; EventMap events; void Reset() override { events.Reset(); events.ScheduleEvent(EVENT_CRUSHING_STOMP, 8000); events.ScheduleEvent(EVENT_GROUND_STOMP, 12000); events.ScheduleEvent(EVENT_PARALYZED, 17000); events.ScheduleEvent(EVENT_THUNDERING_SLAM, 25000); } void UpdateAI(uint32 diff) override { if (!UpdateVictim()) return; if (me->HasUnitState(UNIT_STATE_CASTING)) return; events.Update(diff); while (uint32 eventId = events.ExecuteEvent()) { switch (eventId) { case EVENT_CRUSHING_STOMP: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_CRUSHING_STOMP, false); events.ScheduleEvent(EVENT_CRUSHING_STOMP, 320000); break; case EVENT_GROUND_STOMP: me->CastSpell(me, SPELL_GROUND_STOMP, false); events.ScheduleEvent(EVENT_GROUND_STOMP, 17000); break; case EVENT_PARALYZED: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_PARALYZED, false); events.ScheduleEvent(EVENT_PARALYZED, 21000); break; case EVENT_THUNDERING_SLAM: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_THUNDERING_SLAM, false); events.ScheduleEvent(EVENT_THUNDERING_SLAM, 25000); break; default: break; } } DoMeleeAttackIfReady(); } }; CreatureAI* GetAI(Creature* creature) const override { return new mob_shao_tien_behemothAI(creature); } }; // Shao-Tien Surveyor - 59379 class mob_shao_tien_surveyor : public CreatureScript { public: mob_shao_tien_surveyor() : CreatureScript("mob_shao_tien_surveyor") {} struct mob_shao_tien_surveyorAI : public ScriptedAI { mob_shao_tien_surveyorAI(Creature* creature) : ScriptedAI(creature) {} EventMap events; void Reset() override { me->CastSpell(me, SPELL_STEALTH, true); events.Reset(); events.ScheduleEvent(EVENT_CRUSHING_STOMP, 8000); events.ScheduleEvent(EVENT_GROUND_STOMP, 12000); events.ScheduleEvent(EVENT_PARALYZED, 17000); events.ScheduleEvent(EVENT_THUNDERING_SLAM, 25000); } void UpdateAI(uint32 diff) override { if (!UpdateVictim()) return; if (me->HasUnitState(UNIT_STATE_CASTING)) return; events.Update(diff); while (uint32 eventId = events.ExecuteEvent()) { switch (eventId) { case EVENT_CRUSHING_STOMP: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_CRUSHING_STOMP, false); events.ScheduleEvent(EVENT_CRUSHING_STOMP, 320000); break; case EVENT_GROUND_STOMP: me->CastSpell(me, SPELL_GROUND_STOMP, false); events.ScheduleEvent(EVENT_GROUND_STOMP, 17000); break; case EVENT_PARALYZED: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_PARALYZED, false); events.ScheduleEvent(EVENT_PARALYZED, 21000); break; case EVENT_THUNDERING_SLAM: if (Unit* target = SelectTarget(SELECT_TARGET_TOPAGGRO)) me->CastSpell(target, SPELL_THUNDERING_SLAM, false); events.ScheduleEvent(EVENT_THUNDERING_SLAM, 25000); break; default: break; } } DoMeleeAttackIfReady(); } }; CreatureAI* GetAI(Creature* creature) const override { return new mob_shao_tien_surveyorAI(creature); } }; // Shado Pan Flare - 123193 class spell_shadow_pan_flare: public SpellScriptLoader { public: spell_shadow_pan_flare() : SpellScriptLoader("spell_shadow_pan_flare") {} class spell_shadow_pan_flare_SpellScript : public SpellScript { PrepareSpellScript(spell_shadow_pan_flare_SpellScript); void HandleOnHit() { if (Unit* caster = GetCaster()->ToPlayer()) { std::list<Creature*> surveyorList; GetCreatureListWithEntryInGrid(surveyorList, caster, MOB_SHAO_TIEN_SURVEYOR, 100.0f); for (auto surveyor : surveyorList) surveyor->RemoveAura(SPELL_STEALTH); } } void Register() override { OnHit += SpellHitFn(spell_shadow_pan_flare_SpellScript::HandleOnHit); } }; SpellScript* GetSpellScript() const override { return new spell_shadow_pan_flare_SpellScript(); } }; void AddSC_vale_of_eternal_blossoms() { new mob_zhao_jin(); new mob_reanimated_jade_warrior(); new mob_subjuged_serpent(); new mob_shao_tien_behemoth(); new mob_shao_tien_surveyor(); new spell_shadow_pan_flare(); }
[ "43292003+Hooaah@users.noreply.github.com" ]
43292003+Hooaah@users.noreply.github.com
870bc1e1edf589a517c3b23d9fcf34f1451100c6
7dc7b3fe4b0916434f3bf06857c934ca683c5301
/src_v1/Data/TodoItem.h
d3ad75c14e420ad30d9b29820487bda9f3825049
[ "Unlicense" ]
permissive
define-private-public/sqlite_orm_todo_sample
83c7f82a9580aafab46019057a8b8208b982119c
d42c41c6b641d663724137090569778106d1c5b0
refs/heads/master
2023-09-03T12:19:41.298444
2021-10-15T01:59:37
2021-10-15T02:08:07
416,989,245
1
0
null
null
null
null
UTF-8
C++
false
false
823
h
#pragma once #include <string> namespace Data { struct TodoItem { // Enum to mark the status of the item enum class Status { NotStarted = 1, InProgress = 2, Finished = 3, }; // Data int id; ///< Unique identifier for the task std::string who; ///< Name of person who is doing it std::string thing; ///< Things that needs to be done Status status; ///< How far along the item is in being done // Getter/Setter for `Status` seriaization to the DB int get_status() const { return static_cast<int>(status); } void set_status(const int s) { status = static_cast<Status>(s); } /** Get a string that's human friendly */ static std::string printable_string(const Status s); }; } // Data::
[ "def.pri.pub@gmail.com" ]
def.pri.pub@gmail.com
b6b46c534070cb9a03081555942467e8cba8c17a
7c5bc01669cec10cf30bd8de314170f2b6039281
/include/clang/Basic/OpenMPKinds.def
0d7d952a49d6d0bd0e0cfc4ca9d6b4b7635ada41
[ "LLVM-exception", "LicenseRef-scancode-generic-cla", "NCSA", "Apache-2.0", "MIT", "LicenseRef-scancode-arm-llvm-sga" ]
permissive
crdroidandroid/android_prebuilts_clang_host_linux-x86_clang-6443078
9b56cccf9890d4abbdb3767d35d5cc990aff731e
40fb9b651e8e6a4429e7de7a93467fa27dc9e6b2
refs/heads/10.0
2022-11-13T00:53:40.279312
2022-10-29T05:41:43
2022-10-29T05:41:43
261,242,866
5
21
NOASSERTION
2022-10-29T05:41:44
2020-05-04T16:50:21
C++
UTF-8
C++
false
false
43,968
def
//===--- OpenMPKinds.def - OpenMP directives and clauses list ---*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// \file /// This file defines the list of supported OpenMP directives and /// clauses. /// //===----------------------------------------------------------------------===// #ifndef OPENMP_CLAUSE # define OPENMP_CLAUSE(Name, Class) #endif #ifndef OPENMP_PARALLEL_CLAUSE # define OPENMP_PARALLEL_CLAUSE(Name) #endif #ifndef OPENMP_SIMD_CLAUSE # define OPENMP_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_FOR_CLAUSE # define OPENMP_FOR_CLAUSE(Name) #endif #ifndef OPENMP_FOR_SIMD_CLAUSE # define OPENMP_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_SECTIONS_CLAUSE # define OPENMP_SECTIONS_CLAUSE(Name) #endif #ifndef OPENMP_SINGLE_CLAUSE # define OPENMP_SINGLE_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_FOR_CLAUSE # define OPENMP_PARALLEL_FOR_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_FOR_SIMD_CLAUSE # define OPENMP_PARALLEL_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_MASTER_CLAUSE # define OPENMP_PARALLEL_MASTER_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_SECTIONS_CLAUSE # define OPENMP_PARALLEL_SECTIONS_CLAUSE(Name) #endif #ifndef OPENMP_TASK_CLAUSE # define OPENMP_TASK_CLAUSE(Name) #endif #ifndef OPENMP_ATOMIC_CLAUSE # define OPENMP_ATOMIC_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_CLAUSE # define OPENMP_TARGET_CLAUSE(Name) #endif #ifndef OPENMP_REQUIRES_CLAUSE # define OPENMP_REQUIRES_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_DATA_CLAUSE # define OPENMP_TARGET_DATA_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_ENTER_DATA_CLAUSE #define OPENMP_TARGET_ENTER_DATA_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_EXIT_DATA_CLAUSE #define OPENMP_TARGET_EXIT_DATA_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_PARALLEL_CLAUSE # define OPENMP_TARGET_PARALLEL_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_PARALLEL_FOR_CLAUSE # define OPENMP_TARGET_PARALLEL_FOR_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_UPDATE_CLAUSE # define OPENMP_TARGET_UPDATE_CLAUSE(Name) #endif #ifndef OPENMP_TEAMS_CLAUSE # define OPENMP_TEAMS_CLAUSE(Name) #endif #ifndef OPENMP_CANCEL_CLAUSE # define OPENMP_CANCEL_CLAUSE(Name) #endif #ifndef OPENMP_ORDERED_CLAUSE # define OPENMP_ORDERED_CLAUSE(Name) #endif #ifndef OPENMP_TASKLOOP_CLAUSE # define OPENMP_TASKLOOP_CLAUSE(Name) #endif #ifndef OPENMP_TASKLOOP_SIMD_CLAUSE # define OPENMP_TASKLOOP_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_MASTER_TASKLOOP_CLAUSE # define OPENMP_MASTER_TASKLOOP_CLAUSE(Name) #endif #ifndef OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE # define OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE # define OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(Name) #endif #ifndef OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE # define OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_CRITICAL_CLAUSE # define OPENMP_CRITICAL_CLAUSE(Name) #endif #ifndef OPENMP_DISTRIBUTE_CLAUSE #define OPENMP_DISTRIBUTE_CLAUSE(Name) #endif #ifndef OPENMP_DEFAULT_KIND # define OPENMP_DEFAULT_KIND(Name) #endif #ifndef OPENMP_SCHEDULE_KIND #define OPENMP_SCHEDULE_KIND(Name) #endif #ifndef OPENMP_SCHEDULE_MODIFIER #define OPENMP_SCHEDULE_MODIFIER(Name) #endif #ifndef OPENMP_DEPEND_KIND #define OPENMP_DEPEND_KIND(Name) #endif #ifndef OPENMP_LINEAR_KIND #define OPENMP_LINEAR_KIND(Name) #endif #ifndef OPENMP_MAP_KIND #define OPENMP_MAP_KIND(Name) #endif #ifndef OPENMP_MAP_MODIFIER_KIND #define OPENMP_MAP_MODIFIER_KIND(Name) #endif #ifndef OPENMP_TO_MODIFIER_KIND #define OPENMP_TO_MODIFIER_KIND(Name) #endif #ifndef OPENMP_FROM_MODIFIER_KIND #define OPENMP_FROM_MODIFIER_KIND(Name) #endif #ifndef OPENMP_DIST_SCHEDULE_KIND #define OPENMP_DIST_SCHEDULE_KIND(Name) #endif #ifndef OPENMP_DEFAULTMAP_KIND #define OPENMP_DEFAULTMAP_KIND(Name) #endif #ifndef OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND #define OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND(Name) #endif #ifndef OPENMP_DEFAULTMAP_MODIFIER #define OPENMP_DEFAULTMAP_MODIFIER(Name) #endif #ifndef OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE #define OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(Name) #endif #ifndef OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #define OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_DISTRIBUTE_SIMD_CLAUSE #define OPENMP_DISTRIBUTE_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE #define OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_SIMD_CLAUSE #define OPENMP_TARGET_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TEAMS_DISTRIBUTE_CLAUSE #define OPENMP_TEAMS_DISTRIBUTE_CLAUSE(Name) #endif #ifndef OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE #define OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #define OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE #define OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_TEAMS_CLAUSE #define OPENMP_TARGET_TEAMS_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE #define OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE #define OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #define OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE #define OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(Name) #endif #ifndef OPENMP_TASKGROUP_CLAUSE #define OPENMP_TASKGROUP_CLAUSE(Name) #endif #ifndef OPENMP_DECLARE_MAPPER_CLAUSE #define OPENMP_DECLARE_MAPPER_CLAUSE(Name) #endif #ifndef OPENMP_ALLOCATE_CLAUSE # define OPENMP_ALLOCATE_CLAUSE(Name) #endif #ifndef OPENMP_DEVICE_TYPE_KIND #define OPENMP_DEVICE_TYPE_KIND(Name) #endif #ifndef OPENMP_DECLARE_VARIANT_CLAUSE #define OPENMP_DECLARE_VARIANT_CLAUSE(Name) #endif #ifndef OPENMP_CONTEXT_SELECTOR_SET #define OPENMP_CONTEXT_SELECTOR_SET(Name) #endif #ifndef OPENMP_CONTEXT_SELECTOR #define OPENMP_CONTEXT_SELECTOR(Name) #endif #ifndef OPENMP_LASTPRIVATE_KIND #define OPENMP_LASTPRIVATE_KIND(Name) #endif #ifndef OPENMP_ORDER_KIND #define OPENMP_ORDER_KIND(Name) #endif #ifndef OPENMP_FLUSH_CLAUSE #define OPENMP_FLUSH_CLAUSE(Name) #endif // OpenMP context selector sets. OPENMP_CONTEXT_SELECTOR_SET(implementation) OPENMP_CONTEXT_SELECTOR_SET(device) // OpenMP context selectors. OPENMP_CONTEXT_SELECTOR(vendor) OPENMP_CONTEXT_SELECTOR(kind) // OpenMP clauses. OPENMP_CLAUSE(allocator, OMPAllocatorClause) OPENMP_CLAUSE(if, OMPIfClause) OPENMP_CLAUSE(final, OMPFinalClause) OPENMP_CLAUSE(num_threads, OMPNumThreadsClause) OPENMP_CLAUSE(safelen, OMPSafelenClause) OPENMP_CLAUSE(simdlen, OMPSimdlenClause) OPENMP_CLAUSE(collapse, OMPCollapseClause) OPENMP_CLAUSE(default, OMPDefaultClause) OPENMP_CLAUSE(private, OMPPrivateClause) OPENMP_CLAUSE(firstprivate, OMPFirstprivateClause) OPENMP_CLAUSE(lastprivate, OMPLastprivateClause) OPENMP_CLAUSE(shared, OMPSharedClause) OPENMP_CLAUSE(reduction, OMPReductionClause) OPENMP_CLAUSE(linear, OMPLinearClause) OPENMP_CLAUSE(aligned, OMPAlignedClause) OPENMP_CLAUSE(copyin, OMPCopyinClause) OPENMP_CLAUSE(copyprivate, OMPCopyprivateClause) OPENMP_CLAUSE(proc_bind, OMPProcBindClause) OPENMP_CLAUSE(schedule, OMPScheduleClause) OPENMP_CLAUSE(ordered, OMPOrderedClause) OPENMP_CLAUSE(nowait, OMPNowaitClause) OPENMP_CLAUSE(untied, OMPUntiedClause) OPENMP_CLAUSE(mergeable, OMPMergeableClause) OPENMP_CLAUSE(flush, OMPFlushClause) OPENMP_CLAUSE(read, OMPReadClause) OPENMP_CLAUSE(write, OMPWriteClause) OPENMP_CLAUSE(update, OMPUpdateClause) OPENMP_CLAUSE(capture, OMPCaptureClause) OPENMP_CLAUSE(seq_cst, OMPSeqCstClause) OPENMP_CLAUSE(acq_rel, OMPAcqRelClause) OPENMP_CLAUSE(depend, OMPDependClause) OPENMP_CLAUSE(device, OMPDeviceClause) OPENMP_CLAUSE(threads, OMPThreadsClause) OPENMP_CLAUSE(simd, OMPSIMDClause) OPENMP_CLAUSE(map, OMPMapClause) OPENMP_CLAUSE(num_teams, OMPNumTeamsClause) OPENMP_CLAUSE(thread_limit, OMPThreadLimitClause) OPENMP_CLAUSE(priority, OMPPriorityClause) OPENMP_CLAUSE(grainsize, OMPGrainsizeClause) OPENMP_CLAUSE(nogroup, OMPNogroupClause) OPENMP_CLAUSE(num_tasks, OMPNumTasksClause) OPENMP_CLAUSE(hint, OMPHintClause) OPENMP_CLAUSE(dist_schedule, OMPDistScheduleClause) OPENMP_CLAUSE(defaultmap, OMPDefaultmapClause) OPENMP_CLAUSE(to, OMPToClause) OPENMP_CLAUSE(from, OMPFromClause) OPENMP_CLAUSE(use_device_ptr, OMPUseDevicePtrClause) OPENMP_CLAUSE(is_device_ptr, OMPIsDevicePtrClause) OPENMP_CLAUSE(task_reduction, OMPTaskReductionClause) OPENMP_CLAUSE(in_reduction, OMPInReductionClause) OPENMP_CLAUSE(unified_address, OMPUnifiedAddressClause) OPENMP_CLAUSE(unified_shared_memory, OMPUnifiedSharedMemoryClause) OPENMP_CLAUSE(reverse_offload, OMPReverseOffloadClause) OPENMP_CLAUSE(dynamic_allocators, OMPDynamicAllocatorsClause) OPENMP_CLAUSE(atomic_default_mem_order, OMPAtomicDefaultMemOrderClause) OPENMP_CLAUSE(allocate, OMPAllocateClause) OPENMP_CLAUSE(nontemporal, OMPNontemporalClause) OPENMP_CLAUSE(order, OMPOrderClause) // Clauses allowed for OpenMP directive 'parallel'. OPENMP_PARALLEL_CLAUSE(if) OPENMP_PARALLEL_CLAUSE(num_threads) OPENMP_PARALLEL_CLAUSE(default) OPENMP_PARALLEL_CLAUSE(proc_bind) OPENMP_PARALLEL_CLAUSE(private) OPENMP_PARALLEL_CLAUSE(firstprivate) OPENMP_PARALLEL_CLAUSE(shared) OPENMP_PARALLEL_CLAUSE(reduction) OPENMP_PARALLEL_CLAUSE(copyin) OPENMP_PARALLEL_CLAUSE(allocate) // Clauses allowed for directive 'omp simd'. OPENMP_SIMD_CLAUSE(private) OPENMP_SIMD_CLAUSE(lastprivate) OPENMP_SIMD_CLAUSE(linear) OPENMP_SIMD_CLAUSE(aligned) OPENMP_SIMD_CLAUSE(safelen) OPENMP_SIMD_CLAUSE(simdlen) OPENMP_SIMD_CLAUSE(collapse) OPENMP_SIMD_CLAUSE(reduction) OPENMP_SIMD_CLAUSE(allocate) OPENMP_SIMD_CLAUSE(if) OPENMP_SIMD_CLAUSE(nontemporal) OPENMP_SIMD_CLAUSE(order) // Clauses allowed for directive 'omp for'. OPENMP_FOR_CLAUSE(private) OPENMP_FOR_CLAUSE(lastprivate) OPENMP_FOR_CLAUSE(firstprivate) OPENMP_FOR_CLAUSE(reduction) OPENMP_FOR_CLAUSE(collapse) OPENMP_FOR_CLAUSE(schedule) OPENMP_FOR_CLAUSE(ordered) OPENMP_FOR_CLAUSE(nowait) OPENMP_FOR_CLAUSE(linear) OPENMP_FOR_CLAUSE(allocate) OPENMP_FOR_CLAUSE(order) // Clauses allowed for directive 'omp for simd'. OPENMP_FOR_SIMD_CLAUSE(private) OPENMP_FOR_SIMD_CLAUSE(firstprivate) OPENMP_FOR_SIMD_CLAUSE(lastprivate) OPENMP_FOR_SIMD_CLAUSE(reduction) OPENMP_FOR_SIMD_CLAUSE(schedule) OPENMP_FOR_SIMD_CLAUSE(collapse) OPENMP_FOR_SIMD_CLAUSE(nowait) OPENMP_FOR_SIMD_CLAUSE(safelen) OPENMP_FOR_SIMD_CLAUSE(simdlen) OPENMP_FOR_SIMD_CLAUSE(linear) OPENMP_FOR_SIMD_CLAUSE(aligned) OPENMP_FOR_SIMD_CLAUSE(ordered) OPENMP_FOR_SIMD_CLAUSE(allocate) OPENMP_FOR_SIMD_CLAUSE(if) OPENMP_FOR_SIMD_CLAUSE(nontemporal) OPENMP_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'omp sections'. OPENMP_SECTIONS_CLAUSE(private) OPENMP_SECTIONS_CLAUSE(lastprivate) OPENMP_SECTIONS_CLAUSE(firstprivate) OPENMP_SECTIONS_CLAUSE(reduction) OPENMP_SECTIONS_CLAUSE(nowait) OPENMP_SECTIONS_CLAUSE(allocate) // Clauses allowed for directive 'omp single'. OPENMP_SINGLE_CLAUSE(private) OPENMP_SINGLE_CLAUSE(firstprivate) OPENMP_SINGLE_CLAUSE(copyprivate) OPENMP_SINGLE_CLAUSE(nowait) OPENMP_SINGLE_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'cancel'. OPENMP_CANCEL_CLAUSE(if) // Static attributes for 'default' clause. OPENMP_DEFAULT_KIND(none) OPENMP_DEFAULT_KIND(shared) // Static attributes for 'schedule' clause. OPENMP_SCHEDULE_KIND(static) OPENMP_SCHEDULE_KIND(dynamic) OPENMP_SCHEDULE_KIND(guided) OPENMP_SCHEDULE_KIND(auto) OPENMP_SCHEDULE_KIND(runtime) // Modifiers for 'schedule' clause. OPENMP_SCHEDULE_MODIFIER(monotonic) OPENMP_SCHEDULE_MODIFIER(nonmonotonic) OPENMP_SCHEDULE_MODIFIER(simd) // Static attributes for 'defaultmap' clause. OPENMP_DEFAULTMAP_KIND(scalar) OPENMP_DEFAULTMAP_KIND(aggregate) OPENMP_DEFAULTMAP_KIND(pointer) // Modifiers for 'defaultmap' clause. OPENMP_DEFAULTMAP_MODIFIER(alloc) OPENMP_DEFAULTMAP_MODIFIER(to) OPENMP_DEFAULTMAP_MODIFIER(from) OPENMP_DEFAULTMAP_MODIFIER(tofrom) OPENMP_DEFAULTMAP_MODIFIER(firstprivate) OPENMP_DEFAULTMAP_MODIFIER(none) OPENMP_DEFAULTMAP_MODIFIER(default) // Static attributes for 'depend' clause. OPENMP_DEPEND_KIND(in) OPENMP_DEPEND_KIND(out) OPENMP_DEPEND_KIND(inout) OPENMP_DEPEND_KIND(mutexinoutset) OPENMP_DEPEND_KIND(source) OPENMP_DEPEND_KIND(sink) // Modifiers for 'linear' clause. OPENMP_LINEAR_KIND(val) OPENMP_LINEAR_KIND(ref) OPENMP_LINEAR_KIND(uval) // Clauses allowed for OpenMP directive 'parallel for'. OPENMP_PARALLEL_FOR_CLAUSE(if) OPENMP_PARALLEL_FOR_CLAUSE(num_threads) OPENMP_PARALLEL_FOR_CLAUSE(default) OPENMP_PARALLEL_FOR_CLAUSE(proc_bind) OPENMP_PARALLEL_FOR_CLAUSE(private) OPENMP_PARALLEL_FOR_CLAUSE(firstprivate) OPENMP_PARALLEL_FOR_CLAUSE(shared) OPENMP_PARALLEL_FOR_CLAUSE(reduction) OPENMP_PARALLEL_FOR_CLAUSE(copyin) OPENMP_PARALLEL_FOR_CLAUSE(lastprivate) OPENMP_PARALLEL_FOR_CLAUSE(collapse) OPENMP_PARALLEL_FOR_CLAUSE(schedule) OPENMP_PARALLEL_FOR_CLAUSE(ordered) OPENMP_PARALLEL_FOR_CLAUSE(linear) OPENMP_PARALLEL_FOR_CLAUSE(allocate) OPENMP_PARALLEL_FOR_CLAUSE(order) // Clauses allowed for OpenMP directive 'parallel for simd'. OPENMP_PARALLEL_FOR_SIMD_CLAUSE(if) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(num_threads) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(default) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(proc_bind) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(private) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(firstprivate) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(shared) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(reduction) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(copyin) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(lastprivate) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(collapse) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(schedule) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(safelen) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(simdlen) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(linear) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(aligned) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(ordered) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(allocate) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(nontemporal) OPENMP_PARALLEL_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'parallel master'. OPENMP_PARALLEL_MASTER_CLAUSE(if) OPENMP_PARALLEL_MASTER_CLAUSE(num_threads) OPENMP_PARALLEL_MASTER_CLAUSE(default) OPENMP_PARALLEL_MASTER_CLAUSE(private) OPENMP_PARALLEL_MASTER_CLAUSE(firstprivate) OPENMP_PARALLEL_MASTER_CLAUSE(shared) OPENMP_PARALLEL_MASTER_CLAUSE(copyin) OPENMP_PARALLEL_MASTER_CLAUSE(reduction) OPENMP_PARALLEL_MASTER_CLAUSE(proc_bind) OPENMP_PARALLEL_MASTER_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'parallel sections'. OPENMP_PARALLEL_SECTIONS_CLAUSE(if) OPENMP_PARALLEL_SECTIONS_CLAUSE(num_threads) OPENMP_PARALLEL_SECTIONS_CLAUSE(default) OPENMP_PARALLEL_SECTIONS_CLAUSE(proc_bind) OPENMP_PARALLEL_SECTIONS_CLAUSE(private) OPENMP_PARALLEL_SECTIONS_CLAUSE(firstprivate) OPENMP_PARALLEL_SECTIONS_CLAUSE(shared) OPENMP_PARALLEL_SECTIONS_CLAUSE(reduction) OPENMP_PARALLEL_SECTIONS_CLAUSE(copyin) OPENMP_PARALLEL_SECTIONS_CLAUSE(lastprivate) OPENMP_PARALLEL_SECTIONS_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'task'. OPENMP_TASK_CLAUSE(if) OPENMP_TASK_CLAUSE(final) OPENMP_TASK_CLAUSE(default) OPENMP_TASK_CLAUSE(private) OPENMP_TASK_CLAUSE(firstprivate) OPENMP_TASK_CLAUSE(shared) OPENMP_TASK_CLAUSE(untied) OPENMP_TASK_CLAUSE(mergeable) OPENMP_TASK_CLAUSE(depend) OPENMP_TASK_CLAUSE(priority) OPENMP_TASK_CLAUSE(in_reduction) OPENMP_TASK_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'atomic'. OPENMP_ATOMIC_CLAUSE(read) OPENMP_ATOMIC_CLAUSE(write) OPENMP_ATOMIC_CLAUSE(update) OPENMP_ATOMIC_CLAUSE(capture) OPENMP_ATOMIC_CLAUSE(seq_cst) OPENMP_ATOMIC_CLAUSE(acq_rel) // Clauses allowed for OpenMP directive 'target'. OPENMP_TARGET_CLAUSE(if) OPENMP_TARGET_CLAUSE(device) OPENMP_TARGET_CLAUSE(map) OPENMP_TARGET_CLAUSE(private) OPENMP_TARGET_CLAUSE(nowait) OPENMP_TARGET_CLAUSE(depend) OPENMP_TARGET_CLAUSE(defaultmap) OPENMP_TARGET_CLAUSE(firstprivate) OPENMP_TARGET_CLAUSE(is_device_ptr) OPENMP_TARGET_CLAUSE(reduction) OPENMP_TARGET_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'requires'. OPENMP_REQUIRES_CLAUSE(unified_address) OPENMP_REQUIRES_CLAUSE(unified_shared_memory) OPENMP_REQUIRES_CLAUSE(reverse_offload) OPENMP_REQUIRES_CLAUSE(dynamic_allocators) OPENMP_REQUIRES_CLAUSE(atomic_default_mem_order) // Clauses allowed for OpenMP directive 'allocate'. OPENMP_ALLOCATE_CLAUSE(allocator) // Modifiers for 'atomic_default_mem_order' clause. OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND(seq_cst) OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND(acq_rel) OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND(relaxed) // Clauses allowed for OpenMP directive 'target data'. OPENMP_TARGET_DATA_CLAUSE(if) OPENMP_TARGET_DATA_CLAUSE(device) OPENMP_TARGET_DATA_CLAUSE(map) OPENMP_TARGET_DATA_CLAUSE(use_device_ptr) // Clauses allowed for OpenMP directive 'target enter data'. OPENMP_TARGET_ENTER_DATA_CLAUSE(if) OPENMP_TARGET_ENTER_DATA_CLAUSE(device) OPENMP_TARGET_ENTER_DATA_CLAUSE(map) OPENMP_TARGET_ENTER_DATA_CLAUSE(nowait) OPENMP_TARGET_ENTER_DATA_CLAUSE(depend) // Clauses allowed for OpenMP directive 'target exit data'. OPENMP_TARGET_EXIT_DATA_CLAUSE(if) OPENMP_TARGET_EXIT_DATA_CLAUSE(device) OPENMP_TARGET_EXIT_DATA_CLAUSE(map) OPENMP_TARGET_EXIT_DATA_CLAUSE(nowait) OPENMP_TARGET_EXIT_DATA_CLAUSE(depend) // Clauses allowed for OpenMP directive 'target parallel'. OPENMP_TARGET_PARALLEL_CLAUSE(if) OPENMP_TARGET_PARALLEL_CLAUSE(device) OPENMP_TARGET_PARALLEL_CLAUSE(map) OPENMP_TARGET_PARALLEL_CLAUSE(private) OPENMP_TARGET_PARALLEL_CLAUSE(firstprivate) OPENMP_TARGET_PARALLEL_CLAUSE(nowait) OPENMP_TARGET_PARALLEL_CLAUSE(depend) OPENMP_TARGET_PARALLEL_CLAUSE(defaultmap) OPENMP_TARGET_PARALLEL_CLAUSE(num_threads) OPENMP_TARGET_PARALLEL_CLAUSE(default) OPENMP_TARGET_PARALLEL_CLAUSE(proc_bind) OPENMP_TARGET_PARALLEL_CLAUSE(shared) OPENMP_TARGET_PARALLEL_CLAUSE(reduction) OPENMP_TARGET_PARALLEL_CLAUSE(is_device_ptr) OPENMP_TARGET_PARALLEL_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'target parallel for'. OPENMP_TARGET_PARALLEL_FOR_CLAUSE(if) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(device) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(map) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(private) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(firstprivate) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(lastprivate) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(nowait) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(depend) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(defaultmap) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(num_threads) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(default) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(proc_bind) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(shared) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(reduction) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(collapse) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(schedule) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(ordered) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(linear) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(is_device_ptr) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(allocate) OPENMP_TARGET_PARALLEL_FOR_CLAUSE(order) // Clauses allowed for OpenMP directive 'target update'. OPENMP_TARGET_UPDATE_CLAUSE(if) OPENMP_TARGET_UPDATE_CLAUSE(device) OPENMP_TARGET_UPDATE_CLAUSE(to) OPENMP_TARGET_UPDATE_CLAUSE(from) OPENMP_TARGET_UPDATE_CLAUSE(nowait) OPENMP_TARGET_UPDATE_CLAUSE(depend) // Clauses allowed for OpenMP directive 'teams'. OPENMP_TEAMS_CLAUSE(default) OPENMP_TEAMS_CLAUSE(private) OPENMP_TEAMS_CLAUSE(firstprivate) OPENMP_TEAMS_CLAUSE(shared) OPENMP_TEAMS_CLAUSE(reduction) OPENMP_TEAMS_CLAUSE(num_teams) OPENMP_TEAMS_CLAUSE(thread_limit) OPENMP_TEAMS_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'ordered'. OPENMP_ORDERED_CLAUSE(threads) OPENMP_ORDERED_CLAUSE(simd) OPENMP_ORDERED_CLAUSE(depend) // Map types for 'map' clause. OPENMP_MAP_KIND(alloc) OPENMP_MAP_KIND(to) OPENMP_MAP_KIND(from) OPENMP_MAP_KIND(tofrom) OPENMP_MAP_KIND(delete) OPENMP_MAP_KIND(release) // Map-type-modifiers for 'map' clause. OPENMP_MAP_MODIFIER_KIND(always) OPENMP_MAP_MODIFIER_KIND(close) OPENMP_MAP_MODIFIER_KIND(mapper) // Modifiers for 'to' clause. OPENMP_TO_MODIFIER_KIND(mapper) // Modifiers for 'from' clause. OPENMP_FROM_MODIFIER_KIND(mapper) // Clauses allowed for OpenMP directive 'taskloop'. OPENMP_TASKLOOP_CLAUSE(if) OPENMP_TASKLOOP_CLAUSE(shared) OPENMP_TASKLOOP_CLAUSE(private) OPENMP_TASKLOOP_CLAUSE(firstprivate) OPENMP_TASKLOOP_CLAUSE(lastprivate) OPENMP_TASKLOOP_CLAUSE(default) OPENMP_TASKLOOP_CLAUSE(collapse) OPENMP_TASKLOOP_CLAUSE(final) OPENMP_TASKLOOP_CLAUSE(untied) OPENMP_TASKLOOP_CLAUSE(mergeable) OPENMP_TASKLOOP_CLAUSE(priority) OPENMP_TASKLOOP_CLAUSE(grainsize) OPENMP_TASKLOOP_CLAUSE(nogroup) OPENMP_TASKLOOP_CLAUSE(num_tasks) OPENMP_TASKLOOP_CLAUSE(reduction) OPENMP_TASKLOOP_CLAUSE(in_reduction) OPENMP_TASKLOOP_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'taskloop simd'. OPENMP_TASKLOOP_SIMD_CLAUSE(if) OPENMP_TASKLOOP_SIMD_CLAUSE(shared) OPENMP_TASKLOOP_SIMD_CLAUSE(private) OPENMP_TASKLOOP_SIMD_CLAUSE(firstprivate) OPENMP_TASKLOOP_SIMD_CLAUSE(lastprivate) OPENMP_TASKLOOP_SIMD_CLAUSE(default) OPENMP_TASKLOOP_SIMD_CLAUSE(collapse) OPENMP_TASKLOOP_SIMD_CLAUSE(final) OPENMP_TASKLOOP_SIMD_CLAUSE(untied) OPENMP_TASKLOOP_SIMD_CLAUSE(mergeable) OPENMP_TASKLOOP_SIMD_CLAUSE(priority) OPENMP_TASKLOOP_SIMD_CLAUSE(linear) OPENMP_TASKLOOP_SIMD_CLAUSE(aligned) OPENMP_TASKLOOP_SIMD_CLAUSE(safelen) OPENMP_TASKLOOP_SIMD_CLAUSE(simdlen) OPENMP_TASKLOOP_SIMD_CLAUSE(grainsize) OPENMP_TASKLOOP_SIMD_CLAUSE(nogroup) OPENMP_TASKLOOP_SIMD_CLAUSE(num_tasks) OPENMP_TASKLOOP_SIMD_CLAUSE(reduction) OPENMP_TASKLOOP_SIMD_CLAUSE(in_reduction) OPENMP_TASKLOOP_SIMD_CLAUSE(allocate) OPENMP_TASKLOOP_SIMD_CLAUSE(nontemporal) OPENMP_TASKLOOP_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'master taskloop'. OPENMP_MASTER_TASKLOOP_CLAUSE(if) OPENMP_MASTER_TASKLOOP_CLAUSE(shared) OPENMP_MASTER_TASKLOOP_CLAUSE(private) OPENMP_MASTER_TASKLOOP_CLAUSE(firstprivate) OPENMP_MASTER_TASKLOOP_CLAUSE(lastprivate) OPENMP_MASTER_TASKLOOP_CLAUSE(default) OPENMP_MASTER_TASKLOOP_CLAUSE(collapse) OPENMP_MASTER_TASKLOOP_CLAUSE(final) OPENMP_MASTER_TASKLOOP_CLAUSE(untied) OPENMP_MASTER_TASKLOOP_CLAUSE(mergeable) OPENMP_MASTER_TASKLOOP_CLAUSE(priority) OPENMP_MASTER_TASKLOOP_CLAUSE(grainsize) OPENMP_MASTER_TASKLOOP_CLAUSE(nogroup) OPENMP_MASTER_TASKLOOP_CLAUSE(num_tasks) OPENMP_MASTER_TASKLOOP_CLAUSE(reduction) OPENMP_MASTER_TASKLOOP_CLAUSE(in_reduction) OPENMP_MASTER_TASKLOOP_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'master taskloop simd'. OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(if) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(shared) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(private) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(firstprivate) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(lastprivate) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(default) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(collapse) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(final) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(untied) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(mergeable) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(priority) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(linear) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(aligned) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(safelen) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(simdlen) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(grainsize) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(nogroup) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(num_tasks) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(reduction) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(in_reduction) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(allocate) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(nontemporal) OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'parallel master taskloop'. OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(if) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(shared) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(private) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(firstprivate) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(lastprivate) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(default) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(collapse) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(final) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(untied) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(mergeable) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(priority) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(grainsize) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(nogroup) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(num_tasks) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(reduction) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(allocate) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(num_threads) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(proc_bind) OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(copyin) // Clauses allowed for OpenMP directive 'parallel master taskloop simd'. OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(if) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(shared) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(private) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(firstprivate) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(lastprivate) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(default) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(collapse) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(final) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(untied) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(mergeable) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(priority) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(grainsize) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(nogroup) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(num_tasks) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(reduction) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(allocate) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(num_threads) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(proc_bind) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(copyin) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(linear) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(aligned) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(safelen) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(simdlen) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(nontemporal) OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'critical'. OPENMP_CRITICAL_CLAUSE(hint) // Clauses allowed for OpenMP directive 'distribute' OPENMP_DISTRIBUTE_CLAUSE(private) OPENMP_DISTRIBUTE_CLAUSE(firstprivate) OPENMP_DISTRIBUTE_CLAUSE(lastprivate) OPENMP_DISTRIBUTE_CLAUSE(collapse) OPENMP_DISTRIBUTE_CLAUSE(dist_schedule) OPENMP_DISTRIBUTE_CLAUSE(allocate) // Static attributes for 'dist_schedule' clause. OPENMP_DIST_SCHEDULE_KIND(static) // Clauses allowed for OpenMP directive 'distribute parallel for' OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(firstprivate) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(lastprivate) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(collapse) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(dist_schedule) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(if) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(num_threads) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(default) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(proc_bind) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(private) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(shared) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(reduction) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(copyin) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(schedule) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(allocate) OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(order) // Clauses allowed for OpenMP directive 'distribute parallel for simd' OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(firstprivate) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(lastprivate) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(collapse) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(dist_schedule) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(if) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(num_threads) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(default) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(proc_bind) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(private) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(shared) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(reduction) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(copyin) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(schedule) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(linear) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(aligned) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(safelen) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(simdlen) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(allocate) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(nontemporal) OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'distribute simd' OPENMP_DISTRIBUTE_SIMD_CLAUSE(private) OPENMP_DISTRIBUTE_SIMD_CLAUSE(firstprivate) OPENMP_DISTRIBUTE_SIMD_CLAUSE(lastprivate) OPENMP_DISTRIBUTE_SIMD_CLAUSE(collapse) OPENMP_DISTRIBUTE_SIMD_CLAUSE(dist_schedule) OPENMP_DISTRIBUTE_SIMD_CLAUSE(linear) OPENMP_DISTRIBUTE_SIMD_CLAUSE(aligned) OPENMP_DISTRIBUTE_SIMD_CLAUSE(safelen) OPENMP_DISTRIBUTE_SIMD_CLAUSE(simdlen) OPENMP_DISTRIBUTE_SIMD_CLAUSE(reduction) OPENMP_DISTRIBUTE_SIMD_CLAUSE(allocate) OPENMP_DISTRIBUTE_SIMD_CLAUSE(if) OPENMP_DISTRIBUTE_SIMD_CLAUSE(nontemporal) OPENMP_DISTRIBUTE_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'target parallel for simd'. OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(if) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(device) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(map) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(private) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(firstprivate) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(lastprivate) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(nowait) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(depend) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(defaultmap) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(num_threads) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(default) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(proc_bind) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(shared) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(reduction) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(collapse) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(schedule) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(ordered) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(linear) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(safelen) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(simdlen) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(aligned) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(is_device_ptr) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(allocate) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(nontemporal) OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'target simd'. OPENMP_TARGET_SIMD_CLAUSE(if) OPENMP_TARGET_SIMD_CLAUSE(device) OPENMP_TARGET_SIMD_CLAUSE(map) OPENMP_TARGET_SIMD_CLAUSE(private) OPENMP_TARGET_SIMD_CLAUSE(nowait) OPENMP_TARGET_SIMD_CLAUSE(depend) OPENMP_TARGET_SIMD_CLAUSE(defaultmap) OPENMP_TARGET_SIMD_CLAUSE(firstprivate) OPENMP_TARGET_SIMD_CLAUSE(is_device_ptr) OPENMP_TARGET_SIMD_CLAUSE(lastprivate) OPENMP_TARGET_SIMD_CLAUSE(linear) OPENMP_TARGET_SIMD_CLAUSE(aligned) OPENMP_TARGET_SIMD_CLAUSE(safelen) OPENMP_TARGET_SIMD_CLAUSE(simdlen) OPENMP_TARGET_SIMD_CLAUSE(collapse) OPENMP_TARGET_SIMD_CLAUSE(reduction) OPENMP_TARGET_SIMD_CLAUSE(allocate) OPENMP_TARGET_SIMD_CLAUSE(nontemporal) OPENMP_TARGET_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'teams distribute'. OPENMP_TEAMS_DISTRIBUTE_CLAUSE(default) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(private) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(firstprivate) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(shared) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(reduction) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(num_teams) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(thread_limit) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(lastprivate) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(collapse) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(dist_schedule) OPENMP_TEAMS_DISTRIBUTE_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'teams distribute simd' OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(default) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(private) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(firstprivate) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(shared) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(reduction) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(num_teams) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(thread_limit) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(lastprivate) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(collapse) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(dist_schedule) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(linear) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(aligned) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(safelen) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(simdlen) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(allocate) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(if) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(nontemporal) OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'teams distribute parallel for simd' OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(firstprivate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(lastprivate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(collapse) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(dist_schedule) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(if) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(num_threads) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(default) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(proc_bind) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(private) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(shared) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(reduction) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(schedule) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(linear) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(aligned) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(safelen) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(simdlen) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(num_teams) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(thread_limit) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(allocate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(nontemporal) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'teams distribute parallel for' OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(firstprivate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(lastprivate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(collapse) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(dist_schedule) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(if) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(num_threads) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(default) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(proc_bind) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(private) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(shared) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(reduction) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(schedule) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(num_teams) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(thread_limit) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(copyin) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(allocate) OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(order) // Clauses allowed for OpenMP directive 'target teams'. OPENMP_TARGET_TEAMS_CLAUSE(if) OPENMP_TARGET_TEAMS_CLAUSE(device) OPENMP_TARGET_TEAMS_CLAUSE(map) OPENMP_TARGET_TEAMS_CLAUSE(private) OPENMP_TARGET_TEAMS_CLAUSE(nowait) OPENMP_TARGET_TEAMS_CLAUSE(depend) OPENMP_TARGET_TEAMS_CLAUSE(defaultmap) OPENMP_TARGET_TEAMS_CLAUSE(firstprivate) OPENMP_TARGET_TEAMS_CLAUSE(is_device_ptr) OPENMP_TARGET_TEAMS_CLAUSE(default) OPENMP_TARGET_TEAMS_CLAUSE(shared) OPENMP_TARGET_TEAMS_CLAUSE(reduction) OPENMP_TARGET_TEAMS_CLAUSE(num_teams) OPENMP_TARGET_TEAMS_CLAUSE(thread_limit) OPENMP_TARGET_TEAMS_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'target teams distribute'. OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(if) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(device) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(map) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(private) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(nowait) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(depend) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(defaultmap) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(firstprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(is_device_ptr) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(default) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(shared) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(reduction) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(num_teams) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(thread_limit) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(lastprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(collapse) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(dist_schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'target teams distribute parallel for'. OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(if) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(device) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(map) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(private) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(nowait) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(depend) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(defaultmap) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(firstprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(is_device_ptr) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(default) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(shared) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(reduction) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(num_teams) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(thread_limit) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(lastprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(collapse) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(dist_schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(num_threads) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(proc_bind) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(allocate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(order) // Clauses allowed for OpenMP directive // 'target teams distribute parallel for simd'. OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(if) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(device) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(map) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(private) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(nowait) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(depend) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(defaultmap) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(firstprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(is_device_ptr) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(default) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(shared) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(reduction) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(num_teams) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(thread_limit) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(lastprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(collapse) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(dist_schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(num_threads) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(proc_bind) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(linear) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(aligned) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(safelen) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(simdlen) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(allocate) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(nontemporal) OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'target teams distribute simd'. OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(if) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(device) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(map) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(private) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(nowait) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(depend) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(defaultmap) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(firstprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(lastprivate) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(is_device_ptr) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(shared) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(reduction) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(num_teams) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(thread_limit) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(collapse) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(dist_schedule) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(linear) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(aligned) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(safelen) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(simdlen) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(allocate) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(nontemporal) OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE(order) // Clauses allowed for OpenMP directive 'taskgroup'. OPENMP_TASKGROUP_CLAUSE(task_reduction) OPENMP_TASKGROUP_CLAUSE(allocate) // Clauses allowed for OpenMP directive 'declare mapper'. OPENMP_DECLARE_MAPPER_CLAUSE(map) // Device types for 'device_type' clause. OPENMP_DEVICE_TYPE_KIND(host) OPENMP_DEVICE_TYPE_KIND(nohost) OPENMP_DEVICE_TYPE_KIND(any) // Clauses allowed for OpenMP directive 'declare variant'. OPENMP_DECLARE_VARIANT_CLAUSE(match) // Type of the 'lastprivate' clause. OPENMP_LASTPRIVATE_KIND(conditional) // Type of the 'order' clause. OPENMP_ORDER_KIND(concurrent) // Clauses allowed for OpenMP directive 'flush'. OPENMP_FLUSH_CLAUSE(acq_rel) #undef OPENMP_FLUSH_CLAUSE #undef OPENMP_ORDER_KIND #undef OPENMP_LASTPRIVATE_KIND #undef OPENMP_CONTEXT_SELECTOR #undef OPENMP_CONTEXT_SELECTOR_SET #undef OPENMP_DECLARE_VARIANT_CLAUSE #undef OPENMP_DEVICE_TYPE_KIND #undef OPENMP_ALLOCATE_CLAUSE #undef OPENMP_DECLARE_MAPPER_CLAUSE #undef OPENMP_TASKGROUP_CLAUSE #undef OPENMP_PARALLEL_MASTER_TASKLOOP_SIMD_CLAUSE #undef OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE #undef OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE #undef OPENMP_MASTER_TASKLOOP_CLAUSE #undef OPENMP_TASKLOOP_SIMD_CLAUSE #undef OPENMP_TASKLOOP_CLAUSE #undef OPENMP_LINEAR_KIND #undef OPENMP_DEPEND_KIND #undef OPENMP_SCHEDULE_MODIFIER #undef OPENMP_SCHEDULE_KIND #undef OPENMP_DEFAULT_KIND #undef OPENMP_CLAUSE #undef OPENMP_CRITICAL_CLAUSE #undef OPENMP_ORDERED_CLAUSE #undef OPENMP_CANCEL_CLAUSE #undef OPENMP_SINGLE_CLAUSE #undef OPENMP_SECTIONS_CLAUSE #undef OPENMP_PARALLEL_CLAUSE #undef OPENMP_PARALLEL_FOR_CLAUSE #undef OPENMP_PARALLEL_FOR_SIMD_CLAUSE #undef OPENMP_PARALLEL_MASTER_CLAUSE #undef OPENMP_PARALLEL_SECTIONS_CLAUSE #undef OPENMP_TASK_CLAUSE #undef OPENMP_ATOMIC_CLAUSE #undef OPENMP_TARGET_CLAUSE #undef OPENMP_REQUIRES_CLAUSE #undef OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND #undef OPENMP_TARGET_DATA_CLAUSE #undef OPENMP_TARGET_ENTER_DATA_CLAUSE #undef OPENMP_TARGET_EXIT_DATA_CLAUSE #undef OPENMP_TARGET_PARALLEL_CLAUSE #undef OPENMP_TARGET_PARALLEL_FOR_CLAUSE #undef OPENMP_TEAMS_CLAUSE #undef OPENMP_SIMD_CLAUSE #undef OPENMP_FOR_CLAUSE #undef OPENMP_FOR_SIMD_CLAUSE #undef OPENMP_MAP_KIND #undef OPENMP_MAP_MODIFIER_KIND #undef OPENMP_TO_MODIFIER_KIND #undef OPENMP_FROM_MODIFIER_KIND #undef OPENMP_DISTRIBUTE_CLAUSE #undef OPENMP_DIST_SCHEDULE_KIND #undef OPENMP_DEFAULTMAP_KIND #undef OPENMP_DEFAULTMAP_MODIFIER #undef OPENMP_TARGET_UPDATE_CLAUSE #undef OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE #undef OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #undef OPENMP_DISTRIBUTE_SIMD_CLAUSE #undef OPENMP_TARGET_PARALLEL_FOR_SIMD_CLAUSE #undef OPENMP_TARGET_SIMD_CLAUSE #undef OPENMP_TEAMS_DISTRIBUTE_CLAUSE #undef OPENMP_TEAMS_DISTRIBUTE_SIMD_CLAUSE #undef OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #undef OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE #undef OPENMP_TARGET_TEAMS_CLAUSE #undef OPENMP_TARGET_TEAMS_DISTRIBUTE_CLAUSE #undef OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE #undef OPENMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE #undef OPENMP_TARGET_TEAMS_DISTRIBUTE_SIMD_CLAUSE
[ "gwolf2u.website@gmail.com" ]
gwolf2u.website@gmail.com
f57dd238e483417222ccb6e2926a120d025910cb
bc0f5cc72a8a1ceb3b2aec96d644242cea677859
/src/qt/optionsdialog.cpp
5e805fef55eb998eaac41aaa20bdee232c22b587
[ "MIT" ]
permissive
mexicancoin/MXNCore
73cc527d6e6f12fad8d26a565c5a9b779cbbf4a8
bfe0b11963070480cf8b7f1c86d3ce6941731f39
refs/heads/master
2021-01-23T16:52:32.383688
2017-09-10T17:16:19
2017-09-10T17:16:19
102,750,360
1
3
null
null
null
null
UTF-8
C++
false
false
13,391
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include "config/mxn-config.h" #endif #include "optionsdialog.h" #include "ui_optionsdialog.h" #include "bitcoinunits.h" #include "guiutil.h" #include "optionsmodel.h" #include "main.h" // for DEFAULT_SCRIPTCHECK_THREADS and MAX_SCRIPTCHECK_THREADS #include "netbase.h" #include "txdb.h" // for -dbcache defaults #ifdef ENABLE_WALLET #include "wallet/wallet.h" // for CWallet::GetRequiredFee() #endif #include "darksend.h" #include <boost/thread.hpp> #include <QDataWidgetMapper> #include <QDir> #include <QIntValidator> #include <QLocale> #include <QMessageBox> #include <QTimer> extern CWallet* pwalletMain; OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) : QDialog(parent), ui(new Ui::OptionsDialog), model(0), mapper(0) { ui->setupUi(this); /* Main elements init */ ui->databaseCache->setMinimum(nMinDbCache); ui->databaseCache->setMaximum(nMaxDbCache); ui->threadsScriptVerif->setMinimum(-GetNumCores()); ui->threadsScriptVerif->setMaximum(MAX_SCRIPTCHECK_THREADS); /* Network elements init */ #ifndef USE_UPNP ui->mapPortUpnp->setEnabled(false); #endif ui->proxyIp->setEnabled(false); ui->proxyPort->setEnabled(false); ui->proxyPort->setValidator(new QIntValidator(1, 65535, this)); ui->proxyIpTor->setEnabled(false); ui->proxyPortTor->setEnabled(false); ui->proxyPortTor->setValidator(new QIntValidator(1, 65535, this)); connect(ui->connectSocks, SIGNAL(toggled(bool)), ui->proxyIp, SLOT(setEnabled(bool))); connect(ui->connectSocks, SIGNAL(toggled(bool)), ui->proxyPort, SLOT(setEnabled(bool))); connect(ui->connectSocks, SIGNAL(toggled(bool)), this, SLOT(updateProxyValidationState())); connect(ui->connectSocksTor, SIGNAL(toggled(bool)), ui->proxyIpTor, SLOT(setEnabled(bool))); connect(ui->connectSocksTor, SIGNAL(toggled(bool)), ui->proxyPortTor, SLOT(setEnabled(bool))); connect(ui->connectSocksTor, SIGNAL(toggled(bool)), this, SLOT(updateProxyValidationState())); /* Window elements init */ #ifdef Q_OS_MAC /* remove Window tab on Mac */ ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->tabWindow)); #endif /* remove Wallet tab in case of -disablewallet */ if (!enableWallet) { ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->tabWallet)); } /* Display elements init */ /* Number of displayed decimal digits selector */ QString digits; for(int index = 2; index <=8; index++) { digits.setNum(index); ui->digits->addItem(digits, digits); } /* Theme selector */ ui->theme->addItem(QString("MUE-light"), QVariant("light")); ui->theme->addItem(QString("MUE-blue"), QVariant("drkblue")); ui->theme->addItem(QString("MUE-Crownium"), QVariant("crownium")); ui->theme->addItem(QString("MUE-traditional"), QVariant("trad")); /* Language selector */ QDir translations(":translations"); ui->lang->addItem(QString("(") + tr("default") + QString(")"), QVariant("")); Q_FOREACH(const QString &langStr, translations.entryList()) { QLocale locale(langStr); /** check if the locale name consists of 2 parts (language_country) */ if(langStr.contains("_")) { #if QT_VERSION >= 0x040800 /** display language strings as "native language - native country (locale name)", e.g. "Deutsch - Deutschland (de)" */ ui->lang->addItem(locale.nativeLanguageName() + QString(" - ") + locale.nativeCountryName() + QString(" (") + langStr + QString(")"), QVariant(langStr)); #else /** display language strings as "language - country (locale name)", e.g. "German - Germany (de)" */ ui->lang->addItem(QLocale::languageToString(locale.language()) + QString(" - ") + QLocale::countryToString(locale.country()) + QString(" (") + langStr + QString(")"), QVariant(langStr)); #endif } else { #if QT_VERSION >= 0x040800 /** display language strings as "native language (locale name)", e.g. "Deutsch (de)" */ ui->lang->addItem(locale.nativeLanguageName() + QString(" (") + langStr + QString(")"), QVariant(langStr)); #else /** display language strings as "language (locale name)", e.g. "German (de)" */ ui->lang->addItem(QLocale::languageToString(locale.language()) + QString(" (") + langStr + QString(")"), QVariant(langStr)); #endif } } #if QT_VERSION >= 0x040700 ui->thirdPartyTxUrls->setPlaceholderText("https://example.com/tx/%s"); #endif ui->unit->setModel(new BitcoinUnits(this)); /* Widget-to-option mapper */ mapper = new QDataWidgetMapper(this); mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit); mapper->setOrientation(Qt::Vertical); /* setup/change UI elements when proxy IPs are invalid/valid */ ui->proxyIp->setCheckValidator(new ProxyAddressValidator(parent)); ui->proxyIpTor->setCheckValidator(new ProxyAddressValidator(parent)); connect(ui->proxyIp, SIGNAL(validationDidChange(QValidatedLineEdit *)), this, SLOT(updateProxyValidationState())); connect(ui->proxyIpTor, SIGNAL(validationDidChange(QValidatedLineEdit *)), this, SLOT(updateProxyValidationState())); connect(ui->proxyPort, SIGNAL(textChanged(const QString&)), this, SLOT(updateProxyValidationState())); connect(ui->proxyPortTor, SIGNAL(textChanged(const QString&)), this, SLOT(updateProxyValidationState())); } OptionsDialog::~OptionsDialog() { delete ui; } void OptionsDialog::setModel(OptionsModel *model) { this->model = model; if(model) { /* check if client restart is needed and show persistent message */ if (model->isRestartRequired()) showRestartWarning(true); QString strLabel = model->getOverriddenByCommandLine(); if (strLabel.isEmpty()) strLabel = tr("none"); ui->overriddenByCommandLineLabel->setText(strLabel); mapper->setModel(model); setMapper(); mapper->toFirst(); updateDefaultProxyNets(); } /* warn when one of the following settings changes by user action (placed here so init via mapper doesn't trigger them) */ /* Main */ connect(ui->databaseCache, SIGNAL(valueChanged(int)), this, SLOT(showRestartWarning())); connect(ui->threadsScriptVerif, SIGNAL(valueChanged(int)), this, SLOT(showRestartWarning())); /* Wallet */ connect(ui->showMasternodesTab, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); connect(ui->spendZeroConfChange, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); /* Network */ connect(ui->allowIncoming, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); connect(ui->connectSocks, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); connect(ui->connectSocksTor, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); /* Display */ connect(ui->digits, SIGNAL(valueChanged()), this, SLOT(showRestartWarning())); connect(ui->theme, SIGNAL(valueChanged()), this, SLOT(showRestartWarning())); connect(ui->lang, SIGNAL(valueChanged()), this, SLOT(showRestartWarning())); connect(ui->thirdPartyTxUrls, SIGNAL(textChanged(const QString &)), this, SLOT(showRestartWarning())); } void OptionsDialog::setMapper() { /* Main */ mapper->addMapping(ui->bitcoinAtStartup, OptionsModel::StartAtStartup); mapper->addMapping(ui->threadsScriptVerif, OptionsModel::ThreadsScriptVerif); mapper->addMapping(ui->databaseCache, OptionsModel::DatabaseCache); /* Wallet */ mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures); mapper->addMapping(ui->showMasternodesTab, OptionsModel::ShowMasternodesTab); mapper->addMapping(ui->showAdvancedPSUI, OptionsModel::ShowAdvancedPSUI); mapper->addMapping(ui->lowKeysWarning, OptionsModel::LowKeysWarning); mapper->addMapping(ui->privateSendMultiSession, OptionsModel::PrivateSendMultiSession); mapper->addMapping(ui->spendZeroConfChange, OptionsModel::SpendZeroConfChange); mapper->addMapping(ui->privateSendRounds, OptionsModel::PrivateSendRounds); mapper->addMapping(ui->privateSendAmount, OptionsModel::PrivateSendAmount); /* Network */ mapper->addMapping(ui->mapPortUpnp, OptionsModel::MapPortUPnP); mapper->addMapping(ui->allowIncoming, OptionsModel::Listen); mapper->addMapping(ui->connectSocks, OptionsModel::ProxyUse); mapper->addMapping(ui->proxyIp, OptionsModel::ProxyIP); mapper->addMapping(ui->proxyPort, OptionsModel::ProxyPort); mapper->addMapping(ui->connectSocksTor, OptionsModel::ProxyUseTor); mapper->addMapping(ui->proxyIpTor, OptionsModel::ProxyIPTor); mapper->addMapping(ui->proxyPortTor, OptionsModel::ProxyPortTor); /* Window */ #ifndef Q_OS_MAC mapper->addMapping(ui->minimizeToTray, OptionsModel::MinimizeToTray); mapper->addMapping(ui->minimizeOnClose, OptionsModel::MinimizeOnClose); #endif /* Display */ mapper->addMapping(ui->digits, OptionsModel::Digits); mapper->addMapping(ui->theme, OptionsModel::Theme); mapper->addMapping(ui->lang, OptionsModel::Language); mapper->addMapping(ui->unit, OptionsModel::DisplayUnit); mapper->addMapping(ui->thirdPartyTxUrls, OptionsModel::ThirdPartyTxUrls); } void OptionsDialog::setOkButtonState(bool fState) { ui->okButton->setEnabled(fState); } void OptionsDialog::on_resetButton_clicked() { if(model) { // confirmation dialog QMessageBox::StandardButton btnRetVal = QMessageBox::question(this, tr("Confirm options reset"), tr("Client restart required to activate changes.") + "<br><br>" + tr("Client will be shut down. Do you want to proceed?"), QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel); if(btnRetVal == QMessageBox::Cancel) return; /* reset all options and close GUI */ model->Reset(); QApplication::quit(); } } void OptionsDialog::on_okButton_clicked() { mapper->submit(); darkSendPool.nCachedNumBlocks = std::numeric_limits<int>::max(); pwalletMain->MarkDirty(); accept(); updateDefaultProxyNets(); } void OptionsDialog::on_cancelButton_clicked() { reject(); } void OptionsDialog::showRestartWarning(bool fPersistent) { ui->statusLabel->setStyleSheet("QLabel { color: red; }"); if(fPersistent) { ui->statusLabel->setText(tr("Client restart required to activate changes.")); } else { ui->statusLabel->setText(tr("This change would require a client restart.")); // clear non-persistent status label after 10 seconds // Todo: should perhaps be a class attribute, if we extend the use of statusLabel QTimer::singleShot(10000, this, SLOT(clearStatusLabel())); } } void OptionsDialog::clearStatusLabel() { ui->statusLabel->clear(); } void OptionsDialog::updateProxyValidationState() { QValidatedLineEdit *pUiProxyIp = ui->proxyIp; QValidatedLineEdit *otherProxyWidget = (pUiProxyIp == ui->proxyIpTor) ? ui->proxyIp : ui->proxyIpTor; if (pUiProxyIp->isValid() && (!ui->proxyPort->isEnabled() || ui->proxyPort->text().toInt() > 0) && (!ui->proxyPortTor->isEnabled() || ui->proxyPortTor->text().toInt() > 0)) { setOkButtonState(otherProxyWidget->isValid()); //only enable ok button if both proxys are valid ui->statusLabel->clear(); } else { setOkButtonState(false); ui->statusLabel->setStyleSheet("QLabel { color: red; }"); ui->statusLabel->setText(tr("The supplied proxy address is invalid.")); } } void OptionsDialog::updateDefaultProxyNets() { proxyType proxy; std::string strProxy; QString strDefaultProxyGUI; GetProxy(NET_IPV4, proxy); strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort(); strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text(); (strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachIPv4->setChecked(true) : ui->proxyReachIPv4->setChecked(false); GetProxy(NET_IPV6, proxy); strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort(); strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text(); (strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachIPv6->setChecked(true) : ui->proxyReachIPv6->setChecked(false); GetProxy(NET_TOR, proxy); strProxy = proxy.proxy.ToStringIP() + ":" + proxy.proxy.ToStringPort(); strDefaultProxyGUI = ui->proxyIp->text() + ":" + ui->proxyPort->text(); (strProxy == strDefaultProxyGUI.toStdString()) ? ui->proxyReachTor->setChecked(true) : ui->proxyReachTor->setChecked(false); } ProxyAddressValidator::ProxyAddressValidator(QObject *parent) : QValidator(parent) { } QValidator::State ProxyAddressValidator::validate(QString &input, int &pos) const { Q_UNUSED(pos); // Validate the proxy proxyType addrProxy = proxyType(CService(input.toStdString(), 9050), true); if (addrProxy.IsValid()) return QValidator::Acceptable; return QValidator::Invalid; }
[ "root@ciesc.net" ]
root@ciesc.net
be2bc617059710a2ba0054520d5f5c9721eb2841
0cde00266bddbb1abc159b011116c8a137cf21ec
/Dependencies/CppWinRT/winrt/impl/Windows.Media.Capture.1.h
e52d3e7ef8c8ea0dbee387b2b10eac72252fd3cb
[ "Apache-2.0" ]
permissive
npstar/NavioIoT
83071b4bba8b7f234187566114bf41371a443c43
419c8eb40f86c23e5ebe96cf1ad5f5cbc9a0ba4c
refs/heads/master
2020-04-08T16:21:37.310348
2017-10-05T19:35:41
2017-10-05T19:35:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
22,648
h
// C++/WinRT v1.0.170825.9 // Copyright (c) 2017 Microsoft Corporation. All rights reserved. #pragma once #include "winrt/impl/Windows.Foundation.0.h" #include "winrt/impl/Windows.Foundation.Collections.0.h" #include "winrt/impl/Windows.Graphics.Imaging.0.h" #include "winrt/impl/Windows.Media.0.h" #include "winrt/impl/Windows.Media.Capture.Core.0.h" #include "winrt/impl/Windows.Media.Capture.Frames.0.h" #include "winrt/impl/Windows.Media.Core.0.h" #include "winrt/impl/Windows.Media.Devices.0.h" #include "winrt/impl/Windows.Media.Effects.0.h" #include "winrt/impl/Windows.Media.MediaProperties.0.h" #include "winrt/impl/Windows.Security.Authentication.Web.0.h" #include "winrt/impl/Windows.Storage.0.h" #include "winrt/impl/Windows.Storage.Streams.0.h" #include "winrt/impl/Windows.System.0.h" #include "winrt/impl/Windows.Media.Capture.0.h" WINRT_EXPORT namespace winrt::Windows::Media::Capture { struct WINRT_EBO IAdvancedCapturedPhoto : Windows::Foundation::IInspectable, impl::consume_t<IAdvancedCapturedPhoto> { IAdvancedCapturedPhoto(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAdvancedCapturedPhoto2 : Windows::Foundation::IInspectable, impl::consume_t<IAdvancedCapturedPhoto2> { IAdvancedCapturedPhoto2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAdvancedPhotoCapture : Windows::Foundation::IInspectable, impl::consume_t<IAdvancedPhotoCapture> { IAdvancedPhotoCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastBackgroundService : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastBackgroundService> { IAppBroadcastBackgroundService(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastBackgroundServiceSignInInfo : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastBackgroundServiceSignInInfo> { IAppBroadcastBackgroundServiceSignInInfo(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastBackgroundServiceStreamInfo : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastBackgroundServiceStreamInfo> { IAppBroadcastBackgroundServiceStreamInfo(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastCameraCaptureStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastCameraCaptureStateChangedEventArgs> { IAppBroadcastCameraCaptureStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastGlobalSettings : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastGlobalSettings> { IAppBroadcastGlobalSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastHeartbeatRequestedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastHeartbeatRequestedEventArgs> { IAppBroadcastHeartbeatRequestedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastManagerStatics : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastManagerStatics> { IAppBroadcastManagerStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastMicrophoneCaptureStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastMicrophoneCaptureStateChangedEventArgs> { IAppBroadcastMicrophoneCaptureStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPlugIn : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPlugIn> { IAppBroadcastPlugIn(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPlugInManager : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPlugInManager> { IAppBroadcastPlugInManager(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPlugInManagerStatics : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPlugInManagerStatics> { IAppBroadcastPlugInManagerStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPlugInStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPlugInStateChangedEventArgs> { IAppBroadcastPlugInStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPreview : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPreview> { IAppBroadcastPreview(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPreviewStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPreviewStateChangedEventArgs> { IAppBroadcastPreviewStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPreviewStreamReader : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPreviewStreamReader> { IAppBroadcastPreviewStreamReader(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPreviewStreamVideoFrame : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPreviewStreamVideoFrame> { IAppBroadcastPreviewStreamVideoFrame(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastPreviewStreamVideoHeader : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastPreviewStreamVideoHeader> { IAppBroadcastPreviewStreamVideoHeader(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastProviderSettings : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastProviderSettings> { IAppBroadcastProviderSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastServices : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastServices> { IAppBroadcastServices(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastSignInStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastSignInStateChangedEventArgs> { IAppBroadcastSignInStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastState : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastState> { IAppBroadcastState(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamAudioFrame : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamAudioFrame> { IAppBroadcastStreamAudioFrame(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamAudioHeader : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamAudioHeader> { IAppBroadcastStreamAudioHeader(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamReader : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamReader> { IAppBroadcastStreamReader(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamStateChangedEventArgs> { IAppBroadcastStreamStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamVideoFrame : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamVideoFrame> { IAppBroadcastStreamVideoFrame(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastStreamVideoHeader : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastStreamVideoHeader> { IAppBroadcastStreamVideoHeader(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastTriggerDetails : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastTriggerDetails> { IAppBroadcastTriggerDetails(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppBroadcastViewerCountChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppBroadcastViewerCountChangedEventArgs> { IAppBroadcastViewerCountChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCapture : Windows::Foundation::IInspectable, impl::consume_t<IAppCapture> { IAppCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureAlternateShortcutKeys : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureAlternateShortcutKeys> { IAppCaptureAlternateShortcutKeys(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureAlternateShortcutKeys2 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureAlternateShortcutKeys2> { IAppCaptureAlternateShortcutKeys2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureAlternateShortcutKeys3 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureAlternateShortcutKeys3> { IAppCaptureAlternateShortcutKeys3(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureDurationGeneratedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureDurationGeneratedEventArgs> { IAppCaptureDurationGeneratedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureFileGeneratedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureFileGeneratedEventArgs> { IAppCaptureFileGeneratedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureManagerStatics : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureManagerStatics> { IAppCaptureManagerStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureMicrophoneCaptureStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureMicrophoneCaptureStateChangedEventArgs> { IAppCaptureMicrophoneCaptureStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureRecordOperation : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureRecordOperation> { IAppCaptureRecordOperation(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureRecordingStateChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureRecordingStateChangedEventArgs> { IAppCaptureRecordingStateChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureServices : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureServices> { IAppCaptureServices(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureSettings : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureSettings> { IAppCaptureSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureSettings2 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureSettings2> { IAppCaptureSettings2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureSettings3 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureSettings3> { IAppCaptureSettings3(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureSettings4 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureSettings4> { IAppCaptureSettings4(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureSettings5 : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureSettings5> { IAppCaptureSettings5(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureState : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureState> { IAppCaptureState(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IAppCaptureStatics : Windows::Foundation::IInspectable, impl::consume_t<IAppCaptureStatics> { IAppCaptureStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICameraCaptureUI : Windows::Foundation::IInspectable, impl::consume_t<ICameraCaptureUI> { ICameraCaptureUI(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICameraCaptureUIPhotoCaptureSettings : Windows::Foundation::IInspectable, impl::consume_t<ICameraCaptureUIPhotoCaptureSettings> { ICameraCaptureUIPhotoCaptureSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICameraCaptureUIVideoCaptureSettings : Windows::Foundation::IInspectable, impl::consume_t<ICameraCaptureUIVideoCaptureSettings> { ICameraCaptureUIVideoCaptureSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICameraOptionsUIStatics : Windows::Foundation::IInspectable, impl::consume_t<ICameraOptionsUIStatics> { ICameraOptionsUIStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICapturedFrame : Windows::Foundation::IInspectable, impl::consume_t<ICapturedFrame>, impl::require<ICapturedFrame, Windows::Foundation::IClosable, Windows::Storage::Streams::IContentTypeProvider, Windows::Storage::Streams::IInputStream, Windows::Storage::Streams::IOutputStream, Windows::Storage::Streams::IRandomAccessStream, Windows::Storage::Streams::IRandomAccessStreamWithContentType> { ICapturedFrame(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICapturedFrameControlValues : Windows::Foundation::IInspectable, impl::consume_t<ICapturedFrameControlValues> { ICapturedFrameControlValues(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICapturedFrameControlValues2 : Windows::Foundation::IInspectable, impl::consume_t<ICapturedFrameControlValues2> { ICapturedFrameControlValues2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICapturedFrameWithSoftwareBitmap : Windows::Foundation::IInspectable, impl::consume_t<ICapturedFrameWithSoftwareBitmap> { ICapturedFrameWithSoftwareBitmap(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ICapturedPhoto : Windows::Foundation::IInspectable, impl::consume_t<ICapturedPhoto> { ICapturedPhoto(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServices : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServices> { IGameBarServices(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServicesCommandEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServicesCommandEventArgs> { IGameBarServicesCommandEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServicesManager : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServicesManager> { IGameBarServicesManager(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServicesManagerGameBarServicesCreatedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServicesManagerGameBarServicesCreatedEventArgs> { IGameBarServicesManagerGameBarServicesCreatedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServicesManagerStatics : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServicesManagerStatics> { IGameBarServicesManagerStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IGameBarServicesTargetInfo : Windows::Foundation::IInspectable, impl::consume_t<IGameBarServicesTargetInfo> { IGameBarServicesTargetInfo(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ILowLagMediaRecording : Windows::Foundation::IInspectable, impl::consume_t<ILowLagMediaRecording> { ILowLagMediaRecording(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ILowLagMediaRecording2 : Windows::Foundation::IInspectable, impl::consume_t<ILowLagMediaRecording2> { ILowLagMediaRecording2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ILowLagMediaRecording3 : Windows::Foundation::IInspectable, impl::consume_t<ILowLagMediaRecording3> { ILowLagMediaRecording3(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ILowLagPhotoCapture : Windows::Foundation::IInspectable, impl::consume_t<ILowLagPhotoCapture> { ILowLagPhotoCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ILowLagPhotoSequenceCapture : Windows::Foundation::IInspectable, impl::consume_t<ILowLagPhotoSequenceCapture> { ILowLagPhotoSequenceCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture> { IMediaCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture2 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture2> { IMediaCapture2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture3 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture3> { IMediaCapture3(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture4 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture4> { IMediaCapture4(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture5 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture5> { IMediaCapture5(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapture6 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapture6> { IMediaCapture6(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs> { IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureFailedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureFailedEventArgs> { IMediaCaptureFailedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureFocusChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureFocusChangedEventArgs> { IMediaCaptureFocusChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings> { IMediaCaptureInitializationSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings2 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings2> { IMediaCaptureInitializationSettings2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings3 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings3> { IMediaCaptureInitializationSettings3(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings4 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings4> { IMediaCaptureInitializationSettings4(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings5 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings5> { IMediaCaptureInitializationSettings5(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureInitializationSettings6 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureInitializationSettings6> { IMediaCaptureInitializationSettings6(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCapturePauseResult : Windows::Foundation::IInspectable, impl::consume_t<IMediaCapturePauseResult> { IMediaCapturePauseResult(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureSettings : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureSettings> { IMediaCaptureSettings(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureSettings2 : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureSettings2> { IMediaCaptureSettings2(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureStatics : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureStatics> { IMediaCaptureStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureStopResult : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureStopResult> { IMediaCaptureStopResult(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureVideoPreview : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureVideoPreview> { IMediaCaptureVideoPreview(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureVideoProfile : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureVideoProfile> { IMediaCaptureVideoProfile(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IMediaCaptureVideoProfileMediaDescription : Windows::Foundation::IInspectable, impl::consume_t<IMediaCaptureVideoProfileMediaDescription> { IMediaCaptureVideoProfileMediaDescription(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IOptionalReferencePhotoCapturedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IOptionalReferencePhotoCapturedEventArgs> { IOptionalReferencePhotoCapturedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IPhotoCapturedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IPhotoCapturedEventArgs> { IPhotoCapturedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IPhotoConfirmationCapturedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IPhotoConfirmationCapturedEventArgs> { IPhotoConfirmationCapturedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IScreenCapture : Windows::Foundation::IInspectable, impl::consume_t<IScreenCapture> { IScreenCapture(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IScreenCaptureStatics : Windows::Foundation::IInspectable, impl::consume_t<IScreenCaptureStatics> { IScreenCaptureStatics(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO ISourceSuspensionChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<ISourceSuspensionChangedEventArgs> { ISourceSuspensionChangedEventArgs(std::nullptr_t = nullptr) noexcept {} }; struct WINRT_EBO IVideoStreamConfiguration : Windows::Foundation::IInspectable, impl::consume_t<IVideoStreamConfiguration> { IVideoStreamConfiguration(std::nullptr_t = nullptr) noexcept {} }; }
[ "tony@tonywall.com" ]
tony@tonywall.com
f5b552f07300a2abd345dfd69db964fd4bf50ce3
2137758886e0f576bc01636d5f60a89118449a83
/基于多态的职工管理系统/manager.cpp
39760e1f6acd54a80bc9ac4e18824ce5b437fa94
[]
no_license
Zhaitizi/Employee-management-system
c405f99225a3158fb4a17fe8c33c201e27d4ba9b
5ff2b978214844c9699d2cbe599e37babe78ae32
refs/heads/master
2023-07-31T04:07:45.686218
2021-09-07T08:47:38
2021-09-07T08:47:38
403,906,434
0
0
null
null
null
null
GB18030
C++
false
false
515
cpp
#include "manager.h" //经理类 //构造函数 Manager::Manager(int id, string name, int dId) { this->m_Id = id; this->m_Name = name; this->m_DeptId = dId; } //显示个人信息 void Manager::showInfo() { cout << "职工编号:" << this->m_Id << "\t职工姓名:" << this->m_Name << "\t岗位:" << this->getDeptName() << "\t岗位职责:完成老板交给的任务,并下发任务给员工" << endl; } //获取职工岗位名称 string Manager::getDeptName() { return string("经理"); }
[ "Zhaitizi9@DESKTOP-KQ8G0AK" ]
Zhaitizi9@DESKTOP-KQ8G0AK
5ecbfd24c37c3cace67b7946fd8ca13b5c4135f5
5095bbe94f3af8dc3b14a331519cfee887f4c07e
/howwet/Shared/Gobjs/DELAY.CPP
6c77d74f3c4a3d91824744c667566b372740ee8c
[]
no_license
sativa/apsim_development
efc2b584459b43c89e841abf93830db8d523b07a
a90ffef3b4ed8a7d0cce1c169c65364be6e93797
refs/heads/master
2020-12-24T06:53:59.364336
2008-09-17T05:31:07
2008-09-17T05:31:07
64,154,433
0
0
null
null
null
null
UTF-8
C++
false
false
1,062
cpp
#include <consts.h> #include <gobjs\delay.h> #include <time.h> // time_t #include <stdio.h> // NULL // ******************************************************************* void Delay(int Num_seconds) { // ******************************************************************* // Short description: // Delay for a specified number of seconds, // Notes: // This routine is necessary because the standard C routine "delay" // doesn't work with Windows. A real Bummer that !! // Changes: // DPH - 2/9/93 // ---------------------- Declaration section ------------------------ // Internal constants // none // Routine arguments // int Num_seconds; // Number of seconds to delay // Internal variables time_t Start_time; // Starting time time_t Current_time; // Current time // -------------------- Executable code section ---------------------- Start_time = time(NULL); do Current_time = time(NULL); while (Current_time - Start_time < Num_seconds); }
[ "hol353@8bb03f63-af10-0410-889a-a89e84ef1bc8" ]
hol353@8bb03f63-af10-0410-889a-a89e84ef1bc8
7df0bd7fbfa772e8e457ed5cf7a0ba3ebecb22c5
897868d4960eee6e728597e4ec5576aa03064785
/libecc/src/c++/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/eval_param.pass.cpp
092a69778513975e64953aa0cc7d4f93e2ce13e9
[ "MIT", "NCSA" ]
permissive
martell/ellcc
ab95d98c6023a23402a474044730db125349c843
b144e161b5f70da528ae64329f27e4dfab489e5a
refs/heads/master
2021-04-26T11:49:19.551929
2016-10-05T09:21:00
2016-10-05T09:21:00
70,063,491
2
1
NOASSERTION
2020-03-07T21:58:00
2016-10-05T13:32:53
null
UTF-8
C++
false
false
5,052
cpp
//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // REQUIRES: long_tests // <random> // template<class IntType = int> // class binomial_distribution // template<class _URNG> result_type operator()(_URNG& g, const param_type& parm); #include <random> #include <numeric> #include <vector> #include <cassert> template <class T> inline T sqr(T x) { return x * x; } int main() { { typedef std::binomial_distribution<> D; typedef D::param_type P; typedef std::mt19937_64 G; G g; D d(16, .75); P p(5, .75); const int N = 1000000; std::vector<D::result_type> u; for (int i = 0; i < N; ++i) { D::result_type v = d(g, p); assert(0 <= v && v <= p.t()); u.push_back(v); } double mean = std::accumulate(u.begin(), u.end(), double(0)) / u.size(); double var = 0; double skew = 0; double kurtosis = 0; for (int i = 0; i < u.size(); ++i) { double dbl = (u[i] - mean); double d2 = sqr(dbl); var += d2; skew += dbl * d2; kurtosis += d2 * d2; } var /= u.size(); double dev = std::sqrt(var); skew /= u.size() * dev * var; kurtosis /= u.size() * var * var; kurtosis -= 3; double x_mean = p.t() * p.p(); double x_var = x_mean*(1-p.p()); double x_skew = (1-2*p.p()) / std::sqrt(x_var); double x_kurtosis = (1-6*p.p()*(1-p.p())) / x_var; assert(std::abs((mean - x_mean) / x_mean) < 0.01); assert(std::abs((var - x_var) / x_var) < 0.01); assert(std::abs((skew - x_skew) / x_skew) < 0.01); assert(std::abs((kurtosis - x_kurtosis) / x_kurtosis) < 0.04); } { typedef std::binomial_distribution<> D; typedef D::param_type P; typedef std::mt19937 G; G g; D d(16, .75); P p(30, .03125); const int N = 100000; std::vector<D::result_type> u; for (int i = 0; i < N; ++i) { D::result_type v = d(g, p); assert(0 <= v && v <= p.t()); u.push_back(v); } double mean = std::accumulate(u.begin(), u.end(), double(0)) / u.size(); double var = 0; double skew = 0; double kurtosis = 0; for (int i = 0; i < u.size(); ++i) { double dbl = (u[i] - mean); double d2 = sqr(dbl); var += d2; skew += dbl * d2; kurtosis += d2 * d2; } var /= u.size(); double dev = std::sqrt(var); skew /= u.size() * dev * var; kurtosis /= u.size() * var * var; kurtosis -= 3; double x_mean = p.t() * p.p(); double x_var = x_mean*(1-p.p()); double x_skew = (1-2*p.p()) / std::sqrt(x_var); double x_kurtosis = (1-6*p.p()*(1-p.p())) / x_var; assert(std::abs((mean - x_mean) / x_mean) < 0.01); assert(std::abs((var - x_var) / x_var) < 0.01); assert(std::abs((skew - x_skew) / x_skew) < 0.01); assert(std::abs((kurtosis - x_kurtosis) / x_kurtosis) < 0.01); } { typedef std::binomial_distribution<> D; typedef D::param_type P; typedef std::mt19937 G; G g; D d(16, .75); P p(40, .25); const int N = 1000000; std::vector<D::result_type> u; for (int i = 0; i < N; ++i) { D::result_type v = d(g, p); assert(0 <= v && v <= p.t()); u.push_back(v); } double mean = std::accumulate(u.begin(), u.end(), double(0)) / u.size(); double var = 0; double skew = 0; double kurtosis = 0; for (int i = 0; i < u.size(); ++i) { double dbl = (u[i] - mean); double d2 = sqr(dbl); var += d2; skew += dbl * d2; kurtosis += d2 * d2; } var /= u.size(); double dev = std::sqrt(var); skew /= u.size() * dev * var; kurtosis /= u.size() * var * var; kurtosis -= 3; double x_mean = p.t() * p.p(); double x_var = x_mean*(1-p.p()); double x_skew = (1-2*p.p()) / std::sqrt(x_var); double x_kurtosis = (1-6*p.p()*(1-p.p())) / x_var; assert(std::abs((mean - x_mean) / x_mean) < 0.01); assert(std::abs((var - x_var) / x_var) < 0.01); assert(std::abs((skew - x_skew) / x_skew) < 0.04); assert(std::abs((kurtosis - x_kurtosis) / x_kurtosis) < 0.3); } }
[ "rich@ellcc.org" ]
rich@ellcc.org
9f93a4b7d09373bd1b4d05830a289efd6524d0dd
f96fc7023b24f6bb0e481c1051d4dfad579534a8
/xqserial_server/src/DiffDriverController.cpp
1bc1f93c0f8caf8caf9f1b0fe36e2f1ad1b96973
[]
no_license
yuduo/xiaoqiang_robot
efe59d12670114819c31789c878a23d04005e433
181813e8d4f51881f8ed33b10bf3bcb421903e18
refs/heads/master
2022-12-13T18:56:25.850660
2020-09-02T14:26:13
2020-09-02T14:26:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,197
cpp
#include "DiffDriverController.h" #include <time.h> namespace xqserial_server { DiffDriverController::DiffDriverController() { max_wheelspeed = 2.0; cmd_topic = "cmd_vel"; xq_status = new StatusPublisher(); cmd_serial = NULL; MoveFlag = true; galileoStatus_.mapStatus = 0; R_min_ = 0.25; } DiffDriverController::DiffDriverController(double max_speed_, std::string cmd_topic_, StatusPublisher *xq_status_, CallbackAsyncSerial *cmd_serial_,double r_min) { MoveFlag = true; max_wheelspeed = max_speed_; cmd_topic = cmd_topic_; xq_status = xq_status_; cmd_serial = cmd_serial_; R_min_ = r_min; } void DiffDriverController::run() { ros::NodeHandle nodeHandler; ros::Subscriber sub = nodeHandler.subscribe(cmd_topic, 1, &DiffDriverController::sendcmd, this); ros::Subscriber sub2 = nodeHandler.subscribe("/imu_cal", 1, &DiffDriverController::imuCalibration, this); ros::Subscriber sub3 = nodeHandler.subscribe("/global_move_flag", 1, &DiffDriverController::updateMoveFlag, this); ros::Subscriber sub4 = nodeHandler.subscribe("/barDetectFlag", 1, &DiffDriverController::updateBarDetectFlag, this); ros::Subscriber sub5 = nodeHandler.subscribe("/galileo/status", 1, &DiffDriverController::UpdateNavStatus, this); ros::spin(); } void DiffDriverController::updateMoveFlag(const std_msgs::Bool &moveFlag) { boost::mutex::scoped_lock lock(mMutex); MoveFlag = moveFlag.data; } void DiffDriverController::imuCalibration(const std_msgs::Bool &calFlag) { if (calFlag.data) { //下发底层imu标定命令 char cmd_str[5] = {(char)0xcd, (char)0xeb, (char)0xd7, (char)0x01, (char)0x43}; if (NULL != cmd_serial) { cmd_serial->write(cmd_str, 5); } } } void DiffDriverController::updateBarDetectFlag(const std_msgs::Bool &DetectFlag) { if (DetectFlag.data) { //下发底层红外开启命令 char cmd_str[6] = {(char)0xcd, (char)0xeb, (char)0xd7, (char)0x02, (char)0x44, (char)0x01}; if (NULL != cmd_serial) { cmd_serial->write(cmd_str, 6); } } else { //下发底层红外禁用命令 char cmd_str[6] = {(char)0xcd, (char)0xeb, (char)0xd7, (char)0x02, (char)0x44, (char)0x00}; if (NULL != cmd_serial) { cmd_serial->write(cmd_str, 6); } } } void DiffDriverController::sendcmd(const geometry_msgs::Twist &command) { static time_t t1 = time(NULL), t2; int i = 0, wheel_ppr = 1; double separation = 0, radius = 0, speed_lin = 0, speed_ang = 0, speed_temp[2]; char speed[2] = {0, 0}; //右一左二 char cmd_str[13] = {(char)0xcd, (char)0xeb, (char)0xd7, (char)0x09, (char)0x74, (char)0x53, (char)0x53, (char)0x53, (char)0x53, (char)0x00, (char)0x00, (char)0x00, (char)0x00}; if (xq_status->get_status() == 0) return; //底层还在初始化 separation = xq_status->get_wheel_separation(); radius = xq_status->get_wheel_radius(); wheel_ppr = xq_status->get_wheel_ppr(); float x_filter = command.linear.x, z_filter = command.angular.z ; { //先过滤速度 boost::mutex::scoped_lock lock(mStausMutex_); if(galileoStatus_.mapStatus == 1) { if(command.angular.z <-0.001 || command.angular.z>0.001 ) { float R_now = std::fabs(command.linear.x / command.angular.z); if(R_now < R_min_) { if(command.angular.z>0.001) { z_filter = std::fabs(x_filter/R_min_); } else { z_filter = -std::fabs(x_filter/R_min_); } } } } } //转换速度单位,由米转换成转 speed_lin = x_filter / (2.0 * PI * radius); speed_ang = z_filter * separation / (2.0 * PI * radius); float scale = std::max(std::abs(speed_lin + speed_ang / 2.0), std::abs(speed_lin - speed_ang / 2.0)) / max_wheelspeed; if (scale > 1.0) { scale = 1.0 / scale; } else { scale = 1.0; } //转出最大速度百分比,并进行限幅 speed_temp[0] = scale * (speed_lin + speed_ang / 2) / max_wheelspeed * 100.0; speed_temp[0] = std::min(speed_temp[0], 100.0); speed_temp[0] = std::max(-100.0, speed_temp[0]); speed_temp[1] = scale * (speed_lin - speed_ang / 2) / max_wheelspeed * 100.0; speed_temp[1] = std::min(speed_temp[1], 100.0); speed_temp[1] = std::max(-100.0, speed_temp[1]); //std::cout<<"radius "<<radius<<std::endl; //std::cout<<"ppr "<<wheel_ppr<<std::endl; //std::cout<<"pwm "<<speed_temp[0]<<std::endl; // command.linear.x/ for (i = 0; i < 2; i++) { speed[i] = (int8_t)speed_temp[i]; if (speed[i] < 0) { cmd_str[5 + i] = (char)0x42; //B cmd_str[9 + i] = -speed[i]; } else if (speed[i] > 0) { cmd_str[5 + i] = (char)0x46; //F cmd_str[9 + i] = speed[i]; } else { cmd_str[5 + i] = (char)0x53; //S cmd_str[9 + i] = (char)0x00; } } // std::cout<<"distance1 "<<xq_status->car_status.distance1<<std::endl; // std::cout<<"distance2 "<<xq_status->car_status.distance2<<std::endl; // std::cout<<"distance3 "<<xq_status->car_status.distance3<<std::endl; // if(xq_status->get_status()==2) // { // //有障碍物 // if(xq_status->car_status.distance1<30&&xq_status->car_status.distance1>0&&cmd_str[6]==(char)0x46) // { // cmd_str[6]=(char)0x53; // } // if(xq_status->car_status.distance2<30&&xq_status->car_status.distance2>0&&cmd_str[5]==(char)0x46) // { // cmd_str[5]=(char)0x53; // } // if(xq_status->car_status.distance3<20&&xq_status->car_status.distance3>0&&(cmd_str[5]==(char)0x42||cmd_str[6]==(char)0x42)) // { // cmd_str[5]=(char)0x53; // cmd_str[6]=(char)0x53; // } // if(xq_status->car_status.distance1<15&&xq_status->car_status.distance1>0&&(cmd_str[5]==(char)0x46||cmd_str[6]==(char)0x46)) // { // cmd_str[5]=(char)0x53; // cmd_str[6]=(char)0x53; // } // if(xq_status->car_status.distance2<15&&xq_status->car_status.distance2>0&&(cmd_str[5]==(char)0x46||cmd_str[6]==(char)0x46)) // { // cmd_str[5]=(char)0x53; // cmd_str[6]=(char)0x53; // } // } boost::mutex::scoped_lock lock(mMutex); if (!MoveFlag) { cmd_str[5] = (char)0x53; cmd_str[6] = (char)0x53; } if (NULL != cmd_serial) { cmd_serial->write(cmd_str, 13); } // command.linear.x } void DiffDriverController::UpdateNavStatus(const galileo_serial_server::GalileoStatus& current_receive_status) { boost::mutex::scoped_lock lock(mStausMutex_); galileoStatus_.navStatus = current_receive_status.navStatus; galileoStatus_.visualStatus = current_receive_status.visualStatus; galileoStatus_.chargeStatus = current_receive_status.chargeStatus; galileoStatus_.mapStatus = current_receive_status.mapStatus; } } // namespace xqserial_server
[ "zhangzipan@protonmail.com" ]
zhangzipan@protonmail.com
a71083ebb8465e1771d499fc26162ca762269621
6d1cd436e2dda96e4f2a91717ac52eaea279a662
/google/cloud/storage/tests/slow_reader_chunk_integration_test.cc
3edc77cc4c20e66b5e76e0d7bfa11b7f6296c91d
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
renovate-bot/google-cloud-cpp
bd019b886fb23a9c5c36ebc6a336402d9e9d4b86
fe093fc340988fb354f38f91f497c886b9438272
refs/heads/master
2023-08-31T20:37:29.348573
2021-05-10T18:38:18
2021-05-10T18:38:18
198,908,134
1
0
Apache-2.0
2021-04-23T19:52:31
2019-07-25T22:19:53
C++
UTF-8
C++
false
false
3,981
cc
// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "google/cloud/storage/client.h" #include "google/cloud/storage/testing/storage_integration_test.h" #include "google/cloud/internal/getenv.h" #include "google/cloud/internal/random.h" #include "google/cloud/log.h" #include "google/cloud/testing_util/status_matchers.h" #include <gmock/gmock.h> #include <thread> namespace google { namespace cloud { namespace storage { inline namespace STORAGE_CLIENT_NS { namespace { class SlowReaderChunkIntegrationTest : public google::cloud::storage::testing::StorageIntegrationTest { protected: void SetUp() override { // Too slow to run against production. if (!UsingEmulator()) GTEST_SKIP(); bucket_name_ = google::cloud::internal::GetEnv( "GOOGLE_CLOUD_CPP_STORAGE_TEST_BUCKET_NAME") .value_or(""); ASSERT_FALSE(bucket_name_.empty()); } std::string bucket_name_; }; TEST_F(SlowReaderChunkIntegrationTest, LongPauses) { StatusOr<Client> client = MakeIntegrationTestClient(); ASSERT_STATUS_OK(client); auto object_name = MakeRandomObjectName(); // Construct an object too large to fit in the first chunk. auto const read_size = 1024 * 1024L; auto const large_text = MakeRandomData(4 * read_size); StatusOr<ObjectMetadata> source_meta = client->InsertObject( bucket_name_, object_name, large_text, IfGenerationMatch(0)); ASSERT_STATUS_OK(source_meta); // Create an iostream to read the object back. When running against the // emulator we can fail quickly by asking the emulator to break the stream // in the middle. auto make_reader = [this, object_name, &client](int64_t offset) { if (UsingEmulator()) { return client->ReadObject( bucket_name_, object_name, CustomHeader("x-goog-emulator-instructions", "return-broken-stream"), ReadFromOffset(offset)); } return client->ReadObject(bucket_name_, object_name, ReadFromOffset(offset)); }; ObjectReadStream stream = make_reader(0); auto slow_reader_period = std::chrono::seconds(UsingEmulator() ? 1 : 400); auto const period_increment = std::chrono::seconds(UsingEmulator() ? 5 : 60); auto const max_slow_reader_period = std::chrono::minutes(10); std::vector<char> buffer; std::size_t const size = 1024 * 1024; buffer.resize(size); stream.read(buffer.data(), size); EXPECT_STATUS_OK(stream.status()); std::cout << "Reading " << std::flush; std::int64_t offset = 0; while (!stream.eof()) { std::cout << ' ' << slow_reader_period.count() << "s (" << offset << ")" << std::flush; std::this_thread::sleep_for(slow_reader_period); stream.read(buffer.data(), size); if (!stream.status().ok()) { std::cout << " restart after (" << stream.status() << ")" << std::flush; stream = make_reader(offset); continue; } offset += stream.gcount(); EXPECT_STATUS_OK(stream.status()); if (slow_reader_period < max_slow_reader_period) { slow_reader_period += period_increment; } } std::cout << " DONE\n"; EXPECT_STATUS_OK(stream.status()); stream.Close(); EXPECT_STATUS_OK(stream.status()); auto status = client->DeleteObject(bucket_name_, object_name); EXPECT_STATUS_OK(status); } } // anonymous namespace } // namespace STORAGE_CLIENT_NS } // namespace storage } // namespace cloud } // namespace google
[ "noreply@github.com" ]
renovate-bot.noreply@github.com
8b2d676840110db93bac84822599ffe9e7f50b57
038d83290be1dc94b6b3f6f92e991427d5623b55
/lab-01/p03a/List.hpp
6b9a430bbfebdfaea62f89d0e0bd6d1df94be2e4
[]
no_license
tokbaev-a/auca-alg-2021
db52e13af98a2abd0e5d43559cdb2191c5d674b7
e491be3f5f9dad2c7c76e387e1dc6468aac0c293
refs/heads/main
2023-08-11T10:23:28.277077
2021-05-25T01:07:20
2021-05-25T01:07:20
328,555,215
0
0
null
null
null
null
UTF-8
C++
false
false
6,117
hpp
#pragma once #include <cstddef> #include <string> #include <sstream> template <typename T> class List { struct Node { Node *mPrev; Node *mNext; T mData; Node(const T &data, Node *prev, Node *next) : mPrev(prev), mNext(next), mData(data) { } }; Node *mHead; Node *mTail; std::size_t mSize; public: List() : mHead(new Node(T(), nullptr, nullptr)), mTail(new Node(T(), nullptr, nullptr)), mSize(0) { mHead->mNext = mTail; mTail->mPrev = mHead; } List(const List<T> &other) : mHead(new Node(T(), nullptr, nullptr)), mTail(new Node(T(), nullptr, nullptr)), mSize(0) { mHead->mNext = mTail; mTail->mPrev = mHead; for (auto i = other.begin(); i != other.end(); i++) { pushBack(*i); } } List(List<T> &&other) : mHead(other.mHead), mTail(other.mTail), mSize(other.mSize) { other.mHead = nullptr; other.mTail = nullptr; other.mSize = 0; } List &operator=(const List<T> &other) { if (this != &other) { clear(); for (auto i = other.begin(); i != other.end(); i++) { pushBack(*i); } } return *this; } List &operator=(List<T> &&other) { if (this != &other) { clear(); mHead = other.mHead; mTail = other.mTail; mSize = other.mSize; other.mHead = nullptr; other.mTail = nullptr; other.mSize = 0; } return *this; } ~List() { clear(); delete mHead; delete mTail; } void clear() { if (mHead != nullptr && mTail != nullptr) { while (begin() != end()) { erase(begin()); } } } std::size_t size() const { return mSize; } std::string toStr() const { std::ostringstream out; out << "{"; Node *p = mHead->mNext; for (std::size_t i = 0; i < mSize; i++) { if (i != 0) { out << ", "; } out << p->mData; p = p->mNext; } out << "}"; return out.str(); } std::string toReverseStr() const { std::ostringstream out; out << "{"; Node *p = mTail->mPrev; for (std::size_t i = 0; i < mSize; i++) { if (i != 0) { out << ", "; } out << p->mData; p = p->mPrev; } out << "}"; return out.str(); } void pushBack(const T &data) { insert(end(), data); } T popBack() { T t = *(--end()); erase(--end()); return t; } void pushFront(const T &data) { insert(begin(), data); } T popFront() { T t = *begin(); erase(begin()); return t; } class Iter; Iter begin() const { Iter r; r.mPtr = mHead->mNext; return r; } Iter end() const { Iter r; r.mPtr = mTail; return r; } Iter insert(Iter p, const T &x) { Iter t; t.mPtr = new Node(x, p.mPtr->mPrev, p.mPtr); p.mPtr->mPrev = t.mPtr; t.mPtr->mPrev->mNext = t.mPtr; ++mSize; return t; } Iter erase(Iter p) { Iter r = p; ++r; p.mPtr->mPrev->mNext = p.mPtr->mNext; p.mPtr->mNext->mPrev = p.mPtr->mPrev; delete p.mPtr; --mSize; return r; } class RIter; RIter rbegin() const { RIter r; r.mPtr = mTail->mPrev; return r; } RIter rend() const { RIter r; r.mPtr = mHead; return r; } }; template <typename T> class List<T>::Iter { friend class List<T>; Node *mPtr; public: using iterator_category = std::bidirectional_iterator_tag; using difference_type = std::ptrdiff_t; using value_type = T; using pointer = T *; using reference = T &; Iter() : mPtr(nullptr) { } T &operator*() const { return mPtr->mData; } T *operator->() const { return &(mPtr->mData); } Iter &operator++() { mPtr = mPtr->mNext; return *this; } Iter operator++(int) { Iter r = *this; mPtr = mPtr->mNext; return r; } Iter &operator--() { mPtr = mPtr->mPrev; return *this; } Iter operator--(int) { Iter r = *this; mPtr = mPtr->mPrev; return r; } bool operator==(const Iter &other) const { return mPtr == other.mPtr; } bool operator!=(const Iter &other) const { return !(*this == other); } }; template <typename T> class List<T>::RIter { friend class List<T>; Node *mPtr; public: using iterator_category = std::bidirectional_iterator_tag; using difference_type = std::ptrdiff_t; using value_type = T; using pointer = T *; using reference = T &; RIter() : mPtr(nullptr) { } T &operator*() const { return mPtr->mData; } T *operator->() const { return &(mPtr->mData); } RIter &operator++() { mPtr = mPtr->mPrev; return *this; } RIter operator++(int) { RIter r = *this; mPtr = mPtr->mPrev; return r; } RIter &operator--() { mPtr = mPtr->mNext; return *this; } RIter operator--(int) { RIter r = *this; mPtr = mPtr->mNext; return r; } bool operator==(const RIter &other) const { return mPtr == other.mPtr; } bool operator!=(const RIter &other) const { return !(*this == other); } };
[ "tokbaev_a@auca.kg" ]
tokbaev_a@auca.kg
8a2d55c95f9aaa4b57f18853881ae47e5b59444f
a8c6859e8130229a54fe9e8b95f51e3977ef9691
/C++ Programming/Source Files/RemotelyControlledMouse/RMouse/Main.h
ca212db1c01f89298bbf4eacd2be3d806332c437
[]
no_license
AnrdyShmrdy/Code-Portfolio
dd4587fab655dc870f12a41a6b23f855a40ee5e0
972c3589796ad480281664fa71935d4bbf7c0ed7
refs/heads/main
2023-04-01T07:45:58.501733
2021-03-29T02:58:52
2021-03-29T02:58:52
348,739,077
0
0
null
null
null
null
UTF-8
C++
false
false
3,226
h
#pragma once #define WIN32_LEAN_AND_MEAN #include <SFML\My additions\sfml.h> #include <iostream> #include <SFML\Network.hpp> #include <string> #include <thread> char who; bool client_connected = false; bool server_connected = false; bool quit = false; int receive1; int receive2; bool recieve3; bool press_lmouse; int Hx; int Hy; int IsPressed(int vk) { return GetAsyncKeyState(vk) >> 15; } void LeftClickDOWN() { INPUT Input = { 0 }; Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_LEFTDOWN; SendInput(1, &Input, sizeof(INPUT)); } void LeftClickUP() { INPUT Input = { 0 }; Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_LEFTUP; SendInput(1, &Input, sizeof(INPUT)); } void RightClickDOWN() { INPUT Input = { 0 }; Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_RIGHTDOWN; SendInput(1, &Input, sizeof(INPUT)); } void RightClickUP() { INPUT Input = { 0 }; Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_RIGHTUP; SendInput(1, &Input, sizeof(INPUT)); } void RightClick() { INPUT Input = { 0 }; Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_RIGHTDOWN; SendInput(1, &Input, sizeof(INPUT)); ZeroMemory(&Input, sizeof(INPUT)); Input.type = INPUT_MOUSE; Input.mi.dwFlags = MOUSEEVENTF_RIGHTUP; SendInput(1, &Input, sizeof(INPUT)); } bool GetLMouseB() { if (IsPressed(VK_SPACE)) { return true; } else { return false; } } bool GetRMouseB() { if (IsPressed(VK_RCONTROL)) { return true; } else { return false; } } POINT GetMouse() { POINT p; GetCursorPos(&p); return p; } sf::IpAddress server = "127.0.0.1"; const unsigned short PORT = 5000; void enterIP() { std::cout << "Enter the ip of server" << std::endl; std::cin >> server; } sf::TcpSocket socket; sf::Mutex globalMutex; void DoStuff(void) { while (!quit) { sf::Packet packetSend; sf::Packet packetReceive; globalMutex.lock(); packetSend << GetMouse().x; packetSend << GetMouse().y; packetSend << GetLMouseB(); globalMutex.unlock(); socket.send(packetSend); socket.receive(packetReceive); if (packetReceive >> receive1 >> receive2 >> recieve3) { Hx = receive1; Hy = receive2; press_lmouse = recieve3; } } } void Server(void) { sf::TcpListener listener; listener.listen(PORT); listener.accept(socket); std::cout << "New client connected: " << socket.getRemoteAddress() << std::endl; client_connected = true; } void Client(void) { if (socket.connect(server, PORT) == sf::Socket::Done) { std::cout << "Connected\n"; server_connected = true; } } void setM() { Sleep(1); SetCursorPos(Hx, Hy); } void endM() { if (IsPressed(VK_ESCAPE)) { quit = true; } } void LClickDragFunction() { if (!press_lmouse) { LeftClickUP(); Sleep(1.0); // THIS IS ABSOULUTLY NECESSARY!!! If you remove it, the program uses A LOT of processing power. if (press_lmouse) { LeftClickDOWN(); } } } void runGameC() { while (!quit) { std::thread first(endM); std::thread second(setM); std::thread third(LClickDragFunction); first.join(); second.join(); third.join(); } }
[ "noreply@github.com" ]
AnrdyShmrdy.noreply@github.com
1d94e2eaa1f3bf2cb7439278477487c1560daa8f
93b24e6296dade8306b88395648377e1b2a7bc8c
/client/SceneEdit/Xerces/src/xercesc/util/XMLBigDecimal.hpp
88f3ccddaa7bd4461d5a60ee4f97717877351b4c
[ "Apache-2.0" ]
permissive
dahahua/pap_wclinet
79c5ac068cd93cbacca5b3d0b92e6c9cba11a893
d0cde48be4d63df4c4072d4fde2e3ded28c5040f
refs/heads/master
2022-01-19T21:41:22.000190
2013-10-12T04:27:59
2013-10-12T04:27:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,390
hpp
/* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Id: XMLBigDecimal.hpp 176026 2004-09-08 13:57:07Z peiyongz $ */ #ifndef XML_BIGDECIMAL_HPP #define XML_BIGDECIMAL_HPP #include <../../../SceneEdit/Xerces/src/xercesc/util/XMLNumber.hpp> #include <../../../SceneEdit/Xerces/src/xercesc/util/XMLString.hpp> #include <../../../SceneEdit/Xerces/src/xercesc/util/PlatformUtils.hpp> XERCES_CPP_NAMESPACE_BEGIN class XMLUTIL_EXPORT XMLBigDecimal : public XMLNumber { public: /** * Constructs a newly allocated <code>XMLBigDecimal</code> object that * represents the value represented by the string. * * @param strValue the <code>String</code> to be converted to an * <code>XMLBigDecimal</code>. * @param manager Pointer to the memory manager to be used to * allocate objects. * @exception NumberFormatException if the <code>String</code> does not * contain a parsable XMLBigDecimal. */ XMLBigDecimal ( const XMLCh* const strValue , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); ~XMLBigDecimal(); static int compareValues(const XMLBigDecimal* const lValue , const XMLBigDecimal* const rValue , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); static XMLCh* getCanonicalRepresentation ( const XMLCh* const rawData , MemoryManager* const memMgr = XMLPlatformUtils::fgMemoryManager ); static void parseDecimal ( const XMLCh* const toParse , XMLCh* const retBuffer , int& sign , int& totalDigits , int& fractDigits , MemoryManager* const manager ); static void parseDecimal ( const XMLCh* const toParse , MemoryManager* const manager ); /** * * Deprecated: please use getRawData * */ virtual XMLCh* toString() const; virtual XMLCh* getRawData() const; virtual const XMLCh* getFormattedString() const; virtual int getSign() const; const XMLCh* getValue() const; unsigned int getScale() const; unsigned int getTotalDigit() const; inline XMLCh* getIntVal() const; /** * Compares this object to the specified object. * * @param other the object to compare with. * @return <code>-1</code> value is less than other's * <code>0</code> value equals to other's * <code>+1</code> value is greater than other's */ int toCompare(const XMLBigDecimal& other) const; /* * Sets the value to be converted * * @param strValue the value to convert */ void setDecimalValue(const XMLCh* const strValue); MemoryManager* getMemoryManager() const; /*** * Support for Serialization/De-serialization ***/ DECL_XSERIALIZABLE(XMLBigDecimal) XMLBigDecimal(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); private: void cleanUp(); // ----------------------------------------------------------------------- // Unimplemented contstructors and operators // ----------------------------------------------------------------------- XMLBigDecimal(const XMLBigDecimal& other); XMLBigDecimal& operator=(const XMLBigDecimal& other); // ----------------------------------------------------------------------- // Private data members // // fSign // sign // // fTotalDigits // the total number of didits // // fScale // the number of digits to the right of the decimal point // // fIntVal // The value of this BigDecimal, w/o // leading whitespace, leading zero // decimal point // trailing zero, trailing whitespace // // fRawData // to preserve the original string used to construct this object, // needed for pattern matching. // // ----------------------------------------------------------------------- int fSign; unsigned int fTotalDigits; unsigned int fScale; unsigned int fRawDataLen; XMLCh* fRawData; XMLCh* fIntVal; MemoryManager* fMemoryManager; }; inline int XMLBigDecimal::getSign() const { return fSign; } inline const XMLCh* XMLBigDecimal::getValue() const { return fIntVal; } inline unsigned int XMLBigDecimal::getScale() const { return fScale; } inline unsigned int XMLBigDecimal::getTotalDigit() const { return fTotalDigits; } inline XMLCh* XMLBigDecimal::getRawData() const { return fRawData; } inline const XMLCh* XMLBigDecimal::getFormattedString() const { return fRawData; } inline MemoryManager* XMLBigDecimal::getMemoryManager() const { return fMemoryManager; } inline XMLCh* XMLBigDecimal::getIntVal() const { return fIntVal; } // // The caller needs to de-allocate the memory allocated by this function // inline XMLCh* XMLBigDecimal::toString() const { // Return data using global operator new return XMLString::replicate(fRawData); } XERCES_CPP_NAMESPACE_END #endif
[ "viticm@126.com" ]
viticm@126.com
75ff1ffb11b01ab288e26a69f255c97818c0b698
d7b23650903f8fdf68bcea3fdd311424aafc3c35
/visitCase/jsoncons-0.156.0/include/jsoncons/detail/optional.hpp
492cd76449d0c07bb3a81ef62362045c3f14eda8
[ "BSL-1.0", "MIT" ]
permissive
theladyalisha/visit-case-s1b6
2ac37a9de5bcd4687569b5eb70d5f56ca333d3b5
85326ff0eb53966140355ae7b6285a1dcbbc18ad
refs/heads/master
2022-12-17T05:19:11.317728
2020-09-17T18:31:59
2020-09-17T18:31:59
295,729,290
0
0
MIT
2020-09-15T13:00:19
2020-09-15T13:00:18
null
UTF-8
C++
false
false
15,871
hpp
// Copyright 2019 Daniel Parker // Distributed under the Boost license, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See https://github.com/danielaparker/jsoncons for latest version #ifndef JSONCONS_DETAIL_OPTIONAL_HPP #define JSONCONS_DETAIL_OPTIONAL_HPP #include <new> // placement new #include <memory> #include <utility> // std::swap #include <type_traits> #include <jsoncons/config/compiler_support.hpp> namespace jsoncons { namespace detail { template <typename T> class optional; template <typename T1, typename T2> struct is_constructible_or_convertible_from_optional : std::integral_constant< bool, std::is_constructible<T1, optional<T2>&>::value || std::is_constructible<T1, optional<T2>&&>::value || std::is_constructible<T1, const optional<T2>&>::value || std::is_constructible<T1, const optional<T2>&&>::value || std::is_convertible<optional<T2>&, T1>::value || std::is_convertible<optional<T2>&&, T1>::value || std::is_convertible<const optional<T2>&, T1>::value || std::is_convertible<const optional<T2>&&, T1>::value> {}; template <typename T1, typename T2> struct is_constructible_convertible_or_assignable_from_optional : std::integral_constant< bool, is_constructible_or_convertible_from_optional<T1, T2>::value || std::is_assignable<T1&, optional<T2>&>::value || std::is_assignable<T1&, optional<T2>&&>::value || std::is_assignable<T1&, const optional<T2>&>::value || std::is_assignable<T1&, const optional<T2>&&>::value> {}; template <typename T> class optional { public: using value_type = T; private: bool has_value_; union { char dummy_; T value_; }; public: constexpr optional() noexcept : has_value_(false), dummy_{} { } // copy constructors optional(const optional<T>& other) : has_value_(false), dummy_{} { if (other) { construct(*other); } } // converting template <class U, typename std::enable_if<!std::is_same<T,U>::value && std::is_constructible<T, const U&>::value && std::is_convertible<const U&,T>::value && !is_constructible_or_convertible_from_optional<T,U>::value && std::is_copy_constructible<typename std::decay<U>::type>::value,int>::type = 0> optional(const optional<U>& other) : has_value_(false), dummy_{} { if (other) { construct(*other); } } template <class U, typename std::enable_if<!std::is_same<T,U>::value && std::is_constructible<T, const U&>::value && !std::is_convertible<const U&,T>::value && !is_constructible_or_convertible_from_optional<T,U>::value && std::is_copy_constructible<typename std::decay<U>::type>::value,int>::type = 0> explicit optional(const optional<U>& other) : has_value_(false), dummy_{} { if (other) { construct(*other); } } // move constructors template <class T2 = T> optional(optional<T>&& other, typename std::enable_if<std::is_move_constructible<typename std::decay<T2>::type>::value>::type* = 0) : has_value_(false), dummy_{} { if (other) { construct(std::move(other.value_)); } } // converting template <class U> optional(optional<U>&& value, typename std::enable_if<!std::is_same<T,U>::value && std::is_constructible<T, U&&>::value && !is_constructible_or_convertible_from_optional<T,U>::value && std::is_convertible<U&&,T>::value,int>::type = 0) // (8) : has_value_(true), value_(std::forward<U>(value)) { } template <class U> explicit optional(optional<U>&& value, typename std::enable_if<!std::is_same<T,U>::value && std::is_constructible<T, U&&>::value && !is_constructible_or_convertible_from_optional<T,U>::value && !std::is_convertible<U&&,T>::value,int>::type = 0) // (8) : has_value_(true), value_(std::forward<U>(value)) { } // value constructors template <class T2> optional(T2&& value, typename std::enable_if<!std::is_same<optional<T>,typename std::decay<T2>::type>::value && std::is_constructible<T, T2>::value && std::is_convertible<T2,T>::value,int>::type = 0) // (8) : has_value_(true), value_(std::forward<T2>(value)) { } template <class T2> explicit optional(T2&& value, typename std::enable_if<!std::is_same<optional<T>,typename std::decay<T2>::type>::value && std::is_constructible<T, T2>::value && !std::is_convertible<T2,T>::value,int>::type = 0) // (8) : has_value_(true), value_(std::forward<T2>(value)) { } ~optional() noexcept { destroy(); } optional& operator=(const optional& other) { if (other) { assign(*other); } else { reset(); } return *this; } optional& operator=(optional&& other ) { if (other) { assign(std::move(*other)); } else { reset(); } return *this; } template <typename U> typename std::enable_if<!std::is_same<optional<T>, U>::value && std::is_constructible<T, const U&>::value && !is_constructible_convertible_or_assignable_from_optional<T,U>::value && std::is_assignable<T&, const U&>::value, optional&>::type operator=(const optional<U>& other) { if (other) { assign(*other); } else { destroy(); } return *this; } template <typename U> typename std::enable_if<!std::is_same<optional<T>, U>::value && std::is_constructible<T, U>::value && !is_constructible_convertible_or_assignable_from_optional<T,U>::value && std::is_assignable<T&, U>::value, optional&>::type operator=(optional<U>&& other) { if (other) { assign(std::move(*other)); } else { destroy(); } return *this; } // value assignment template <typename T2> typename std::enable_if<!std::is_same<optional<T>, typename std::decay<T2>::type>::value && std::is_constructible<T, T2>::value && std::is_assignable<T&, T2>::value && !(std::is_scalar<T>::value && std::is_same<T, typename std::decay<T2>::type>::value), optional&>::type operator=(T2&& v) { assign(std::forward<T2>(v)); return *this; } constexpr explicit operator bool() const noexcept { return has_value_; } constexpr bool has_value() const noexcept { return has_value_; } #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4702) #endif // _MSC_VER T& value() & { return static_cast<bool>(*this) ? get() : JSONCONS_THROW(std::runtime_error("Bad optional access")), get(); } constexpr const T& value() const & { return static_cast<bool>(*this) ? get() : JSONCONS_THROW(std::runtime_error("Bad optional access")), get(); } template <typename U> constexpr T value_or(U&& default_value) const & { static_assert(std::is_copy_constructible<T>::value, "get_value_or: T must be copy constructible"); static_assert(std::is_convertible<U&&, T>::value, "get_value_or: U must be convertible to T"); return static_cast<bool>(*this) ? **this : static_cast<T>(std::forward<U>(default_value)); } template <typename U> T value_or(U&& default_value) && { static_assert(std::is_move_constructible<T>::value, "get_value_or: T must be move constructible"); static_assert(std::is_convertible<U&&, T>::value, "get_value_or: U must be convertible to T"); return static_cast<bool>(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(default_value)); } #ifdef _MSC_VER #pragma warning(pop) #endif // _MSC_VER const T* operator->() const { return std::addressof(this->value_); } T* operator->() { return std::addressof(this->value_); } constexpr const T& operator*() const& { return value(); } T& operator*() & { return value(); } void reset() noexcept { destroy(); } void swap(optional& other) noexcept(std::is_nothrow_move_constructible<T>::value /*&& std::is_nothrow_swappable<T>::value*/) { const bool contains_a_value = has_value(); if (contains_a_value == other.has_value()) { if (contains_a_value) { using std::swap; swap(**this, *other); } } else { optional& source = contains_a_value ? *this : other; optional& target = contains_a_value ? other : *this; target = optional<T>(*source); source.reset(); } } private: constexpr const T& get() const { return this->value_; } T& get() { return this->value_; } template <typename... Args> void construct(Args&&... args) { ::new (static_cast<void*>(&this->value_)) T(std::forward<Args>(args)...); has_value_ = true; } void destroy() noexcept { if (has_value_) { value_.~T(); has_value_ = false; } } template <typename U> void assign(U&& u) { if (has_value_) { value_ = std::forward<U>(u); } else { construct(std::forward<U>(u)); } } }; template <typename T> typename std::enable_if<std::is_nothrow_move_constructible<T>::value,void>::type swap(optional<T>& lhs, optional<T>& rhs) noexcept { lhs.swap(rhs); } template <class T1, class T2> constexpr bool operator==(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return lhs.has_value() == rhs.has_value() && (!lhs.has_value() || *lhs == *rhs); } template <class T1, class T2> constexpr bool operator!=(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return lhs.has_value() != rhs.has_value() || (lhs.has_value() && *lhs != *rhs); } template <class T1, class T2> constexpr bool operator<(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return rhs.has_value() && (!lhs.has_value() || *lhs < *rhs); } template <class T1, class T2> constexpr bool operator>(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return lhs.has_value() && (!rhs.has_value() || *lhs > *rhs); } template <class T1, class T2> constexpr bool operator<=(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return !lhs.has_value() || (rhs.has_value() && *lhs <= *rhs); } template <class T1, class T2> constexpr bool operator>=(const optional<T1>& lhs, const optional<T2>& rhs) noexcept { return !rhs.has_value() || (lhs.has_value() && *lhs >= *rhs); } template <class T1, class T2> constexpr bool operator==(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs == rhs : false; } template <class T1, class T2> constexpr bool operator==(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs == *rhs : false; } template <class T1, class T2> constexpr bool operator!=(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs != rhs : true; } template <class T1, class T2> constexpr bool operator!=(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs != *rhs : true; } template <class T1, class T2> constexpr bool operator<(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs < rhs : true; } template <class T1, class T2> constexpr bool operator<(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs < *rhs : false; } template <class T1, class T2> constexpr bool operator<=(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs <= rhs : true; } template <class T1, class T2> constexpr bool operator<=(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs <= *rhs : false; } template <class T1, class T2> constexpr bool operator>(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs > rhs : false; } template <class T1, class T2> constexpr bool operator>(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs > *rhs : true; } template <class T1, class T2> constexpr bool operator>=(const optional<T1>& lhs, const T2& rhs) noexcept { return lhs ? *lhs >= rhs : false; } template <class T1, class T2> constexpr bool operator>=(const T1& lhs, const optional<T2>& rhs) noexcept { return rhs ? lhs >= *rhs : true; } } // namespace detail } // namespace jsoncons #endif
[ "Saloni.Madhan@philips.com" ]
Saloni.Madhan@philips.com
170d4a96355b42e8d30804f37b161cf2aeaaded0
e759a87557115c94b525dae8ef95422f89a1c5d1
/third_party/externals/angle2/src/tests/perf_tests/VulkanPipelineCachePerf.cpp
0443b20a0db8124e81f0c71a7f1fa365a2dba1e4
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
coffee777/skiall
9fee47aee6de9530076cba1a9155dba3684a9a7a
0a9f5483e3ab3fb40cc3c45fbac8fffe5f191f9c
refs/heads/master
2020-04-03T18:36:52.678534
2018-10-13T01:39:06
2018-10-13T01:39:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,675
cpp
// // Copyright 2018 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // VulkanPipelineCachePerf: // Performance benchmark for the Vulkan Pipeline cache. #include "ANGLEPerfTest.h" #include "libANGLE/renderer/vulkan/vk_cache_utils.h" #include "random_utils.h" using namespace rx; namespace { class VulkanPipelineCachePerfTest : public ANGLEPerfTest { public: VulkanPipelineCachePerfTest(); ~VulkanPipelineCachePerfTest(); void SetUp() override; void step() override; PipelineCache mCache; angle::RNG mRNG; std::vector<vk::PipelineDesc> mCacheHits; std::vector<vk::PipelineDesc> mCacheMisses; size_t mMissIndex = 0; private: void randomizeDesc(vk::PipelineDesc *desc); }; VulkanPipelineCachePerfTest::VulkanPipelineCachePerfTest() : ANGLEPerfTest("VulkanPipelineCachePerf", "") { } VulkanPipelineCachePerfTest::~VulkanPipelineCachePerfTest() { mCache.destroy(VK_NULL_HANDLE); } void VulkanPipelineCachePerfTest::SetUp() { // Insert a number of random pipeline states. for (int pipelineCount = 0; pipelineCount < 100; ++pipelineCount) { vk::Pipeline pipeline; vk::PipelineDesc desc; randomizeDesc(&desc); if (pipelineCount < 10) { mCacheHits.push_back(desc); } mCache.populate(desc, std::move(pipeline)); } for (int missCount = 0; missCount < 10000; ++missCount) { vk::PipelineDesc desc; randomizeDesc(&desc); mCacheMisses.push_back(desc); } } void VulkanPipelineCachePerfTest::randomizeDesc(vk::PipelineDesc *desc) { std::vector<uint8_t> bytes(sizeof(vk::PipelineDesc)); FillVectorWithRandomUBytes(&mRNG, &bytes); memcpy(desc, bytes.data(), sizeof(vk::PipelineDesc)); } void VulkanPipelineCachePerfTest::step() { vk::RenderPass rp; vk::PipelineLayout pl; vk::PipelineCache pc; vk::ShaderModule sm; vk::PipelineAndSerial *result = nullptr; gl::AttributesMask am; for (int iteration = 0; iteration < 100; ++iteration) { for (const auto &hit : mCacheHits) { (void)mCache.getPipeline(VK_NULL_HANDLE, pc, rp, pl, am, sm, sm, hit, &result); } } for (int missCount = 0; missCount < 20 && mMissIndex < mCacheMisses.size(); ++missCount, ++mMissIndex) { const auto &miss = mCacheMisses[mMissIndex]; (void)mCache.getPipeline(VK_NULL_HANDLE, pc, rp, pl, am, sm, sm, miss, &result); } } } // anonymous namespace TEST_F(VulkanPipelineCachePerfTest, Run) { run(); }
[ "qiuchengw@163.com" ]
qiuchengw@163.com
e5602290dd2231d502dc53b22f08b8e56092c3aa
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/skia/src/gpu/ganesh/effects/GrShadowGeoProc.cpp
47df9de563680faf8a7b53ab511121c119cffa06
[ "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
3,625
cpp
/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/gpu/ganesh/effects/GrShadowGeoProc.h" #include "include/core/SkSamplingOptions.h" #include "include/private/base/SkAssert.h" #include "include/private/gpu/ganesh/GrTypesPriv.h" #include "src/core/SkSLTypeShared.h" #include "src/gpu/ganesh/GrSamplerState.h" #include "src/gpu/ganesh/GrSurfaceProxy.h" #include "src/gpu/ganesh/GrSurfaceProxyView.h" #include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h" #include "src/gpu/ganesh/glsl/GrGLSLVarying.h" class GrGLSLProgramDataManager; class GrGLSLVertexBuilder; struct GrShaderCaps; class GrRRectShadowGeoProc::Impl : public ProgramImpl { public: void setData(const GrGLSLProgramDataManager&, const GrShaderCaps&, const GrGeometryProcessor&) override {} private: void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override { const GrRRectShadowGeoProc& rsgp = args.fGeomProc.cast<GrRRectShadowGeoProc>(); GrGLSLVertexBuilder* vertBuilder = args.fVertBuilder; GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler; GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; // emit attributes varyingHandler->emitAttributes(rsgp); fragBuilder->codeAppend("half3 shadowParams;"); varyingHandler->addPassThroughAttribute(rsgp.inShadowParams().asShaderVar(), "shadowParams"); // setup pass through color fragBuilder->codeAppendf("half4 %s;", args.fOutputColor); varyingHandler->addPassThroughAttribute(rsgp.inColor().asShaderVar(), args.fOutputColor); // Setup position WriteOutputPosition(vertBuilder, gpArgs, rsgp.inPosition().name()); // No need for local coordinates, this GP does not combine with fragment processors fragBuilder->codeAppend("half d = length(shadowParams.xy);"); fragBuilder->codeAppend("float2 uv = float2(shadowParams.z * (1.0 - d), 0.5);"); fragBuilder->codeAppend("half factor = "); fragBuilder->appendTextureLookup(args.fTexSamplers[0], "uv"); fragBuilder->codeAppend(".a;"); fragBuilder->codeAppendf("half4 %s = half4(factor);", args.fOutputCoverage); } }; /////////////////////////////////////////////////////////////////////////////// GrRRectShadowGeoProc::GrRRectShadowGeoProc(const GrSurfaceProxyView& lutView) : INHERITED(kGrRRectShadowGeoProc_ClassID) { fInPosition = {"inPosition", kFloat2_GrVertexAttribType, SkSLType::kFloat2}; fInColor = {"inColor", kUByte4_norm_GrVertexAttribType, SkSLType::kHalf4}; fInShadowParams = {"inShadowParams", kFloat3_GrVertexAttribType, SkSLType::kHalf3}; this->setVertexAttributesWithImplicitOffsets(&fInPosition, 3); SkASSERT(lutView.proxy()); fLUTTextureSampler.reset(GrSamplerState::Filter::kLinear, lutView.proxy()->backendFormat(), lutView.swizzle()); this->setTextureSamplerCnt(1); } std::unique_ptr<GrGeometryProcessor::ProgramImpl> GrRRectShadowGeoProc::makeProgramImpl( const GrShaderCaps&) const { return std::make_unique<Impl>(); } /////////////////////////////////////////////////////////////////////////////// GR_DEFINE_GEOMETRY_PROCESSOR_TEST(GrRRectShadowGeoProc) #if GR_TEST_UTILS GrGeometryProcessor* GrRRectShadowGeoProc::TestCreate(GrProcessorTestData* d) { auto [view, ct, at] = d->randomAlphaOnlyView(); return GrRRectShadowGeoProc::Make(d->allocator(), view); } #endif
[ "jengelh@inai.de" ]
jengelh@inai.de
e7d32c98b4d7d42421d76cedb89d4bcc216a0de0
14f2ccb0cfe4c86635f1d2219cfc7c2cb13bba07
/CustomFormattingDemo/CustomFormattingDemo/App.xaml.cpp
76dc4e4078cad9a779877e9f7f41ffd490e3ab76
[]
no_license
jellyr/DirectEditor
0764c4edf896a9806afed99009d534591eb2dac3
50b06c2988bd28b03ee0c0c6b118d26dc4dc5bc3
refs/heads/master
2020-03-18T14:35:26.469002
2018-05-28T08:36:45
2018-05-28T08:36:45
134,855,965
0
0
null
null
null
null
UTF-8
C++
false
false
2,996
cpp
// // App.xaml.cpp // Implementation of the App class. // #include "pch.h" #include "DirectXPage.xaml.h" using namespace CustomFormattingDemo; using namespace Platform; using namespace Windows::ApplicationModel; using namespace Windows::ApplicationModel::Activation; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::Storage; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Controls; using namespace Windows::UI::Xaml::Controls::Primitives; using namespace Windows::UI::Xaml::Data; using namespace Windows::UI::Xaml::Input; using namespace Windows::UI::Xaml::Interop; using namespace Windows::UI::Xaml::Media; using namespace Windows::UI::Xaml::Navigation; /// <summary> /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// </summary> App::App() { InitializeComponent(); Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending); Resuming += ref new EventHandler<Object^>(this, &App::OnResuming); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used when the application is launched to open a specific file, to display /// search results, and so forth. /// </summary> /// <param name="e">Details about the launch request and process.</param> void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) { #if _DEBUG if (IsDebuggerPresent()) { DebugSettings->EnableFrameRateCounter = true; } #endif m_directXPage = ref new DirectXPage(); if (e->PreviousExecutionState == ApplicationExecutionState::Terminated) { m_directXPage->LoadInternalState(ApplicationData::Current->LocalSettings->Values); } // Place the page in the current window and ensure that it is active. Window::Current->Content = m_directXPage; Window::Current->Activate(); } /// <summary> /// Invoked when application execution is being suspended. Application state is saved /// without knowing whether the application will be terminated or resumed with the contents /// of memory still intact. /// </summary> /// <param name="sender">The source of the suspend request.</param> /// <param name="e">Details about the suspend request.</param> void App::OnSuspending(Object^ sender, SuspendingEventArgs^ e) { (void) sender; // Unused parameter (void) e; // Unused parameter m_directXPage->SaveInternalState(ApplicationData::Current->LocalSettings->Values); } /// <summary> /// Invoked when application execution is being resumed. /// </summary> /// <param name="sender">The source of the resume request.</param> /// <param name="args">Details about the resume request.</param> void App::OnResuming(Object ^sender, Object ^args) { (void) sender; // Unused parameter (void) args; // Unused parameter m_directXPage->LoadInternalState(ApplicationData::Current->LocalSettings->Values); }
[ "jellyzone@gmail.com" ]
jellyzone@gmail.com
e23876227515f592bb347ff1cfcbba7025ffe264
f62f57fbe57db1e813647bf5f070f6d8b8e6998b
/AIS/lab5/lab5/city.cpp
63187a6c0852d828620a9efa0f24d7f1d773a559
[]
no_license
CyberMakaron/7-sem
fb457a54525ae3c196095ef37975763c1d20b654
87260ff15a834759be8f1b871e286a102f649724
refs/heads/master
2023-02-15T08:18:52.264664
2021-01-10T09:50:06
2021-01-10T09:50:06
302,126,041
0
0
null
null
null
null
UTF-8
C++
false
false
128
cpp
#include "city.h" bool operator==(const City& left, const City& right) { return left.x == right.x and left.y == right.y; }
[ "makrusim@yandex.ru" ]
makrusim@yandex.ru
e797ab2f5f6f64937d032c769213d94fdcddee8e
1c4da7a0b80000cafadcf1aca1e3729c6312c03d
/equivalence_relation.cpp
cc052cfb2a8f8d84635d2ba943c955357d442cf9
[]
no_license
friackazoid/cpp_test
5a2850470c1fd0e0ed1dd12166600090fe664709
74d81b6f981b962e287bd26b1f503e2645444bc6
refs/heads/master
2023-08-09T01:52:29.895332
2023-07-20T11:53:00
2023-07-20T11:53:00
249,986,963
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
cpp
#include <iostream> #include <vector> #include <concepts> template <typename T, typename U> bool bar ( T s, U g ) { return s == g; } template<typename F, typename T> void foo ( F f, T s , T g ) { std::cout << std::boolalpha << f(s,g) << std::endl; } template<typename F, typename T> requires std::equivalence_relation<F, T, T> void foo_constrained ( F f, T s , T g ) { std::cout << std::boolalpha << f(s,g) << std::endl; } int main() { { auto l = [](int s, int g) -> bool { return s==g; }; foo( l, 1 , 1 ); // true foo( l, 1 , 0 ); // false foo (bar<std::string, std::string>, "aaa", "bbb"); // false } { auto l = []() -> bool {return true;}; // foo(l, 1, 0); // compilation error; // foo_constrained (l, 1, 0); // compilation errror; constrained unsutisfied } { auto l = [](int s, int g ) -> bool {return true;}; foo(l, 1, 0); // true foo_constrained (l, 1, 0); // true } return 0; }
[ "noreply@github.com" ]
friackazoid.noreply@github.com
27603c744885947c30881f1ade34c36552ebc182
f391d75f9bf06d1062ea4859dc7d16b07c55df79
/Samples/NIUserTracker/MocapStream.h
800ebfbd79c85f4a409b580caf0776bb0e4842a7
[]
no_license
Jade-Fountain/OpenNI-Kinect-Experiments
48a0f9837d35ff20ac7d4cf646434b31748eb352
9f2bd03490db9d857470607cad1dc19e3f145bab
refs/heads/master
2021-06-21T18:17:58.295055
2015-11-21T04:10:01
2015-11-21T04:10:01
40,100,779
1
0
null
null
null
null
UTF-8
C++
false
false
5,971
h
/* author Jake Fountain This code is part of mocap-kinect experiments*/ #include <armadillo> #include <chrono> #include <dirent.h> #include <map> #include "arma_xn_tools.h" #include "utility/math/matrix/Transform3D.h" #include "utility/math/matrix/Rotation3D.h" #include "utility/math/geometry/UnitQuaternion.h" #ifndef AUTOCAL_MOCAP_STREAM #define AUTOCAL_MOCAP_STREAM namespace autocal { typedef long long int TimeStamp; class MocapStream { public: typedef unsigned int RigidBodyID; //TODO generalise to other sensors, not just rigid bodies struct RigidBody { utility::math::matrix::Transform3D pose; }; struct Frame { std::map<RigidBodyID, RigidBody> rigidBodies; std::string toString(); static Frame interpolate(const Frame& A, const Frame& B, float alpha){ Frame interp; for(const auto& rb : A.rigidBodies){ const RigidBodyID& idA = rb.first; const utility::math::matrix::Transform3D& poseA = rb.second.pose; if(B.rigidBodies.count(idA) != 0){ const utility::math::matrix::Transform3D& poseB = B.rigidBodies.at(idA).pose; interp.rigidBodies[idA] = RigidBody(); interp.rigidBodies[idA].pose = utility::math::matrix::Transform3D::interpolate(poseA, poseB, alpha); } } return interp; } }; struct SimulationParameters{ struct SinFunc{ float f = 0;//frequency float A = 0;//amplitude }; struct Noise{ float angle_stddev = 0; float disp_stddev = 0; }; struct { SinFunc disp; SinFunc angle; } slip; float latency_ms = 0; Noise noise; float numberOfSamples = 3; SimulationParameters operator+(const SimulationParameters& s){ SimulationParameters s_; s_.latency_ms = s.latency_ms + this->latency_ms; s_.noise.angle_stddev = s.noise.angle_stddev + this->noise.angle_stddev; s_.noise.disp_stddev = s.noise.disp_stddev + this->noise.disp_stddev; s_.slip.disp.f = s.slip.disp.f + this->slip.disp.f; s_.slip.disp.A = s.slip.disp.A + this->slip.disp.A; s_.slip.angle.f = s.slip.angle.f + this->slip.angle.f; s_.slip.angle.A = s.slip.angle.A + this->slip.angle.A; s_.numberOfSamples = s.numberOfSamples + this->numberOfSamples; return s_; } SimulationParameters operator-(const SimulationParameters& s){ SimulationParameters s_; s_.latency_ms = this->latency_ms - s.latency_ms ; s_.noise.angle_stddev = this->noise.angle_stddev - s.noise.angle_stddev ; s_.noise.disp_stddev = this->noise.disp_stddev - s.noise.disp_stddev ; s_.slip.disp.f = this->slip.disp.f - s.slip.disp.f ; s_.slip.disp.A = this->slip.disp.A - s.slip.disp.A ; s_.slip.angle.f = this->slip.angle.f - s.slip.angle.f ; s_.slip.angle.A = this->slip.angle.A - s.slip.angle.A ; s_.numberOfSamples = this->numberOfSamples - s.numberOfSamples; return s_; } SimulationParameters operator*(const float& f){ SimulationParameters s_; s_.latency_ms = this->latency_ms * f; s_.noise.angle_stddev = this->noise.angle_stddev * f; s_.noise.disp_stddev = this->noise.disp_stddev * f; s_.slip.disp.f = this->slip.disp.f * f; s_.slip.disp.A = this->slip.disp.A * f; s_.slip.angle.f = this->slip.angle.f * f; s_.slip.angle.A = this->slip.angle.A * f; s_.numberOfSamples = this->numberOfSamples * f; return s_; } }; std::map<std::pair<int,int>, utility::math::matrix::Transform3D> simWorldTransform; std::map<std::pair<int,int>, utility::math::matrix::Transform3D> simLocalTransform; private: std::map<TimeStamp, Frame> stream; std::string stream_name; TimeStamp getTimeStamp(const std::chrono::system_clock::time_point& t){ return std::chrono::duration_cast<std::chrono::microseconds>(t.time_since_epoch()).count(); } Frame createFrame(arma::mat m, int& number_of_rigid_bodies); TimeStamp streamStart; std::map<MocapStream::RigidBodyID, utility::math::matrix::Transform3D> slippage; public: //Constructors MocapStream() : stream_name(""), slippage(){} MocapStream(std::string name) : stream_name(name){} //Accessors and small utilities void markStart(TimeStamp t){ streamStart = t; } int size() const {return stream.size();} std::string name() const {return stream_name;} std::string toString(); std::map<TimeStamp, Frame>& frameList(){return stream;} std::map<TimeStamp,Frame>::iterator begin(){return stream.begin();} std::map<TimeStamp,Frame>::iterator end(){return stream.end();} //Frame retrieval Frame getFrame(const std::chrono::system_clock::time_point& start_time); Frame getInterpolatedFrame(const TimeStamp& start_time); Frame getFrame(const TimeStamp& start_time); TimeStamp getFrameTime(const TimeStamp& start_time); std::map<TimeStamp,Frame>::iterator getUpperBoundIter(const TimeStamp& start_time); std::map<TimeStamp,Frame>::iterator getLowerBoundIter(const TimeStamp& start_time); //Heavy functions bool loadMocapData(std::string folder_path, const TimeStamp& start_time, const std::chrono::system_clock::time_point& end_time); bool setRigidBodyInFrame(const std::chrono::system_clock::time_point& frame_time, const unsigned int& id, const utility::math::matrix::Transform3D& pose); bool setRigidBodyInFrame(const TimeStamp& frame_time, const unsigned int& id, const utility::math::matrix::Transform3D& pose); std::map<MocapStream::RigidBodyID, arma::vec> getInvariates(TimeStamp now); std::map<MocapStream::RigidBodyID, arma::vec> getStates(TimeStamp now); std::map<MocapStream::RigidBodyID, utility::math::matrix::Transform3D> getCompleteStates(TimeStamp now); std::map<MocapStream::RigidBodyID, arma::vec> getSimulatedStates(TimeStamp now, std::vector<RigidBodyID> ids); std::map<MocapStream::RigidBodyID, utility::math::matrix::Transform3D> getCompleteSimulatedStates(TimeStamp now, std::map<int,int> ids, const SimulationParameters& sim); }; } #endif
[ "jake.fountain@uon.edu.au" ]
jake.fountain@uon.edu.au
da7f94bcf320fa8ff7d6d61095fd95561be5a1d8
d5d1fb3fdfcf11aca9bafeb4c95a08579f465e21
/Interview Material/stackArray.cpp
333c34f7a5d1ce7805ec6730495e59f1b67fd22f
[]
no_license
pawanputtaswamy/HackerRank
b54aa2775658f1be3a483640588aefe4e708a9b6
ba6768a05340d9168402098a2c5258738269860e
refs/heads/master
2020-05-30T21:38:31.239040
2019-05-05T23:34:56
2019-05-05T23:34:56
59,545,560
0
0
null
2019-05-05T23:41:47
2016-05-24T06:14:04
Java
UTF-8
C++
false
false
940
cpp
using namespace std; #include < iostream> #include < stdlib.h > #include < stdio.h > class IntStack { public: IntStack(int num) { top = 0; maxelem = num; s = new int[maxelem]; } void push(int t) { if (top == maxelem) return; s[top++] = t; } int pop() { if (top == 0) return -1; return s[--top]; } void display() { if (top == 0) { cout << "(empty)\n"; return; } for (int t = 0; t < top; t++) cout << s[t] << " "; cout << "\n"; } int empty() { return top == 0; } private: int *s; int top; int maxelem; }; /* void main() { IntStack *s = new IntStack(100); int d; s->display(); s->push(1); s->display(); s->push(2); s->display(); s->push(3); s->display(); s->push(4); s->display(); s->pop(); s->display(); s->pop(); s->display(); s->push(10); s->display(); s->pop(); s->display(); s->pop(); s->display(); s->pop(); s->display(); s->pop(); s->display(); s->pop(); s->display(); }*/
[ "pawanp32@gmail.com" ]
pawanp32@gmail.com
26379d3477bd662a0e661afa0f3415935e2e4d2b
c83c053fd9cc1aa3124a00772f49f343ae6941ed
/Proyecto_GestionInmuebles_Archivos.cpp
b226cf9216d3efc14c9af8384083e97b2ec40ed4
[]
no_license
MaxiEsc/Codigos-C_Plus_Plus
202f986dbe74726bffa791c798c72be128c758f9
ba6fe33ce6e17d9aad77a52614dbbe8199d65328
refs/heads/main
2023-08-15T00:13:01.816001
2021-09-23T04:50:09
2021-09-23T04:50:09
409,451,348
1
0
null
null
null
null
ISO-8859-1
C++
false
false
22,832
cpp
// GestionInmuebles.cpp : Defines the entry point for the console application. // /*Proyecto Final(entregable) --A-- 1. Realizar un sistema de venta de inmuebles en lenguaje C que maneje arreglos de estructuras. 2. Se manejará una estructura con los datos de los inmuebles, por ejemplo ubicación, metros cuadrados de terreno, metros cuadrados de construcción, tipo de construcción(casa, condominio, departamento, etc.), precio, tipo de crédito, identificador del vendedor, estado(vendida o en venta). 3. Se manejará una estructura de datos de los vendedores, por ejemplo un identificador, nombre, domicilio, fecha de contrato, teléfonos de ubicación. 4. Las opciones que se tendrán son : Alta, baja, venta, consulta, y modificación de inmueble; alta, baja, modificación y consulta de vendedor. 5. Al dar de alta un inmueble, se deberá dar el identificador del vendedor encargado de la venta del mismo, el cual se debe verificar que existe en el sistema. 6. Guardar en un archivo los datos de inmueble y poderlos recuperar. 7. Guardar en un archivo(distinto) los vendedores dados de alta. 8. Si requiere de datos adicionales, que considere necesarios dentro del sistema puede agregarlos. 9. Se calificará : que cumpla con los puntos especificados, iniciativa para la programación y creatividad. 10. Se entrega : Código fuente, programa ejecutable, manual de usuario(como usar el sistema, mediante ejemplos de pantallas, explicado a los usuarios que no necesariamente tienen conocimiento de computación) y manual técnico(como se realizó el programa, algoritmos, explicación de las estructuras y funciones principales utilizadas). 11. Se entrega la documentación en un sobre, los códigos de manera digital, todo el equipo presente para su defensa.*/ #include "stdlib.h" #include "stdio.h" #include "iostream" #include "string.h" #include "conio.h" using namespace std; #define IM "inmueble.dat" #define VD "Vendedores.dat" #define TEMP1 "temporal1.dat" #define TEMP2 "temporal2.dat" #define T1 sizeOf(inmuebles); #define T2 sizeOf(vendedores); struct inmuebles { int codigo; char ubicacion[50]; float met_terre = 0; float met_constr = 0; int tipo_constr = 0; long int precio = 0; int tipo_cred = 0; long int iden_vend = 0; bool estado; bool activo; }; struct vendedores { long int Indetificador = 0; char Nombre[50]; char domicilio[50]; float fecha = 0; long int telefono; }; #define IM "inmueble.dat" #define VD "Vendedores.dat" #define TEMP1 "temporal1.dat" #define TEMP2 "temporal2.dat" #define T1 sizeOf(inmuebles) #define T2 sizeOf(vendedores) long busqueda(int busca, FILE *m, int l); void alta_Im(); void baja_im(int l); void venta(); void consulta(int l); void modificacion_im(int l); long busqueda_ven(int busca2, FILE *o, int l); void alta_Ven(); void baja_ven(int y); int car_long(); int car_codigo(); float car_met_cuadr(); float car_met_const(); int car_tipo_const(); float car_precio(); int car_tip_cred(); long int car_iden_vend(); int car_est_vent(); long int car_iden(); float car_fecha(); long int car_tel(); int main() { int opcion = 0; do { system("cls"); cout << "Ingrese 1 para dar de ALTA un inmueble" << endl; cout << "Ingrese 2 para dar de BAJA un inmueble" << endl; cout << "Ingrese 3 para la VENTA de un inmueble" << endl; cout << "Ingrese 4 para la CONSULTA de un inmueble" << endl; cout << "Ingrese 5 para la MODIFICACION de un inmueble" << endl; cout << "Ingrese 6 para el ALTA a un vendedor" << endl; cout << "Ingrese 7 para dar de BAJA a un vendedor" << endl; cout << "Ingrese 8 para la CONSULTA a un vendedor" << endl; cout << "Ingrese 9 para la MODIFICACION a un vendedor" << endl; cout << " Opcion: "; cin >> opcion; switch (opcion) { case 1:alta_Im(); break; case 2:baja_im(); break; case 3:venta(); break; case 4:consulta(); break; case 5: modificacion_im(); break; case 6:alta_Ven(); break; case 7:baja_ven(); break; case 8:consulta2(); break; case 9:Modificacion_ven(); break; default:exit(0); break; } } while (opcion > 0 || opcion < 10); system("pause"); return 0; } long busqueda(int busca, FILE *m, int l) { long pos = -1; long actual = ftell(m); fseek(m, 0, SEEK_SET); inmuebles r[50]; fread(&r, T1, 1, m); while (!feof(m)) { for (int i = 0; i < l; i++) { if (busca == r[i].codigo) { pos = ftell(m) - T1; break; } }fread(&r, T1, 1, m); } fseek(m, actual, SEEK_SET); return pos; } void alta_Im() { int l = 0, aux = 0; FILE *m, *w; int respIM = fopen_s(&m, IM, "a+b"); if (respIM) { cout << "Error al abrir el archivo" << endl; return; } else { inmuebles r[50]; cout << "Registre cuantos son los inmuebles para agregar" << endl; l = car_long(); int busca; for (int i = 0; i < l; i++) { cout << "Carga de datos del inmueble " << i + 1 << endl; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca; long p = busqueda(r[i].codigo, m, l); if (p == -1) { cout << endl; fflush(stdin); cout << "Por favor ingrese el nombre de la ubicacion " << endl; cin >> r[i].ubicacion; r[i].met_terre = car_met_cuadr(); r[i].met_constr = car_met_const(); r[i].tipo_constr = car_tipo_const(); r[i].precio = car_precio(); r[i].tipo_cred = car_tip_cred(); r[i].iden_vend = car_iden_vend(); aux = car_est_vent(); switch (aux) { case 1: r[i].estado = false; break; case 2: r[i].estado = true; break; fwrite(&r, T1, 1, m); fwrite(&r, T1, 1, w); } } else { cout << "Ese codigo ya existe y esta en uso" << endl; } } fclose(m); cout << "finalizado... inmueble agregado... Se recomienda agregar al vendedor" << endl; cout << endl; system("pause"); } } void baja_im() { FILE *m; int respIM = fopen_s(&m, IM, "r+b"); if (respIM) { cout << "Error al abrir el archivo" << endl; return; } else { inmuebles r[50]; int busca; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca; for (int i = 0; i < 50; i++) { long p = busqueda(r[i].codigo, m); if (p == -1) { cout << "el codigo no existe" << endl; } else { fseek(m, p, SEEK_SET); fread(&r, T1, 1, m); cout << "Ubicacion: " << r[i].ubicacion; cout << "Metros cuadrados del terreno: " << r[i].met_terre; cout << "Metros cuadrados construidos: " << r[i].met_constr; cout << "tipo de costruccion: "; switch (r[i].tipo_constr) { case 1: cout << " Casa" << endl; break; case 2: cout << " Codominio" << endl; break; case 3: cout << " Departamento" << endl; break; default: cout << " Otra categoria" << endl; break; } cout << "Precio: " << r[i].precio << endl; cout << "Tipo de Credito: "; switch (r[i].tipo_cred) { case 1: cout << " Credito Hipotecario" << endl; break; case 2: cout << " Credito de consumo" << endl; break; case 3: cout << " Credito Comercial" << endl; break; default: cout << " Otra categoria de credito" << endl; break; } cout << "Identificador del vendedor" << r[i].iden_vend << endl; int respuesta; cout << endl; cout << "¿Seguro que desea borrar este inmueble?(0 = SI / 1 = NO)" << endl; do { cin >> respuesta; } while (respuesta != 0 || respuesta != 1); if (respuesta == 0) { r[i].activo = false; fseek(m, p, SEEK_SET); fwrite(&r, T1, 1, m); cout << "inmueble eliminado " << endl; } } } fclose(m); cout << endl; system("pause"); return; } } void venta() { FILE *m; int respIM = fopen_s(&m, IM, "r+b"); if (respIM) { cout << "Error al abrir el archivo" << endl; return; } else { inmuebles r[50]; int busca; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca; for (int i = 0; i < 50; i++) { long p = busqueda(r[i].codigo, m); if (p == -1) { cout << "el codigo no existe" << endl; } else { if (r[i].estado == true) { cout >> "El inmueble esta listo para la venta " << endl; int op1; cout << "¿Desea venderlo? (0=SI / 1=NO) " << endl; do { switch (op1) { case 0: r[i].estado = false; break; case 1: r[i].estado = true; break; default:exit(0); break; } } while (op1 > -1 || op1 < 2); } else { cout >> "El inmueble esta vendido" << endl; } fwrite(&r, T1, 1, m); } } fclose(m); cout << endl; } } void consulta() { FILE *m; int des = fopen_s(&m, IM, "rb"); int k; if (des = NULL) { cout << "No se pudo leer el archivo" << endl; } else { inmuebles r[50]; int busca; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca; for (int i = 0; i < 50; i++) { long p = busqueda(r[i].codigo, m, busca); if (p == -1) { cout << "el codigo no existe" << endl; } else { fseek(m, p, SEEK_SET); fread(&r, T1, 1, m); cout << "Ubicacion: " << r[i].ubicacion; cout << "Metros cuadrados del terreno: " << r[i].met_terre; cout << "Metros cuadrados construidos: " << r[i].met_constr; cout << "tipo de costruccion: "; switch (r[i].tipo_constr) { case 1: cout << " Casa" << endl; break; case 2: cout << " Codominio" << endl; break; case 3: cout << " Departamento" << endl; break; default: cout << " Otra categoria" << endl; break; } cout << "Precio: " << r[i].precio << endl; cout << "Tipo de Credito: "; switch (r[i].tipo_cred) { case 1: cout << " Credito Hipotecario" << endl; break; case 2: cout << " Credito de consumo" << endl; break; case 3: cout << " Credito Comercial" << endl; break; default: cout << " Otra categoria de credito" << endl; break; } cout << "Identificador del vendedor" << r[i].iden_vend << endl; } } } } void modificacion_im() { FILE *m; int otro = fopen_s(&m, IM, "r+b"); if (otro) { cout << "Error al abrir el archivo" << endl; } else { inmuebles r[50]; int busca; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca; for (int i = 0; i < 50; i++) { long p = busqueda(r[i].codigo, m, busca); if (p == -1) { cout << "el codigo no existe" << endl; } else { fseek(m, p, SEEK_SET); fread(&r, T1, 1, m); int Nop, Aux; do { system("cls"); cout << "datos del inmueble:" << endl; cout << "Ubicacion: " << r[i].ubicacion << endl; cout << "Metros cuadrados del terreno: " << r[i].met_terre << endl; cout << "Metros cuadrados construidos: " << r[i].met_constr << endl; cout << "Tipo de construccion: "; switch (r[i].tipo_constr) { case 1: cout << " Casa" << endl; break; case 2: cout << " Codominio" << endl; break; case 3: cout << " Departamento" << endl; break; default: cout << " Otra categoria" << endl; break; } cout << "Precio: " << r[i].precio << endl; cout << "Tipo de Credito: "; switch (r[i].tipo_cred) { case 1: cout << " Credito Hipotecario" << endl; break; case 2: cout << " Credito de consumo" << endl; break; case 3: cout << " Credito Comercial" << endl; break; default: cout << " Otra categoria de credito" << endl; break; } cout << "Identificador del vendedor" << r[i].iden_vend << endl; cout << "____________________________________________________________________________" << endl; cout << "Ingrese la opcion que desea moficiar" << endl; cout << "Ingrese 1 para cambiar la ubicacion" << endl; cout << "Ingrese 2 para cambiar el tamaño del terreno" << endl; cout << "Ingrese 3 para cambiar el tamaño del terreno construido" << endl; cout << "Ingrese 4 para cambiar el tipo de construccion" << endl; cout << "Ingrese 5 para cambiar el precio" << endl; cout << "Ingrese 6 para cambiar el tipo de credito" << endl; cout << "Ingrese 7 para cambiar la identificacion del vendedor" << endl; cout << "Ingrese 8 para cambiar el estado de venta" << endl; cin >> Nop; switch (Nop) { case 1: cout << "Nueva Modificacion:" << endl; cout << "Por favor ingrese el nombre de la ubicacion " << endl; cin >> r[i].ubicacion; break; case 2: cout << "Nueva Modificacion:" << endl; r[i].met_terre = car_met_cuadr(); break; case 3: cout << "Nueva Modificacion:" << endl; r[i].met_constr = car_met_const(); break; case 4: cout << "Nueva Modificacion:" << endl; r[i].tipo_constr = car_tipo_const(); break; case 5: cout << "Nueva Modificacion:" << endl; r[i].precio = car_precio(); break; case 6: cout << "Nueva Modificacion:" << endl; r[i].tipo_cred = car_tip_cred(); break; case 7: cout << "Nueva Modificacion:" << endl; r[i].iden_vend = car_iden_vend(); break; case 8: cout << "Nueva Modificacion:" << endl; Aux = car_est_vent(); switch (Aux) { case 1: r[i].estado = false; break; case 2: r[i].estado = true; break; break; } default: exit(0); } } while (Nop < 0 || Nop > 8); fseek(m, p, SEEK_SET); fwrite(&r, T1, 1, m); } } fclose(m); cout << endl; system("pause"); } } long busqueda_ven(int busca2, FILE *o, int y) { long pos2 = -1; long actual2 = ftell(o); fseek(o, 0, SEEK_SET); vendedores rv[50]; fread(&rv, T2, 1, o); while (!feof(o)) { for (int i = 0; i < l; i++) { if (busca2 == rv[i].Indetificador) { pos2 = ftell(o) - T2; break; } }fread(&rv, T2, 1, o); } fseek(o, actual2, SEEK_SET); return pos2; } void alta_Ven() { int l = 0, aux = 0; FILE *o, *q; int respIM = fopen_s(&o, VD, "a+b"); if (respIM) { cout << "Error al abrir el archivo" << endl; return; } else { vendedores rv[50]; int y; cout << "Registre cuantos son los vendedores para agregar" << endl; y = car_long(); int busca2; for (int i = 0; i < y; i++) { cout << "Carga de datos del vendedor " << i + 1 << endl; cout << "Ingrese la identificacion del vendedor " << endl; cin >> busca2; long p = busqueda(rv[i].Indetificador, o, busca2); if (p == -1) { cout << endl; fflush(stdin); cout << "Por favor ingrese el nombre de la ubicacion del vendedor" << endl; cin >> rv[i].Nombre; rv[i].fecha = car_fecha(); cout << "Ingrese el Domicilio del vendedor" << endl; cin >> rv[i].domicilio; rv[i].telefono = car_tel(); fwrite(&rv, T2, 1, o); fwrite(&rv, T2, 1, q); } else { cout << "Ese codigo ya existe y esta en uso" << endl; } } fclose(o); fclose(q); cout << "finalizado... vendedor agregado..." << endl; cout << endl; system("pause"); } } void baja_ven() { FILE *o; int respIM = fopen_s(&o, VD, "r+b"); if (respIM) { cout << "Error al abrir el archivo" << endl; return; } else { vendedores rv[50]; int busca; cout << "Ingrese el numero del identificador" << endl; cin >> busca; for (int i = 0; i < 50; i++) { long p2 = busqueda(rv[i].Indetificador, o, busca); if (p2 == -1) { cout << "el codigo no existe" << endl; } else { fseek(o, p2, SEEK_SET); fread(&rv, T1, 1, o); cout << "Nombre: " << rv[i].Nombre; cout << "Domicilio: " << rv[i].domicilio; cout << "Fecha: " << rv[i].fecha; cout << "Telefono: " << rv[i].telefono; int respuesta2; cout << endl; cout << "¿Seguro que desea borrar este Vendedor?(0 = SI / 1 = NO)" << endl; do { cin >> respuesta2; } while (respuesta2 != 0 || respuesta2 != 1); if (respuesta2 == 0) { fseek(o, p2, SEEK_SET); fwrite(&rv, T1, 1, o); cout << "Vendedor eliminado " << endl; } } } fclose(o); cout << endl; system("pause"); return; } } void consulta2() { FILE *o; int des = fopen_s(&o, VD, "rb"); if (des = NULL) { cout << "No se pudo leer el archivo" << endl; } else { vendedores rv[50]; int busca2; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca2; for (int i = 0; i < 50; i++) { long p2 = busqueda(rv[i].Indetificador, o, busca2); if (p2 == -1) { cout << "el codigo no existe" << endl; } else { fseek(o, p2, SEEK_SET); fread(&rv, T2, 1, o); cout << "Nombre: " << rv[i].Nombre; cout << "Domicilio: " << rv[i].domicilio; cout << "Fecha: " << rv[i].fecha; cout << "Telefono: " << rv[i].telefono; } } } } void Modificacion_ven() { FILE *o; int otro = fopen_s(&o, VD, "r+b"); if (otro) { cout << "Error al abrir el archivo" << endl; } else { vendedores rv[50]; int busca2; cout << "Ingrese el codigo de busqueda " << endl; cin >> busca2; for (int i = 0; i < 50; i++) { long p = busqueda(rv[i].Indetificador, o, busca2); if (p == -1) { cout << "el codigo no existe" << endl; } else { fseek(o, p, SEEK_SET); fread(&rv, T2, 1, o); int NOP, Aux; do { system("cls"); cout << "Datos del vendedor" << endl; cout << "Domicilio del vendedor: " << rv[i].domicilio << endl; cout << "Nombre: " << rv[i].Nombre << endl; cout << "Fecha: " << rv[i].fecha << endl; cout << "Telefono: " << rv[i].telefono << endl; cout << "identificador: " << rv[i].Indetificador << endl; cout << "____________________________________________________________________________" << endl; cout << "Ingrese la opcion que desea moficiar" << endl; cout << "Ingrese 1 para cambiar Domicilio del vendedor" << endl; cout << "Ingrese 2 para cambiar Nombre del vendedor" << endl; cout << "Ingrese 3 para cambiar la Fecha" << endl; cout << "Ingrese 4 para cambiar el Telefono" << endl; cout << "Ingrese 5 para cambiar identificador" << endl; cin >> NOP; switch (NOP) { case 1: cout << "Nueva Modificacion:" << endl; cout << "Por favor ingrese el nuevo domicilio " << endl; cin >> rv[i].domicilio; break; case 2: cout << "Nueva Modificacion:" << endl; cout << "Por favor ingrese el nuevo nombre " << endl; cin >> rv[i].Nombre; break; case 3: cout << "Nueva Modificacion:" << endl; rv[i].fecha = car_fecha(); break; case 4: cout << "Nueva Modificacion:" << endl; rv[i].telefono = car_tel(); break; case 5: cout << "Nueva Modificacion:" << endl; rv[i].Indetificador = car_iden_vend(); break; default: exit(0); break; } } while (NOP > 0 || NOP < 6); fseek(o, p, SEEK_SET); fwrite(&rv, T2, 1, o); } } fclose(o); cout << endl; system("pause"); } } void depuracion() { } int car_long() { int p; cout << "Ingrese la cantidad deseada: "; cin >> p; cout << endl; return p; } int car_codigo() { int codigo; cout << "Ingrese el codigo del inmueble: "; cin >> codigo; cout << endl; system("cls"); return codigo; } float car_met_cuadr() { float u; cout << "Ingresar los metros cuadrados del terreno:"; cin >> u; cout << endl; system("cls"); return u; } float car_met_const() { float r; cout << "Ingresar los metros cuadrados construidos:"; cin >> r; cout << endl; system("cls"); return r; } int car_tipo_const() { int p; cout << "Ingresar tipo de construccion" << endl; cout << "Ingrese 1 para construir casa " << endl; cout << "Ingrese 2 para construir codominio " << endl; cout << "Ingrese 3 para construir departamento " << endl; cout << "Ingrese 4 para construir otro tipo de construccion" << endl; cout << "Opcion: "; do { cin >> p; if (p > 0 || p < 5) { cout << "Ingrese correctamente siguiendo el menu de opciones" << endl; } } while (p > 0 || p < 5); cout << endl; system("cls"); return p; } float car_precio() { float precio; cout << "Ingresar el precio: "; cin >> precio; cout << endl; system("cls"); return precio; } int car_tip_cred() { int credito; cout << "Ingresar tipo de construccion" << endl; cout << "Ingrese 1 para credito Hipotecario " << endl; cout << "Ingrese 2 para consumo" << endl; cout << "Ingrese 3 para comerciales " << endl; cout << "Ingrese 4 para otro tipo de credito" << endl; cout << "Ingrese tipo de credito"; do { cin >> credito; if (credito > 0 || credito < 5) { cout << "Ingrese correctamente siguiendo el menu de opciones" << endl; } } while (credito > 0 || credito < 5); cin >> credito; cout << endl; system("cls"); return credito; } long int car_iden_vend() { long int vendedor; cout << "Ingresar el numero de identificacion del vendedor: "; cin >> vendedor; cout << endl; system("cls"); return vendedor; } int car_est_vent() { int cosa; cout << "Ingresar 0: Para marcar inmueble como vendido Ingresar 1: Para marcar inmueble en venta " << endl; cout << "Inmueble en : "; cin >> cosa; cout << endl; system("cls"); return cosa; } long int car_iden() { long int vendedor; cout << "Ingresar el numero de identificacion : "; cin >> vendedor; cout << endl; system("cls"); return vendedor; } float car_fecha() { float u; cout << "Ingresar la fecha:"; cin >> u; cout << endl; system("cls"); return u; } long int car_tel() { long int telefono; cout << "Ingresar el numero de telefono del vendedor: "; do { cin >> telefono; if (telefono > 0 || telefono < 1000000000) { cout << "Ingrese correctamente un numero de telefono" << endl; } } while (telefono > 0 || telefono < 1000000000); cout << endl; system("cls"); return telefono; }
[ "noreply@github.com" ]
MaxiEsc.noreply@github.com
e9722e0154d836d5b90a87d6ea4906f3013ac5e3
c66c8d83dda3ee21d1f2f79acb7b6892e573b73e
/Program 2/euclid.cpp
27b7293cff3443c4c9529cd4431220f8e2cd8fb8
[]
no_license
delizoderek/CSS342
b550584d9ac6459d1837ffaa4908d1cb0f146a4f
bba3680c89d1ba19ee3292e5e01f934d63745837
refs/heads/master
2021-01-25T11:02:18.965399
2017-07-23T00:48:50
2017-07-23T00:48:50
93,903,679
0
0
null
null
null
null
UTF-8
C++
false
false
2,289
cpp
/* Created by Derek DeLizo 04/19/2017 */ #include <iostream> #include <sys/time.h> using namespace std; int gettimeofday( struct timeval *tv, struct timezone *tz ); /* Pre-Condition: a and b are integers Post Condition: returns the greatest common denominator between a and b Base Case: when a equals 0 return b Recursive Case: Using euclids GCD algorithm call gcd with a = b % a and b = a */ int gcd(int a,int b) { if (a == 0) { return b; } else{ gcd(b % a,a); } } /* Pre-Condition: a and b are integers Post Condition: returns the number of modulous operations to find the GCD */ int findCost(int a, int b){ int cost = 0; while(a != 0){ int r = a; a = b % a; cost++; b = r; } return cost; } /* Pre-Condition: i is an integer Post Condition: returns the a value the uses the most modulous operations */ int findA(int i){ int aVal = 0; int costBig = 0; for(int w = 1; w <= i; w++){ //loops from 1 to i and finds the gcd(w,i) that uses the most modulous operations if(findCost(w,i) > costBig){ costBig = findCost(w,i); aVal = w; } } return aVal; } /* Pre-Condition: No input Post Condition: returns 0 when program finishes; prints out the gcd, number of modulous operations and the time it takes */ int main() { int n = 0; //The number of inputs int bigCost = 0; //The largest number of modulous operations int a = 0; //The current a value for the most modulous operations int b = 0; //The current b value for the most modulous operations int useconds; struct timeval begin; struct timeval end; cin >> n; for(int i = 8; i <= n; i+= 200){ //loops from 8 to n and increments by 200 gettimeofday(&begin,NULL); //Gets initial time stamp int tempA = findA(i); if(findCost(tempA,i) > bigCost){ bigCost = findCost(tempA,i); a = tempA; b = i; } gettimeofday(&end,NULL); //Gets end time stamp useconds = (end.tv_usec - begin.tv_usec); cout << "At i = " << i << " gcd(" << a << "," << b << ") = "; cout << gcd(a,b); cout << " took " << bigCost << " modulous operations in " << useconds << " us" << endl; cerr << n << "," << bigCost << "," << useconds << endl; } return 0; }
[ "delizoderek@gmail.com" ]
delizoderek@gmail.com
5d33945aeed1e615da1e6ee4f385979bf04c9f9e
cd004ef6ad32218c7153bd8c06cc83818975154a
/FDK/QuickFix/FixFields.h
e0e3f63e88f2d01f5bd25fdc2a4a0e06d891dc98
[ "MIT" ]
permissive
marmysh/FDK
11b7890c26f7aa024af8ea82fcb7c141326d2e6f
cc6696a8eded9355e4789b0193872332f46cb792
refs/heads/master
2020-12-14T18:56:28.229987
2016-07-13T13:50:42
2016-07-13T13:50:42
63,467,798
1
0
null
2016-07-16T05:51:14
2016-07-16T05:51:14
null
UTF-8
C++
false
false
62,060
h
#ifndef FIX_FIELDS_H #define FIX_FIELDS_H #include "Field.h" #undef Yield namespace FIX { DEFINE_SEQNUM(BeginSeqNo); DEFINE_STRING(BeginString); DEFINE_LENGTH(BodyLength); DEFINE_CHECKSUM(CheckSum); DEFINE_SEQNUM(EndSeqNo); DEFINE_SEQNUM(MsgSeqNum); DEFINE_STRING(MsgType); DEFINE_SEQNUM(NewSeqNo); DEFINE_BOOLEAN(PossDupFlag); DEFINE_SEQNUM(RefSeqNum); DEFINE_STRING(SenderCompID); DEFINE_STRING(SenderSubID); DEFINE_UTCTIMESTAMP(SendingTime); DEFINE_STRING(TargetCompID); DEFINE_STRING(TargetSubID); DEFINE_STRING(Text); DEFINE_DATA(Signature); DEFINE_LENGTH(SecureDataLen); DEFINE_DATA(SecureData); DEFINE_LENGTH(SignatureLength); DEFINE_LENGTH(RawDataLength); DEFINE_DATA(RawData); DEFINE_BOOLEAN(PossResend); DEFINE_INT(EncryptMethod); DEFINE_INT(HeartBtInt); DEFINE_STRING(TestReqID); DEFINE_STRING(OnBehalfOfCompID); DEFINE_STRING(OnBehalfOfSubID); DEFINE_UTCTIMESTAMP(OrigSendingTime); DEFINE_BOOLEAN(GapFillFlag); DEFINE_STRING(DeliverToCompID); DEFINE_STRING(DeliverToSubID); DEFINE_BOOLEAN(ResetSeqNumFlag); DEFINE_STRING(SenderLocationID); DEFINE_STRING(TargetLocationID); DEFINE_STRING(OnBehalfOfLocationID); DEFINE_STRING(DeliverToLocationID); DEFINE_LENGTH(XmlDataLen); DEFINE_DATA(XmlData); DEFINE_STRING(MessageEncoding); DEFINE_LENGTH(EncodedTextLen); DEFINE_DATA(EncodedText); DEFINE_SEQNUM(LastMsgSeqNumProcessed); DEFINE_INT(RefTagID); DEFINE_STRING(RefMsgType); DEFINE_INT(SessionRejectReason); DEFINE_LENGTH(MaxMessageSize); DEFINE_NUMINGROUP(NoMsgTypes); DEFINE_CHAR(MsgDirection); DEFINE_BOOLEAN(TestMessageIndicator); DEFINE_STRING(Username); DEFINE_STRING(Password); DEFINE_NUMINGROUP(NoHops); DEFINE_STRING(HopCompID); DEFINE_UTCTIMESTAMP(HopSendingTime); DEFINE_SEQNUM(HopRefID); DEFINE_SEQNUM(NextExpectedMsgSeqNum); DEFINE_STRING(ApplVerID); DEFINE_STRING(CstmApplVerID); DEFINE_STRING(RefApplVerID); DEFINE_STRING(RefCstmApplVerID); DEFINE_STRING(DefaultApplVerID); DEFINE_STRING(Account); DEFINE_STRING(AdvId); DEFINE_STRING(AdvRefID); DEFINE_CHAR(AdvSide); DEFINE_STRING(AdvTransType); DEFINE_PRICE(AvgPx); DEFINE_STRING(ClOrdID); DEFINE_AMT(Commission); DEFINE_CHAR(CommType); DEFINE_QTY(CumQty); DEFINE_CURRENCY(Currency); DEFINE_STRING(ExecID); DEFINE_MULTIPLECHARVALUE(ExecInst); DEFINE_STRING(ExecRefID); DEFINE_CHAR(ExecTransType); DEFINE_CHAR(HandlInst); DEFINE_STRING(IDSource); DEFINE_STRING(IOIid); DEFINE_CHAR(IOIOthSvc); DEFINE_CHAR(IOIQltyInd); DEFINE_STRING(IOIRefID); DEFINE_STRING(IOIShares); DEFINE_CHAR(IOITransType); DEFINE_CHAR(LastCapacity); DEFINE_EXCHANGE(LastMkt); DEFINE_PRICE(LastPx); DEFINE_QTY(LastShares); DEFINE_NUMINGROUP(LinesOfText); DEFINE_STRING(OrderID); DEFINE_QTY(OrderQty); DEFINE_CHAR(OrdStatus); DEFINE_CHAR(OrdType); DEFINE_STRING(OrigClOrdID); DEFINE_UTCTIMESTAMP(OrigTime); DEFINE_PRICE(Price); DEFINE_STRING(RelatdSym); DEFINE_CHAR(Rule80A); DEFINE_STRING(SecurityID); DEFINE_LOCALMKTDATE(SendingDate); DEFINE_QTY(Shares); DEFINE_CHAR(Side); DEFINE_STRING(Symbol); DEFINE_CHAR(TimeInForce); DEFINE_UTCTIMESTAMP(TransactTime); DEFINE_CHAR(Urgency); DEFINE_UTCTIMESTAMP(ValidUntilTime); DEFINE_CHAR(SettlmntTyp); DEFINE_LOCALMKTDATE(FutSettDate); DEFINE_STRING(SymbolSfx); DEFINE_STRING(ListID); DEFINE_INT(ListSeqNo); DEFINE_INT(ListNoOrds); DEFINE_STRING(ListExecInst); DEFINE_STRING(AllocID); DEFINE_CHAR(AllocTransType); DEFINE_STRING(RefAllocID); DEFINE_NUMINGROUP(NoOrders); DEFINE_INT(AvgPrxPrecision); DEFINE_LOCALMKTDATE(TradeDate); DEFINE_STRING(ExecBroker); DEFINE_CHAR(OpenClose); DEFINE_NUMINGROUP(NoAllocs); DEFINE_STRING(AllocAccount); DEFINE_QTY(AllocShares); DEFINE_CHAR(ProcessCode); DEFINE_INT(NoRpts); DEFINE_INT(RptSeq); DEFINE_QTY(CxlQty); DEFINE_NUMINGROUP(NoDlvyInst); DEFINE_STRING(DlvyInst); DEFINE_INT(AllocStatus); DEFINE_INT(AllocRejCode); DEFINE_STRING(BrokerOfCredit); DEFINE_CHAR(EmailType); DEFINE_PRICE(StopPx); DEFINE_EXCHANGE(ExDestination); DEFINE_INT(CxlRejReason); DEFINE_INT(OrdRejReason); DEFINE_CHAR(IOIQualifier); DEFINE_STRING(WaveNo); DEFINE_STRING(Issuer); DEFINE_STRING(SecurityDesc); DEFINE_STRING(ClientID); DEFINE_QTY(MinQty); DEFINE_QTY(MaxFloor); DEFINE_BOOLEAN(ReportToExch); DEFINE_BOOLEAN(LocateReqd); DEFINE_STRING(QuoteID); DEFINE_AMT(NetMoney); DEFINE_AMT(SettlCurrAmt); DEFINE_CURRENCY(SettlCurrency); DEFINE_BOOLEAN(ForexReq); DEFINE_NUMINGROUP(NoExecs); DEFINE_CHAR(CxlType); DEFINE_UTCTIMESTAMP(ExpireTime); DEFINE_CHAR(DKReason); DEFINE_BOOLEAN(IOINaturalFlag); DEFINE_STRING(QuoteReqID); DEFINE_PRICE(BidPx); DEFINE_PRICE(OfferPx); DEFINE_QTY(BidSize); DEFINE_QTY(OfferSize); DEFINE_NUMINGROUP(NoMiscFees); DEFINE_AMT(MiscFeeAmt); DEFINE_CURRENCY(MiscFeeCurr); DEFINE_STRING(MiscFeeType); DEFINE_PRICE(PrevClosePx); DEFINE_NUMINGROUP(NoRelatedSym); DEFINE_STRING(Subject); DEFINE_STRING(Headline); DEFINE_STRING(URLLink); DEFINE_CHAR(ExecType); DEFINE_QTY(LeavesQty); DEFINE_QTY(CashOrderQty); DEFINE_PRICE(AllocAvgPx); DEFINE_AMT(AllocNetMoney); DEFINE_FLOAT(SettlCurrFxRate); DEFINE_CHAR(SettlCurrFxRateCalc); DEFINE_INT(NumDaysInterest); DEFINE_PERCENTAGE(AccruedInterestRate); DEFINE_AMT(AccruedInterestAmt); DEFINE_CHAR(SettlInstMode); DEFINE_STRING(AllocText); DEFINE_STRING(SettlInstID); DEFINE_CHAR(SettlInstTransType); DEFINE_STRING(EmailThreadID); DEFINE_CHAR(SettlInstSource); DEFINE_STRING(SettlLocation); DEFINE_STRING(SecurityType); DEFINE_UTCTIMESTAMP(EffectiveTime); DEFINE_INT(StandInstDbType); DEFINE_STRING(StandInstDbName); DEFINE_STRING(StandInstDbID); DEFINE_INT(SettlDeliveryType); DEFINE_STRING(SettlDepositoryCode); DEFINE_STRING(SettlBrkrCode); DEFINE_STRING(SettlInstCode); DEFINE_STRING(SecuritySettlAgentName); DEFINE_STRING(SecuritySettlAgentCode); DEFINE_STRING(SecuritySettlAgentAcctNum); DEFINE_STRING(SecuritySettlAgentAcctName); DEFINE_STRING(SecuritySettlAgentContactName); DEFINE_STRING(SecuritySettlAgentContactPhone); DEFINE_STRING(CashSettlAgentName); DEFINE_STRING(CashSettlAgentCode); DEFINE_STRING(CashSettlAgentAcctNum); DEFINE_STRING(CashSettlAgentAcctName); DEFINE_STRING(CashSettlAgentContactName); DEFINE_STRING(CashSettlAgentContactPhone); DEFINE_PRICE(BidSpotRate); DEFINE_PRICEOFFSET(BidForwardPoints); DEFINE_PRICE(OfferSpotRate); DEFINE_PRICEOFFSET(OfferForwardPoints); DEFINE_QTY(OrderQty2); DEFINE_LOCALMKTDATE(FutSettDate2); DEFINE_PRICE(LastSpotRate); DEFINE_PRICEOFFSET(LastForwardPoints); DEFINE_STRING(AllocLinkID); DEFINE_INT(AllocLinkType); DEFINE_STRING(SecondaryOrderID); DEFINE_NUMINGROUP(NoIOIQualifiers); DEFINE_MONTHYEAR(MaturityMonthYear); DEFINE_INT(PutOrCall); DEFINE_PRICE(StrikePrice); DEFINE_INT(CoveredOrUncovered); DEFINE_INT(CustomerOrFirm); DEFINE_DAYOFMONTH(MaturityDay); DEFINE_CHAR(OptAttribute); DEFINE_EXCHANGE(SecurityExchange); DEFINE_BOOLEAN(NotifyBrokerOfCredit); DEFINE_INT(AllocHandlInst); DEFINE_QTY(MaxShow); DEFINE_PRICEOFFSET(PegDifference); DEFINE_INT(TotNoOrders); DEFINE_STRING(SettlInstRefID); DEFINE_NUMINGROUP(NoRoutingIDs); DEFINE_INT(RoutingType); DEFINE_STRING(RoutingID); DEFINE_PRICEOFFSET(SpreadToBenchmark); DEFINE_CHAR(Benchmark); DEFINE_PERCENTAGE(CouponRate); DEFINE_FLOAT(ContractMultiplier); DEFINE_STRING(MDReqID); DEFINE_CHAR(SubscriptionRequestType); DEFINE_INT(MarketDepth); DEFINE_INT(MDUpdateType); DEFINE_BOOLEAN(AggregatedBook); DEFINE_NUMINGROUP(NoMDEntryTypes); DEFINE_NUMINGROUP(NoMDEntries); DEFINE_CHAR(MDEntryType); DEFINE_PRICE(MDEntryPx); DEFINE_QTY(MDEntrySize); DEFINE_UTCDATEONLY(MDEntryDate); DEFINE_UTCTIMEONLY(MDEntryTime); DEFINE_CHAR(TickDirection); DEFINE_EXCHANGE(MDMkt); DEFINE_MULTIPLESTRINGVALUE(QuoteCondition); DEFINE_MULTIPLESTRINGVALUE(TradeCondition); DEFINE_STRING(MDEntryID); DEFINE_CHAR(MDUpdateAction); DEFINE_STRING(MDEntryRefID); DEFINE_CHAR(MDReqRejReason); DEFINE_STRING(MDEntryOriginator); DEFINE_STRING(LocationID); DEFINE_STRING(DeskID); DEFINE_CHAR(DeleteReason); DEFINE_MULTIPLEVALUESTRING(OpenCloseSettleFlag); DEFINE_INT(SellerDays); DEFINE_STRING(MDEntryBuyer); DEFINE_STRING(MDEntrySeller); DEFINE_INT(MDEntryPositionNo); DEFINE_MULTIPLECHARVALUE(FinancialStatus); DEFINE_MULTIPLECHARVALUE(CorporateAction); DEFINE_QTY(DefBidSize); DEFINE_QTY(DefOfferSize); DEFINE_NUMINGROUP(NoQuoteEntries); DEFINE_NUMINGROUP(NoQuoteSets); DEFINE_INT(QuoteAckStatus); DEFINE_INT(QuoteCancelType); DEFINE_STRING(QuoteEntryID); DEFINE_INT(QuoteRejectReason); DEFINE_INT(QuoteResponseLevel); DEFINE_STRING(QuoteSetID); DEFINE_INT(QuoteRequestType); DEFINE_INT(TotQuoteEntries); DEFINE_STRING(UnderlyingIDSource); DEFINE_STRING(UnderlyingIssuer); DEFINE_STRING(UnderlyingSecurityDesc); DEFINE_EXCHANGE(UnderlyingSecurityExchange); DEFINE_STRING(UnderlyingSecurityID); DEFINE_STRING(UnderlyingSecurityType); DEFINE_STRING(UnderlyingSymbol); DEFINE_STRING(UnderlyingSymbolSfx); DEFINE_MONTHYEAR(UnderlyingMaturityMonthYear); DEFINE_DAYOFMONTH(UnderlyingMaturityDay); DEFINE_INT(UnderlyingPutOrCall); DEFINE_PRICE(UnderlyingStrikePrice); DEFINE_CHAR(UnderlyingOptAttribute); DEFINE_CURRENCY(UnderlyingCurrency); DEFINE_QTY(RatioQty); DEFINE_STRING(SecurityReqID); DEFINE_INT(SecurityRequestType); DEFINE_STRING(SecurityResponseID); DEFINE_INT(SecurityResponseType); DEFINE_STRING(SecurityStatusReqID); DEFINE_BOOLEAN(UnsolicitedIndicator); DEFINE_INT(SecurityTradingStatus); DEFINE_CHAR(HaltReasonChar); DEFINE_BOOLEAN(InViewOfCommon); DEFINE_BOOLEAN(DueToRelated); DEFINE_QTY(BuyVolume); DEFINE_QTY(SellVolume); DEFINE_PRICE(HighPx); DEFINE_PRICE(LowPx); DEFINE_INT(Adjustment); DEFINE_STRING(TradSesReqID); DEFINE_STRING(TradingSessionID); DEFINE_STRING(ContraTrader); DEFINE_INT(TradSesMethod); DEFINE_INT(TradSesMode); DEFINE_INT(TradSesStatus); DEFINE_UTCTIMESTAMP(TradSesStartTime); DEFINE_UTCTIMESTAMP(TradSesOpenTime); DEFINE_UTCTIMESTAMP(TradSesPreCloseTime); DEFINE_UTCTIMESTAMP(TradSesCloseTime); DEFINE_UTCTIMESTAMP(TradSesEndTime); DEFINE_INT(NumberOfOrders); DEFINE_LENGTH(EncodedIssuerLen); DEFINE_DATA(EncodedIssuer); DEFINE_LENGTH(EncodedSecurityDescLen); DEFINE_DATA(EncodedSecurityDesc); DEFINE_LENGTH(EncodedListExecInstLen); DEFINE_DATA(EncodedListExecInst); DEFINE_LENGTH(EncodedSubjectLen); DEFINE_DATA(EncodedSubject); DEFINE_LENGTH(EncodedHeadlineLen); DEFINE_DATA(EncodedHeadline); DEFINE_LENGTH(EncodedAllocTextLen); DEFINE_DATA(EncodedAllocText); DEFINE_LENGTH(EncodedUnderlyingIssuerLen); DEFINE_DATA(EncodedUnderlyingIssuer); DEFINE_LENGTH(EncodedUnderlyingSecurityDescLen); DEFINE_DATA(EncodedUnderlyingSecurityDesc); DEFINE_PRICE(AllocPrice); DEFINE_UTCTIMESTAMP(QuoteSetValidUntilTime); DEFINE_INT(QuoteEntryRejectReason); DEFINE_UTCTIMESTAMP(OnBehalfOfSendingTime); DEFINE_CHAR(BidRequestTransType); DEFINE_STRING(ContraBroker); DEFINE_STRING(ComplianceID); DEFINE_BOOLEAN(SolicitedFlag); DEFINE_INT(ExecRestatementReason); DEFINE_STRING(BusinessRejectRefID); DEFINE_INT(BusinessRejectReason); DEFINE_AMT(GrossTradeAmt); DEFINE_NUMINGROUP(NoContraBrokers); DEFINE_NUMINGROUP(NoTradingSessions); DEFINE_QTY(TotalVolumeTraded); DEFINE_CHAR(DiscretionInst); DEFINE_PRICEOFFSET(DiscretionOffset); DEFINE_STRING(BidID); DEFINE_STRING(ClientBidID); DEFINE_STRING(ListName); DEFINE_INT(TotalNumSecurities); DEFINE_INT(BidType); DEFINE_INT(NumTickets); DEFINE_AMT(SideValue1); DEFINE_AMT(SideValue2); DEFINE_NUMINGROUP(NoBidDescriptors); DEFINE_INT(BidDescriptorType); DEFINE_STRING(BidDescriptor); DEFINE_INT(SideValueInd); DEFINE_PERCENTAGE(LiquidityPctLow); DEFINE_PERCENTAGE(LiquidityPctHigh); DEFINE_AMT(LiquidityValue); DEFINE_PERCENTAGE(EFPTrackingError); DEFINE_AMT(FairValue); DEFINE_PERCENTAGE(OutsideIndexPct); DEFINE_AMT(ValueOfFutures); DEFINE_INT(LiquidityIndType); DEFINE_PERCENTAGE(WtAverageLiquidity); DEFINE_BOOLEAN(ExchangeForPhysical); DEFINE_AMT(OutMainCntryUIndex); DEFINE_PERCENTAGE(CrossPercent); DEFINE_INT(ProgRptReqs); DEFINE_INT(ProgPeriodInterval); DEFINE_INT(IncTaxInd); DEFINE_INT(NumBidders); DEFINE_CHAR(TradeType); DEFINE_CHAR(BasisPxType); DEFINE_NUMINGROUP(NoBidComponents); DEFINE_COUNTRY(Country); DEFINE_INT(TotNoStrikes); DEFINE_INT(PriceType); DEFINE_QTY(DayOrderQty); DEFINE_QTY(DayCumQty); DEFINE_PRICE(DayAvgPx); DEFINE_INT(GTBookingInst); DEFINE_NUMINGROUP(NoStrikes); DEFINE_INT(ListStatusType); DEFINE_INT(NetGrossInd); DEFINE_INT(ListOrderStatus); DEFINE_LOCALMKTDATE(ExpireDate); DEFINE_CHAR(ListExecInstType); DEFINE_CHAR(CxlRejResponseTo); DEFINE_PERCENTAGE(UnderlyingCouponRate); DEFINE_FLOAT(UnderlyingContractMultiplier); DEFINE_QTY(ContraTradeQty); DEFINE_UTCTIMESTAMP(ContraTradeTime); DEFINE_STRING(ClearingFirm); DEFINE_STRING(ClearingAccount); DEFINE_INT(LiquidityNumSecurities); DEFINE_CHAR(MultiLegReportingType); DEFINE_UTCTIMESTAMP(StrikeTime); DEFINE_STRING(ListStatusText); DEFINE_LENGTH(EncodedListStatusTextLen); DEFINE_DATA(EncodedListStatusText); DEFINE_STRING(SecurityIDSource); DEFINE_STRING(IOIQty); DEFINE_QTY(LastQty); DEFINE_QTY(Quantity); DEFINE_CHAR(PositionEffect); DEFINE_QTY(AllocQty); DEFINE_PRICEOFFSET(Spread); DEFINE_CURRENCY(BenchmarkCurveCurrency); DEFINE_STRING(BenchmarkCurveName); DEFINE_STRING(BenchmarkCurvePoint); DEFINE_LOCALMKTDATE(CouponPaymentDate); DEFINE_LOCALMKTDATE(IssueDate); DEFINE_INT(RepurchaseTerm); DEFINE_PERCENTAGE(RepurchaseRate); DEFINE_FLOAT(Factor); DEFINE_LOCALMKTDATE(TradeOriginationDate); DEFINE_LOCALMKTDATE(ExDate); DEFINE_NUMINGROUP(NoStipulations); DEFINE_STRING(StipulationType); DEFINE_STRING(StipulationValue); DEFINE_STRING(YieldType); DEFINE_PERCENTAGE(Yield); DEFINE_AMT(TotalTakedown); DEFINE_AMT(Concession); DEFINE_INT(RepoCollateralSecurityType); DEFINE_LOCALMKTDATE(RedemptionDate); DEFINE_LOCALMKTDATE(UnderlyingCouponPaymentDate); DEFINE_LOCALMKTDATE(UnderlyingIssueDate); DEFINE_INT(UnderlyingRepoCollateralSecurityType); DEFINE_INT(UnderlyingRepurchaseTerm); DEFINE_PERCENTAGE(UnderlyingRepurchaseRate); DEFINE_FLOAT(UnderlyingFactor); DEFINE_LOCALMKTDATE(UnderlyingRedemptionDate); DEFINE_LOCALMKTDATE(LegCouponPaymentDate); DEFINE_LOCALMKTDATE(LegIssueDate); DEFINE_INT(LegRepoCollateralSecurityType); DEFINE_INT(LegRepurchaseTerm); DEFINE_PERCENTAGE(LegRepurchaseRate); DEFINE_FLOAT(LegFactor); DEFINE_LOCALMKTDATE(LegRedemptionDate); DEFINE_STRING(CreditRating); DEFINE_STRING(UnderlyingCreditRating); DEFINE_STRING(LegCreditRating); DEFINE_BOOLEAN(TradedFlatSwitch); DEFINE_LOCALMKTDATE(BasisFeatureDate); DEFINE_PRICE(BasisFeaturePrice); DEFINE_INT(QuoteStatus); DEFINE_STRING(UnderlyingSecurityIDSource); DEFINE_CHAR(PartyIDSource); DEFINE_STRING(PartyID); DEFINE_UTCDATEONLY(TotalVolumeTradedDate); DEFINE_UTCTIMEONLY(TotalVolumeTradedTime); DEFINE_PRICEOFFSET(NetChgPrevDay); DEFINE_INT(PartyRole); DEFINE_NUMINGROUP(NoPartyIDs); DEFINE_NUMINGROUP(NoSecurityAltID); DEFINE_STRING(SecurityAltID); DEFINE_STRING(SecurityAltIDSource); DEFINE_NUMINGROUP(NoUnderlyingSecurityAltID); DEFINE_STRING(UnderlyingSecurityAltID); DEFINE_STRING(UnderlyingSecurityAltIDSource); DEFINE_INT(Product); DEFINE_STRING(CFICode); DEFINE_INT(UnderlyingProduct); DEFINE_STRING(UnderlyingCFICode); DEFINE_INT(QuantityType); DEFINE_STRING(BookingRefID); DEFINE_STRING(IndividualAllocID); DEFINE_CHAR(RoundingDirection); DEFINE_FLOAT(RoundingModulus); DEFINE_COUNTRY(CountryOfIssue); DEFINE_STRING(StateOrProvinceOfIssue); DEFINE_STRING(LocaleOfIssue); DEFINE_NUMINGROUP(NoRegistDtls); DEFINE_STRING(MailingDtls); DEFINE_COUNTRY(InvestorCountryOfResidence); DEFINE_STRING(PaymentRef); DEFINE_INT(DistribPaymentMethod); DEFINE_CURRENCY(CashDistribCurr); DEFINE_CURRENCY(CommCurrency); DEFINE_CHAR(CancellationRights); DEFINE_CHAR(MoneyLaunderingStatus); DEFINE_STRING(MailingInst); DEFINE_UTCTIMESTAMP(TransBkdTime); DEFINE_CHAR(ExecPriceType); DEFINE_FLOAT(ExecPriceAdjustment); DEFINE_LOCALMKTDATE(DateOfBirth); DEFINE_INT(TradeReportTransType); DEFINE_STRING(CardHolderName); DEFINE_STRING(CardNumber); DEFINE_LOCALMKTDATE(CardExpDate); DEFINE_STRING(CardIssNo); DEFINE_INT(PaymentMethod); DEFINE_STRING(RegistAcctType); DEFINE_STRING(Designation); DEFINE_INT(TaxAdvantageType); DEFINE_STRING(RegistRejReasonText); DEFINE_CHAR(FundRenewWaiv); DEFINE_STRING(CashDistribAgentName); DEFINE_STRING(CashDistribAgentCode); DEFINE_STRING(CashDistribAgentAcctNumber); DEFINE_STRING(CashDistribPayRef); DEFINE_STRING(CashDistribAgentAcctName); DEFINE_LOCALMKTDATE(CardStartDate); DEFINE_LOCALMKTDATE(PaymentDate); DEFINE_STRING(PaymentRemitterID); DEFINE_CHAR(RegistStatus); DEFINE_INT(RegistRejReasonCode); DEFINE_STRING(RegistRefID); DEFINE_STRING(RegistDetls); DEFINE_NUMINGROUP(NoDistribInsts); DEFINE_STRING(RegistEmail); DEFINE_PERCENTAGE(DistribPercentage); DEFINE_STRING(RegistID); DEFINE_CHAR(RegistTransType); DEFINE_UTCTIMESTAMP(ExecValuationPoint); DEFINE_PERCENTAGE(OrderPercent); DEFINE_CHAR(OwnershipType); DEFINE_NUMINGROUP(NoContAmts); DEFINE_INT(ContAmtType); DEFINE_FLOAT(ContAmtValue); DEFINE_CURRENCY(ContAmtCurr); DEFINE_INT(OwnerType); DEFINE_STRING(PartySubID); DEFINE_STRING(NestedPartyID); DEFINE_CHAR(NestedPartyIDSource); DEFINE_STRING(SecondaryClOrdID); DEFINE_STRING(SecondaryExecID); DEFINE_CHAR(OrderCapacity); DEFINE_MULTIPLECHARVALUE(OrderRestrictions); DEFINE_CHAR(MassCancelRequestType); DEFINE_CHAR(MassCancelResponse); DEFINE_INT(MassCancelRejectReason); DEFINE_INT(TotalAffectedOrders); DEFINE_NUMINGROUP(NoAffectedOrders); DEFINE_STRING(AffectedOrderID); DEFINE_STRING(AffectedSecondaryOrderID); DEFINE_INT(QuoteType); DEFINE_INT(NestedPartyRole); DEFINE_NUMINGROUP(NoNestedPartyIDs); DEFINE_AMT(TotalAccruedInterestAmt); DEFINE_LOCALMKTDATE(MaturityDate); DEFINE_LOCALMKTDATE(UnderlyingMaturityDate); DEFINE_STRING(InstrRegistry); DEFINE_CHAR(CashMargin); DEFINE_STRING(NestedPartySubID); DEFINE_MULTIPLECHARVALUE(Scope); DEFINE_BOOLEAN(MDImplicitDelete); DEFINE_STRING(CrossID); DEFINE_INT(CrossType); DEFINE_INT(CrossPrioritization); DEFINE_STRING(OrigCrossID); DEFINE_NUMINGROUP(NoSides); DEFINE_NUMINGROUP(NoLegs); DEFINE_CURRENCY(LegCurrency); DEFINE_INT(TotalNumSecurityTypes); DEFINE_NUMINGROUP(NoSecurityTypes); DEFINE_INT(SecurityListRequestType); DEFINE_INT(SecurityRequestResult); DEFINE_QTY(RoundLot); DEFINE_QTY(MinTradeVol); DEFINE_INT(MultiLegRptTypeReq); DEFINE_CHAR(LegPositionEffect); DEFINE_INT(LegCoveredOrUncovered); DEFINE_PRICE(LegPrice); DEFINE_INT(TradSesStatusRejReason); DEFINE_STRING(TradeRequestID); DEFINE_INT(TradeRequestType); DEFINE_BOOLEAN(PreviouslyReported); DEFINE_STRING(TradeReportID); DEFINE_STRING(TradeReportRefID); DEFINE_CHAR(MatchStatus); DEFINE_STRING(MatchType); DEFINE_BOOLEAN(OddLot); DEFINE_NUMINGROUP(NoClearingInstructions); DEFINE_INT(ClearingInstruction); DEFINE_STRING(TradeInputSource); DEFINE_STRING(TradeInputDevice); DEFINE_INT(NoDates); DEFINE_INT(AccountType); DEFINE_INT(CustOrderCapacity); DEFINE_STRING(ClOrdLinkID); DEFINE_STRING(MassStatusReqID); DEFINE_INT(MassStatusReqType); DEFINE_UTCTIMESTAMP(OrigOrdModTime); DEFINE_CHAR(LegSettlmntTyp); DEFINE_LOCALMKTDATE(LegFutSettDate); DEFINE_CHAR(DayBookingInst); DEFINE_CHAR(BookingUnit); DEFINE_CHAR(PreallocMethod); DEFINE_COUNTRY(UnderlyingCountryOfIssue); DEFINE_STRING(UnderlyingStateOrProvinceOfIssue); DEFINE_STRING(UnderlyingLocaleOfIssue); DEFINE_STRING(UnderlyingInstrRegistry); DEFINE_COUNTRY(LegCountryOfIssue); DEFINE_STRING(LegStateOrProvinceOfIssue); DEFINE_STRING(LegLocaleOfIssue); DEFINE_STRING(LegInstrRegistry); DEFINE_STRING(LegSymbol); DEFINE_STRING(LegSymbolSfx); DEFINE_STRING(LegSecurityID); DEFINE_STRING(LegSecurityIDSource); DEFINE_STRING(NoLegSecurityAltID); DEFINE_STRING(LegSecurityAltID); DEFINE_STRING(LegSecurityAltIDSource); DEFINE_INT(LegProduct); DEFINE_STRING(LegCFICode); DEFINE_STRING(LegSecurityType); DEFINE_MONTHYEAR(LegMaturityMonthYear); DEFINE_LOCALMKTDATE(LegMaturityDate); DEFINE_PRICE(LegStrikePrice); DEFINE_CHAR(LegOptAttribute); DEFINE_FLOAT(LegContractMultiplier); DEFINE_PERCENTAGE(LegCouponRate); DEFINE_EXCHANGE(LegSecurityExchange); DEFINE_STRING(LegIssuer); DEFINE_LENGTH(EncodedLegIssuerLen); DEFINE_DATA(EncodedLegIssuer); DEFINE_STRING(LegSecurityDesc); DEFINE_LENGTH(EncodedLegSecurityDescLen); DEFINE_DATA(EncodedLegSecurityDesc); DEFINE_FLOAT(LegRatioQty); DEFINE_CHAR(LegSide); DEFINE_STRING(TradingSessionSubID); DEFINE_INT(AllocType); DEFINE_PRICE(MidPx); DEFINE_PERCENTAGE(BidYield); DEFINE_PERCENTAGE(MidYield); DEFINE_PERCENTAGE(OfferYield); DEFINE_STRING(ClearingFeeIndicator); DEFINE_BOOLEAN(WorkingIndicator); DEFINE_PRICE(LegLastPx); DEFINE_INT(PriorityIndicator); DEFINE_PRICEOFFSET(PriceImprovement); DEFINE_PRICE(Price2); DEFINE_PRICEOFFSET(LastForwardPoints2); DEFINE_PRICEOFFSET(BidForwardPoints2); DEFINE_PRICEOFFSET(OfferForwardPoints2); DEFINE_STRING(RFQReqID); DEFINE_PRICE(MktBidPx); DEFINE_PRICE(MktOfferPx); DEFINE_QTY(MinBidSize); DEFINE_QTY(MinOfferSize); DEFINE_STRING(QuoteStatusReqID); DEFINE_BOOLEAN(LegalConfirm); DEFINE_PRICE(UnderlyingLastPx); DEFINE_QTY(UnderlyingLastQty); DEFINE_INT(SecDefStatus); DEFINE_STRING(LegRefID); DEFINE_STRING(ContraLegRefID); DEFINE_FLOAT(SettlCurrBidFxRate); DEFINE_FLOAT(SettlCurrOfferFxRate); DEFINE_INT(QuoteRequestRejectReason); DEFINE_STRING(SideComplianceID); DEFINE_STRING(IOIID); DEFINE_NUMINGROUP(NoLinesOfText); DEFINE_STRING(SettlType); DEFINE_LOCALMKTDATE(SettlDate); DEFINE_INT(AvgPxPrecision); DEFINE_LOCALMKTDATE(SettlDate2); DEFINE_FLOAT(PegOffsetValue); DEFINE_MULTIPLECHARVALUE(OpenCloseSettlFlag); DEFINE_INT(TotNoQuoteEntries); DEFINE_FLOAT(DiscretionOffsetValue); DEFINE_INT(TotNoRelatedSym); DEFINE_CHAR(BidTradeType); DEFINE_STRING(CardIssNum); DEFINE_STRING(RegistDtls); DEFINE_INT(TotNoSecurityTypes); DEFINE_CHAR(LegSettlType); DEFINE_LOCALMKTDATE(LegSettlDate); DEFINE_INT(AcctIDSource); DEFINE_INT(AllocAcctIDSource); DEFINE_PRICE(BenchmarkPrice); DEFINE_INT(BenchmarkPriceType); DEFINE_STRING(ConfirmID); DEFINE_INT(ConfirmStatus); DEFINE_INT(ConfirmTransType); DEFINE_MONTHYEAR(ContractSettlMonth); DEFINE_INT(DeliveryForm); DEFINE_PRICE(LastParPx); DEFINE_NUMINGROUP(NoLegAllocs); DEFINE_STRING(LegAllocAccount); DEFINE_STRING(LegIndividualAllocID); DEFINE_QTY(LegAllocQty); DEFINE_STRING(LegAllocAcctIDSource); DEFINE_CURRENCY(LegSettlCurrency); DEFINE_CURRENCY(LegBenchmarkCurveCurrency); DEFINE_STRING(LegBenchmarkCurveName); DEFINE_STRING(LegBenchmarkCurvePoint); DEFINE_PRICE(LegBenchmarkPrice); DEFINE_INT(LegBenchmarkPriceType); DEFINE_PRICE(LegBidPx); DEFINE_STRING(LegIOIQty); DEFINE_NUMINGROUP(NoLegStipulations); DEFINE_PRICE(LegOfferPx); DEFINE_QTY(LegOrderQty); DEFINE_INT(LegPriceType); DEFINE_QTY(LegQty); DEFINE_STRING(LegStipulationType); DEFINE_STRING(LegStipulationValue); DEFINE_INT(LegSwapType); DEFINE_STRING(Pool); DEFINE_INT(QuotePriceType); DEFINE_STRING(QuoteRespID); DEFINE_INT(QuoteRespType); DEFINE_CHAR(QuoteQualifier); DEFINE_LOCALMKTDATE(YieldRedemptionDate); DEFINE_PRICE(YieldRedemptionPrice); DEFINE_INT(YieldRedemptionPriceType); DEFINE_STRING(BenchmarkSecurityID); DEFINE_BOOLEAN(ReversalIndicator); DEFINE_LOCALMKTDATE(YieldCalcDate); DEFINE_NUMINGROUP(NoPositions); DEFINE_STRING(PosType); DEFINE_QTY(LongQty); DEFINE_QTY(ShortQty); DEFINE_INT(PosQtyStatus); DEFINE_STRING(PosAmtType); DEFINE_AMT(PosAmt); DEFINE_INT(PosTransType); DEFINE_STRING(PosReqID); DEFINE_NUMINGROUP(NoUnderlyings); DEFINE_INT(PosMaintAction); DEFINE_STRING(OrigPosReqRefID); DEFINE_STRING(PosMaintRptRefID); DEFINE_LOCALMKTDATE(ClearingBusinessDate); DEFINE_STRING(SettlSessID); DEFINE_STRING(SettlSessSubID); DEFINE_INT(AdjustmentType); DEFINE_BOOLEAN(ContraryInstructionIndicator); DEFINE_BOOLEAN(PriorSpreadIndicator); DEFINE_STRING(PosMaintRptID); DEFINE_INT(PosMaintStatus); DEFINE_INT(PosMaintResult); DEFINE_INT(PosReqType); DEFINE_INT(ResponseTransportType); DEFINE_STRING(ResponseDestination); DEFINE_INT(TotalNumPosReports); DEFINE_INT(PosReqResult); DEFINE_INT(PosReqStatus); DEFINE_PRICE(SettlPrice); DEFINE_INT(SettlPriceType); DEFINE_PRICE(UnderlyingSettlPrice); DEFINE_INT(UnderlyingSettlPriceType); DEFINE_PRICE(PriorSettlPrice); DEFINE_NUMINGROUP(NoQuoteQualifiers); DEFINE_CURRENCY(AllocSettlCurrency); DEFINE_AMT(AllocSettlCurrAmt); DEFINE_AMT(InterestAtMaturity); DEFINE_LOCALMKTDATE(LegDatedDate); DEFINE_STRING(LegPool); DEFINE_AMT(AllocInterestAtMaturity); DEFINE_AMT(AllocAccruedInterestAmt); DEFINE_LOCALMKTDATE(DeliveryDate); DEFINE_CHAR(AssignmentMethod); DEFINE_QTY(AssignmentUnit); DEFINE_AMT(OpenInterest); DEFINE_CHAR(ExerciseMethod); DEFINE_INT(TotNumTradeReports); DEFINE_INT(TradeRequestResult); DEFINE_INT(TradeRequestStatus); DEFINE_INT(TradeReportRejectReason); DEFINE_INT(SideMultiLegReportingType); DEFINE_NUMINGROUP(NoPosAmt); DEFINE_BOOLEAN(AutoAcceptIndicator); DEFINE_STRING(AllocReportID); DEFINE_NUMINGROUP(NoNested2PartyIDs); DEFINE_STRING(Nested2PartyID); DEFINE_CHAR(Nested2PartyIDSource); DEFINE_INT(Nested2PartyRole); DEFINE_STRING(Nested2PartySubID); DEFINE_STRING(BenchmarkSecurityIDSource); DEFINE_STRING(SecuritySubType); DEFINE_STRING(UnderlyingSecuritySubType); DEFINE_STRING(LegSecuritySubType); DEFINE_PERCENTAGE(AllowableOneSidednessPct); DEFINE_AMT(AllowableOneSidednessValue); DEFINE_CURRENCY(AllowableOneSidednessCurr); DEFINE_NUMINGROUP(NoTrdRegTimestamps); DEFINE_UTCTIMESTAMP(TrdRegTimestamp); DEFINE_INT(TrdRegTimestampType); DEFINE_STRING(TrdRegTimestampOrigin); DEFINE_STRING(ConfirmRefID); DEFINE_INT(ConfirmType); DEFINE_INT(ConfirmRejReason); DEFINE_INT(BookingType); DEFINE_INT(IndividualAllocRejCode); DEFINE_STRING(SettlInstMsgID); DEFINE_NUMINGROUP(NoSettlInst); DEFINE_UTCTIMESTAMP(LastUpdateTime); DEFINE_INT(AllocSettlInstType); DEFINE_NUMINGROUP(NoSettlPartyIDs); DEFINE_STRING(SettlPartyID); DEFINE_CHAR(SettlPartyIDSource); DEFINE_INT(SettlPartyRole); DEFINE_STRING(SettlPartySubID); DEFINE_INT(SettlPartySubIDType); DEFINE_CHAR(DlvyInstType); DEFINE_INT(TerminationType); DEFINE_STRING(OrdStatusReqID); DEFINE_STRING(SettlInstReqID); DEFINE_INT(SettlInstReqRejCode); DEFINE_STRING(SecondaryAllocID); DEFINE_INT(AllocReportType); DEFINE_STRING(AllocReportRefID); DEFINE_INT(AllocCancReplaceReason); DEFINE_BOOLEAN(CopyMsgIndicator); DEFINE_INT(AllocAccountType); DEFINE_PRICE(OrderAvgPx); DEFINE_QTY(OrderBookingQty); DEFINE_NUMINGROUP(NoSettlPartySubIDs); DEFINE_NUMINGROUP(NoPartySubIDs); DEFINE_INT(PartySubIDType); DEFINE_NUMINGROUP(NoNestedPartySubIDs); DEFINE_INT(NestedPartySubIDType); DEFINE_NUMINGROUP(NoNested2PartySubIDs); DEFINE_INT(Nested2PartySubIDType); DEFINE_INT(AllocIntermedReqType); DEFINE_PRICE(UnderlyingPx); DEFINE_FLOAT(PriceDelta); DEFINE_INT(ApplQueueMax); DEFINE_INT(ApplQueueDepth); DEFINE_INT(ApplQueueResolution); DEFINE_INT(ApplQueueAction); DEFINE_NUMINGROUP(NoAltMDSource); DEFINE_STRING(AltMDSourceID); DEFINE_STRING(SecondaryTradeReportID); DEFINE_INT(AvgPxIndicator); DEFINE_STRING(TradeLinkID); DEFINE_STRING(OrderInputDevice); DEFINE_STRING(UnderlyingTradingSessionID); DEFINE_STRING(UnderlyingTradingSessionSubID); DEFINE_STRING(TradeLegRefID); DEFINE_STRING(ExchangeRule); DEFINE_INT(TradeAllocIndicator); DEFINE_INT(ExpirationCycle); DEFINE_INT(TrdType); DEFINE_INT(TrdSubType); DEFINE_STRING(TransferReason); DEFINE_STRING(AsgnReqID); DEFINE_INT(TotNumAssignmentReports); DEFINE_STRING(AsgnRptID); DEFINE_PRICEOFFSET(ThresholdAmount); DEFINE_INT(PegMoveType); DEFINE_INT(PegOffsetType); DEFINE_INT(PegLimitType); DEFINE_INT(PegRoundDirection); DEFINE_PRICE(PeggedPrice); DEFINE_INT(PegScope); DEFINE_INT(DiscretionMoveType); DEFINE_INT(DiscretionOffsetType); DEFINE_INT(DiscretionLimitType); DEFINE_INT(DiscretionRoundDirection); DEFINE_PRICE(DiscretionPrice); DEFINE_INT(DiscretionScope); DEFINE_INT(TargetStrategy); DEFINE_STRING(TargetStrategyParameters); DEFINE_PERCENTAGE(ParticipationRate); DEFINE_FLOAT(TargetStrategyPerformance); DEFINE_INT(LastLiquidityInd); DEFINE_BOOLEAN(PublishTrdIndicator); DEFINE_INT(ShortSaleReason); DEFINE_INT(QtyType); DEFINE_INT(SecondaryTrdType); DEFINE_INT(TradeReportType); DEFINE_INT(AllocNoOrdersType); DEFINE_AMT(SharedCommission); DEFINE_STRING(ConfirmReqID); DEFINE_PRICE(AvgParPx); DEFINE_PRICE(ReportedPx); DEFINE_NUMINGROUP(NoCapacities); DEFINE_QTY(OrderCapacityQty); DEFINE_NUMINGROUP(NoEvents); DEFINE_INT(EventType); DEFINE_LOCALMKTDATE(EventDate); DEFINE_PRICE(EventPx); DEFINE_STRING(EventText); DEFINE_PERCENTAGE(PctAtRisk); DEFINE_NUMINGROUP(NoInstrAttrib); DEFINE_INT(InstrAttribType); DEFINE_STRING(InstrAttribValue); DEFINE_LOCALMKTDATE(DatedDate); DEFINE_LOCALMKTDATE(InterestAccrualDate); DEFINE_INT(CPProgram); DEFINE_STRING(CPRegType); DEFINE_STRING(UnderlyingCPProgram); DEFINE_STRING(UnderlyingCPRegType); DEFINE_QTY(UnderlyingQty); DEFINE_STRING(TrdMatchID); DEFINE_STRING(SecondaryTradeReportRefID); DEFINE_PRICE(UnderlyingDirtyPrice); DEFINE_PRICE(UnderlyingEndPrice); DEFINE_AMT(UnderlyingStartValue); DEFINE_AMT(UnderlyingCurrentValue); DEFINE_AMT(UnderlyingEndValue); DEFINE_NUMINGROUP(NoUnderlyingStips); DEFINE_STRING(UnderlyingStipType); DEFINE_STRING(UnderlyingStipValue); DEFINE_AMT(MaturityNetMoney); DEFINE_INT(MiscFeeBasis); DEFINE_INT(TotNoAllocs); DEFINE_BOOLEAN(LastFragment); DEFINE_STRING(CollReqID); DEFINE_INT(CollAsgnReason); DEFINE_INT(CollInquiryQualifier); DEFINE_NUMINGROUP(NoTrades); DEFINE_PERCENTAGE(MarginRatio); DEFINE_AMT(MarginExcess); DEFINE_AMT(TotalNetValue); DEFINE_AMT(CashOutstanding); DEFINE_STRING(CollAsgnID); DEFINE_INT(CollAsgnTransType); DEFINE_STRING(CollRespID); DEFINE_INT(CollAsgnRespType); DEFINE_INT(CollAsgnRejectReason); DEFINE_STRING(CollAsgnRefID); DEFINE_STRING(CollRptID); DEFINE_STRING(CollInquiryID); DEFINE_INT(CollStatus); DEFINE_INT(TotNumReports); DEFINE_BOOLEAN(LastRptRequested); DEFINE_STRING(AgreementDesc); DEFINE_STRING(AgreementID); DEFINE_LOCALMKTDATE(AgreementDate); DEFINE_LOCALMKTDATE(StartDate); DEFINE_LOCALMKTDATE(EndDate); DEFINE_CURRENCY(AgreementCurrency); DEFINE_INT(DeliveryType); DEFINE_AMT(EndAccruedInterestAmt); DEFINE_AMT(StartCash); DEFINE_AMT(EndCash); DEFINE_STRING(UserRequestID); DEFINE_INT(UserRequestType); DEFINE_STRING(NewPassword); DEFINE_INT(UserStatus); DEFINE_STRING(UserStatusText); DEFINE_INT(StatusValue); DEFINE_STRING(StatusText); DEFINE_STRING(RefCompID); DEFINE_STRING(RefSubID); DEFINE_STRING(NetworkResponseID); DEFINE_STRING(NetworkRequestID); DEFINE_STRING(LastNetworkResponseID); DEFINE_INT(NetworkRequestType); DEFINE_NUMINGROUP(NoCompIDs); DEFINE_INT(NetworkStatusResponseType); DEFINE_NUMINGROUP(NoCollInquiryQualifier); DEFINE_INT(TrdRptStatus); DEFINE_INT(AffirmStatus); DEFINE_CURRENCY(UnderlyingStrikeCurrency); DEFINE_CURRENCY(LegStrikeCurrency); DEFINE_STRING(TimeBracket); DEFINE_INT(CollAction); DEFINE_INT(CollInquiryStatus); DEFINE_INT(CollInquiryResult); DEFINE_CURRENCY(StrikeCurrency); DEFINE_NUMINGROUP(NoNested3PartyIDs); DEFINE_STRING(Nested3PartyID); DEFINE_CHAR(Nested3PartyIDSource); DEFINE_INT(Nested3PartyRole); DEFINE_NUMINGROUP(NoNested3PartySubIDs); DEFINE_STRING(Nested3PartySubID); DEFINE_INT(Nested3PartySubIDType); DEFINE_MONTHYEAR(LegContractSettlMonth); DEFINE_LOCALMKTDATE(LegInterestAccrualDate); DEFINE_STRING(ApplicationPingID); DEFINE_STRING(StreamReference); DEFINE_UTCTIMESTAMP(HstFrom); DEFINE_UTCTIMESTAMP(HstTo); DEFINE_UTCTIMESTAMP(AllHstFrom); DEFINE_UTCTIMESTAMP(AllHstTo); DEFINE_NUMINGROUP(NoBars); DEFINE_PRICE(BarHi); DEFINE_PRICE(BarLow); DEFINE_PRICE(BarOpen); DEFINE_PRICE(BarClose); DEFINE_UTCTIMESTAMP(BarTime); DEFINE_CHAR(ForexPriceType); DEFINE_STRING(MarketHistReqID); DEFINE_STRING(HstGraphPeriodID); DEFINE_STRING(FileName); DEFINE_STRING(FileId); DEFINE_STRING(AttachedFileId); DEFINE_CHAR(HstReportType); DEFINE_DATA(HstBinData); DEFINE_CHAR(HstGraphType); DEFINE_CHAR(MHstRejReason); DEFINE_INT(ChunkId); DEFINE_INT(ChunksNo); DEFINE_LENGTH(FileSize); DEFINE_STRING(AcInfReqID); DEFINE_INT(Leverage); DEFINE_AMT(Margin); DEFINE_AMT(Balance); DEFINE_AMT(Equity); DEFINE_CHAR(AccountingType); DEFINE_INT(HstReqBars); DEFINE_STRING(PosID); DEFINE_PRICE(StopLoss); DEFINE_PRICE(TakeProfit); DEFINE_CHAR(AccOrderType); DEFINE_INT(BarVolume); DEFINE_AMT(BarVolumeEx); DEFINE_CHAR(PosCloseType); DEFINE_STRING(ClosePosReqID); DEFINE_INT(ClosePosReqResult); DEFINE_INT(NotifCode); DEFINE_INT(NotifSeverity); DEFINE_INT(TotalNumMarketSnaps); DEFINE_PRICE(PosClosePrice); DEFINE_UTCTIMESTAMP(PosClosed); DEFINE_UTCTIMESTAMP(PosOpened); DEFINE_CHAR(StrmngDirection); DEFINE_INT(StrmngBufSize); DEFINE_STRING(StrmngPosID); DEFINE_BOOLEAN(EndOfStrm); DEFINE_INT(PxPrecision); DEFINE_QTY(MaxTradeVolume); DEFINE_CHAR(ProfitCalcMode); DEFINE_CHAR(MarginCalcMode); DEFINE_FLOAT(MarginHedge); DEFINE_QTY(TradeVolStep); DEFINE_INT(MarginFactor); DEFINE_STRING(ProtocolSpec); DEFINE_INT(ColorRef); DEFINE_INT(NoFiles); DEFINE_INT(FileReqRejReason); DEFINE_STRING(MDHstMetaReqID); DEFINE_INT(MDHstMetaReqResult); DEFINE_AMT(AccBalance); DEFINE_AMT(AccTrAmount); DEFINE_STRING(AccTrCurry); DEFINE_LENGTH(EncodedCommentLen); DEFINE_DATA(EncodedComment); DEFINE_INT(TradeTransRepRequestResult); DEFINE_INT(TradeTransReportType); DEFINE_INT(TradeTransReason); DEFINE_QTY(OrderLeavesQty); DEFINE_PRICE(OrderPrice); DEFINE_PRICE(OrderStopPx); DEFINE_UTCTIMESTAMP(OrdCreated); DEFINE_UTCTIMESTAMP(OrdModified); DEFINE_UTCTIMESTAMP(PosModified); DEFINE_PRICE(PosOpenReqPrice); DEFINE_PRICE(PosOpenPrice); DEFINE_QTY(PosQty); DEFINE_QTY(PosLastQty); DEFINE_QTY(PosLeavesQty); DEFINE_PRICE(PosCloseReqPrice); DEFINE_INT(LogoutReason); DEFINE_INT(PlatformTimezoneOffset); DEFINE_STRING(TickId); DEFINE_STRING(LastTickId); DEFINE_AMT(Swap); DEFINE_PERCENTAGE(AccMarginCallLevel); DEFINE_PERCENTAGE(AccStopOutLevel); DEFINE_INT(PosReportType); DEFINE_BOOLEAN(AccountValidFlag); DEFINE_BOOLEAN(InvestorLoginFlag); DEFINE_LENGTH(EncodedTagLen); DEFINE_DATA(EncodedTag); DEFINE_INT(Magic); DEFINE_PRICE(MarginRateInitial); DEFINE_PRICE(MarginRateCurrent); DEFINE_PRICE(LongPrice); DEFINE_PRICE(ShortPrice); DEFINE_STRING(ParentOrderID); DEFINE_INT(ClientQuoteHistoryVersion); DEFINE_INT(ServerQuoteHistoryVersion); DEFINE_STRING(AccountName); DEFINE_AMT(AgentCommission); DEFINE_CHAR(AgentCommType); DEFINE_CURRENCY(AgentCommCurrency); DEFINE_NUMINGROUP(NoAssets); DEFINE_AMT(AssetBalance); DEFINE_AMT(AssetTradeAmt); DEFINE_STRING(AssetCurrency); DEFINE_AMT(OpenConversionRate); DEFINE_AMT(CloseConversionRate); DEFINE_AMT(LimitsCommission); DEFINE_INT(CommChargeType); DEFINE_AMT(SwapSizeShort); DEFINE_AMT(SwapSizeLong); DEFINE_BOOLEAN(TradeEnabled); DEFINE_STRING(PlatformName); DEFINE_STRING(PlatformCompany); DEFINE_INT(SortOrder); DEFINE_INT(GroupSortOrder); DEFINE_BOOLEAN(AccountBlockedFlag); DEFINE_FLOAT(MarginFactorFractional); DEFINE_INT(CurrencySortOrder); DEFINE_INT(SettlCurrencySortOrder); DEFINE_INT(CurrencyPrecision); DEFINE_INT(SettlCurrencyPrecision); DEFINE_STRING(CurrencyReqID); DEFINE_INT(CurrencyListRequestType); DEFINE_STRING(CurrencyResponseID); DEFINE_INT(CurrencyRequestResult); DEFINE_INT(CommChargeMethod); DEFINE_INT(ActionID); DEFINE_PRICE(PosRemainingPrice); DEFINE_CHAR(PosRemainingSide); DEFINE_UTCTIMESTAMP(RegistDate); DEFINE_STRING(PosByID); DEFINE_CHAR(ParentOrderType); DEFINE_STRING(DeviceId); DEFINE_CHAR(TwoFactorReason); DEFINE_STRING(OneTimePassword); DEFINE_BOOLEAN(TwoFactorAuthFlag); DEFINE_AMT(AssetLockedAmt); DEFINE_NUMINGROUP(NoStrategyParameters); DEFINE_STRING(StrategyParameterName); DEFINE_INT(StrategyParameterType); DEFINE_STRING(StrategyParameterValue); DEFINE_STRING(HostCrossID); DEFINE_UTCTIMESTAMP(SideTimeInForce); DEFINE_INT(MDReportID); DEFINE_INT(SecurityReportID); DEFINE_STRING(SecurityStatus); DEFINE_STRING(SettleOnOpenFlag); DEFINE_FLOAT(StrikeMultiplier); DEFINE_FLOAT(StrikeValue); DEFINE_FLOAT(MinPriceIncrement); DEFINE_INT(PositionLimit); DEFINE_INT(NTPositionLimit); DEFINE_PERCENTAGE(UnderlyingAllocationPercent); DEFINE_AMT(UnderlyingCashAmount); DEFINE_STRING(UnderlyingCashType); DEFINE_INT(UnderlyingSettlementType); DEFINE_LOCALMKTDATE(QuantityDate); DEFINE_STRING(ContIntRptID); DEFINE_BOOLEAN(LateIndicator); DEFINE_STRING(InputSource); DEFINE_CHAR(SecurityUpdateAction); DEFINE_NUMINGROUP(NoExpiration); DEFINE_INT(ExpType); DEFINE_QTY(ExpQty); DEFINE_NUMINGROUP(NoUnderlyingAmounts); DEFINE_AMT(UnderlyingPayAmount); DEFINE_AMT(UnderlyingCollectAmount); DEFINE_LOCALMKTDATE(UnderlyingSettlementDate); DEFINE_STRING(UnderlyingSettlementStatus); DEFINE_STRING(SecondaryIndividualAllocID); DEFINE_STRING(LegReportID); DEFINE_PRICE(RndPx); DEFINE_INT(IndividualAllocType); DEFINE_STRING(AllocCustomerCapacity); DEFINE_STRING(TierCode); DEFINE_STRING(UnitOfMeasure); DEFINE_STRING(TimeUnit); DEFINE_STRING(UnderlyingUnitOfMeasure); DEFINE_STRING(LegUnitOfMeasure); DEFINE_STRING(UnderlyingTimeUnit); DEFINE_STRING(LegTimeUnit); DEFINE_INT(AllocMethod); DEFINE_STRING(TradeID); DEFINE_STRING(SideTradeReportID); DEFINE_STRING(SideFillStationCd); DEFINE_STRING(SideReasonCd); DEFINE_INT(SideTrdSubTyp); DEFINE_INT(SideQty); DEFINE_STRING(MessageEventSource); DEFINE_UTCTIMESTAMP(SideTrdRegTimestamp); DEFINE_INT(SideTrdRegTimestampType); DEFINE_STRING(SideTrdRegTimestampSrc); DEFINE_CHAR(AsOfIndicator); DEFINE_NUMINGROUP(NoSideTrdRegTS); DEFINE_FLOAT(LegOptionRatio); DEFINE_NUMINGROUP(NoInstrumentParties); DEFINE_STRING(InstrumentPartyID); DEFINE_QTY(TradeVolume); DEFINE_INT(MDBookType); DEFINE_STRING(MDFeedType); DEFINE_INT(MDPriceLevel); DEFINE_INT(MDOriginType); DEFINE_PRICE(FirstPx); DEFINE_FLOAT(MDEntrySpotRate); DEFINE_PRICEOFFSET(MDEntryForwardPoints); DEFINE_BOOLEAN(ManualOrderIndicator); DEFINE_BOOLEAN(CustDirectedOrder); DEFINE_STRING(ReceivedDeptID); DEFINE_MULTIPLESTRINGVALUE(CustOrderHandlingInst); DEFINE_INT(OrderHandlingInstSource); DEFINE_STRING(DeskType); DEFINE_INT(DeskTypeSource); DEFINE_MULTIPLESTRINGVALUE(DeskOrderHandlingInst); DEFINE_CHAR(ExecAckStatus); DEFINE_AMT(UnderlyingDeliveryAmount); DEFINE_AMT(UnderlyingCapValue); DEFINE_STRING(UnderlyingSettlMethod); DEFINE_STRING(SecondaryTradeID); DEFINE_STRING(FirmTradeID); DEFINE_STRING(SecondaryFirmTradeID); DEFINE_INT(CollApplType); DEFINE_QTY(UnderlyingAdjustedQuantity); DEFINE_FLOAT(UnderlyingFXRate); DEFINE_CHAR(UnderlyingFXRateCalc); DEFINE_CHAR(AllocPositionEffect); DEFINE_CHAR(DealingCapacity); DEFINE_CHAR(InstrmtAssignmentMethod); DEFINE_CHAR(InstrumentPartyIDSource); DEFINE_INT(InstrumentPartyRole); DEFINE_NUMINGROUP(NoInstrumentPartySubIDs); DEFINE_STRING(InstrumentPartySubID); DEFINE_INT(InstrumentPartySubIDType); DEFINE_STRING(PositionCurrency); DEFINE_QTY(CalculatedCcyLastQty); DEFINE_BOOLEAN(AggressorIndicator); DEFINE_NUMINGROUP(NoUndlyInstrumentParties); DEFINE_STRING(UndlyInstrumentPartyID); DEFINE_CHAR(UndlyInstrumentPartyIDSource); DEFINE_INT(UndlyInstrumentPartyRole); DEFINE_NUMINGROUP(NoUndlyInstrumentPartySubIDs); DEFINE_STRING(UndlyInstrumentPartySubID); DEFINE_INT(UndlyInstrumentPartySubIDType); DEFINE_PRICEOFFSET(BidSwapPoints); DEFINE_PRICEOFFSET(OfferSwapPoints); DEFINE_PRICEOFFSET(LegBidForwardPoints); DEFINE_PRICEOFFSET(LegOfferForwardPoints); DEFINE_PRICEOFFSET(SwapPoints); DEFINE_INT(MDQuoteType); DEFINE_PRICEOFFSET(LastSwapPoints); DEFINE_AMT(SideGrossTradeAmt); DEFINE_PRICEOFFSET(LegLastForwardPoints); DEFINE_QTY(LegCalculatedCcyLastQty); DEFINE_AMT(LegGrossTradeAmt); DEFINE_TZTIMEONLY(MaturityTime); DEFINE_STRING(RefOrderID); DEFINE_CHAR(RefOrderIDSource); DEFINE_QTY(SecondaryDisplayQty); DEFINE_CHAR(DisplayWhen); DEFINE_CHAR(DisplayMethod); DEFINE_QTY(DisplayLowQty); DEFINE_QTY(DisplayHighQty); DEFINE_QTY(DisplayMinIncr); DEFINE_QTY(RefreshQty); DEFINE_QTY(MatchIncrement); DEFINE_INT(MaxPriceLevels); DEFINE_BOOLEAN(PreTradeAnonymity); DEFINE_CHAR(PriceProtectionScope); DEFINE_CHAR(LotType); DEFINE_INT(PegPriceType); DEFINE_PRICE(PeggedRefPrice); DEFINE_STRING(PegSecurityIDSource); DEFINE_STRING(PegSecurityID); DEFINE_STRING(PegSymbol); DEFINE_STRING(PegSecurityDesc); DEFINE_CHAR(TriggerType); DEFINE_CHAR(TriggerAction); DEFINE_PRICE(TriggerPrice); DEFINE_STRING(TriggerSymbol); DEFINE_STRING(TriggerSecurityID); DEFINE_STRING(TriggerSecurityIDSource); DEFINE_STRING(TriggerSecurityDesc); DEFINE_CHAR(TriggerPriceType); DEFINE_CHAR(TriggerPriceTypeScope); DEFINE_CHAR(TriggerPriceDirection); DEFINE_PRICE(TriggerNewPrice); DEFINE_CHAR(TriggerOrderType); DEFINE_QTY(TriggerNewQty); DEFINE_STRING(TriggerTradingSessionID); DEFINE_STRING(TriggerTradingSessionSubID); DEFINE_CHAR(OrderCategory); DEFINE_NUMINGROUP(NoRootPartyIDs); DEFINE_STRING(RootPartyID); DEFINE_CHAR(RootPartyIDSource); DEFINE_INT(RootPartyRole); DEFINE_NUMINGROUP(NoRootPartySubIDs); DEFINE_STRING(RootPartySubID); DEFINE_INT(RootPartySubIDType); DEFINE_CHAR(TradeHandlingInstr); DEFINE_CHAR(OrigTradeHandlingInstr); DEFINE_LOCALMKTDATE(OrigTradeDate); DEFINE_STRING(OrigTradeID); DEFINE_STRING(OrigSecondaryTradeID); DEFINE_TZTIMESTAMP(TZTransactTime); DEFINE_CHAR(ExDestinationIDSource); DEFINE_BOOLEAN(ReportedPxDiff); DEFINE_STRING(RptSys); DEFINE_STRING(AllocClearingFeeIndicator); DEFINE_QTY(DisplayQty); DEFINE_STRING(ExchangeSpecialInstructions); DEFINE_INT(ExpirationQtyType); DEFINE_QTY(MaxTradeVol); DEFINE_NUMINGROUP(NoMDFeedTypes); DEFINE_STRING(MatchAlgorithm); DEFINE_FLOAT(MaxPriceVariation); DEFINE_INT(ImpliedMarketIndicator); DEFINE_UTCTIMESTAMP(EventTime); DEFINE_AMT(MinPriceIncrementAmount); DEFINE_QTY(UnitOfMeasureQty); DEFINE_PRICE(LowLimitPrice); DEFINE_PRICE(HighLimitPrice); DEFINE_PRICE(TradingReferencePrice); DEFINE_STRING(SecurityGroup); DEFINE_INT(LegNumber); DEFINE_INT(SettlementCycleNo); DEFINE_CURRENCY(SideCurrency); DEFINE_CURRENCY(SideSettlCurrency); DEFINE_INT(ApplExtID); DEFINE_AMT(CcyAmt); DEFINE_NUMINGROUP(NoSettlDetails); DEFINE_INT(SettlObligMode); DEFINE_STRING(SettlObligMsgID); DEFINE_STRING(SettlObligID); DEFINE_CHAR(SettlObligTransType); DEFINE_STRING(SettlObligRefID); DEFINE_CHAR(SettlObligSource); DEFINE_NUMINGROUP(NoSettlOblig); DEFINE_STRING(QuoteMsgID); DEFINE_INT(QuoteEntryStatus); DEFINE_INT(TotNoCxldQuotes); DEFINE_INT(TotNoAccQuotes); DEFINE_INT(TotNoRejQuotes); DEFINE_BOOLEAN(PrivateQuote); DEFINE_INT(RespondentType); DEFINE_INT(MDSubBookType); DEFINE_INT(SecurityTradingEvent); DEFINE_NUMINGROUP(NoStatsIndicators); DEFINE_INT(StatsType); DEFINE_NUMINGROUP(NoOfSecSizes); DEFINE_INT(MDSecSizeType); DEFINE_QTY(MDSecSize); DEFINE_STRING(ApplID); DEFINE_SEQNUM(ApplSeqNum); DEFINE_SEQNUM(ApplBegSeqNum); DEFINE_SEQNUM(ApplEndSeqNum); DEFINE_LENGTH(SecurityXMLLen); DEFINE_XMLDATA(SecurityXML); DEFINE_STRING(SecurityXMLSchema); DEFINE_BOOLEAN(RefreshIndicator); DEFINE_FLOAT(Volatility); DEFINE_FLOAT(TimeToExpiration); DEFINE_FLOAT(RiskFreeRate); DEFINE_STRING(PriceUnitOfMeasure); DEFINE_QTY(PriceUnitOfMeasureQty); DEFINE_CHAR(SettlMethod); DEFINE_INT(ExerciseStyle); DEFINE_AMT(OptPayAmount); DEFINE_STRING(PriceQuoteMethod); DEFINE_STRING(FuturesValuationMethod); DEFINE_INT(ListMethod); DEFINE_PRICE(CapPrice); DEFINE_PRICE(FloorPrice); DEFINE_NUMINGROUP(NoStrikeRules); DEFINE_PRICE(StartStrikePxRange); DEFINE_PRICE(EndStrikePxRange); DEFINE_FLOAT(StrikeIncrement); DEFINE_NUMINGROUP(NoTickRules); DEFINE_PRICE(StartTickPriceRange); DEFINE_PRICE(EndTickPriceRange); DEFINE_PRICE(TickIncrement); DEFINE_INT(TickRuleType); DEFINE_INT(NestedInstrAttribType); DEFINE_STRING(NestedInstrAttribValue); DEFINE_TZTIMEONLY(LegMaturityTime); DEFINE_TZTIMEONLY(UnderlyingMaturityTime); DEFINE_STRING(DerivativeSymbol); DEFINE_STRING(DerivativeSymbolSfx); DEFINE_STRING(DerivativeSecurityID); DEFINE_STRING(DerivativeSecurityIDSource); DEFINE_NUMINGROUP(NoDerivativeSecurityAltID); DEFINE_STRING(DerivativeSecurityAltID); DEFINE_STRING(DerivativeSecurityAltIDSource); DEFINE_PRICE(SecondaryLowLimitPrice); DEFINE_STRING(MaturityRuleID); DEFINE_STRING(StrikeRuleID); DEFINE_QTY(LegUnitOfMeasureQty); DEFINE_AMT(DerivativeOptPayAmount); DEFINE_MONTHYEAR(EndMaturityMonthYear); DEFINE_STRING(ProductComplex); DEFINE_STRING(DerivativeProductComplex); DEFINE_INT(MaturityMonthYearIncrement); DEFINE_PRICE(SecondaryHighLimitPrice); DEFINE_QTY(MinLotSize); DEFINE_NUMINGROUP(NoExecInstRules); DEFINE_NUMINGROUP(NoLotTypeRules); DEFINE_NUMINGROUP(NoMatchRules); DEFINE_NUMINGROUP(NoMaturityRules); DEFINE_NUMINGROUP(NoOrdTypeRules); DEFINE_NUMINGROUP(NoTimeInForceRules); DEFINE_PRICE(SecondaryTradingReferencePrice); DEFINE_MONTHYEAR(StartMaturityMonthYear); DEFINE_BOOLEAN(FlexProductEligibilityIndicator); DEFINE_BOOLEAN(DerivFlexProductEligibilityIndicator); DEFINE_BOOLEAN(FlexibleIndicator); DEFINE_CURRENCY(TradingCurrency); DEFINE_INT(DerivativeProduct); DEFINE_STRING(DerivativeSecurityGroup); DEFINE_STRING(DerivativeCFICode); DEFINE_STRING(DerivativeSecurityType); DEFINE_STRING(DerivativeSecuritySubType); DEFINE_MONTHYEAR(DerivativeMaturityMonthYear); DEFINE_LOCALMKTDATE(DerivativeMaturityDate); DEFINE_TZTIMEONLY(DerivativeMaturityTime); DEFINE_STRING(DerivativeSettleOnOpenFlag); DEFINE_CHAR(DerivativeInstrmtAssignmentMethod); DEFINE_STRING(DerivativeSecurityStatus); DEFINE_STRING(DerivativeInstrRegistry); DEFINE_COUNTRY(DerivativeCountryOfIssue); DEFINE_STRING(DerivativeStateOrProvinceOfIssue); DEFINE_STRING(DerivativeLocaleOfIssue); DEFINE_PRICE(DerivativeStrikePrice); DEFINE_CURRENCY(DerivativeStrikeCurrency); DEFINE_FLOAT(DerivativeStrikeMultiplier); DEFINE_FLOAT(DerivativeStrikeValue); DEFINE_CHAR(DerivativeOptAttribute); DEFINE_FLOAT(DerivativeContractMultiplier); DEFINE_FLOAT(DerivativeMinPriceIncrement); DEFINE_AMT(DerivativeMinPriceIncrementAmount); DEFINE_STRING(DerivativeUnitOfMeasure); DEFINE_QTY(DerivativeUnitOfMeasureQty); DEFINE_STRING(DerivativeTimeUnit); DEFINE_EXCHANGE(DerivativeSecurityExchange); DEFINE_INT(DerivativePositionLimit); DEFINE_INT(DerivativeNTPositionLimit); DEFINE_STRING(DerivativeIssuer); DEFINE_LOCALMKTDATE(DerivativeIssueDate); DEFINE_LENGTH(DerivativeEncodedIssuerLen); DEFINE_DATA(DerivativeEncodedIssuer); DEFINE_STRING(DerivativeSecurityDesc); DEFINE_LENGTH(DerivativeEncodedSecurityDescLen); DEFINE_DATA(DerivativeEncodedSecurityDesc); DEFINE_LENGTH(DerivativeSecurityXMLLen); DEFINE_DATA(DerivativeSecurityXML); DEFINE_STRING(DerivativeSecurityXMLSchema); DEFINE_MONTHYEAR(DerivativeContractSettlMonth); DEFINE_NUMINGROUP(NoDerivativeEvents); DEFINE_INT(DerivativeEventType); DEFINE_LOCALMKTDATE(DerivativeEventDate); DEFINE_UTCTIMESTAMP(DerivativeEventTime); DEFINE_PRICE(DerivativeEventPx); DEFINE_STRING(DerivativeEventText); DEFINE_NUMINGROUP(NoDerivativeInstrumentParties); DEFINE_STRING(DerivativeInstrumentPartyID); DEFINE_STRING(DerivativeInstrumentPartyIDSource); DEFINE_INT(DerivativeInstrumentPartyRole); DEFINE_NUMINGROUP(NoDerivativeInstrumentPartySubIDs); DEFINE_STRING(DerivativeInstrumentPartySubID); DEFINE_INT(DerivativeInstrumentPartySubIDType); DEFINE_CHAR(DerivativeExerciseStyle); DEFINE_STRING(MarketSegmentID); DEFINE_EXCHANGE(MarketID); DEFINE_INT(MaturityMonthYearIncrementUnits); DEFINE_INT(MaturityMonthYearFormat); DEFINE_INT(StrikeExerciseStyle); DEFINE_INT(SecondaryPriceLimitType); DEFINE_INT(PriceLimitType); DEFINE_INT(DerivativeSecurityListRequestType); DEFINE_CHAR(ExecInstValue); DEFINE_NUMINGROUP(NoTradingSessionRules); DEFINE_NUMINGROUP(NoMarketSegments); DEFINE_NUMINGROUP(NoDerivativeInstrAttrib); DEFINE_NUMINGROUP(NoNestedInstrAttrib); DEFINE_INT(DerivativeInstrAttribType); DEFINE_STRING(DerivativeInstrAttribValue); DEFINE_STRING(DerivativePriceUnitOfMeasure); DEFINE_QTY(DerivativePriceUnitOfMeasureQty); DEFINE_CHAR(DerivativeSettlMethod); DEFINE_STRING(DerivativePriceQuoteMethod); DEFINE_STRING(DerivativeFuturesValuationMethod); DEFINE_INT(DerivativeListMethod); DEFINE_PRICE(DerivativeCapPrice); DEFINE_PRICE(DerivativeFloorPrice); DEFINE_INT(DerivativePutOrCall); DEFINE_CHAR(ListUpdateAction); DEFINE_STRING(ParentMktSegmID); DEFINE_STRING(TradingSessionDesc); DEFINE_CHAR(TradSesUpdateAction); DEFINE_STRING(RejectText); DEFINE_FLOAT(FeeMultiplier); DEFINE_STRING(UnderlyingLegSymbol); DEFINE_STRING(UnderlyingLegSymbolSfx); DEFINE_STRING(UnderlyingLegSecurityID); DEFINE_STRING(UnderlyingLegSecurityIDSource); DEFINE_NUMINGROUP(NoUnderlyingLegSecurityAltID); DEFINE_STRING(UnderlyingLegSecurityAltID); DEFINE_STRING(UnderlyingLegSecurityAltIDSource); DEFINE_STRING(UnderlyingLegSecurityType); DEFINE_STRING(UnderlyingLegSecuritySubType); DEFINE_MONTHYEAR(UnderlyingLegMaturityMonthYear); DEFINE_PRICE(UnderlyingLegStrikePrice); DEFINE_STRING(UnderlyingLegSecurityExchange); DEFINE_NUMINGROUP(NoOfLegUnderlyings); DEFINE_INT(UnderlyingLegPutOrCall); DEFINE_STRING(UnderlyingLegCFICode); DEFINE_LOCALMKTDATE(UnderlyingLegMaturityDate); DEFINE_STRING(ApplReqID); DEFINE_INT(ApplReqType); DEFINE_INT(ApplResponseType); DEFINE_INT(ApplTotalMessageCount); DEFINE_SEQNUM(ApplLastSeqNum); DEFINE_NUMINGROUP(NoApplIDs); DEFINE_BOOLEAN(ApplResendFlag); DEFINE_STRING(ApplResponseID); DEFINE_INT(ApplResponseError); DEFINE_STRING(RefApplID); DEFINE_STRING(ApplReportID); DEFINE_SEQNUM(RefApplLastSeqNum); DEFINE_INT(LegPutOrCall); DEFINE_LENGTH(EncodedSymbolLen); DEFINE_DATA(EncodedSymbol); DEFINE_INT(TotNoFills); DEFINE_NUMINGROUP(NoFills); DEFINE_STRING(FillExecID); DEFINE_PRICE(FillPx); DEFINE_QTY(FillQty); DEFINE_STRING(LegAllocID); DEFINE_CURRENCY(LegAllocSettlCurrency); DEFINE_INT(TradSesEvent); DEFINE_STRING(MassActionReportID); DEFINE_NUMINGROUP(NoNotAffectedOrders); DEFINE_STRING(NotAffectedOrderID); DEFINE_STRING(NotAffOrigClOrdID); DEFINE_INT(MassActionType); DEFINE_INT(MassActionScope); DEFINE_INT(MassActionResponse); DEFINE_INT(MassActionRejectReason); DEFINE_INT(MultilegModel); DEFINE_INT(MultilegPriceMethod); DEFINE_FLOAT(LegVolatility); DEFINE_PERCENTAGE(DividendYield); DEFINE_PERCENTAGE(LegDividendYield); DEFINE_FLOAT(CurrencyRatio); DEFINE_FLOAT(LegCurrencyRatio); DEFINE_MULTIPLECHARVALUE(LegExecInst); DEFINE_INT(ContingencyType); DEFINE_INT(ListRejectReason); DEFINE_NUMINGROUP(NoTrdRepIndicators); DEFINE_INT(TrdRepPartyRole); DEFINE_BOOLEAN(TrdRepIndicator); DEFINE_INT(TradePublishIndicator); DEFINE_CHAR(UnderlyingLegOptAttribute); DEFINE_STRING(UnderlyingLegSecurityDesc); DEFINE_STRING(MarketReqID); DEFINE_STRING(MarketReportID); DEFINE_CHAR(MarketUpdateAction); DEFINE_STRING(MarketSegmentDesc); DEFINE_LENGTH(EncodedMktSegmDescLen); DEFINE_DATA(EncodedMktSegmDesc); DEFINE_SEQNUM(ApplNewSeqNum); DEFINE_INT(EncryptedPasswordMethod); DEFINE_LENGTH(EncryptedPasswordLen); DEFINE_DATA(EncryptedPassword); DEFINE_LENGTH(EncryptedNewPasswordLen); DEFINE_DATA(EncryptedNewPassword); DEFINE_TZTIMEONLY(UnderlyingLegMaturityTime); DEFINE_INT(RefApplExtID); DEFINE_INT(DefaultApplExtID); DEFINE_STRING(DefaultCstmApplVerID); DEFINE_INT(SessionStatus); DEFINE_BOOLEAN(DefaultVerIndicator); DEFINE_INT(Nested4PartySubIDType); DEFINE_STRING(Nested4PartySubID); DEFINE_NUMINGROUP(NoNested4PartySubIDs); DEFINE_NUMINGROUP(NoNested4PartyIDs); DEFINE_STRING(Nested4PartyID); DEFINE_CHAR(Nested4PartyIDSource); DEFINE_INT(Nested4PartyRole); DEFINE_QTY(LegLastQty); DEFINE_INT(UnderlyingExerciseStyle); DEFINE_INT(LegExerciseStyle); DEFINE_STRING(LegPriceUnitOfMeasure); DEFINE_QTY(LegPriceUnitOfMeasureQty); DEFINE_QTY(UnderlyingUnitOfMeasureQty); DEFINE_STRING(UnderlyingPriceUnitOfMeasure); DEFINE_QTY(UnderlyingPriceUnitOfMeasureQty); DEFINE_INT(ApplReportType); DEFINE_INT(HaltReasonInt); DEFINE_INT(SideLastQty); DEFINE_STRING(UnderlyingInstrumentPartyID); DEFINE_CHAR(UnderlyingInstrumentPartyIDSource); DEFINE_INT(UnderlyingInstrumentPartyRole); DEFINE_STRING(UnderlyingInstrumentPartySubID); DEFINE_INT(UnderlyingInstrumentPartySubIDType); DEFINE_AMT(OptPayoutAmount); DEFINE_STRING(ValuationMethod); DEFINE_STRING(DerivativeValuationMethod); DEFINE_STRING(SideExecID); DEFINE_INT(OrderDelay); DEFINE_INT(OrderDelayUnit); DEFINE_CHAR(VenueType); DEFINE_INT(RefOrdIDReason); DEFINE_INT(OrigCustOrderCapacity); DEFINE_STRING(RefApplReqID); DEFINE_INT(ModelType); DEFINE_INT(ContractMultiplierUnit); DEFINE_INT(LegContractMultiplierUnit); DEFINE_INT(UnderlyingContractMultiplierUnit); DEFINE_INT(DerivativeContractMultiplierUnit); DEFINE_INT(FlowScheduleType); DEFINE_INT(LegFlowScheduleType); DEFINE_INT(UnderlyingFlowScheduleType); DEFINE_INT(DerivativeFlowScheduleType); DEFINE_INT(FillLiquidityInd); DEFINE_INT(SideLiquidityInd); DEFINE_NUMINGROUP(NoRateSources); DEFINE_INT(RateSource); DEFINE_INT(RateSourceType); DEFINE_STRING(ReferencePage); DEFINE_STRING(RestructuringType); DEFINE_STRING(Seniority); DEFINE_PERCENTAGE(NotionalPercentageOutstanding); DEFINE_PERCENTAGE(OriginalNotionalPercentageOutstanding); DEFINE_STRING(UnderlyingRestructuringType); DEFINE_STRING(UnderlyingSeniority); DEFINE_PERCENTAGE(UnderlyingNotionalPercentageOutstanding); DEFINE_PERCENTAGE(UnderlyingOriginalNotionalPercentageOutstanding); DEFINE_PERCENTAGE(AttachmentPoint); DEFINE_PERCENTAGE(DetachmentPoint); DEFINE_PERCENTAGE(UnderlyingAttachmentPoint); DEFINE_PERCENTAGE(UnderlyingDetachmentPoint); DEFINE_NUMINGROUP(NoTargetPartyIDs); DEFINE_STRING(TargetPartyID); DEFINE_CHAR(TargetPartyIDSource); DEFINE_INT(TargetPartyRole); DEFINE_STRING(SecurityListID); DEFINE_STRING(SecurityListRefID); DEFINE_STRING(SecurityListDesc); DEFINE_LENGTH(EncodedSecurityListDescLen); DEFINE_DATA(EncodedSecurityListDesc); DEFINE_INT(SecurityListType); DEFINE_INT(SecurityListTypeSource); DEFINE_STRING(NewsID); DEFINE_INT(NewsCategory); DEFINE_LANGUAGE(LanguageCode); DEFINE_NUMINGROUP(NoNewsRefIDs); DEFINE_STRING(NewsRefID); DEFINE_INT(NewsRefType); DEFINE_INT(StrikePriceDeterminationMethod); DEFINE_INT(StrikePriceBoundaryMethod); DEFINE_PERCENTAGE(StrikePriceBoundaryPrecision); DEFINE_INT(UnderlyingPriceDeterminationMethod); DEFINE_INT(OptPayoutType); DEFINE_NUMINGROUP(NoComplexEvents); DEFINE_INT(ComplexEventType); DEFINE_AMT(ComplexOptPayoutAmount); DEFINE_PRICE(ComplexEventPrice); DEFINE_INT(ComplexEventPriceBoundaryMethod); DEFINE_PERCENTAGE(ComplexEventPriceBoundaryPrecision); DEFINE_INT(ComplexEventPriceTimeType); DEFINE_INT(ComplexEventCondition); DEFINE_NUMINGROUP(NoComplexEventDates); DEFINE_UTCTIMESTAMP(ComplexEventStartDate); DEFINE_UTCTIMESTAMP(ComplexEventEndDate); DEFINE_NUMINGROUP(NoComplexEventTimes); DEFINE_UTCTIMEONLY(ComplexEventStartTime); DEFINE_UTCTIMEONLY(ComplexEventEndTime); DEFINE_STRING(StreamAsgnReqID); DEFINE_INT(StreamAsgnReqType); DEFINE_NUMINGROUP(NoAsgnReqs); DEFINE_STRING(MDStreamID); DEFINE_STRING(StreamAsgnRptID); DEFINE_INT(StreamAsgnRejReason); DEFINE_INT(StreamAsgnAckType); DEFINE_UTCTIMESTAMP(RelSymTransactTime); DEFINE_STRING(PartyDetailsListRequestID); DEFINE_NUMINGROUP(NoPartyListResponseTypes); DEFINE_INT(PartyListResponseType); DEFINE_NUMINGROUP(NoRequestedPartyRoles); DEFINE_INT(RequestedPartyRole); DEFINE_STRING(PartyDetailsListReportID); DEFINE_INT(PartyDetailsRequestResult); DEFINE_INT(TotNoPartyList); DEFINE_NUMINGROUP(NoPartyList); DEFINE_NUMINGROUP(NoPartyRelationships); DEFINE_INT(PartyRelationship); DEFINE_NUMINGROUP(NoPartyAltIDs); DEFINE_STRING(PartyAltID); DEFINE_CHAR(PartyAltIDSource); DEFINE_NUMINGROUP(NoPartyAltSubIDs); DEFINE_STRING(PartyAltSubID); DEFINE_INT(PartyAltSubIDType); DEFINE_NUMINGROUP(NoContextPartyIDs); DEFINE_STRING(ContextPartyID); DEFINE_CHAR(ContextPartyIDSource); DEFINE_INT(ContextPartyRole); DEFINE_NUMINGROUP(NoContextPartySubIDs); DEFINE_STRING(ContextPartySubID); DEFINE_INT(ContextPartySubIDType); DEFINE_NUMINGROUP(NoRiskLimits); DEFINE_INT(RiskLimitType); DEFINE_AMT(RiskLimitAmount); DEFINE_CURRENCY(RiskLimitCurrency); DEFINE_STRING(RiskLimitPlatform); DEFINE_NUMINGROUP(NoRiskInstruments); DEFINE_INT(RiskInstrumentOperator); DEFINE_STRING(RiskSymbol); DEFINE_STRING(RiskSymbolSfx); DEFINE_STRING(RiskSecurityID); DEFINE_STRING(RiskSecurityIDSource); DEFINE_NUMINGROUP(NoRiskSecurityAltID); DEFINE_STRING(RiskSecurityAltID); DEFINE_STRING(RiskSecurityAltIDSource); DEFINE_INT(RiskProduct); DEFINE_STRING(RiskProductComplex); DEFINE_STRING(RiskSecurityGroup); DEFINE_STRING(RiskCFICode); DEFINE_STRING(RiskSecurityType); DEFINE_STRING(RiskSecuritySubType); DEFINE_MONTHYEAR(RiskMaturityMonthYear); DEFINE_TZTIMEONLY(RiskMaturityTime); DEFINE_STRING(RiskRestructuringType); DEFINE_STRING(RiskSeniority); DEFINE_INT(RiskPutOrCall); DEFINE_BOOLEAN(RiskFlexibleIndicator); DEFINE_PERCENTAGE(RiskCouponRate); DEFINE_STRING(RiskSecurityDesc); DEFINE_STRING(RiskInstrumentSettlType); DEFINE_FLOAT(RiskInstrumentMultiplier); DEFINE_NUMINGROUP(NoRiskWarningLevels); DEFINE_PERCENTAGE(RiskWarningLevelPercent); DEFINE_STRING(RiskWarningLevelName); DEFINE_NUMINGROUP(NoRelatedPartyIDs); DEFINE_STRING(RelatedPartyID); DEFINE_CHAR(RelatedPartyIDSource); DEFINE_INT(RelatedPartyRole); DEFINE_NUMINGROUP(NoRelatedPartySubIDs); DEFINE_STRING(RelatedPartySubID); DEFINE_INT(RelatedPartySubIDType); DEFINE_NUMINGROUP(NoRelatedPartyAltIDs); DEFINE_STRING(RelatedPartyAltID); DEFINE_CHAR(RelatedPartyAltIDSource); DEFINE_NUMINGROUP(NoRelatedPartyAltSubIDs); DEFINE_STRING(RelatedPartyAltSubID); DEFINE_INT(RelatedPartyAltSubIDType); DEFINE_NUMINGROUP(NoRelatedContextPartyIDs); DEFINE_STRING(RelatedContextPartyID); DEFINE_CHAR(RelatedContextPartyIDSource); DEFINE_INT(RelatedContextPartyRole); DEFINE_NUMINGROUP(NoRelatedContextPartySubIDs); DEFINE_STRING(RelatedContextPartySubID); DEFINE_INT(RelatedContextPartySubIDType); DEFINE_NUMINGROUP(NoRelationshipRiskLimits); DEFINE_INT(RelationshipRiskLimitType); DEFINE_AMT(RelationshipRiskLimitAmount); DEFINE_CURRENCY(RelationshipRiskLimitCurrency); DEFINE_STRING(RelationshipRiskLimitPlatform); DEFINE_NUMINGROUP(NoRelationshipRiskInstruments); DEFINE_INT(RelationshipRiskInstrumentOperator); DEFINE_STRING(RelationshipRiskSymbol); DEFINE_STRING(RelationshipRiskSymbolSfx); DEFINE_STRING(RelationshipRiskSecurityID); DEFINE_STRING(RelationshipRiskSecurityIDSource); DEFINE_NUMINGROUP(NoRelationshipRiskSecurityAltID); DEFINE_STRING(RelationshipRiskSecurityAltID); DEFINE_STRING(RelationshipRiskSecurityAltIDSource); DEFINE_INT(RelationshipRiskProduct); DEFINE_STRING(RelationshipRiskProductComplex); DEFINE_STRING(RelationshipRiskSecurityGroup); DEFINE_STRING(RelationshipRiskCFICode); DEFINE_STRING(RelationshipRiskSecurityType); DEFINE_STRING(RelationshipRiskSecuritySubType); DEFINE_MONTHYEAR(RelationshipRiskMaturityMonthYear); DEFINE_TZTIMEONLY(RelationshipRiskMaturityTime); DEFINE_STRING(RelationshipRiskRestructuringType); DEFINE_STRING(RelationshipRiskSeniority); DEFINE_INT(RelationshipRiskPutOrCall); DEFINE_BOOLEAN(RelationshipRiskFlexibleIndicator); DEFINE_PERCENTAGE(RelationshipRiskCouponRate); DEFINE_EXCHANGE(RelationshipRiskSecurityExchange); DEFINE_STRING(RelationshipRiskSecurityDesc); DEFINE_STRING(RelationshipRiskInstrumentSettlType); DEFINE_FLOAT(RelationshipRiskInstrumentMultiplier); DEFINE_NUMINGROUP(NoRelationshipRiskWarningLevels); DEFINE_PERCENTAGE(RelationshipRiskWarningLevelPercent); DEFINE_STRING(RelationshipRiskWarningLevelName); DEFINE_EXCHANGE(RiskSecurityExchange); DEFINE_INT(StreamAsgnType); DEFINE_LENGTH(RelationshipRiskEncodedSecurityDescLen); DEFINE_DATA(RelationshipRiskEncodedSecurityDesc); DEFINE_LENGTH(RiskEncodedSecurityDescLen); DEFINE_DATA(RiskEncodedSecurityDesc); } #endif //FIX_FIELDS_H
[ "chronoxor@gmail.com" ]
chronoxor@gmail.com
05b2f76ade738a3eea2cdd527a453321c7b1b99f
879f743444f7887f9df3bd6bd34ceb9f6d131c1b
/code/test/time/exception_select_random.cpp
e7f24ee4e36ccede9dd79b45a77e9e68e1f97f9b
[ "BSD-3-Clause" ]
permissive
HackettJP/Mach7
4b17b8fc157d1f1c8c371db5ea2780b5dcc7c84d
949e0f1fbf5b6c725ad460137c4f08961fc78f52
refs/heads/master
2023-08-27T03:39:30.983956
2021-10-22T23:24:16
2021-10-22T23:24:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,202
cpp
// // Mach7: Pattern Matching Library for C++ // // Copyright 2011-2013, Texas A&M University. // Copyright 2014 Yuriy Solodkyy. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // * Neither the names of Mach7 project nor the names of its contributors // may be used to endorse or promote products derived from this software // without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. // IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /// /// \file /// /// This file is a part of Mach7 library test suite. /// /// \author Yuriy Solodkyy <yuriy.solodkyy@gmail.com> /// /// \see https://parasol.tamu.edu/mach7/ /// \see https://github.com/solodon4/Mach7 /// \see https://github.com/solodon4/SELL /// #include "testshape.hpp" #include "testutils.hpp" #include <mach7/match.hpp> //------------------------------------------------------------------------------ template <size_t N> struct shape_kind : OtherBase, Shape { void accept(ShapeVisitor&) const; void raise() const { throw *this; } }; //------------------------------------------------------------------------------ struct ShapeVisitor { #define FOR_EACH_MAX NUMBER_OF_DERIVED-1 #define FOR_EACH_N(N) virtual void visit(const shape_kind<N>&) {} #include "loop_over_numbers.hpp" #undef FOR_EACH_N #undef FOR_EACH_MAX }; //------------------------------------------------------------------------------ template <size_t N> void shape_kind<N>::accept(ShapeVisitor& v) const { v.visit(*this); } //------------------------------------------------------------------------------ namespace mch ///< Mach7 library namespace { template <> struct bindings<Shape> { RS(Shape::raise); }; } // of namespace mch //------------------------------------------------------------------------------ #if 1 XTL_TIMED_FUNC_BEGIN size_t do_match(const Shape& s, size_t) { /// \note Unlike the rest of our Match statements, MatchE does not allow {} /// around the case clauses. MatchE(s) { #define FOR_EACH_MAX NUMBER_OF_DERIVED-1 #define FOR_EACH_N(N) CaseE(shape_kind<N>) return N; #include "loop_over_numbers.hpp" #undef FOR_EACH_N #undef FOR_EACH_MAX } EndMatchE return invalid; } XTL_TIMED_FUNC_END #else #error No preprocessed version provided #endif //------------------------------------------------------------------------------ XTL_TIMED_FUNC_BEGIN size_t do_visit(const Shape& s, size_t) { struct Visitor : ShapeVisitor { #define FOR_EACH_MAX NUMBER_OF_DERIVED-1 #define FOR_EACH_N(N) virtual void visit(const shape_kind<N>&) { result = N; } #include "loop_over_numbers.hpp" #undef FOR_EACH_N #undef FOR_EACH_MAX size_t result; }; Visitor v; v.result = invalid; s.accept(v); return v.result; } XTL_TIMED_FUNC_END //------------------------------------------------------------------------------ Shape* make_shape(size_t i) { switch (i % NUMBER_OF_DERIVED) { #define FOR_EACH_MAX NUMBER_OF_DERIVED-1 #define FOR_EACH_N(N) case N: return new shape_kind<N>; #include "loop_over_numbers.hpp" #undef FOR_EACH_N #undef FOR_EACH_MAX } return 0; } //------------------------------------------------------------------------------ #include "testvismat1.hpp" // Utilities for timing tests //------------------------------------------------------------------------------ int main() { using namespace mch; // Mach7's library namespace verdict pp = test_repetitive(); // verdict ps = test_sequential(); // verdict pr = test_randomized(); std::cout << "OVERALL: " << "Repetitive: " << pp << "; " // << "Sequential: " << ps << "; " // << "Random: " << pr << std::endl; } //------------------------------------------------------------------------------
[ "yuriy.solodkyy@gmail.com" ]
yuriy.solodkyy@gmail.com
50eb91c2c8c162b24995125918d23471ca3a1277
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-sesv2/source/model/CreateDeliverabilityTestReportResult.cpp
a0a65d6a0727dfc17dcf5a8b0f622a64cba496ec
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
1,409
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/sesv2/model/CreateDeliverabilityTestReportResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/UnreferencedParam.h> #include <utility> using namespace Aws::SESV2::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; CreateDeliverabilityTestReportResult::CreateDeliverabilityTestReportResult() : m_deliverabilityTestStatus(DeliverabilityTestStatus::NOT_SET) { } CreateDeliverabilityTestReportResult::CreateDeliverabilityTestReportResult(const Aws::AmazonWebServiceResult<JsonValue>& result) : m_deliverabilityTestStatus(DeliverabilityTestStatus::NOT_SET) { *this = result; } CreateDeliverabilityTestReportResult& CreateDeliverabilityTestReportResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("ReportId")) { m_reportId = jsonValue.GetString("ReportId"); } if(jsonValue.ValueExists("DeliverabilityTestStatus")) { m_deliverabilityTestStatus = DeliverabilityTestStatusMapper::GetDeliverabilityTestStatusForName(jsonValue.GetString("DeliverabilityTestStatus")); } return *this; }
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
1d40afd09ef95e99c8edfae35891577d03e32b70
84e0a9ca08eb21731d6e91e6a866f563b7f9c76c
/src/server/game_world.h
a5c0a33a545e8338754b236f944db08b4f1443d2
[]
no_license
salvoilmiosi/bomberman
351529cc8be717313d9eb834c7b2c26bf77be647
b8d0c06cdc3412488ac5352a4fd4df3412f23184
refs/heads/master
2021-01-10T22:38:52.607612
2020-08-17T02:39:59
2020-08-17T02:39:59
69,572,511
0
0
null
null
null
null
UTF-8
C++
false
false
3,247
h
#ifndef __GAME_WORLD_H__ #define __GAME_WORLD_H__ #include <SDL2/SDL.h> #include <set> #include <deque> #include <memory> #include <vector> #include <mutex> #include "game_map.h" #include "game_server.h" enum entity_type { TYPE_NONE, TYPE_PLAYER, TYPE_BOMB, TYPE_EXPLOSION, TYPE_BROKEN_WALL, TYPE_ITEM }; enum item_type { ITEM_NONE, ITEM_BOMB, ITEM_FIRE, ITEM_ROLLERBLADE, ITEM_KICK, ITEM_PUNCH, ITEM_SKULL, ITEM_FULL_FIRE, ITEM_REDBOMB, ITEM_REMOCON }; enum disease_effect { SKULL_NONE, SKULL_RAPID_PACE, SKULL_SLOW_PACE, SKULL_DIARRHEA, SKULL_LOW_POWER, SKULL_CONSTIPATION }; enum direction { DIR_UP, DIR_DOWN, DIR_LEFT, DIR_RIGHT, }; static const int COUNTDOWN_SECONDS = 4; static const uint8_t WALK_IGNORE_BOMBS = (1 << 0); static const uint8_t WALK_BLOCK_PLAYERS = (1 << 1); static const uint8_t WALK_BLOCK_ITEMS = (1 << 2); class entity { private: const entity_type type; uint16_t id; bool destroyed; protected: bool do_send_updates; class game_world &world; public: entity(class game_world &world, const entity_type type) : type(type), world(world) { static uint16_t max_id = 1; id = max_id++; destroyed = false; do_send_updates = true; } virtual ~entity() {}; virtual void tick() = 0; uint16_t getID() { return id; } const entity_type getType() { return type; } virtual const uint8_t getTileX() = 0; virtual const uint8_t getTileY() = 0; bool isNotDestroyed() { return !destroyed; } void destroy() { destroyed = true; } void writeToPacket(packet_ext &packet) { packet.writeShort(getID()); packet.writeChar(getType()); packet.writeByteArray(toByteArray()); } bool doSendUpdates() { return do_send_updates; } virtual byte_array toByteArray() = 0; }; typedef std::shared_ptr<entity> entity_ptr; class game_world { private: game_server server; std::set <entity_ptr> s_entities; std::deque <entity_ptr> ents_to_add; std::mutex entities_mutex; game_map g_map; bool round_started = false; int round_num = 0; int ticks_to_start = 0; int num_users; map_zone selected_map_zone = ZONE_RANDOM; public: game_world(); virtual ~game_world(); public: void clear(); int startServer(uint16_t port); void addBots(int num_bots) { server.addBots(num_bots); } void addEntity(entity_ptr ent); void removeEntity(entity_ptr ent); void tick(); void writeEntitiesToPacket(packet_ext &packet, bool is_add = false); void writeMapToPacket(packet_ext &packet) { g_map.writeToPacket(packet); } void sendKillMessage(player *killer, player *p); void restartGame(); bool startRound(int num_users); bool roundStarted() { return round_started; } void playWave(uint8_t sound_id) { server.sendSoundPacket(sound_id); } game_map &getMap() { return g_map; } void setZone(map_zone zone) { selected_map_zone = zone; } std::vector<entity_ptr> findEntities(int tx, int ty, entity_type type = TYPE_NONE); std::vector<std::shared_ptr<class ent_movable>> findMovables(float fx, float fy, entity_type type = TYPE_NONE); bool isWalkable(float fx, float fy, uint8_t flags = 0); uint8_t getStartPickups(); std::map<item_type, uint8_t> getStartItems(); private: void countdownEnd(); }; #endif // __GAME_WORLD_H__
[ "salvo.ilmiosi@gmail.com" ]
salvo.ilmiosi@gmail.com
560d59dce167347dd8270fb2d4499aad618d71b1
7fddeda490e54c2d547f3950c17e235a6f5f422a
/source/MNBasicLib.h
5309fef52d037508257a474ec0abff997aa0e9a3
[]
no_license
ultrano/mini_engine
eb876c9ce1da053062f75c90070936a7a93192f7
1cdb19f27acb304ec5ca24e2af94a2bf65e60068
refs/heads/master
2020-04-06T06:51:25.261276
2016-08-17T05:49:29
2016-08-17T05:49:29
31,656,993
1
0
null
null
null
null
UTF-8
C++
false
false
100
h
#ifndef _H_MNBasicLib #define _H_MNBasicLib class MNFiber; void MNBasicLib(MNFiber* fiber); #endif
[ "storypalse@gmail.com" ]
storypalse@gmail.com
50ea4b70d7482fa8302e80b3b3c608ea8bfdb3ac
3e62cb808e49c6736b000698685b959df6ffa876
/epoll/epoll_server_001.cpp
fb6c266b28a7fcf6b54526be618c83ee43d97534
[]
no_license
zybeasy/libevent_demo
5cd5ea3d9ff4ff81baab7a11021cc029aa0e6251
e2c1ac9114a1d59a248d9dda29d71836b4363d3b
refs/heads/master
2021-03-02T07:51:36.205572
2020-03-08T16:33:19
2020-03-08T16:33:19
245,849,519
0
0
null
null
null
null
UTF-8
C++
false
false
3,283
cpp
#include <iostream> #include <ctype.h> #include <string.h> #include <unistd.h> #include <arpa/inet.h> #include <sys/epoll.h> using namespace std; #define SERVER_PORT (7778) #define EPOLL_MAX_NUM (2048) #define BUFFER_MAX_LEN (4096) char buffer[BUFFER_MAX_LEN]; void str_toupper(char *str) { for(int i; i<strlen(str); ++i) str[i] = toupper(str[i]); } void f() { int listen_fd = 0; int client_fd = 0; struct sockaddr_in server_addr; struct sockaddr_in client_addr; socklen_t client_len; int epfd = 0; struct epoll_event event, *my_events; listen_fd = socket(AF_INET, SOCK_STREAM, 0); server_addr.sin_family = AF_INET; server_addr.sin_addr.s_addr = htonl(INADDR_ANY); server_addr.sin_port = htons(SERVER_PORT); bind(listen_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)); listen(listen_fd, 10); // epoll create epfd = epoll_create(EPOLL_MAX_NUM); if(epfd < 0) { perror("epoll create"); goto END; } // add listen_fd to epoll event.events = EPOLLIN; event.data.fd = listen_fd; if(epoll_ctl(epfd, EPOLL_CTL_ADD, listen_fd, &event) < 0) { perror("epoll ctl add listen_fd"); goto END; } my_events = malloc(sizeof(struct epoll_event) * EPOLL_MAX_UNM); while(1) { int active_fds_cnt = epoll_wait(epfd, my_events, EPOLL_MAX_NUM, -1); for(int i=0; i<active_fds_cnt; ++i) { if(my_events[i].data.fd == listen_fd) { client_fd = accept(listen_fd, (struct sockaddr*)&client_addr, &client_len); if(client_fd < 0) { perror("accpet"); continue; } char ip[20]; cout << "New connection [" << inet_ntop(AF_INET, &client_addr.sin_addr, ip, sizeof(ip)) << ":" << ntohs(client_addr.sin_port) << "]" << endl; event.events = EPOLLIN | EPOLLET; event.data.fd = client_fd; epoll_ctl(epfd, EPOLL_CTL_ADD, client_fd, &event); } else if(my_events[i].events & EPOLLIN) { cout << "EPOLLIN" << endl; client_fd = my_events[i].data.fd; buffer[0] = '\0'; int n = read(client_fd, buffer, 5); if(n < 0) { perror("read"); continue; } else if(n == 0) { epoll_ctl(epfd, EPOLL_CTL_DEL, client_fd, &event); close(client_fd); } else { cout << "[read]: " << buffer << endl; buffer[n] = '\0'; #if 1 str_toupper(buffer); write(client_fd, buffer, strlen(buffer)); cout << "[write]: " << buffer << endl; memset(buffer, 0, BUFFER_MAX_LEN); #endif } } else if (my_events[i].events & EPOLLOUT) { cout << "EPOLLOUT" << endl; } } } END: close(epfd); close(listen_fd); }
[ "zybeasy@163.com" ]
zybeasy@163.com
b21abf16261be888e51af87e9447e956a7bfd063
cc5eaa642b8cdd4e34537e9dc5b0c4e8104cfb1b
/Snake.h
8785f34399b921d2948370e5814b6157b2485046
[]
no_license
yardenbs/SNAKE_MATH
9bc7de2743d33649665976e10ba7153d3b7e7ac1
18ca9e6f4cbd838194119281683d14a2cb34d211
refs/heads/master
2020-06-19T21:30:16.915683
2016-12-07T11:43:06
2016-12-07T11:43:06
74,832,268
0
1
null
2016-11-27T12:45:02
2016-11-26T15:00:25
null
UTF-8
C++
false
false
812
h
#ifndef _SNAKE_H_ #define _SNAKE_H_ #include <cstring> #include "Point.h" class TheSnakesGame; class Snake { int size=3; vector<Point> body; int direction = 3; // TODO: use enum! char arrowKeys[4]; Color color; TheSnakesGame* theGame; public: Snake(int size, const Point& position, Color c, const char* keys, const int dir); //c'tor ~Snake(){ body.~vector; } //d'tor //copy c'tor void setGame(TheSnakesGame* _theGame) { theGame = _theGame; } void setArrowKeys(const char* keys) { arrowKeys[0] = keys[0]; arrowKeys[1] = keys[1]; arrowKeys[2] = keys[2]; arrowKeys[3] = keys[3]; } void setColor(Color c) { color = c; } void move(); int getDirection(char key); void setDirection(int dir) { direction = dir; } void grow(); bool Snake::isBitten(const Point& next); }; #endif
[ "yardenbs2@gmail.com" ]
yardenbs2@gmail.com
996a960ecf75d457660c91ec4193dda4332375db
60a4cdb183ec735eaee2c9954c19ea883f3bf630
/autoMalloc/baseline.cpp
8b1eb2d08b996eb191b445c8a91f1acb069e7739
[]
no_license
takhandipu/IntelliMalloc
f8c6a779311f73710fbfa68e4836f04e2735a05f
78bf10bc809549db41454e58df900acf56ce1fe5
refs/heads/master
2020-03-08T16:02:03.467381
2018-04-22T02:41:38
2018-04-22T02:41:38
128,228,419
0
0
null
null
null
null
UTF-8
C++
false
false
1,651
cpp
#include <pthread.h> #include <stdio.h> #include "matrix.h" #ifdef PADDING_DISTANCE #define DISTANCE PADDING_DISTANCE #else #define DISTANCE 1 #endif float a[SIZE][SIZE], b[SIZE][SIZE]; float c[SIZE][SIZE*DISTANCE]; struct padded { int value; int padding[15]; }; void *run(void *index) { int i = *(int *)index; int j,k; int mod = SIZE % CORE_COUNT; int number = SIZE / CORE_COUNT; int start; if(i < mod) { number += 1; start = i * number; } else { start = (i * number)+mod; } for(int l = start; l - start < number; l++) { for(j=0;j<SIZE;j++) { //int threadLocal = 0; for(k=0;k<SIZE;k++) { //c[i][j].set(a[i][k]*b[k][j]+c[i][j].get()); //c[i][j].incr(a[i][k]*b[k][j]); c[l][j*DISTANCE]+=a[l][k]*b[k][j]; } //c[l][j].value = threadLocal; } } } void printResult() { int i,j; FILE *fp = fopen("baseline.txt", "w"); for(i=0;i<SIZE;i++) { for(j=0;j<SIZE;j++) { fprintf(fp,"%d ",c[i][j*DISTANCE]); } fprintf(fp,"\n"); } fclose(fp); } int main(int argc, char *argv[]) { int i,j,k; for(i=0;i<SIZE;i++) { for(j=0;j<SIZE;j++) { a[i][j]=i+j; b[i][j]=i-j; c[i][j*DISTANCE]=0; } } //printf("%lu\n%p\n%p\n",sizeof(PaddedInt),&c[0][0],&c[0][1]); pthread_t threads[THREAD_SIZE]; //int num=0; struct padded tmp[THREAD_SIZE]; for(i=0;i<THREAD_SIZE;i++) { //Index index(i,k,k,j,i,j); tmp[i].value=i; pthread_create(&threads[i], NULL, run, &tmp[i].value); } for(i=0;i<THREAD_SIZE;i++)pthread_join(threads[i], NULL); if(argc>1)printResult(); return 0; }
[ "takhandipu@gmail.com" ]
takhandipu@gmail.com
78a3d5d71f4b23929a1c6efc850667a91d318f40
27491db9fca0c70da538d82ac8fa3d41326f64b7
/camera_calibration.cpp
4589aa745cc8d4609c7eaa6bd2151ef3d4eacb04
[]
no_license
lwc3258/calibration
1a040afb1de25c8ad7a3ed1e63fbba86d4dc622d
a41794eed2420718d580feb8ba308fbb1d274065
refs/heads/master
2020-03-24T06:31:23.069581
2019-09-10T08:41:53
2019-09-10T08:41:53
142,531,726
0
0
null
null
null
null
UTF-8
C++
false
false
21,802
cpp
#include <iostream> #include <sstream> #include <time.h> #include <stdio.h> #include <opencv2/core.hpp> #include <opencv2/core/utility.hpp> #include <opencv2/imgproc.hpp> #include <opencv2/calib3d.hpp> #include <opencv2/imgcodecs.hpp> #include <opencv2/videoio.hpp> #include <opencv2/highgui.hpp> #ifndef _CRT_SECURE_NO_WARNINGS # define _CRT_SECURE_NO_WARNINGS #endif using namespace cv; using namespace std; static void help() { cout << "This is a camera calibration sample." << endl << "Usage: calibration configurationFile" << endl << "Near the sample file you'll find the configuration file, which has detailed help of " "how to edit it. It may be any OpenCV supported file format XML/YAML." << endl; } class Settings { public: Settings() : goodInput(false) {} enum Pattern { NOT_EXISTING, CHESSBOARD, CIRCLES_GRID, ASYMMETRIC_CIRCLES_GRID }; enum InputType { INVALID, CAMERA, VIDEO_FILE, IMAGE_LIST }; void write(FileStorage& fs) const //Write serialization for this class { fs << "{" << "BoardSize_Width" << boardSize.width << "BoardSize_Height" << boardSize.height << "Square_Size" << squareSize << "Calibrate_Pattern" << patternToUse << "Calibrate_NrOfFrameToUse" << nrFrames << "Calibrate_FixAspectRatio" << aspectRatio << "Calibrate_AssumeZeroTangentialDistortion" << calibZeroTangentDist << "Calibrate_FixPrincipalPointAtTheCenter" << calibFixPrincipalPoint << "Write_DetectedFeaturePoints" << writePoints << "Write_extrinsicParameters" << writeExtrinsics << "Write_outputFileName" << outputFileName << "Show_UndistortedImage" << showUndistorsed << "Input_FlipAroundHorizontalAxis" << flipVertical << "Input_Delay" << delay << "Input" << input << "}"; } void read(const FileNode& node) //Read serialization for this class { node["BoardSize_Width" ] >> boardSize.width; node["BoardSize_Height"] >> boardSize.height; node["Calibrate_Pattern"] >> patternToUse; node["Square_Size"] >> squareSize; node["Calibrate_NrOfFrameToUse"] >> nrFrames; node["Calibrate_FixAspectRatio"] >> aspectRatio; node["Write_DetectedFeaturePoints"] >> writePoints; node["Write_extrinsicParameters"] >> writeExtrinsics; node["Write_outputFileName"] >> outputFileName; node["Calibrate_AssumeZeroTangentialDistortion"] >> calibZeroTangentDist; node["Calibrate_FixPrincipalPointAtTheCenter"] >> calibFixPrincipalPoint; node["Input_FlipAroundHorizontalAxis"] >> flipVertical; node["Show_UndistortedImage"] >> showUndistorsed; node["Input"] >> input; node["Input_Delay"] >> delay; validate(); } void validate() { goodInput = true; if (boardSize.width <= 0 || boardSize.height <= 0) { cerr << "Invalid Board size: " << boardSize.width << " " << boardSize.height << endl; goodInput = false; } if (squareSize <= 10e-6) { cerr << "Invalid square size " << squareSize << endl; goodInput = false; } if (nrFrames <= 0) { cerr << "Invalid number of frames " << nrFrames << endl; goodInput = false; } if (input.empty()) // Check for valid input inputType = INVALID; else { if (input[0] >= '0' && input[0] <= '9') { stringstream ss(input); ss >> cameraID; inputType = CAMERA; } else { if (readStringList(input, imageList)) { inputType = IMAGE_LIST; nrFrames = (nrFrames < (int)imageList.size()) ? nrFrames : (int)imageList.size(); } else inputType = VIDEO_FILE; } if (inputType == CAMERA) inputCapture.open(cameraID); if (inputType == VIDEO_FILE) inputCapture.open(input); if (inputType != IMAGE_LIST && !inputCapture.isOpened()) inputType = INVALID; } if (inputType == INVALID) { cerr << " Input does not exist: " << input; goodInput = false; } flag = 0; if(calibFixPrincipalPoint) flag |= CALIB_FIX_PRINCIPAL_POINT; if(calibZeroTangentDist) flag |= CALIB_ZERO_TANGENT_DIST; if(aspectRatio) flag |= CALIB_FIX_ASPECT_RATIO; calibrationPattern = NOT_EXISTING; if (!patternToUse.compare("CHESSBOARD")) calibrationPattern = CHESSBOARD; if (!patternToUse.compare("CIRCLES_GRID")) calibrationPattern = CIRCLES_GRID; if (!patternToUse.compare("ASYMMETRIC_CIRCLES_GRID")) calibrationPattern = ASYMMETRIC_CIRCLES_GRID; if (calibrationPattern == NOT_EXISTING) { cerr << " Camera calibration mode does not exist: " << patternToUse << endl; goodInput = false; } atImageList = 0; } Mat nextImage() { Mat result; if( inputCapture.isOpened() ) { Mat view0; inputCapture >> view0; view0.copyTo(result); } else if( atImageList < imageList.size() ) result = imread(imageList[atImageList++], IMREAD_COLOR); return result; } static bool readStringList( const string& filename, vector<string>& l ) { l.clear(); FileStorage fs(filename, FileStorage::READ); if( !fs.isOpened() ) return false; FileNode n = fs.getFirstTopLevelNode(); if( n.type() != FileNode::SEQ ) return false; FileNodeIterator it = n.begin(), it_end = n.end(); for( ; it != it_end; ++it ) l.push_back((string)*it); return true; } public: Size boardSize; // The size of the board -> Number of items by width and height Pattern calibrationPattern; // One of the Chessboard, circles, or asymmetric circle pattern float squareSize; // The size of a square in your defined unit (point, millimeter,etc). int nrFrames; // The number of frames to use from the input for calibration float aspectRatio; // The aspect ratio int delay; // In case of a video input bool writePoints; // Write detected feature points bool writeExtrinsics; // Write extrinsic parameters bool calibZeroTangentDist; // Assume zero tangential distortion bool calibFixPrincipalPoint; // Fix the principal point at the center bool flipVertical; // Flip the captured images around the horizontal axis string outputFileName; // The name of the file where to write bool showUndistorsed; // Show undistorted images after calibration string input; // The input -> int cameraID; vector<string> imageList; size_t atImageList; VideoCapture inputCapture; InputType inputType; bool goodInput; int flag; private: string patternToUse; }; static inline void read(const FileNode& node, Settings& x, const Settings& default_value = Settings()) { if(node.empty()) x = default_value; else x.read(node); } static inline void write(FileStorage& fs, const String&, const Settings& s ) { s.write(fs); } enum { DETECTION = 0, CAPTURING = 1, CALIBRATED = 2 }; bool runCalibrationAndSave(Settings& s, Size imageSize, Mat& cameraMatrix, Mat& distCoeffs, vector<vector<Point2f> > imagePoints ); //int main(int argc, char* argv[]) int run(int argc, char* argv[]) { help(); //! [file_read] Settings s; //const string inputSettingsFile = argc > 1 ? argv[1] : "default.xml"; const string inputSettingsFile = "in_VID5.xml"; FileStorage fs(inputSettingsFile, FileStorage::READ); // Read the settings if (!fs.isOpened()) { cout << "Could not open the configuration file: \"" << inputSettingsFile << "\"" << endl; return -1; } fs["Settings"] >> s; fs.release(); // close Settings file //! [file_read] //FileStorage fout("settings.yml", FileStorage::WRITE); // write config as YAML //fout << "Settings" << s; if (!s.goodInput) { cout << "Invalid input detected. Application stopping. " << endl; return -1; } vector<vector<Point2f> > imagePoints; Mat cameraMatrix, distCoeffs; Size imageSize; int mode = s.inputType == Settings::IMAGE_LIST ? CAPTURING : DETECTION; clock_t prevTimestamp = 0; const Scalar RED(0,0,255), GREEN(0,255,0); const char ESC_KEY = 27; //! [get_input] for(;;) { Mat view; bool blinkOutput = false; view = s.nextImage(); //----- If no more image, or got enough, then stop calibration and show result ------------- if( mode == CAPTURING && imagePoints.size() >= (size_t)s.nrFrames ) { if( runCalibrationAndSave(s, imageSize, cameraMatrix, distCoeffs, imagePoints)) mode = CALIBRATED; else mode = DETECTION; } if(view.empty()) // If there are no more images stop the loop { // if calibration threshold was not reached yet, calibrate now if( mode != CALIBRATED && !imagePoints.empty() ) runCalibrationAndSave(s, imageSize, cameraMatrix, distCoeffs, imagePoints); break; } //! [get_input] imageSize = view.size(); // Format input image. if( s.flipVertical ) flip( view, view, 0 ); //! [find_pattern] vector<Point2f> pointBuf; bool found; switch( s.calibrationPattern ) // Find feature points on the input format { case Settings::CHESSBOARD: found = findChessboardCorners( view, s.boardSize, pointBuf, CALIB_CB_ADAPTIVE_THRESH | CALIB_CB_FAST_CHECK | CALIB_CB_NORMALIZE_IMAGE); break; case Settings::CIRCLES_GRID: found = findCirclesGrid( view, s.boardSize, pointBuf ); break; case Settings::ASYMMETRIC_CIRCLES_GRID: found = findCirclesGrid( view, s.boardSize, pointBuf, CALIB_CB_ASYMMETRIC_GRID ); break; default: found = false; break; } //! [find_pattern] //! [pattern_found] if ( found) // If done with success, { // improve the found corners' coordinate accuracy for chessboard if( s.calibrationPattern == Settings::CHESSBOARD) { Mat viewGray; cvtColor(view, viewGray, COLOR_BGR2GRAY); cornerSubPix( viewGray, pointBuf, Size(11,11), Size(-1,-1), TermCriteria( TermCriteria::EPS+TermCriteria::COUNT, 30, 0.1 )); } if( mode == CAPTURING && // For camera only take new samples after delay time (!s.inputCapture.isOpened() || clock() - prevTimestamp > s.delay*1e-3*CLOCKS_PER_SEC) ) { imagePoints.push_back(pointBuf); prevTimestamp = clock(); blinkOutput = s.inputCapture.isOpened(); } // Draw the corners. drawChessboardCorners( view, s.boardSize, Mat(pointBuf), found ); } //! [pattern_found] //----------------------------- Output Text ------------------------------------------------ //! [output_text] string msg = (mode == CAPTURING) ? "100/100" : mode == CALIBRATED ? "Calibrated" : "Press 'g' to start"; int baseLine = 0; Size textSize = getTextSize(msg, 1, 1, 1, &baseLine); Point textOrigin(view.cols - 2*textSize.width - 10, view.rows - 2*baseLine - 10); if( mode == CAPTURING ) { if(s.showUndistorsed) msg = format( "%d/%d Undist", (int)imagePoints.size(), s.nrFrames ); else msg = format( "%d/%d", (int)imagePoints.size(), s.nrFrames ); } putText( view, msg, textOrigin, 1, 1, mode == CALIBRATED ? GREEN : RED); if( blinkOutput ) bitwise_not(view, view); //! [output_text] //------------------------- Video capture output undistorted ------------------------------ //! [output_undistorted] if( mode == CALIBRATED && s.showUndistorsed ) { Mat temp = view.clone(); undistort(temp, view, cameraMatrix, distCoeffs); } //! [output_undistorted] //------------------------------ Show image and check for input commands ------------------- //! [await_input] imshow("Image View", view); char key = (char)waitKey(s.inputCapture.isOpened() ? 50 : s.delay); if( key == ESC_KEY ) break; if( key == 'u' && mode == CALIBRATED ) s.showUndistorsed = !s.showUndistorsed; if( s.inputCapture.isOpened() && key == 'g' ) { mode = CAPTURING; imagePoints.clear(); } //! [await_input] } // -----------------------Show the undistorted image for the image list ------------------------ //! [show_results] if( s.inputType == Settings::IMAGE_LIST && s.showUndistorsed ) { Mat view, rview, map1, map2; //initUndistortRectifyMap(cameraMatrix, distCoeffs, Mat(), // getOptimalNewCameraMatrix(cameraMatrix, distCoeffs, imageSize, 1, imageSize, 0), // imageSize, CV_16SC2, map1, map2); initUndistortRectifyMap(cameraMatrix, distCoeffs, Mat(), cameraMatrix, imageSize, CV_16SC2, map1, map2); for(size_t i = 0; i < s.imageList.size(); i++ ) { view = imread(s.imageList[i], 1); if(view.empty()) continue; remap(view, rview, map1, map2, INTER_LINEAR); imshow("Image View", rview); imwrite("undistort.bmp", rview); char c = (char)waitKey(); if( c == ESC_KEY || c == 'q' || c == 'Q' ) break; } } //! [show_results] return 0; } //! [compute_errors] static double computeReprojectionErrors( const vector<vector<Point3f> >& objectPoints, const vector<vector<Point2f> >& imagePoints, const vector<Mat>& rvecs, const vector<Mat>& tvecs, const Mat& cameraMatrix , const Mat& distCoeffs, vector<float>& perViewErrors) { vector<Point2f> imagePoints2; size_t totalPoints = 0; double totalErr = 0, err; perViewErrors.resize(objectPoints.size()); for(size_t i = 0; i < objectPoints.size(); ++i ) { projectPoints(objectPoints[i], rvecs[i], tvecs[i], cameraMatrix, distCoeffs, imagePoints2); err = norm(imagePoints[i], imagePoints2, NORM_L2); size_t n = objectPoints[i].size(); perViewErrors[i] = (float) std::sqrt(err*err/n); totalErr += err*err; totalPoints += n; } return std::sqrt(totalErr/totalPoints); } //! [compute_errors] //! [board_corners] static void calcBoardCornerPositions(Size boardSize, float squareSize, vector<Point3f>& corners, Settings::Pattern patternType /*= Settings::CHESSBOARD*/) { corners.clear(); switch(patternType) { case Settings::CHESSBOARD: case Settings::CIRCLES_GRID: for( int i = 0; i < boardSize.height; ++i ) for( int j = 0; j < boardSize.width; ++j ) corners.push_back(Point3f(j*squareSize, i*squareSize, 0)); break; case Settings::ASYMMETRIC_CIRCLES_GRID: for( int i = 0; i < boardSize.height; i++ ) for( int j = 0; j < boardSize.width; j++ ) corners.push_back(Point3f((2*j + i % 2)*squareSize, i*squareSize, 0)); break; default: break; } } //! [board_corners] static bool runCalibration( Settings& s, Size& imageSize, Mat& cameraMatrix, Mat& distCoeffs, vector<vector<Point2f> > imagePoints, vector<Mat>& rvecs, vector<Mat>& tvecs, vector<float>& reprojErrs, double& totalAvgErr) { //! [fixed_aspect] cameraMatrix = Mat::eye(3, 3, CV_64F); if( s.flag & CALIB_FIX_ASPECT_RATIO ) cameraMatrix.at<double>(0,0) = s.aspectRatio; //! [fixed_aspect] distCoeffs = Mat::zeros(8, 1, CV_64F); vector<vector<Point3f> > objectPoints(1); calcBoardCornerPositions(s.boardSize, s.squareSize, objectPoints[0], s.calibrationPattern); objectPoints.resize(imagePoints.size(),objectPoints[0]); //Find intrinsic and extrinsic camera parameters double rms = calibrateCamera(objectPoints, imagePoints, imageSize, cameraMatrix, distCoeffs, rvecs, tvecs, s.flag | CALIB_FIX_K2 | CALIB_FIX_K3 |CALIB_FIX_K4|CALIB_FIX_K5); cout << "Re-projection error reported by calibrateCamera: "<< rms << endl; bool ok = checkRange(cameraMatrix) && checkRange(distCoeffs); totalAvgErr = computeReprojectionErrors(objectPoints, imagePoints, rvecs, tvecs, cameraMatrix, distCoeffs, reprojErrs); return ok; } // Print camera parameters to the output file static void saveCameraParams( Settings& s, Size& imageSize, Mat& cameraMatrix, Mat& distCoeffs, const vector<Mat>& rvecs, const vector<Mat>& tvecs, const vector<float>& reprojErrs, const vector<vector<Point2f> >& imagePoints, double totalAvgErr ) { FileStorage fs( s.outputFileName, FileStorage::WRITE ); time_t tm; time( &tm ); //struct tm *t2 = localtime( &tm ); char buf[1024]; //strftime( buf, sizeof(buf), "%c", t2 ); fs << "calibration_time" << buf; if( !rvecs.empty() || !reprojErrs.empty() ) fs << "nr_of_frames" << (int)std::max(rvecs.size(), reprojErrs.size()); fs << "image_width" << imageSize.width; fs << "image_height" << imageSize.height; fs << "board_width" << s.boardSize.width; fs << "board_height" << s.boardSize.height; fs << "square_size" << s.squareSize; if( s.flag & CALIB_FIX_ASPECT_RATIO ) fs << "fix_aspect_ratio" << s.aspectRatio; if (s.flag) { printf(buf, "flags: %s%s%s%s", s.flag & CALIB_USE_INTRINSIC_GUESS ? " +use_intrinsic_guess" : "", s.flag & CALIB_FIX_ASPECT_RATIO ? " +fix_aspect_ratio" : "", s.flag & CALIB_FIX_PRINCIPAL_POINT ? " +fix_principal_point" : "", s.flag & CALIB_ZERO_TANGENT_DIST ? " +zero_tangent_dist" : ""); cvWriteComment(*fs, buf, 0); } fs << "flags" << s.flag; fs << "camera_matrix" << cameraMatrix; fs << "distortion_coefficients" << distCoeffs; fs << "avg_reprojection_error" << totalAvgErr; if (s.writeExtrinsics && !reprojErrs.empty()) fs << "per_view_reprojection_errors" << Mat(reprojErrs); if(s.writeExtrinsics && !rvecs.empty() && !tvecs.empty() ) { CV_Assert(rvecs[0].type() == tvecs[0].type()); Mat bigmat((int)rvecs.size(), 6, rvecs[0].type()); for( size_t i = 0; i < rvecs.size(); i++ ) { Mat r = bigmat(Range(int(i), int(i+1)), Range(0,3)); Mat t = bigmat(Range(int(i), int(i+1)), Range(3,6)); CV_Assert(rvecs[i].rows == 3 && rvecs[i].cols == 1); CV_Assert(tvecs[i].rows == 3 && tvecs[i].cols == 1); //*.t() is MatExpr (not Mat) so we can use assignment operator r = rvecs[i].t(); t = tvecs[i].t(); } //cvWriteComment( *fs, "a set of 6-tuples (rotation vector + translation vector) for each view", 0 ); fs << "extrinsic_parameters" << bigmat; } if(s.writePoints && !imagePoints.empty() ) { Mat imagePtMat((int)imagePoints.size(), (int)imagePoints[0].size(), CV_32FC2); for( size_t i = 0; i < imagePoints.size(); i++ ) { Mat r = imagePtMat.row(int(i)).reshape(2, imagePtMat.cols); Mat imgpti(imagePoints[i]); imgpti.copyTo(r); } fs << "image_points" << imagePtMat; } } //! [run_and_save] bool runCalibrationAndSave(Settings& s, Size imageSize, Mat& cameraMatrix, Mat& distCoeffs, vector<vector<Point2f> > imagePoints) { vector<Mat> rvecs, tvecs; vector<float> reprojErrs; double totalAvgErr = 0; bool ok = runCalibration(s, imageSize, cameraMatrix, distCoeffs, imagePoints, rvecs, tvecs, reprojErrs, totalAvgErr); cout << (ok ? "Calibration succeeded" : "Calibration failed") << ". avg re projection error = " << totalAvgErr << endl; if (ok) saveCameraParams(s, imageSize, cameraMatrix, distCoeffs, rvecs, tvecs, reprojErrs, imagePoints, totalAvgErr); return ok; } //! [run_and_save]
[ "vito_lee3258@163.com" ]
vito_lee3258@163.com
eed9a748ea019505c4319dd8f8da338c25953969
93db4b48741ff4ab0a3895813a6c7543e01821ea
/DS-Algo/edit_dist.py
a858e78ffcbe800d8e9ebdda37b90ffe5299094f
[]
no_license
shubham14/Coding_Contest_solutions
f884c458d3316bdafc6f1b1a52cf3e962c58bc47
1b67497f35b892c25e3d9600214fa37a738ffd40
refs/heads/master
2021-06-22T13:34:10.581101
2019-10-09T02:56:01
2019-10-09T02:56:01
131,326,516
1
0
null
null
null
null
UTF-8
C++
false
false
654
py
class Solution: def minDistance(self, word1, word2): """ :type word1: str :type word2: str :rtype: int """ m = len(word1) n = len(word2) dp = [[0 for i in range(n+1)] for j in range(m+1)] for i in range(m+1): for j in range(n+1): if i== 0: dp[i][j] = j elif j == 0: dp[i][j] = i elif word1[i-1] == word2[j-1]: dp[i][j] = dp[i-1][j-1] else: dp[i][j] = 1 + min(dp[i][j-1], dp[i-1][j], dp[i-1][j-1]) return dp[m][n]
[ "shubham.ddash@gmail.com" ]
shubham.ddash@gmail.com
42370719c45cb40efb2e4f3a811f932808f09804
be0282afa8dd436619c71d6118c9db455eaf1a29
/Intermediate/Build/Win64/Design3D/Inc/Engine/LightmassCharacterIndirectDetailVolume.generated.h
3c6322a8baf5b030f98154d54ecb1a4f7ab4aac2
[]
no_license
Quant2017/Design3D
0f915580b222af40ab911021cceef5c26375d7f9
94a22386be4aa37aa0f546354cc62958820a4bf6
refs/heads/master
2022-04-23T10:44:12.398772
2020-04-22T01:02:39
2020-04-22T01:02:39
262,966,755
1
0
null
2020-05-11T07:12:37
2020-05-11T07:12:36
null
UTF-8
C++
false
false
5,754
h
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/ObjectMacros.h" #include "UObject/ScriptMacros.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS #ifdef ENGINE_LightmassCharacterIndirectDetailVolume_generated_h #error "LightmassCharacterIndirectDetailVolume.generated.h already included, missing '#pragma once' in LightmassCharacterIndirectDetailVolume.h" #endif #define ENGINE_LightmassCharacterIndirectDetailVolume_generated_h #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_RPC_WRAPPERS #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_RPC_WRAPPERS_NO_PURE_DECLS #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_INCLASS_NO_PURE_DECLS \ private: \ static void StaticRegisterNativesALightmassCharacterIndirectDetailVolume(); \ friend struct Z_Construct_UClass_ALightmassCharacterIndirectDetailVolume_Statics; \ public: \ DECLARE_CLASS(ALightmassCharacterIndirectDetailVolume, AVolume, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), ENGINE_API) \ DECLARE_SERIALIZER(ALightmassCharacterIndirectDetailVolume) #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_INCLASS \ private: \ static void StaticRegisterNativesALightmassCharacterIndirectDetailVolume(); \ friend struct Z_Construct_UClass_ALightmassCharacterIndirectDetailVolume_Statics; \ public: \ DECLARE_CLASS(ALightmassCharacterIndirectDetailVolume, AVolume, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), ENGINE_API) \ DECLARE_SERIALIZER(ALightmassCharacterIndirectDetailVolume) #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_STANDARD_CONSTRUCTORS \ /** Standard constructor, called after all reflected properties have been initialized */ \ ENGINE_API ALightmassCharacterIndirectDetailVolume(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALightmassCharacterIndirectDetailVolume) \ DECLARE_VTABLE_PTR_HELPER_CTOR(ENGINE_API, ALightmassCharacterIndirectDetailVolume); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALightmassCharacterIndirectDetailVolume); \ private: \ /** Private move- and copy-constructors, should never be used */ \ ENGINE_API ALightmassCharacterIndirectDetailVolume(ALightmassCharacterIndirectDetailVolume&&); \ ENGINE_API ALightmassCharacterIndirectDetailVolume(const ALightmassCharacterIndirectDetailVolume&); \ public: #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_ENHANCED_CONSTRUCTORS \ /** Standard constructor, called after all reflected properties have been initialized */ \ ENGINE_API ALightmassCharacterIndirectDetailVolume(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \ private: \ /** Private move- and copy-constructors, should never be used */ \ ENGINE_API ALightmassCharacterIndirectDetailVolume(ALightmassCharacterIndirectDetailVolume&&); \ ENGINE_API ALightmassCharacterIndirectDetailVolume(const ALightmassCharacterIndirectDetailVolume&); \ public: \ DECLARE_VTABLE_PTR_HELPER_CTOR(ENGINE_API, ALightmassCharacterIndirectDetailVolume); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALightmassCharacterIndirectDetailVolume); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALightmassCharacterIndirectDetailVolume) #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_PRIVATE_PROPERTY_OFFSET #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_13_PROLOG #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_GENERATED_BODY_LEGACY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_PRIVATE_PROPERTY_OFFSET \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_RPC_WRAPPERS \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_INCLASS \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_STANDARD_CONSTRUCTORS \ public: \ PRAGMA_ENABLE_DEPRECATION_WARNINGS #define Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_GENERATED_BODY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_PRIVATE_PROPERTY_OFFSET \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_INCLASS_NO_PURE_DECLS \ Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h_16_ENHANCED_CONSTRUCTORS \ static_assert(false, "Unknown access specifier for GENERATED_BODY() macro in class LightmassCharacterIndirectDetailVolume."); \ PRAGMA_ENABLE_DEPRECATION_WARNINGS template<> ENGINE_API UClass* StaticClass<class ALightmassCharacterIndirectDetailVolume>(); #undef CURRENT_FILE_ID #define CURRENT_FILE_ID Engine_Source_Runtime_Engine_Classes_Lightmass_LightmassCharacterIndirectDetailVolume_h PRAGMA_ENABLE_DEPRECATION_WARNINGS
[ "Snake_Jenny@126.com" ]
Snake_Jenny@126.com
b761b74b6cd9a7e194681d6bf4a166d97e7dd597
6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849
/sstd_boost/sstd/libs/math/test/test_igamma_inv.hpp
b3f79d4af3a4755fb45187af932a46954340cb8b
[ "BSL-1.0" ]
permissive
KqSMea8/sstd_library
9e4e622e1b01bed5de7322c2682539400d13dd58
0fcb815f50d538517e70a788914da7fbbe786ce1
refs/heads/master
2020-05-03T21:07:01.650034
2019-04-01T00:10:47
2019-04-01T00:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,540
hpp
// Copyright John Maddock 2006. // Copyright Paul A. Bristow 2007, 2009 // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include <sstd/boost/math/concepts/real_concept.hpp> #include <sstd/boost/math/special_functions/math_fwd.hpp> #define BOOST_TEST_MAIN #include <sstd/boost/test/unit_test.hpp> #include <sstd/boost/test/results_collector.hpp> #include <sstd/boost/test/unit_test.hpp> #include <sstd/boost/test/floating_point_comparison.hpp> #include <sstd/boost/math/tools/stats.hpp> #include <sstd/boost/math/tools/test.hpp> #include <sstd/boost/math/constants/constants.hpp> #include <sstd/boost/type_traits/is_floating_point.hpp> #include <sstd/boost/array.hpp> #include "functor.hpp" #include "handle_test_result.hpp" #include "table_type.hpp" #ifndef SC_ #define SC_(x) static_cast<typename table_type<T>::type>(BOOST_JOIN(x, L)) #endif #define BOOST_CHECK_CLOSE_EX(a, b, prec, i) \ {\ unsigned int failures = boost::unit_test::results_collector.results( boost::unit_test::framework::current_test_case().p_id ).p_assertions_failed;\ BOOST_CHECK_CLOSE(a, b, prec); \ if(failures != boost::unit_test::results_collector.results( boost::unit_test::framework::current_test_case().p_id ).p_assertions_failed)\ {\ std::cerr << "Failure was at row " << i << std::endl;\ std::cerr << std::setprecision(35); \ std::cerr << "{ " << data[i][0] << " , " << data[i][1] << " , " << data[i][2];\ std::cerr << " , " << data[i][3] << " , " << data[i][4] << " , " << data[i][5] << " } " << std::endl;\ }\ } template <class Real, class T> void do_test_gamma_2(const T& data, const char* type_name, const char* test_name) { // // test gamma_p_inv(T, T) against data: // using namespace std; typedef Real value_type; std::cout << test_name << " with type " << type_name << std::endl; // // These sanity checks test for a round trip accuracy of one half // of the bits in T, unless T is type float, in which case we check // for just one decimal digit. The problem here is the sensitivity // of the functions, not their accuracy. This test data was generated // for the forward functions, which means that when it is used as // the input to the inverses then it is necessarily inexact. This rounding // of the input is what makes the data unsuitable for use as an accuracy check, // and also demonstrates that you can't in general round-trip these functions. // It is however a useful sanity check. // value_type precision = static_cast<value_type>(ldexp(1.0, 1-boost::math::policies::digits<value_type, boost::math::policies::policy<> >()/2)) * 100; if(boost::math::policies::digits<value_type, boost::math::policies::policy<> >() < 50) precision = 1; // 1% or two decimal digits, all we can hope for when the input is truncated to float for(unsigned i = 0; i < data.size(); ++i) { // // These inverse tests are thrown off if the output of the // incomplete gamma is too close to 1: basically there is insuffient // information left in the value we're using as input to the inverse // to be able to get back to the original value. // if(Real(data[i][5]) == 0) BOOST_CHECK_EQUAL(boost::math::gamma_p_inv(Real(data[i][0]), Real(data[i][5])), value_type(0)); else if((1 - Real(data[i][5]) > 0.001) && (fabs(Real(data[i][5])) > 2 * boost::math::tools::min_value<value_type>()) && (fabs(Real(data[i][5])) > 2 * boost::math::tools::min_value<double>())) { value_type inv = boost::math::gamma_p_inv(Real(data[i][0]), Real(data[i][5])); BOOST_CHECK_CLOSE_EX(Real(data[i][1]), inv, precision, i); } else if(1 == Real(data[i][5])) BOOST_CHECK_EQUAL(boost::math::gamma_p_inv(Real(data[i][0]), Real(data[i][5])), std::numeric_limits<value_type>::has_infinity ? std::numeric_limits<value_type>::infinity() : boost::math::tools::max_value<value_type>()); else { // not enough bits in our input to get back to x, but we should be in // the same ball park: value_type inv = boost::math::gamma_p_inv(Real(data[i][0]), Real(data[i][5])); BOOST_CHECK_CLOSE_EX(Real(data[i][1]), inv, 100000, i); } if(Real(data[i][3]) == 0) BOOST_CHECK_EQUAL(boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])), std::numeric_limits<value_type>::has_infinity ? std::numeric_limits<value_type>::infinity() : boost::math::tools::max_value<value_type>()); else if((1 - Real(data[i][3]) > 0.001) && (fabs(Real(data[i][3])) > 2 * boost::math::tools::min_value<value_type>())) { value_type inv = boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])); BOOST_CHECK_CLOSE_EX(Real(data[i][1]), inv, precision, i); } else if(1 == Real(data[i][3])) BOOST_CHECK_EQUAL(boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])), value_type(0)); else if(fabs(Real(data[i][3])) > 2 * boost::math::tools::min_value<value_type>()) { // not enough bits in our input to get back to x, but we should be in // the same ball park: value_type inv = boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])); BOOST_CHECK_CLOSE_EX(Real(data[i][1]), inv, 100, i); } } std::cout << std::endl; } template <class Real, class T> void do_test_gamma_inv(const T& data, const char* type_name, const char* test_name) { #if !(defined(ERROR_REPORTING_MODE) && !defined(GAMMAP_INV_FUNCTION_TO_TEST)) typedef Real value_type; typedef value_type (*pg)(value_type, value_type); #ifdef GAMMAP_INV_FUNCTION_TO_TEST pg funcp = GAMMAP_INV_FUNCTION_TO_TEST; #elif defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS) pg funcp = boost::math::gamma_p_inv<value_type, value_type>; #else pg funcp = boost::math::gamma_p_inv; #endif boost::math::tools::test_result<value_type> result; std::cout << "Testing " << test_name << " with type " << type_name << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"; // // test gamma_p_inv(T, T) against data: // result = boost::math::tools::test_hetero<Real>( data, bind_func<Real>(funcp, 0, 1), extract_result<Real>(2)); handle_test_result(result, data[result.worst()], result.worst(), type_name, "gamma_p_inv", test_name); // // test gamma_q_inv(T, T) against data: // #ifdef GAMMAQ_INV_FUNCTION_TO_TEST funcp = GAMMAQ_INV_FUNCTION_TO_TEST; #elif defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS) funcp = boost::math::gamma_q_inv<value_type, value_type>; #else funcp = boost::math::gamma_q_inv; #endif result = boost::math::tools::test_hetero<Real>( data, bind_func<Real>(funcp, 0, 1), extract_result<Real>(3)); handle_test_result(result, data[result.worst()], result.worst(), type_name, "gamma_q_inv", test_name); #endif } template <class T> void test_gamma(T, const char* name) { #if !defined(TEST_UDT) && !defined(ERROR_REPORTING_MODE) // // The actual test data is rather verbose, so it's in a separate file // // First the data for the incomplete gamma function, each // row has the following 6 entries: // Parameter a, parameter z, // Expected tgamma(a, z), Expected gamma_q(a, z) // Expected tgamma_lower(a, z), Expected gamma_p(a, z) // # include "igamma_med_data.ipp" do_test_gamma_2<T>(igamma_med_data, name, "Running round trip sanity checks on incomplete gamma medium sized values"); # include "igamma_small_data.ipp" do_test_gamma_2<T>(igamma_small_data, name, "Running round trip sanity checks on incomplete gamma small values"); # include "igamma_big_data.ipp" do_test_gamma_2<T>(igamma_big_data, name, "Running round trip sanity checks on incomplete gamma large values"); #endif # include "gamma_inv_data.ipp" do_test_gamma_inv<T>(gamma_inv_data, name, "incomplete gamma inverse(a, z) medium values"); # include "gamma_inv_big_data.ipp" do_test_gamma_inv<T>(gamma_inv_big_data, name, "incomplete gamma inverse(a, z) large values"); # include "gamma_inv_small_data.ipp" do_test_gamma_inv<T>(gamma_inv_small_data, name, "incomplete gamma inverse(a, z) small values"); } template <class T> void test_spots(T, const char* type_name) { std::cout << "Running spot checks for type " << type_name << std::endl; // // basic sanity checks, tolerance is 150 epsilon expressed as a percentage: // T tolerance = boost::math::tools::epsilon<T>() * 15000; if(tolerance < 1e-25f) tolerance = 1e-25f; // limit of test data? BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(1)/100, static_cast<T>(1.0/128)), static_cast<T>(0.35767144525455121503672919307647515332256996883787L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(1)/100, static_cast<T>(0.5)), static_cast<T>(4.4655350189103486773248562646452806745879516124613e-31L), tolerance*10); // // We can't test in this region against Mathworld's data as the results produced // by functions.wolfram.com appear to be in error, and do *not* round trip with // their own version of gamma_q. Using our output from the inverse as input to // their version of gamma_q *does* round trip however. It should be pointed out // that the functions in this area are very sensitive with nearly infinite // first derivatives, it's also questionable how useful these functions are // in this part of the domain. // //BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(1e-2), static_cast<T>(1.0-1.0/128)), static_cast<T>(3.8106736649978161389878528903698068142257930575497e-181L), tolerance); // BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(0.5), static_cast<T>(1.0/128)), static_cast<T>(3.5379794687984498627918583429482809311448951189097L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(0.5), static_cast<T>(1.0/2)), static_cast<T>(0.22746821155978637597125832348982469815821055329511L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(0.5), static_cast<T>(1.0-1.0/128)), static_cast<T>(0.000047938431649305382237483273209405461203600840052182L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10), static_cast<T>(1.0/128)), static_cast<T>(19.221865946801723949866005318845155649972164294057L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10), static_cast<T>(1.0/2)), static_cast<T>(9.6687146147141311517500637401166726067778162022664L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10), static_cast<T>(1.0-1.0/128)), static_cast<T>(3.9754602513640844712089002210120603689809432130520L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10000), static_cast<T>(1.0/128)), static_cast<T>(10243.369973939134157953734588122880006091919872879L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10000), static_cast<T>(1.0/2)), static_cast<T>(9999.6666686420474237369661574633153551436435884101L), tolerance); BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(10000), static_cast<T>(1.0-1.0/128)), static_cast<T>(9759.8597223369324083191194574874497413261589080204L), tolerance); }
[ "zhaixueqiang@hotmail.com" ]
zhaixueqiang@hotmail.com
31d4c999d554cb63c5cdbc0ae06eba4d1ec7b676
77b3051b3c5c7499c8fc3c872c82ec5af5e9fd19
/trunk/src/replaceDialog.h
e9f980dfe7799ee00494ed0479e4194ec3b1a27b
[]
no_license
lutinwood/edi
b0ca9e3f161c95492894c7bb14ecc7821ec80f15
9bdca622949ca85f610af88e9b9c3fcf21289dc1
refs/heads/master
2016-09-10T10:46:58.835444
2014-06-24T14:48:27
2014-06-24T14:48:27
38,057,205
0
0
null
null
null
null
ISO-8859-1
C++
false
false
3,397
h
/*************************************************************************** * Copyright (C) 2007 by Julien COURCELLE, Vilayvanh MANIVONG * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef REPLACEDIALOG_H #define REPLACEDIALOG_H #include <QDialog> class QCheckBox; class QLabel; class QLineEdit; class QPushButton; /** * Boîte de dialogue pour le remplacement de chaînes de caractères. * @author MANIVONG Vilayvanh et Julien Courcelle */ class ReplaceDialog : public QDialog { Q_OBJECT public: /** *Constructeur *@param parent widget parent **/ ReplaceDialog(QWidget *parent); /** Variable de recherche (avant ou après) **/ bool findBefore, findAfter; signals: /** *Signal émis lors de la recherche du mot suivant. *@param str mot à rechercher *@param cs sensibilité à la casse **/ void findNext(const QString &str, Qt::CaseSensitivity cs); /** *Signal émis lors de la recherche du mot précédent. *@param str mot à rechercher *@param cs sensibilité à la casse **/ void findPrevious(const QString &str, Qt::CaseSensitivity cs); /** *Signal émis lors du remplacement d'un mot. *@param str mot à rechercher **/ void replace(QString); private slots: /** Gère les actions lorsque l'on clique sur le bouton de recherche **/ void findClicked(); /** Gère les actions lorsque l'on clique su le bouton remplacer **/ void replaceClicked(); /** Gère l'activité du bouton de recherche **/ void enableFindButton(const QString &text); /** Gère l'activité du bouton remplacer **/ void enableReplaceButton(const QString &text); private: QLabel *m_label; QLabel *m_labelReplace; QLineEdit *m_lineEdit; QLineEdit *m_lineEditReplace; QCheckBox *m_caseCheckBox; QCheckBox *m_backwardCheckBox; QPushButton *m_findButton; QPushButton *m_replaceButton; QPushButton *m_closeButton; }; #endif
[ "thierry.forest@univ-angers.fr" ]
thierry.forest@univ-angers.fr
9c62d0fbe602b93bdbf5ef4d1059801913b438ed
776b8a0218d391617c5fe7f268ddd2bfb1e899fd
/C++/fastExpoentiation.cpp
79454637b01e34cfd5f6fbcdc13dc31c98f2bdca
[]
no_license
vikas-ukani/Hacktoberfest_2021
1278f06c6dc2f30b1ecb5bc0085c36974ae1b4b7
f3678a55adc1e77d9784b919b93072bd5c1fb662
refs/heads/main
2023-08-18T10:29:07.187116
2021-10-02T18:32:55
2021-10-02T18:32:55
412,881,303
2
0
null
2021-10-02T18:33:15
2021-10-02T18:33:14
null
UTF-8
C++
false
false
262
cpp
#include <iostream> using namespace std; int main() { int a,n; cin>>a>>n; int ans=1; while(n) { if(n&1) { ans=ans*a; cout<<ans<<endl; } n=n>>1; a=a*a; } cout<<ans<<endl; return 0; }
[ "noreply@github.com" ]
vikas-ukani.noreply@github.com
ccc0199f07953bb5e114cbd1b91b08d24202d06b
2fe439c2a32bd4b1439a9740c12b926d265f19f9
/src/thread/EngineThread.cpp
59428f8fcb7187bdb05c8b1c8a7d16b719b3b3cf
[]
no_license
Masy/cedar
a4891fa88234f0a8f78f68704593b60e94980d97
86a627f3600750dd6a48c166f60f85b1a01fe175
refs/heads/develop
2022-04-24T09:13:03.436365
2020-04-26T22:05:01
2020-04-26T22:05:01
243,739,510
0
0
null
2020-04-26T22:05:02
2020-02-28T10:46:06
C
UTF-8
C++
false
false
2,185
cpp
// // Created by masy on 06.03.20. // #include "cedar/EngineThread.hpp" using namespace cedar; EngineThread::EngineThread() : Thread("EngineThread", 20, QUEUE_BEFORE_TICK, 256) { this->m_camera = nullptr; this->m_loadedScene = nullptr; this->m_gameState = CEDAR_STATE_OFF; } EngineThread *EngineThread::getInstance() { static EngineThread *instance = new EngineThread(); return instance; } void EngineThread::onStart() { this->m_gameState = CEDAR_STATE_INITIALIZATION; if (this->m_initCallback) this->m_initCallback(); this->m_gameState = CEDAR_STATE_RUNNING; } void EngineThread::onTick(const unsigned long currentTime, const unsigned long tickCount) { if (this->m_preTickCallback) this->m_preTickCallback(currentTime, tickCount); if (this->m_loadedScene) this->m_loadedScene->update(currentTime, tickCount); if (this->m_postTickCallback) this->m_postTickCallback(currentTime, tickCount); } void EngineThread::onStop() { delete this->m_camera; if (this->m_stopCallback) this->m_stopCallback(); } void EngineThread::setInitCallback(const std::function<void()> &initCallback) { this->m_initCallback = initCallback; } void EngineThread::setPreTickCallback(const std::function<void(unsigned long, unsigned long)> &preTickCallback) { this->m_preTickCallback = preTickCallback; } void EngineThread::setPostTickCallback(const std::function<void(unsigned long, unsigned long)> &postTickCallback) { this->m_postTickCallback = postTickCallback; } void EngineThread::setStopCallback(const std::function<void()> &stopCallback) { this->m_stopCallback = stopCallback; } Camera *EngineThread::getCamera() { return this->m_camera; } void EngineThread::setCamera(Camera *camera) { if (this->m_camera != camera) delete this->m_camera; this->m_camera = camera; } Scene *EngineThread::getLoadedScene() const { return this->m_loadedScene; } Scene *EngineThread::loadScene(Scene *scene) { Scene *old = this->m_loadedScene; this->m_loadedScene = scene; return old; } unsigned int EngineThread::getGameState() const { return this->m_gameState; } void EngineThread::setGameState(const unsigned int newGameState) { this->m_gameState = newGameState; }
[ "dev@masy.pw" ]
dev@masy.pw
f819f30e452742dce7cfa74760971636f661ade2
2c36841c1c3bef06fe4a82bd87cacc64425d08c7
/Source/ThirdParty/ros2lib/sensor_msgs/include/sensor_msgs/msg/dds_connext/Imu_Support.h
c46ede516cd3f4f9bb695c739fa34e8c6225c940
[]
no_license
saratrajput/rclUE
29edba1a9b5b218264880b60844e9da2a1474602
4521c29ac66caba6eb5aa91483e75751652f91bf
refs/heads/master
2023-08-12T07:28:01.881375
2021-10-04T22:06:57
2021-10-04T22:06:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,965
h
/* WARNING: THIS FILE IS AUTO-GENERATED. DO NOT MODIFY. This file was generated from Imu_.idl using "rtiddsgen". The rtiddsgen tool is part of the RTI Connext distribution. For more information, type 'rtiddsgen -help' at a command shell or consult the RTI Connext manual. */ #ifndef Imu_Support_231392246_h #define Imu_Support_231392246_h /* Uses */ #include "Imu_.h" #ifndef ndds_cpp_h #include "ndds/ndds_cpp.h" #endif #if (defined(RTI_WIN32) || defined (RTI_WINCE)) && defined(NDDS_USER_DLL_EXPORT) class __declspec(dllimport) DDSTypeSupport; class __declspec(dllimport) DDSDataWriter; class __declspec(dllimport) DDSDataReader; #endif namespace sensor_msgs { namespace msg { namespace dds_ { /* ========================================================================= */ /** Uses: T Defines: TTypeSupport, TDataWriter, TDataReader Organized using the well-documented "Generics Pattern" for implementing generics in C and C++. */ #if (defined(RTI_WIN32) || defined (RTI_WINCE)) && defined(NDDS_USER_DLL_EXPORT) /* If the code is building on Windows, start exporting symbols. */ #undef NDDSUSERDllExport #define NDDSUSERDllExport __declspec(dllexport) #endif DDS_TYPESUPPORT_CPP( Imu_TypeSupport, Imu_); DDS_DATAWRITER_CPP(Imu_DataWriter, Imu_); DDS_DATAREADER_CPP(Imu_DataReader, Imu_Seq, Imu_); #if (defined(RTI_WIN32) || defined (RTI_WINCE)) && defined(NDDS_USER_DLL_EXPORT) /* If the code is building on Windows, stop exporting symbols. */ #undef NDDSUSERDllExport #define NDDSUSERDllExport #endif } /* namespace dds_ */ } /* namespace msg */ } /* namespace sensor_msgs */ #endif /* Imu_Support_231392246_h */
[ "christian.conti@rapyuta-robotics.com" ]
christian.conti@rapyuta-robotics.com
308dac3a7f27c430b1cf9844f3a8552094cd3298
b8553e43adea44a49ed2d28438f9360e91f5e852
/laboratory 9/code/testproject/tst_sometest.h
3d35aab5afbcb477143af1d57e59cb45fd7f9d10
[]
no_license
Vitaliy907/LaborotoryWorks
ecd7deea030bf9fe27f1bc8a144fa832ed67adac
3c41d3dfad4e9a4e1d454496b65f17ad7f5f09ff
refs/heads/master
2022-10-29T07:40:27.693010
2020-06-19T15:45:30
2020-06-19T15:45:30
269,961,279
0
1
null
null
null
null
UTF-8
C++
false
false
6,403
h
#ifndef TST_SOMETEST_H #define TST_SOMETEST_H #include <gtest/gtest.h> #include <gmock/gmock.h> #include "lockcontroller.h" using namespace testing; class MockIKeypad : public IKeypad{ public: MOCK_METHOD( bool, isActive, (), (override) ); MOCK_METHOD( void, wait, (), (override) ); MOCK_METHOD( PasswordResponse, requestPassword, (), (override) ); }; class MockILatch : public ILatch{ public: MOCK_METHOD( bool, isActive, (), (override) ); MOCK_METHOD( DoorStatus, open, (), (override) ); MOCK_METHOD( DoorStatus, close, (), (override) ); MOCK_METHOD( DoorStatus, getDoorStatus, (), (override) ); }; TEST(LaboratoryTest, Test1){ //Arrange MockIKeypad MockKeyPad; ILatch *Latch = nullptr; LockController LockerC(&MockKeyPad, Latch); //Prepare mocks EXPECT_CALL(MockKeyPad, wait()) .Times(1); //Act LockerC.wait(); } TEST(LaboratoryTest, Test2){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockLatch, getDoorStatus()) .Times(1) .WillOnce(Return(DoorStatus::CLOSE)); //Assert ASSERT_FALSE(LockerC.isDoorOpen()); } TEST(LaboratoryTest, Test3){ //Arrange IKeypad *KeyPad = nullptr; MockILatch MockLatch; LockController LockerC(KeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockLatch, getDoorStatus()) .Times(1) .WillOnce(Return(DoorStatus::OPEN)); //Assert ASSERT_TRUE(LockerC.isDoorOpen()); } TEST(LaboratoryTest, Test4){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockLatch, open()) .Times(1) .WillOnce(Return(DoorStatus::OPEN)); //Assert ASSERT_EQ(LockerC.unlockDoor(), DoorStatus::OPEN); } TEST(LaboratoryTest, Test5){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockLatch, open()) .Times(1) .WillOnce(Return(DoorStatus::OPEN)); //Assert ASSERT_EQ(LockerC.lockDoor(), DoorStatus::CLOSE); } TEST(LaboratoryTest, Test6){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockKeyPad, isActive()) .Times(1) .WillOnce(Return(1)); EXPECT_CALL(MockLatch, isActive()) .Times(1) .WillOnce(Return(1)); //Assert ASSERT_EQ(LockerC.hardWareCheck(), HardWareStatus::OK); } TEST(LaboratoryTest, Test7){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(nullptr, &MockLatch); //Prepare mocks EXPECT_CALL(MockKeyPad, isActive()) .Times(AtLeast(0)) .WillOnce(Return(1)); EXPECT_CALL(MockLatch, isActive()) .Times(AtLeast(0)) .WillOnce(Return(1)); //Assert ASSERT_EQ(LockerC.hardWareCheck(), HardWareStatus::ERROR); } TEST(LaboratoryTest, Test8){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); //Prepare mocks EXPECT_CALL(MockKeyPad, isActive()) .Times(AtLeast(0)) .WillOnce(Return(1)); EXPECT_CALL(MockLatch, isActive()) .Times(AtLeast(0)) .WillOnce(Return(0)); //Assert ASSERT_EQ(LockerC.hardWareCheck(), HardWareStatus::ERROR); } TEST(LaboratoryTest, Test9){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); PasswordResponse PRespone{ PasswordResponse::Status::OK, "0000" }; //Prepare mocks EXPECT_CALL(MockKeyPad, requestPassword) .Times(1) .WillOnce(Return(PRespone)); //Assert ASSERT_TRUE(LockerC.isCorrectPassword()); } TEST(LaboratoryTest, Test10){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); PasswordResponse PRespone{ PasswordResponse::Status::OK, "1234" }; //Prepare mocks EXPECT_CALL(MockKeyPad, requestPassword) .Times(1) .WillOnce(Return(PRespone)); //Assert ASSERT_FALSE(LockerC.isCorrectPassword()); }; TEST(LaboratoryTest, Test11){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); PasswordResponse OldPasswordResponse{ PasswordResponse::Status::OK, "0000" }; PasswordResponse NewPasswordResponse{ PasswordResponse::Status::OK, "1234" }; //Prepare mocks EXPECT_CALL(MockKeyPad, requestPassword) .Times(3) .WillOnce(Return(OldPasswordResponse)) .WillOnce(Return(NewPasswordResponse)) .WillOnce(Return(NewPasswordResponse)); //Act LockerC.resetPassword(); //Assert ASSERT_TRUE(LockerC.isCorrectPassword()); } TEST(LaboratoryTest, Test12){ //Arrange MockIKeypad MockKeyPad; MockILatch MockLatch; LockController LockerC(&MockKeyPad, &MockLatch); PasswordResponse DefautPassword{ PasswordResponse::Status::OK, "0000" }; PasswordResponse UpdatedDefaultPassword{ PasswordResponse::Status::OK, "9876" }; PasswordResponse NewPassword{ PasswordResponse::Status::OK, "1234" }; //Prepare mocks EXPECT_CALL(MockKeyPad, requestPassword) .Times(5) .WillOnce(Return(DefautPassword)) .WillOnce(Return(UpdatedDefaultPassword)) .WillOnce(Return(UpdatedDefaultPassword)) .WillOnce(Return(NewPassword)) .WillOnce(Return(NewPassword)); //Act LockerC.resetPassword(); LockerC.resetPassword(); //Assert ASSERT_TRUE(LockerC.isCorrectPassword()); } #endif // TST_SOMETEST_H
[ "vitaliy.borodaev.98@mail.ru" ]
vitaliy.borodaev.98@mail.ru
9b08a67e45b910356429575cd34bf07abcfcc237
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/oldd/eulerVortex.twitch/eulerVortex.cyclic.twitch.moving/4.21/rho
f8da962606d2fb673f597a1ca1730d1bbe98c398
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
76,385
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "4.21"; object rho; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -3 0 0 0 0 0]; internalField nonuniform List<scalar> 10000 ( 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40003 1.40004 1.40004 1.40003 1.40003 1.40002 1.40001 1.4 1.40001 1.40003 1.40008 1.40015 1.40026 1.40039 1.40056 1.40075 1.40096 1.40117 1.40138 1.40159 1.40177 1.40193 1.40205 1.40214 1.40218 1.40218 1.40214 1.40206 1.40193 1.40177 1.4016 1.4014 1.4012 1.40099 1.4008 1.40062 1.40046 1.40032 1.40021 1.40013 1.40006 1.40002 1.39999 1.39998 1.39997 1.39998 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40004 1.40005 1.40005 1.40006 1.40005 1.40004 1.40004 1.40003 1.40004 1.40007 1.40012 1.40021 1.40034 1.40051 1.40071 1.40094 1.40119 1.40145 1.4017 1.40195 1.40216 1.40235 1.40249 1.4026 1.40265 1.40265 1.40261 1.40252 1.40239 1.40221 1.40201 1.40179 1.40155 1.40131 1.40108 1.40087 1.40067 1.40049 1.40035 1.40023 1.40014 1.40007 1.40002 1.39999 1.39998 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40004 1.40006 1.40007 1.40008 1.40008 1.40008 1.40007 1.40007 1.40008 1.40012 1.40018 1.40029 1.40045 1.40065 1.4009 1.40119 1.40149 1.40181 1.40213 1.40242 1.40269 1.40291 1.40308 1.4032 1.40326 1.40326 1.40321 1.4031 1.40295 1.40275 1.40251 1.40225 1.40199 1.40171 1.40143 1.40117 1.40093 1.40072 1.40053 1.40037 1.40024 1.40015 1.40008 1.40003 1.39999 1.39998 1.39997 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40003 1.40005 1.40006 1.40008 1.4001 1.40011 1.40012 1.40012 1.40012 1.40013 1.40017 1.40025 1.40039 1.40058 1.40083 1.40114 1.4015 1.40189 1.40229 1.40268 1.40305 1.40338 1.40365 1.40386 1.404 1.40406 1.40406 1.40399 1.40386 1.40367 1.40343 1.40315 1.40285 1.40253 1.40219 1.40188 1.40157 1.40126 1.401 1.40077 1.40056 1.4004 1.40026 1.40016 1.40008 1.40003 1.4 1.39998 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40003 1.40004 1.40006 1.40009 1.40012 1.40014 1.40016 1.40016 1.40017 1.40019 1.40023 1.40033 1.40049 1.40072 1.40104 1.40143 1.40189 1.40238 1.40289 1.4034 1.40387 1.40429 1.40464 1.4049 1.40506 1.40514 1.40513 1.40503 1.40486 1.40462 1.40432 1.40399 1.40362 1.40322 1.40281 1.40245 1.40206 1.40168 1.40138 1.40108 1.40081 1.40061 1.40042 1.40028 1.40017 1.40009 1.40003 1.4 1.39998 1.39996 1.39996 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40002 1.4 1.39999 1.40002 1.40001 1.39999 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40004 1.40006 1.40009 1.40012 1.40016 1.40019 1.40021 1.40023 1.40025 1.4003 1.4004 1.40058 1.40087 1.40126 1.40176 1.40234 1.40298 1.40365 1.40431 1.40493 1.40548 1.40593 1.40627 1.40649 1.40658 1.40656 1.40643 1.4062 1.40589 1.40552 1.4051 1.40462 1.40411 1.40363 1.40318 1.40268 1.40223 1.40188 1.40146 1.40114 1.4009 1.40063 1.40045 1.4003 1.40018 1.4001 1.40004 1.4 1.39997 1.39996 1.39996 1.39996 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.4 1.40002 1.39999 1.40001 1.40002 1.4 1.39999 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40003 1.40005 1.40008 1.40012 1.40017 1.40022 1.40025 1.40028 1.4003 1.40035 1.40046 1.40066 1.40099 1.40147 1.40209 1.40283 1.40367 1.40455 1.40543 1.40625 1.40699 1.40761 1.40808 1.40838 1.40852 1.40849 1.40832 1.40801 1.4076 1.40711 1.40657 1.40596 1.40534 1.40473 1.40413 1.4035 1.40297 1.40251 1.40197 1.4016 1.40129 1.4009 1.4007 1.4005 1.40031 1.4002 1.40011 1.40004 1.4 1.39997 1.39996 1.39996 1.39996 1.39996 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40002 1.40001 1.39998 1.40003 1.40001 1.39998 1.40001 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40002 1.40004 1.40007 1.40011 1.40017 1.40023 1.40029 1.40033 1.40036 1.4004 1.4005 1.40071 1.40107 1.40163 1.40238 1.40332 1.4044 1.40557 1.40674 1.40786 1.40888 1.40973 1.4104 1.41085 1.41107 1.41107 1.41088 1.4105 1.40996 1.40932 1.40859 1.4078 1.40698 1.40618 1.40541 1.40466 1.40397 1.40331 1.40264 1.40221 1.40179 1.40126 1.40104 1.40076 1.40048 1.40037 1.40021 1.40011 1.40005 1.4 1.39998 1.39996 1.39995 1.39995 1.39996 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40003 1.39999 1.4 1.40004 1.39997 1.40001 1.40003 1.39999 1.39999 1.40002 1.40002 1.39999 1.4 1.40002 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40002 1.40003 1.40005 1.40009 1.40015 1.40022 1.40029 1.40036 1.40041 1.40045 1.40053 1.40072 1.40108 1.40169 1.40258 1.40373 1.40511 1.40662 1.40819 1.40972 1.41112 1.41233 1.4133 1.41399 1.41438 1.41447 1.41428 1.41383 1.41315 1.41231 1.41139 1.41038 1.40928 1.40819 1.40718 1.40621 1.40527 1.40441 1.40363 1.40302 1.40243 1.40179 1.4015 1.40112 1.40073 1.4006 1.40036 1.40022 1.40014 1.40005 1.40001 1.39997 1.39996 1.39995 1.39995 1.39995 1.39996 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40002 1.39998 1.40003 1.40001 1.39997 1.40003 1.40001 1.39997 1.40001 1.40003 1.39998 1.4 1.40001 1.40001 1.40001 1.4 1.39999 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40002 1.40004 1.40006 1.40011 1.40019 1.40027 1.40036 1.40044 1.4005 1.40056 1.4007 1.40103 1.40164 1.40261 1.40397 1.40566 1.4076 1.40967 1.41172 1.41366 1.41536 1.41677 1.41784 1.41852 1.4188 1.41869 1.41822 1.41743 1.41642 1.41522 1.41385 1.41242 1.41102 1.40968 1.40839 1.40711 1.40594 1.40494 1.4041 1.40337 1.40258 1.40205 1.40163 1.40108 1.40092 1.4006 1.40038 1.40028 1.40013 1.40007 1.40001 1.39998 1.39995 1.39995 1.39994 1.39995 1.39995 1.39996 1.39996 1.39997 1.39998 1.39998 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.39999 1.40003 1.39998 1.39999 1.40007 1.39994 1.40002 1.40005 1.39996 1.4 1.40003 1.40002 1.39998 1.4 1.40003 1.40001 1.39999 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40002 1.40002 1.40004 1.40008 1.40014 1.40023 1.40034 1.40044 1.40052 1.40059 1.40069 1.40093 1.40148 1.40246 1.40394 1.40593 1.40833 1.41097 1.41369 1.41631 1.41868 1.42071 1.42232 1.42345 1.42409 1.42423 1.42387 1.42306 1.42186 1.42035 1.41866 1.41687 1.41496 1.41314 1.41146 1.40974 1.40814 1.40683 1.40569 1.40464 1.4036 1.40283 1.40238 1.40162 1.40136 1.40094 1.4006 1.40049 1.40027 1.40013 1.4001 1.39999 1.39998 1.39995 1.39994 1.39994 1.39994 1.39994 1.39995 1.39996 1.39996 1.39997 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.39999 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40002 1.4 1.40001 1.39998 1.40004 1.39999 1.39997 1.40006 1.39998 1.39998 1.40003 1.4 1.40001 1.4 1.39999 1.40001 1.40003 1.39999 1.4 1.40002 1.4 1.40001 1.40003 1.40004 1.4001 1.40017 1.40027 1.4004 1.40052 1.4006 1.40068 1.40084 1.40125 1.40213 1.40362 1.4058 1.40862 1.41189 1.41537 1.41882 1.42202 1.42484 1.42718 1.42897 1.43017 1.43075 1.4307 1.43003 1.4288 1.42716 1.42516 1.42283 1.42043 1.41816 1.41578 1.4134 1.41131 1.40953 1.40795 1.40641 1.40511 1.40407 1.40333 1.40246 1.40192 1.40146 1.40093 1.40081 1.40045 1.40028 1.40025 1.40001 1.40007 1.39995 1.39996 1.39993 1.39993 1.39993 1.39993 1.39994 1.39995 1.39995 1.39996 1.39997 1.39997 1.39997 1.39998 1.39999 1.39999 1.39999 1.4 1.39999 1.40001 1.39999 1.4 1.40001 1.39998 1.40004 1.39997 1.39999 1.4001 1.39987 1.40005 1.40011 1.39984 1.40008 1.40006 1.39993 1.40003 1.4 1.4 1.40003 1.39997 1.4 1.40003 1.39998 1.40002 1.40002 1.39998 1.40002 1.40001 1.4 1.40004 1.40006 1.40011 1.4002 1.40033 1.40046 1.4006 1.40069 1.40079 1.40105 1.4017 1.40303 1.40523 1.40834 1.41219 1.41648 1.42086 1.42503 1.42878 1.432 1.43462 1.43657 1.43784 1.43838 1.43818 1.43725 1.43562 1.43339 1.4308 1.42802 1.42492 1.42172 1.41879 1.4159 1.41332 1.41119 1.40906 1.40729 1.40586 1.40474 1.40373 1.40263 1.40225 1.40145 1.40122 1.40076 1.40058 1.40031 1.40021 1.40012 1.39999 1.4 1.39993 1.39993 1.39992 1.39992 1.39992 1.39993 1.39994 1.39995 1.39995 1.39996 1.39997 1.39997 1.39997 1.39998 1.39998 1.39998 1.4 1.39999 1.39999 1.40001 1.39999 1.4 1.40001 1.39998 1.40004 1.39996 1.40002 1.40008 1.39982 1.40019 1.39999 1.39979 1.40027 1.39992 1.39988 1.40015 1.39998 1.39996 1.40005 1.39997 1.40003 1.40002 1.39996 1.40003 1.40001 1.39997 1.40003 1.40002 1.40002 1.40007 1.40013 1.40022 1.40038 1.40052 1.40066 1.40076 1.4009 1.40131 1.40233 1.40429 1.40742 1.41168 1.41673 1.4221 1.42733 1.4321 1.43625 1.43974 1.44254 1.44463 1.44599 1.44656 1.44628 1.44515 1.44324 1.44063 1.43733 1.43368 1.43009 1.42627 1.42247 1.41921 1.41608 1.41293 1.41034 1.4085 1.40689 1.40531 1.4039 1.40341 1.40227 1.40179 1.40144 1.40077 1.40064 1.40051 1.40007 1.40028 1.39994 1.40002 1.39993 1.39993 1.39992 1.39991 1.39991 1.39992 1.39993 1.39993 1.39994 1.39995 1.39996 1.39996 1.39997 1.39997 1.39998 1.39998 1.39998 1.4 1.39998 1.40001 1.40001 1.39996 1.40006 1.39996 1.39997 1.40016 1.39976 1.40016 1.40013 1.39962 1.40037 1.39996 1.39974 1.40031 1.39988 1.39991 1.4002 1.39989 1.39998 1.40009 1.39994 1.40004 1.40001 1.39995 1.40005 1.39999 1.39999 1.40005 1.40002 1.40006 1.40015 1.40024 1.40041 1.40057 1.4007 1.40082 1.40105 1.40168 1.40319 1.40599 1.41031 1.41592 1.42225 1.42861 1.43445 1.43951 1.44375 1.44725 1.45007 1.45225 1.45374 1.45447 1.45434 1.45327 1.45124 1.4484 1.44495 1.44072 1.43603 1.43163 1.42705 1.42264 1.41895 1.41551 1.41269 1.40994 1.40754 1.40595 1.40485 1.40367 1.40259 1.40221 1.40122 1.40135 1.40048 1.40057 1.40037 1.39994 1.40027 1.39985 1.40001 1.3999 1.39992 1.3999 1.39991 1.39991 1.39992 1.39992 1.39993 1.39994 1.39995 1.39995 1.39996 1.39996 1.39997 1.39998 1.39997 1.4 1.39999 1.39997 1.40003 1.39998 1.39997 1.4001 1.39986 1.4001 1.40012 1.39959 1.40054 1.39979 1.3996 1.40076 1.39956 1.39978 1.40055 1.39972 1.39987 1.40027 1.39985 1.40001 1.40009 1.39991 1.40007 1.39998 1.39997 1.40007 1.39998 1.40001 1.40006 1.40005 1.40016 1.40027 1.40044 1.4006 1.40075 1.40089 1.40124 1.40219 1.40434 1.40824 1.414 1.4211 1.42861 1.43562 1.44159 1.44642 1.45028 1.45342 1.45601 1.45812 1.45971 1.4607 1.46092 1.46034 1.45881 1.45625 1.45276 1.4486 1.44355 1.43795 1.4327 1.42732 1.42212 1.4183 1.41493 1.41184 1.40925 1.40711 1.40565 1.40368 1.40334 1.40234 1.40148 1.40123 1.40107 1.40017 1.40066 1.40004 1.40008 1.40007 1.3999 1.39995 1.3999 1.3999 1.3999 1.3999 1.3999 1.39991 1.39992 1.39993 1.39994 1.39994 1.39994 1.39996 1.39996 1.39998 1.39997 1.39997 1.40001 1.39997 1.39998 1.40006 1.39994 1.39996 1.40022 1.39962 1.40034 1.40005 1.39941 1.40084 1.39956 1.39968 1.40082 1.39938 1.39998 1.40055 1.3995 1.40006 1.4003 1.39973 1.4001 1.40004 1.39991 1.4001 1.39994 1.40002 1.40006 1.39996 1.40005 1.40008 1.40014 1.4003 1.40046 1.40061 1.40079 1.40099 1.40152 1.40288 1.40587 1.41112 1.41853 1.42709 1.43544 1.44248 1.44787 1.45177 1.45467 1.45698 1.459 1.46081 1.46238 1.4636 1.46433 1.46443 1.46378 1.46236 1.45985 1.45615 1.45145 1.44542 1.43913 1.43348 1.42774 1.42198 1.41702 1.41359 1.41125 1.40877 1.40597 1.40503 1.40385 1.40225 1.4027 1.40066 1.40137 1.40072 1.39998 1.40081 1.39966 1.40027 1.39988 1.39995 1.3999 1.39989 1.39989 1.39989 1.39989 1.3999 1.39991 1.39992 1.39992 1.39993 1.39993 1.39994 1.39996 1.39996 1.39998 1.39996 1.39997 1.40004 1.39991 1.40003 1.4001 1.39976 1.40024 1.40003 1.39948 1.4009 1.39935 1.3997 1.40125 1.39881 1.40008 1.40101 1.39902 1.40011 1.4006 1.39941 1.40018 1.40019 1.39974 1.40017 1.39994 1.4 1.40008 1.39991 1.40007 1.4 1.39998 1.40012 1.40015 1.40029 1.40049 1.40063 1.40083 1.40113 1.40189 1.40379 1.40784 1.41472 1.42386 1.43361 1.44212 1.44835 1.45228 1.45453 1.4559 1.45693 1.45798 1.45913 1.46038 1.46169 1.46306 1.46432 1.46531 1.46556 1.46486 1.46298 1.45954 1.45432 1.44691 1.43917 1.43325 1.42751 1.42191 1.41671 1.41236 1.4097 1.40767 1.40628 1.40415 1.40306 1.40235 1.40226 1.40034 1.40153 1.40019 1.40022 1.40047 1.39977 1.40015 1.39987 1.39992 1.39988 1.39988 1.39988 1.39988 1.39989 1.39989 1.39991 1.39991 1.39991 1.39993 1.39993 1.39995 1.39995 1.39998 1.39997 1.39996 1.40001 1.40001 1.39994 1.39996 1.40026 1.3995 1.40052 1.39986 1.39944 1.40115 1.39901 1.40002 1.4011 1.39866 1.40051 1.40068 1.39889 1.40051 1.40042 1.39928 1.40036 1.40007 1.3998 1.40016 1.39993 1.40007 1.39998 1.39995 1.4001 1.39997 1.40009 1.40019 1.40026 1.40048 1.40065 1.40088 1.40132 1.40238 1.40495 1.41034 1.41904 1.42982 1.44015 1.44791 1.45235 1.45401 1.45402 1.45343 1.45282 1.45249 1.4525 1.45289 1.45383 1.45541 1.4577 1.46068 1.46385 1.46624 1.46694 1.46598 1.46337 1.45794 1.44878 1.43878 1.4316 1.42639 1.42138 1.41615 1.4117 1.40969 1.4067 1.40441 1.40504 1.40146 1.40295 1.4014 1.40025 1.40178 1.3994 1.40084 1.39989 1.40003 1.39998 1.39989 1.39989 1.39987 1.39987 1.39987 1.39987 1.39988 1.39989 1.39991 1.3999 1.39992 1.39993 1.39994 1.39995 1.39996 1.39995 1.40003 1.39985 1.40015 1.39995 1.3998 1.40032 1.39987 1.39962 1.40093 1.39899 1.40023 1.40111 1.39822 1.40089 1.40089 1.39828 1.40085 1.40066 1.39876 1.40069 1.40021 1.39936 1.40048 1.39993 1.39989 1.40012 1.39994 1.40005 1.39993 1.40006 1.40004 1.40004 1.40018 1.40026 1.40045 1.40066 1.40096 1.40157 1.40299 1.40641 1.41339 1.42402 1.43603 1.44607 1.45205 1.45381 1.45263 1.45012 1.44736 1.44487 1.44281 1.44117 1.44018 1.44016 1.44145 1.44424 1.4482 1.45333 1.45938 1.46449 1.46706 1.46739 1.46641 1.46222 1.45194 1.43957 1.43 1.42407 1.42028 1.41603 1.41114 1.40838 1.40661 1.40451 1.40433 1.40087 1.40326 1.40057 1.40071 1.40119 1.3996 1.40064 1.39984 1.40003 1.39992 1.39989 1.39988 1.39986 1.39987 1.39987 1.39988 1.39988 1.3999 1.39991 1.3999 1.39993 1.39992 1.39996 1.39993 1.39998 1.39998 1.39997 1.39996 1.39998 1.40024 1.39943 1.40063 1.39972 1.39964 1.40099 1.39882 1.40058 1.40068 1.39841 1.40125 1.40023 1.39852 1.40131 1.4001 1.39876 1.40113 1.39981 1.39951 1.40057 1.39973 1.4 1.40008 1.39994 1.40005 1.4 1.40002 1.40006 1.40012 1.40024 1.40046 1.40067 1.40106 1.40191 1.40376 1.4082 1.41699 1.42945 1.442 1.45074 1.45397 1.45247 1.44828 1.44325 1.43837 1.43391 1.42979 1.42608 1.42317 1.42167 1.42248 1.42602 1.43188 1.43929 1.44762 1.45693 1.46433 1.467 1.46679 1.46667 1.46451 1.45539 1.44206 1.43021 1.42263 1.41829 1.41428 1.4104 1.40995 1.40404 1.40568 1.40306 1.40127 1.40333 1.39943 1.40193 1.4 1.40031 1.40025 1.39997 1.40001 1.39992 1.39991 1.39988 1.39988 1.39987 1.39987 1.39989 1.39988 1.3999 1.3999 1.39992 1.39993 1.39995 1.39991 1.40004 1.39981 1.40023 1.39975 1.39998 1.40025 1.3998 1.39979 1.40065 1.39913 1.40066 1.40018 1.39871 1.40156 1.39979 1.39842 1.40183 1.39983 1.39849 1.40163 1.39959 1.39919 1.40117 1.39933 1.40002 1.40033 1.39966 1.40021 1.39993 1.4 1.40009 1.3999 1.40008 1.40014 1.40018 1.40049 1.40073 1.40121 1.40232 1.40468 1.41035 1.4211 1.43498 1.44719 1.45363 1.45346 1.44855 1.44152 1.43425 1.42747 1.42104 1.41471 1.40865 1.40326 1.39958 1.39868 1.40129 1.40824 1.41908 1.43187 1.44603 1.46048 1.47045 1.47154 1.46737 1.46495 1.46299 1.45589 1.44382 1.43126 1.42193 1.41805 1.41381 1.4091 1.40905 1.40361 1.40647 1.40166 1.40205 1.40255 1.39986 1.4017 1.40002 1.40042 1.40016 1.40004 1.4 1.39994 1.39992 1.39989 1.39989 1.39988 1.39989 1.39988 1.39989 1.39993 1.39989 1.39995 1.39991 1.39998 1.39992 1.4 1.39993 1.40002 1.40015 1.39941 1.40081 1.39955 1.39977 1.40063 1.3993 1.40072 1.39963 1.39939 1.40144 1.39909 1.39928 1.40177 1.39903 1.39916 1.40179 1.39889 1.39988 1.4008 1.39929 1.40034 1.39994 1.39997 1.40011 1.39983 1.40017 1.39992 1.39999 1.40023 1.40015 1.40046 1.40082 1.40139 1.40278 1.40577 1.41286 1.42552 1.44024 1.45116 1.45453 1.45073 1.44263 1.43318 1.42412 1.41572 1.40742 1.39896 1.39046 1.38262 1.37665 1.3731 1.37242 1.37534 1.38313 1.39684 1.41487 1.43739 1.4626 1.4805 1.48338 1.4749 1.46631 1.4601 1.45313 1.44278 1.43231 1.42213 1.4187 1.41116 1.41135 1.40733 1.40415 1.4061 1.40093 1.40365 1.4007 1.40118 1.40093 1.40032 1.40039 1.40015 1.40009 1.4 1.39997 1.39993 1.39991 1.3999 1.39989 1.3999 1.3999 1.39992 1.39991 1.39993 1.39991 1.40003 1.39977 1.40026 1.39962 1.4002 1.40008 1.39977 1.39988 1.40051 1.39947 1.40047 1.39935 1.40039 1.40082 1.39846 1.40036 1.40158 1.39835 1.39968 1.40192 1.39856 1.39978 1.40139 1.39871 1.40045 1.40027 1.39957 1.40027 1.39991 1.4001 1.39987 1.40005 1.40005 1.3999 1.40023 1.40019 1.40037 1.40088 1.40162 1.40328 1.40704 1.41566 1.43001 1.44486 1.45365 1.45356 1.44626 1.43541 1.42413 1.41378 1.40406 1.39418 1.3838 1.37324 1.36368 1.35622 1.35147 1.34947 1.34929 1.3513 1.35774 1.36996 1.38926 1.41827 1.45466 1.48418 1.49457 1.48776 1.47479 1.46254 1.45136 1.44122 1.43065 1.42147 1.41946 1.41085 1.41223 1.40562 1.40574 1.40514 1.40144 1.40353 1.40076 1.40135 1.40079 1.40047 1.40038 1.4002 1.40012 1.40003 1.39999 1.39994 1.39993 1.39991 1.39992 1.39994 1.39989 1.39995 1.39989 1.39996 1.39991 1.40002 1.39985 1.40011 1.39996 1.39961 1.40087 1.39914 1.40011 1.40046 1.39984 1.40003 1.3991 1.4014 1.39993 1.39839 1.40124 1.40083 1.39815 1.40056 1.4015 1.398 1.40074 1.40074 1.3988 1.40078 1.39989 1.39979 1.40019 1.39995 1.39998 1.40001 1.40004 1.39992 1.40013 1.40019 1.40033 1.40097 1.40188 1.40384 1.4085 1.41863 1.4343 1.44856 1.45465 1.45108 1.44063 1.42762 1.41511 1.4039 1.39327 1.38215 1.37034 1.35871 1.34864 1.34122 1.33712 1.33601 1.3376 1.34084 1.34455 1.34982 1.35737 1.37072 1.39815 1.43791 1.47566 1.49547 1.49604 1.48424 1.46974 1.45344 1.44237 1.42924 1.42315 1.41712 1.41188 1.41208 1.40561 1.40688 1.4034 1.40334 1.40251 1.40143 1.40136 1.40082 1.40062 1.4004 1.40027 1.40015 1.40007 1.40002 1.39997 1.39995 1.39992 1.39995 1.39993 1.39993 1.39993 1.39998 1.39981 1.40024 1.39959 1.4003 1.39987 1.39985 1.40007 1.40034 1.3995 1.40016 1.39954 1.4016 1.3986 1.39896 1.40276 1.399 1.39806 1.40209 1.40053 1.39772 1.40132 1.40081 1.39815 1.40138 1.39973 1.39947 1.40075 1.39952 1.40013 1.40007 1.39982 1.40016 1.39997 1.39991 1.40013 1.40013 1.40029 1.40115 1.40215 1.40446 1.41012 1.42164 1.43818 1.45125 1.45439 1.4475 1.43438 1.41983 1.40658 1.395 1.3839 1.37203 1.35972 1.34819 1.33917 1.33368 1.33112 1.33034 1.33145 1.33496 1.34064 1.34746 1.35382 1.35907 1.36779 1.39041 1.42624 1.46265 1.48634 1.49314 1.48714 1.47422 1.45763 1.44544 1.42975 1.42516 1.41611 1.41385 1.41093 1.40652 1.40719 1.40341 1.40366 1.40245 1.40171 1.4014 1.40092 1.40069 1.40046 1.40031 1.40018 1.4001 1.40003 1.39999 1.39995 1.39994 1.39997 1.39991 1.39997 1.39992 1.39999 1.39983 1.40021 1.39976 1.3999 1.40054 1.39906 1.4007 1.40003 1.39991 1.39941 1.39997 1.40227 1.3973 1.39974 1.40294 1.39827 1.39861 1.40233 1.39966 1.39815 1.40201 1.39952 1.39907 1.40127 1.39921 1.40023 1.40007 1.3998 1.40034 1.39968 1.40014 1.40004 1.39976 1.40021 1.4002 1.40021 1.40134 1.40242 1.40509 1.41181 1.42458 1.44151 1.45302 1.45315 1.44324 1.42798 1.41238 1.39889 1.38741 1.37626 1.36449 1.35278 1.34297 1.33692 1.33466 1.334 1.33268 1.32963 1.32639 1.32635 1.33183 1.34263 1.35506 1.36475 1.3756 1.39539 1.42546 1.4563 1.47845 1.48556 1.48302 1.47184 1.45934 1.44596 1.43265 1.42596 1.41707 1.41481 1.41031 1.40828 1.40628 1.40437 1.40363 1.40252 1.40194 1.40141 1.40102 1.40072 1.4005 1.40033 1.40019 1.40012 1.40003 1.40001 1.4 1.39996 1.39996 1.39995 1.39991 1.40011 1.39965 1.4003 1.39979 1.40003 1.4 1.40007 1.39972 1.40018 1.40001 1.40102 1.39743 1.40139 1.4025 1.39604 1.40057 1.4032 1.39752 1.39892 1.40271 1.39897 1.39879 1.40176 1.39907 1.40004 1.40043 1.39953 1.40026 1.39984 1.40026 1.39985 1.39993 1.40018 1.3997 1.40014 1.40032 1.40017 1.40147 1.40272 1.40577 1.41353 1.42731 1.44423 1.45401 1.45121 1.43866 1.42171 1.40549 1.39221 1.38121 1.37067 1.35986 1.35013 1.34405 1.34335 1.34619 1.34848 1.3468 1.34033 1.33078 1.32127 1.31613 1.3193 1.33131 1.34858 1.36553 1.38321 1.40518 1.43115 1.45642 1.47481 1.48105 1.47894 1.46758 1.45788 1.44384 1.43436 1.42549 1.41859 1.41529 1.41029 1.40882 1.40635 1.40472 1.40372 1.40265 1.40203 1.40145 1.40106 1.40074 1.40051 1.40033 1.4002 1.4001 1.40004 1.40005 1.39997 1.39999 1.39993 1.39998 1.39991 1.40015 1.39964 1.40017 1.40017 1.39949 1.40063 1.39952 1.40018 1.39954 1.40077 1.40091 1.39662 1.40238 1.40196 1.39615 1.40087 1.4026 1.39765 1.39966 1.40206 1.39846 1.39996 1.40112 1.39895 1.40033 1.40015 1.39989 1.40005 1.39997 1.39997 1.39993 1.40014 1.39986 1.40006 1.40023 1.40013 1.40156 1.40303 1.40655 1.41524 1.42978 1.44636 1.4544 1.44887 1.434 1.41579 1.39932 1.38655 1.37651 1.36712 1.3582 1.35193 1.35133 1.35778 1.36781 1.37517 1.37628 1.37101 1.36059 1.34629 1.33014 1.31622 1.31039 1.31746 1.33666 1.36216 1.38862 1.41365 1.43643 1.45781 1.47346 1.47933 1.47568 1.46528 1.45522 1.44271 1.43363 1.42532 1.41932 1.41489 1.41109 1.40869 1.40643 1.40493 1.40367 1.40273 1.40201 1.40146 1.40104 1.40072 1.40049 1.4003 1.40019 1.40008 1.40006 1.40004 1.39997 1.39998 1.39999 1.39984 1.4002 1.39981 1.40002 1.39986 1.40024 1.39987 1.4 1.40009 1.40014 1.39859 1.40233 1.39989 1.3965 1.40325 1.40116 1.39619 1.40153 1.40215 1.39735 1.40025 1.40168 1.39855 1.40039 1.40026 1.39948 1.40052 1.39984 1.39998 1.40003 1.39982 1.40014 1.40003 1.39981 1.40012 1.40018 1.40009 1.40165 1.4034 1.40731 1.41686 1.432 1.44793 1.45439 1.44636 1.42943 1.41038 1.39385 1.38194 1.37321 1.36537 1.35932 1.35745 1.36302 1.37655 1.3926 1.40465 1.41024 1.40959 1.403 1.38987 1.37074 1.34813 1.32607 1.31059 1.30975 1.32625 1.35552 1.38993 1.42041 1.44276 1.4593 1.47047 1.47641 1.47243 1.46412 1.45226 1.44211 1.4326 1.42477 1.41952 1.41471 1.41117 1.40863 1.40639 1.40489 1.4036 1.40267 1.40194 1.40139 1.40097 1.40066 1.40043 1.40026 1.40016 1.4001 1.40006 1.4 1.4 1.39996 1.40002 1.39978 1.40028 1.39987 1.39981 1.4002 1.39979 1.40039 1.39949 1.40063 1.3998 1.39836 1.4029 1.39947 1.39691 1.40278 1.40106 1.397 1.40118 1.40131 1.39818 1.40082 1.40042 1.39894 1.40081 1.39992 1.39986 1.40001 1.3998 1.40033 1.39983 1.40005 1.40009 1.39966 1.40005 1.40027 1.40017 1.40174 1.40383 1.40801 1.41833 1.43389 1.44906 1.45416 1.44384 1.42515 1.40558 1.3891 1.3783 1.37108 1.36517 1.36243 1.36508 1.37612 1.39409 1.41073 1.42139 1.42717 1.42863 1.42469 1.41461 1.39925 1.38163 1.36268 1.34096 1.32046 1.31192 1.32268 1.35149 1.38939 1.42299 1.44604 1.46108 1.46962 1.47282 1.46851 1.46078 1.45051 1.44021 1.4317 1.42427 1.41889 1.41439 1.41101 1.4083 1.40625 1.40466 1.40343 1.4025 1.40179 1.40126 1.40086 1.40058 1.40035 1.40022 1.40017 1.40006 1.40004 1.39998 1.39998 1.40004 1.39987 1.40001 1.4 1.40022 1.39962 1.40007 1.40018 1.39994 1.39964 1.40114 1.39888 1.39908 1.40277 1.39883 1.39789 1.40261 1.40016 1.39758 1.40168 1.40065 1.39836 1.40082 1.40011 1.39973 1.40032 1.39969 1.4001 1.39992 1.40017 1.40002 1.39984 1.40007 1.39981 1.4 1.40029 1.40023 1.40176 1.4042 1.40873 1.41969 1.43547 1.44987 1.45378 1.44144 1.42126 1.40141 1.38502 1.37549 1.36999 1.36592 1.36638 1.37305 1.38748 1.40494 1.41499 1.41631 1.41577 1.41541 1.41279 1.40679 1.39766 1.38625 1.37407 1.36079 1.34375 1.32738 1.32122 1.32998 1.35419 1.38852 1.42268 1.44762 1.46153 1.46865 1.46914 1.46575 1.45668 1.44786 1.43832 1.43009 1.4233 1.41808 1.41374 1.41049 1.40784 1.40586 1.40431 1.40314 1.40224 1.40158 1.40108 1.40072 1.40046 1.40027 1.4002 1.4001 1.40004 1.4 1.4 1.39996 1.40011 1.39979 1.40005 1.40006 1.40007 1.39997 1.39958 1.40067 1.39959 1.39962 1.40158 1.39852 1.39919 1.40247 1.39927 1.39804 1.40188 1.40036 1.39851 1.40092 1.39992 1.39959 1.4007 1.3996 1.39985 1.40009 1.40013 1.40016 1.39986 1.39992 1.3999 1.40003 1.39999 1.40003 1.40021 1.4002 1.40176 1.40456 1.40948 1.42089 1.43679 1.45042 1.45329 1.43935 1.41789 1.39782 1.38161 1.3735 1.36956 1.36696 1.37019 1.37948 1.39396 1.40539 1.40264 1.38943 1.37785 1.37367 1.37644 1.38336 1.38756 1.38486 1.3752 1.36237 1.34934 1.33591 1.32634 1.32631 1.33827 1.36278 1.39408 1.42345 1.44626 1.46014 1.46709 1.46632 1.46131 1.45371 1.44442 1.43599 1.42825 1.42198 1.41687 1.41286 1.40967 1.40719 1.40529 1.40383 1.40274 1.40191 1.40131 1.40087 1.40056 1.40034 1.40023 1.40013 1.40005 1.40003 1.39998 1.39998 1.40003 1.40002 1.39997 1.3998 1.40028 1.39999 1.39989 1.39988 1.40037 1.39951 1.40016 1.40086 1.39885 1.39987 1.40135 1.39924 1.39923 1.40138 1.39954 1.39918 1.40099 1.39992 1.39962 1.40012 1.4 1.40014 1.39998 1.39997 1.39994 1.39994 1.40003 1.40005 1.39991 1.39996 1.40014 1.40024 1.40185 1.40492 1.41021 1.42188 1.43788 1.45076 1.45272 1.43775 1.41499 1.39478 1.37906 1.37193 1.36942 1.36821 1.37267 1.38235 1.39362 1.394 1.37259 1.34168 1.31709 1.30802 1.31575 1.33871 1.36487 1.38347 1.39102 1.38458 1.36915 1.35034 1.33216 1.32274 1.32775 1.34569 1.37126 1.39979 1.42635 1.44633 1.45896 1.46334 1.46344 1.45738 1.44986 1.44128 1.43325 1.42609 1.42022 1.41542 1.41164 1.40865 1.40635 1.40459 1.40327 1.40228 1.40155 1.40103 1.40066 1.40041 1.40027 1.40015 1.40007 1.40004 1.40001 1.4 1.39994 1.40009 1.39997 1.40003 1.39984 1.40006 1.40038 1.39947 1.4002 1.40045 1.39903 1.40053 1.4008 1.3989 1.39969 1.40135 1.39961 1.39906 1.40078 1.40013 1.39969 1.40017 1.39975 1.40007 1.40027 1.39993 1.39992 1.39986 1.39999 1.40011 1.40005 1.40002 1.3998 1.39989 1.40015 1.40036 1.40194 1.40521 1.4109 1.42272 1.43875 1.45095 1.4522 1.43662 1.41258 1.39244 1.37725 1.37034 1.36985 1.3694 1.37256 1.38135 1.38701 1.37092 1.32406 1.27137 1.23114 1.21251 1.22028 1.25273 1.30014 1.34391 1.37947 1.3999 1.39744 1.38043 1.35876 1.33973 1.32996 1.33324 1.35083 1.3783 1.40634 1.43009 1.44648 1.45745 1.46124 1.45913 1.45364 1.44584 1.4378 1.43021 1.42363 1.41814 1.41372 1.41021 1.40748 1.40539 1.40382 1.40265 1.40179 1.40119 1.40076 1.40047 1.40031 1.40017 1.40009 1.40003 1.40004 1.4 1.39999 1.39997 1.40002 1.40008 1.39992 1.39997 1.39998 1.40023 1.39979 1.40004 1.40017 1.39974 1.40006 1.40027 1.39985 1.39981 1.4003 1.3998 1.39996 1.40045 1.39959 1.39983 1.40037 1.40002 1.39996 1.39982 1.4 1.40013 1.40002 1.40007 1.39988 1.3999 1.39991 1.39997 1.40017 1.40042 1.40197 1.40541 1.41155 1.42348 1.43935 1.45109 1.45177 1.43586 1.41096 1.3907 1.37585 1.36899 1.37069 1.36998 1.37024 1.37778 1.37568 1.34025 1.26366 1.17905 1.11508 1.07849 1.08102 1.11888 1.18275 1.25201 1.31419 1.36581 1.392 1.39255 1.38121 1.36474 1.34766 1.33829 1.34351 1.36159 1.38668 1.41208 1.43307 1.44829 1.45583 1.45834 1.45538 1.44933 1.44176 1.43409 1.427 1.42091 1.41587 1.41183 1.40865 1.40621 1.40438 1.40302 1.40204 1.40134 1.40085 1.40052 1.40034 1.40019 1.40011 1.40004 1.40003 1.40002 1.40002 1.39998 1.40001 1.39997 1.40011 1.39999 1.39979 1.4003 1.39987 1.39984 1.40042 1.39975 1.39974 1.40033 1.40027 1.39948 1.3999 1.40065 1.39982 1.39956 1.40022 1.40017 1.40002 1.3999 1.39994 1.39997 1.40008 1.40015 1.39991 1.39999 1.39991 1.39989 1.4 1.40004 1.40009 1.40039 1.40204 1.4056 1.41216 1.42415 1.43969 1.45123 1.45135 1.43552 1.41032 1.38923 1.37498 1.36821 1.37095 1.3705 1.36735 1.37186 1.36025 1.30802 1.20953 1.08528 0.979657 0.913773 0.902712 0.942316 1.02026 1.12068 1.2151 1.29673 1.3593 1.3896 1.39224 1.37889 1.36056 1.3485 1.34668 1.35459 1.37229 1.39549 1.41893 1.43673 1.44886 1.45495 1.45531 1.45146 1.44497 1.43755 1.43022 1.42363 1.41803 1.41345 1.40983 1.40704 1.40494 1.40339 1.40227 1.40148 1.40094 1.40058 1.40037 1.4002 1.40011 1.40007 1.40002 1.40002 1.40002 1.40001 1.4 1.39999 1.39997 1.40009 1.40003 1.39984 1.40011 1.40008 1.39985 1.39999 1.40027 1.39986 1.39972 1.40032 1.40016 1.39974 1.39995 1.40003 1.40015 1.4001 1.3998 1.39987 1.40016 1.40009 1.39999 1.40002 1.39986 1.39993 1.40006 1.40001 1.39994 1.39999 1.40002 1.40037 1.4022 1.40577 1.4127 1.42472 1.43982 1.45133 1.451 1.43561 1.41054 1.38812 1.37469 1.36789 1.37015 1.37182 1.36503 1.36259 1.3426 1.27683 1.17155 1.0264 0.870958 0.756624 0.717202 0.751914 0.837298 0.959851 1.09111 1.21137 1.31444 1.3806 1.4028 1.39605 1.37835 1.36151 1.35065 1.35122 1.36347 1.38312 1.40482 1.42468 1.44046 1.44977 1.45355 1.45215 1.44725 1.44045 1.43315 1.42622 1.42013 1.41506 1.411 1.40786 1.40548 1.40373 1.40248 1.40161 1.40101 1.40062 1.40038 1.40022 1.40011 1.40007 1.40004 1.40002 1.4 1.40002 1.40002 1.39999 1.4 1.39999 1.40007 1.39993 1.40009 1.39994 1.39992 1.4002 1.39994 1.39989 1.40004 1.40017 1.39997 1.39974 1.4001 1.40033 1.39986 1.39977 1.40008 1.40012 1.40005 1.39999 1.39991 1.39995 1.40002 1.40005 1.40002 1.39996 1.39987 1.39995 1.40005 1.40043 1.4023 1.4059 1.41314 1.42517 1.43986 1.45131 1.45081 1.43609 1.41146 1.38776 1.37468 1.36789 1.36886 1.37322 1.36427 1.35118 1.327 1.25329 1.13999 0.999313 0.826114 0.666655 0.584914 0.598075 0.672348 0.792398 0.94846 1.10545 1.23954 1.33777 1.39078 1.40648 1.40091 1.38226 1.36174 1.35268 1.35833 1.37361 1.39271 1.41332 1.43094 1.44341 1.45027 1.45154 1.44854 1.44273 1.43569 1.42858 1.42211 1.4166 1.41212 1.40863 1.40599 1.40405 1.40267 1.40171 1.40107 1.40065 1.40039 1.40022 1.40013 1.40006 1.40005 1.40002 1.40001 1.40002 1.39999 1.40003 1.40003 1.39994 1.40006 1.40004 1.39993 1.40001 1.4001 1.39997 1.39983 1.40018 1.40016 1.39975 1.39988 1.40029 1.40008 1.3998 1.39992 1.40008 1.40012 1.40006 1.39988 1.39991 1.40008 1.40002 1.40001 1.40005 1.39994 1.39989 1.3999 1.39998 1.40008 1.40046 1.40231 1.40607 1.41345 1.4255 1.43987 1.45106 1.45087 1.43689 1.41288 1.38856 1.37459 1.36811 1.36806 1.37309 1.3656 1.34303 1.31424 1.2452 1.12001 0.975535 0.816843 0.653236 0.540492 0.516676 0.561299 0.659241 0.810823 0.976995 1.12447 1.25008 1.34262 1.39459 1.41058 1.39923 1.37742 1.36095 1.35765 1.36626 1.38291 1.40296 1.42136 1.43632 1.44595 1.4499 1.44892 1.44433 1.4378 1.43069 1.42393 1.41802 1.41316 1.40933 1.40644 1.40433 1.40283 1.4018 1.40111 1.40067 1.4004 1.40023 1.40013 1.40008 1.40004 1.40003 1.40002 1.40001 1.40001 1.40003 1.39996 1.40008 1.39995 1.39999 1.40003 1.40007 1.39993 1.39995 1.40016 1.4 1.39985 1.4 1.40018 1.40003 1.39984 1.39989 1.40018 1.40016 1.39985 1.39992 1.40004 1.4 1.40009 1.40003 1.39993 1.39996 1.39992 1.39998 1.39995 1.39996 1.40008 1.40045 1.40231 1.40628 1.41365 1.42572 1.43984 1.45065 1.45111 1.43801 1.4147 1.39057 1.37472 1.36818 1.36809 1.37146 1.36724 1.34327 1.30605 1.24546 1.12713 0.970028 0.815114 0.669066 0.551879 0.499861 0.517577 0.590051 0.710494 0.856 1.00314 1.14538 1.27016 1.35934 1.4019 1.40631 1.39096 1.37207 1.36084 1.36204 1.37499 1.3935 1.41233 1.42901 1.44103 1.44748 1.44853 1.44532 1.43947 1.4325 1.42554 1.4193 1.41408 1.40995 1.40683 1.40455 1.40295 1.40186 1.40114 1.40068 1.4004 1.40023 1.40013 1.40008 1.40004 1.40003 1.40002 1.40002 1.40002 1.39999 1.40003 1.4 1.39996 1.40007 1.4 1.39993 1.40004 1.40009 1.39997 1.39986 1.40009 1.40015 1.39993 1.39982 1.40008 1.40017 1.39998 1.3999 1.39993 1.40006 1.40011 1.4 1.39998 1.39992 1.39997 1.40005 1.39994 1.40001 1.39994 1.39987 1.40011 1.40049 1.40226 1.40647 1.4138 1.42576 1.43976 1.4502 1.45133 1.43945 1.41695 1.39336 1.37583 1.36786 1.36818 1.37032 1.36725 1.34914 1.30958 1.24877 1.14905 1.0014 0.842631 0.701411 0.586909 0.52327 0.527724 0.583533 0.673049 0.790781 0.924093 1.06027 1.19389 1.30567 1.37386 1.3998 1.39736 1.38159 1.36606 1.36099 1.36913 1.38524 1.40404 1.42186 1.43588 1.44457 1.44759 1.44581 1.44073 1.43399 1.42692 1.42039 1.41486 1.41046 1.40713 1.40472 1.40303 1.4019 1.40115 1.40068 1.40039 1.40023 1.40013 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.39997 1.40007 1.39996 1.39997 1.40006 1.40005 1.39991 1.39997 1.40014 1.40004 1.39986 1.39995 1.40013 1.4001 1.39993 1.39986 1.40004 1.40012 1.40005 1.39993 1.39993 1.40003 1.39998 1.40003 1.40008 1.39988 1.39997 1.39995 1.39981 1.40016 1.40057 1.40216 1.40657 1.41394 1.42558 1.43959 1.44981 1.45145 1.44112 1.41979 1.39652 1.37821 1.36794 1.36725 1.37006 1.36738 1.35417 1.32197 1.26386 1.17611 1.05183 0.905311 0.7659 0.651311 0.582276 0.576393 0.619872 0.693173 0.791402 0.901907 1.01756 1.14158 1.25678 1.33871 1.38164 1.39355 1.38562 1.37061 1.36165 1.36507 1.37837 1.39654 1.41511 1.43077 1.44145 1.44633 1.44593 1.44165 1.43518 1.42804 1.42128 1.41548 1.41085 1.40735 1.40482 1.40307 1.4019 1.40115 1.40068 1.40038 1.40022 1.40013 1.40008 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.4 1.40003 1.39999 1.39999 1.40007 1.39997 1.39993 1.40007 1.4001 1.39992 1.39988 1.40011 1.40013 1.39996 1.39987 1.4 1.40012 1.40007 1.39993 1.39995 1.39998 1.40002 1.4001 1.39997 1.39996 1.40003 1.39985 1.39997 1.40002 1.39977 1.40015 1.40066 1.40207 1.40658 1.41407 1.42525 1.43921 1.44952 1.45153 1.44279 1.42324 1.40015 1.38134 1.36938 1.36596 1.36887 1.36867 1.35842 1.33353 1.28734 1.21376 1.11101 0.986689 0.860522 0.752545 0.681069 0.659137 0.682962 0.742882 0.827056 0.91938 1.01797 1.12652 1.23204 1.31389 1.3633 1.38418 1.38406 1.3726 1.36249 1.36242 1.37295 1.39006 1.409 1.42597 1.43837 1.44492 1.44581 1.44227 1.43608 1.4289 1.42195 1.41592 1.41109 1.40745 1.40484 1.40305 1.40187 1.40112 1.40066 1.40036 1.40021 1.40012 1.40008 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40003 1.39998 1.4 1.40006 1.40001 1.39991 1.40002 1.40015 1.39998 1.39985 1.40001 1.40013 1.40004 1.39994 1.39994 1.39999 1.40006 1.40006 1.39999 1.39999 1.39994 1.39997 1.40005 1.39991 1.39997 1.40003 1.39973 1.40011 1.40075 1.402 1.40645 1.41411 1.42489 1.43856 1.44924 1.45171 1.44432 1.42699 1.40468 1.38492 1.37178 1.366 1.36686 1.36852 1.36276 1.34393 1.30917 1.25476 1.17709 1.07993 0.976712 0.883721 0.813371 0.774041 0.772802 0.81183 0.879637 0.960709 1.04753 1.13865 1.22768 1.30122 1.3502 1.37494 1.37994 1.37223 1.36271 1.3607 1.36897 1.38488 1.40388 1.42184 1.43565 1.44362 1.44559 1.44269 1.43673 1.4295 1.42237 1.41615 1.41118 1.40744 1.40479 1.40299 1.40182 1.40108 1.40063 1.40034 1.4002 1.40012 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.40002 1.39999 1.40001 1.40003 1.39998 1.39997 1.40006 1.40004 1.39991 1.39996 1.40013 1.40004 1.39991 1.39997 1.40004 1.40003 1.40004 1.4 1.39995 1.39998 1.40003 1.39998 1.4 1.40003 1.39991 1.39992 1.40002 1.39975 1.40006 1.40081 1.40199 1.40623 1.41398 1.42452 1.43768 1.44878 1.45204 1.44583 1.4307 1.40999 1.38955 1.37468 1.36711 1.36586 1.36721 1.36495 1.35336 1.32919 1.29183 1.23989 1.17326 1.09796 1.02354 0.95827 0.911144 0.893275 0.909269 0.956031 1.02276 1.09542 1.16857 1.23944 1.30002 1.34328 1.36778 1.37531 1.37055 1.36235 1.35965 1.36643 1.38127 1.40014 1.41875 1.43362 1.44265 1.44542 1.44297 1.43712 1.42981 1.42253 1.41617 1.4111 1.40732 1.40467 1.40289 1.40174 1.40102 1.4006 1.40032 1.40019 1.40011 1.40007 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40001 1.40003 1.39999 1.39996 1.40004 1.40006 1.39995 1.39995 1.40005 1.40004 1.39999 1.39999 1.39999 1.4 1.39999 1.40003 1.40002 1.39998 1.39999 1.39998 1.39993 1.39992 1.39999 1.39981 1.4 1.40079 1.40204 1.40594 1.4136 1.42408 1.43674 1.448 1.45235 1.44752 1.43427 1.41561 1.39559 1.37867 1.36862 1.36593 1.36686 1.36597 1.35963 1.34587 1.32352 1.29238 1.25173 1.20147 1.14511 1.09205 1.05374 1.0333 1.03202 1.05654 1.10264 1.15722 1.21335 1.26692 1.31209 1.34496 1.36464 1.37146 1.36812 1.36137 1.35899 1.36518 1.37937 1.39809 1.41707 1.43258 1.44224 1.44544 1.44315 1.43727 1.42982 1.4224 1.41595 1.41084 1.40708 1.40447 1.40274 1.40163 1.40096 1.40056 1.4003 1.40018 1.40011 1.40007 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.4 1.40004 1.4 1.39996 1.40001 1.40006 1.39999 1.39998 1.40001 1.4 1.40001 1.40002 1.4 1.40001 1.39998 1.39998 1.4 1.39997 1.39997 1.39993 1.39992 1.39987 1.39997 1.4007 1.4021 1.40568 1.41295 1.42344 1.43579 1.44696 1.45242 1.44926 1.43789 1.42139 1.40244 1.38436 1.37166 1.36669 1.36669 1.36682 1.36401 1.35756 1.34682 1.33083 1.30781 1.27564 1.23807 1.20652 1.18491 1.16626 1.15517 1.16366 1.19064 1.22692 1.26576 1.30176 1.33087 1.35194 1.36482 1.36898 1.36577 1.36023 1.35876 1.36517 1.37925 1.39792 1.41704 1.43275 1.44253 1.44569 1.44323 1.43713 1.4295 1.42196 1.41549 1.41042 1.40673 1.4042 1.40255 1.40151 1.40088 1.40051 1.40027 1.40016 1.4001 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40003 1.40001 1.39998 1.4 1.40003 1.40001 1.39999 1.40001 1.4 1.39999 1.40002 1.39999 1.40001 1.40001 1.39994 1.39998 1.39993 1.39987 1.39992 1.39998 1.40056 1.40211 1.40546 1.41211 1.42247 1.43474 1.44586 1.45218 1.4507 1.44159 1.42734 1.40968 1.39162 1.37722 1.36899 1.36625 1.36648 1.36702 1.36586 1.36213 1.35501 1.34275 1.32524 1.30814 1.29614 1.2833 1.26669 1.25626 1.25907 1.27227 1.29139 1.31273 1.33213 1.34733 1.35846 1.36529 1.36666 1.36322 1.35896 1.359 1.36643 1.38098 1.39979 1.4188 1.43421 1.44352 1.44612 1.44313 1.43664 1.42879 1.4212 1.41478 1.40983 1.40628 1.40388 1.40234 1.40138 1.4008 1.40047 1.40025 1.40015 1.40009 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.4 1.4 1.4 1.40002 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.39998 1.40001 1.39999 1.39994 1.39998 1.39993 1.39984 1.39992 1.40001 1.40046 1.40201 1.40522 1.41126 1.42112 1.43331 1.4447 1.45178 1.45177 1.44503 1.43317 1.41734 1.40023 1.38508 1.37383 1.36741 1.36588 1.36767 1.36992 1.37054 1.36882 1.36461 1.35939 1.35533 1.35018 1.34134 1.33305 1.32949 1.32927 1.33135 1.33682 1.3445 1.35154 1.35712 1.36171 1.36445 1.36385 1.36051 1.35786 1.35997 1.36908 1.38461 1.40368 1.42232 1.43686 1.44504 1.44654 1.44271 1.4357 1.42766 1.4201 1.41384 1.4091 1.40575 1.40352 1.4021 1.40123 1.40072 1.40042 1.40022 1.40013 1.40008 1.40005 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.39999 1.40001 1.40001 1.39998 1.4 1.39999 1.39996 1.39997 1.39993 1.39984 1.3999 1.40003 1.40041 1.40181 1.40487 1.41043 1.41952 1.43135 1.44318 1.45123 1.4527 1.44805 1.43846 1.42494 1.40964 1.39478 1.38187 1.37243 1.36767 1.3671 1.36891 1.37155 1.37413 1.37606 1.37733 1.37752 1.37603 1.37435 1.37326 1.3705 1.36551 1.36142 1.36006 1.3599 1.35965 1.36004 1.36138 1.3621 1.36077 1.35827 1.35771 1.36235 1.37359 1.39037 1.4096 1.42738 1.44036 1.44675 1.44668 1.44177 1.43423 1.42607 1.41867 1.41269 1.40824 1.40516 1.40313 1.40185 1.40108 1.40063 1.40037 1.4002 1.40012 1.40008 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.39999 1.4 1.39998 1.39996 1.39996 1.39993 1.39985 1.39986 1.40001 1.40041 1.40161 1.40437 1.40952 1.41786 1.42895 1.44096 1.45018 1.45348 1.45089 1.4433 1.43199 1.41886 1.40537 1.39256 1.38172 1.37381 1.36913 1.36774 1.36944 1.37276 1.37615 1.37949 1.38269 1.38522 1.38631 1.38464 1.37996 1.37443 1.37007 1.36648 1.36277 1.35987 1.35908 1.35982 1.36008 1.35893 1.35779 1.35962 1.36698 1.38047 1.39836 1.41728 1.43348 1.44414 1.44816 1.44621 1.44015 1.43217 1.42406 1.41696 1.41137 1.4073 1.40452 1.40272 1.40161 1.40094 1.40055 1.40032 1.40017 1.40011 1.40007 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.39999 1.39998 1.39997 1.39994 1.39992 1.39986 1.39984 1.39998 1.40038 1.40146 1.4038 1.40842 1.41606 1.42633 1.43806 1.44817 1.45356 1.45341 1.44799 1.43873 1.42761 1.41585 1.40415 1.39322 1.38386 1.37684 1.37275 1.3711 1.37099 1.37264 1.37579 1.37852 1.37973 1.37966 1.37823 1.3755 1.37222 1.36869 1.36467 1.3609 1.35895 1.35924 1.36034 1.36052 1.3598 1.36024 1.36464 1.37475 1.39019 1.40854 1.42623 1.43991 1.44751 1.44876 1.44484 1.43776 1.42952 1.42166 1.41503 1.40995 1.40632 1.40388 1.40232 1.40136 1.4008 1.40047 1.40028 1.40015 1.4001 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.39999 1.40003 1.40001 1.39997 1.40002 1.40003 1.39999 1.39999 1.40001 1.4 1.39999 1.4 1.39998 1.39998 1.39994 1.39991 1.39986 1.39984 1.39993 1.40031 1.40133 1.40328 1.4072 1.41397 1.42349 1.43472 1.44516 1.4524 1.45489 1.4521 1.44529 1.43627 1.42615 1.41553 1.40525 1.39623 1.38897 1.38307 1.37808 1.37507 1.37471 1.37481 1.37403 1.37382 1.37439 1.37391 1.37185 1.36927 1.36653 1.36371 1.36185 1.3619 1.36327 1.36436 1.36435 1.36427 1.3666 1.37367 1.38621 1.40279 1.42039 1.43561 1.44579 1.44981 1.44816 1.44243 1.43458 1.42637 1.41897 1.41296 1.40847 1.40532 1.40324 1.40193 1.40113 1.40067 1.4004 1.40024 1.40013 1.40008 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.39999 1.40003 1.40001 1.39997 1.40003 1.40003 1.39997 1.4 1.40003 1.39999 1.39999 1.40001 1.39998 1.39999 1.39997 1.39994 1.3999 1.39985 1.39984 1.3999 1.40021 1.40115 1.40284 1.40602 1.41167 1.42026 1.4308 1.44136 1.44999 1.45473 1.45473 1.45092 1.44451 1.43625 1.427 1.41797 1.40982 1.40233 1.39515 1.38935 1.38596 1.38327 1.38008 1.37833 1.37838 1.37758 1.37504 1.37261 1.37113 1.36984 1.36869 1.36867 1.37007 1.37171 1.37234 1.37218 1.37313 1.37766 1.3872 1.40127 1.41757 1.43289 1.44432 1.45023 1.45046 1.44612 1.43896 1.43074 1.42285 1.41611 1.41084 1.40699 1.40435 1.40263 1.40156 1.40092 1.40055 1.40033 1.4002 1.40011 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40001 1.40001 1.39999 1.40005 1.39999 1.39996 1.40002 1.40005 1.39997 1.39998 1.40002 1.4 1.39998 1.4 1.39996 1.39996 1.39989 1.39984 1.39984 1.39988 1.40014 1.40093 1.40239 1.40497 1.40948 1.4167 1.42617 1.43663 1.44621 1.45278 1.45546 1.45471 1.45112 1.44532 1.43828 1.43096 1.42365 1.41626 1.40952 1.40451 1.40022 1.39543 1.3918 1.39018 1.38814 1.38476 1.3823 1.38167 1.3813 1.38047 1.3802 1.3813 1.38305 1.38409 1.38399 1.38404 1.38658 1.39344 1.40477 1.41892 1.43311 1.44451 1.45116 1.45246 1.4491 1.44256 1.43452 1.42639 1.41913 1.41322 1.40876 1.40558 1.40345 1.40208 1.40123 1.40073 1.40044 1.40027 1.40017 1.40009 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40003 1.39999 1.39998 1.40003 1.39997 1.39999 1.40007 1.39999 1.39995 1.40002 1.40004 1.39997 1.4 1.4 1.39998 1.39996 1.39996 1.39989 1.39983 1.39983 1.39986 1.40009 1.40071 1.40193 1.40401 1.40753 1.41321 1.42113 1.43082 1.44072 1.44879 1.45395 1.45603 1.45527 1.45227 1.4479 1.44269 1.43688 1.43093 1.42567 1.42076 1.41544 1.41101 1.40833 1.40541 1.40159 1.39912 1.39864 1.3982 1.39692 1.39596 1.39645 1.39799 1.39905 1.39887 1.39842 1.39971 1.40447 1.41319 1.4248 1.43698 1.44713 1.4533 1.45471 1.45171 1.44547 1.43753 1.42928 1.42172 1.41537 1.41042 1.40679 1.40428 1.40263 1.40158 1.40094 1.40057 1.40035 1.40022 1.40014 1.40008 1.40005 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.39999 1.39999 1.40003 1.40006 1.39995 1.39997 1.40008 1.39994 1.39993 1.4001 1.40005 1.39991 1.40002 1.40002 1.39999 1.39999 1.39999 1.39994 1.3999 1.39984 1.3998 1.39982 1.40005 1.40052 1.4015 1.40316 1.40584 1.41008 1.41625 1.42438 1.43362 1.44241 1.44948 1.4541 1.45617 1.45612 1.45452 1.45175 1.44812 1.44421 1.44026 1.43604 1.43214 1.4292 1.42613 1.42251 1.42006 1.41911 1.4179 1.41599 1.4146 1.41461 1.41558 1.41629 1.41604 1.41538 1.41585 1.41909 1.42563 1.4346 1.44415 1.45213 1.45678 1.45727 1.45384 1.44751 1.43957 1.43125 1.42352 1.41693 1.41171 1.4078 1.40502 1.40314 1.40192 1.40116 1.4007 1.40043 1.40027 1.40018 1.40012 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40005 1.39999 1.39993 1.40001 1.40008 1.40009 1.39987 1.39992 1.4002 1.40003 1.39976 1.40008 1.40007 1.39992 1.40003 1.39997 1.4 1.39994 1.39991 1.39987 1.39979 1.39979 1.39998 1.40035 1.40113 1.40243 1.40442 1.40747 1.41196 1.41815 1.42579 1.43405 1.44184 1.44821 1.45274 1.45549 1.45663 1.45641 1.45528 1.45366 1.4516 1.4493 1.44721 1.44491 1.44215 1.44012 1.43902 1.43757 1.43566 1.43437 1.43409 1.43447 1.43479 1.43432 1.43341 1.43346 1.43564 1.44017 1.44644 1.45309 1.45829 1.46057 1.45936 1.45492 1.44809 1.44001 1.43177 1.42415 1.4176 1.41234 1.40834 1.40547 1.40348 1.40217 1.40133 1.40081 1.4005 1.40032 1.40021 1.40014 1.4001 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.39992 1.40015 1.40007 1.39982 1.39993 1.40009 1.40005 1.40013 1.39996 1.3998 1.40011 1.40016 1.39981 1.40003 1.40001 1.39996 1.39997 1.39996 1.39992 1.39987 1.39982 1.3998 1.39991 1.4002 1.4008 1.40181 1.40329 1.40543 1.40851 1.41283 1.41843 1.42507 1.43212 1.43884 1.44468 1.4493 1.45264 1.45488 1.45629 1.45698 1.45701 1.45663 1.45597 1.45503 1.45435 1.45392 1.45306 1.45188 1.45121 1.45104 1.45106 1.45115 1.45077 1.44994 1.44961 1.45071 1.45352 1.45737 1.4609 1.46286 1.46246 1.45929 1.45359 1.44625 1.43823 1.43031 1.42308 1.41695 1.41203 1.40826 1.40548 1.40353 1.40223 1.40139 1.40087 1.40055 1.40035 1.40023 1.40016 1.40011 1.40008 1.40005 1.40003 1.40003 1.40001 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.39999 1.40001 1.4 1.40001 1.39998 1.40009 1.39998 1.39981 1.40012 1.40032 1.39985 1.39969 1.40015 1.40017 1.39979 1.40005 1.40028 1.39978 1.39991 1.40019 1.39991 1.40002 1.39998 1.39995 1.39992 1.39987 1.39985 1.39982 1.39988 1.40008 1.40052 1.40128 1.40237 1.40389 1.40596 1.40876 1.41246 1.41708 1.42239 1.42803 1.43353 1.43854 1.44294 1.44667 1.44965 1.45192 1.45365 1.45509 1.45624 1.4571 1.4577 1.45803 1.45812 1.45837 1.45878 1.45907 1.45941 1.45943 1.45884 1.45835 1.45897 1.46053 1.46202 1.46281 1.46233 1.45966 1.45462 1.44806 1.44079 1.43334 1.42628 1.42006 1.41481 1.41056 1.40731 1.40494 1.40324 1.40208 1.40131 1.40082 1.40053 1.40035 1.40024 1.40017 1.40013 1.40009 1.40007 1.40004 1.40004 1.40002 1.40002 1.40002 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.39999 1.40003 1.39998 1.40003 1.4 1.39988 1.40023 1.40008 1.39951 1.4001 1.40049 1.40005 1.39963 1.39972 1.40024 1.40029 1.39982 1.3998 1.40027 1.39993 1.39987 1.40012 1.39995 1.39996 1.39992 1.39988 1.39983 1.39983 1.39988 1.40001 1.40031 1.40085 1.40164 1.40271 1.40411 1.4059 1.40817 1.41103 1.41445 1.4183 1.42235 1.42644 1.43037 1.43394 1.43715 1.44004 1.44266 1.44498 1.44685 1.44836 1.44979 1.45102 1.45206 1.45314 1.45392 1.45461 1.45523 1.4551 1.45471 1.45505 1.45569 1.45594 1.45537 1.45313 1.44914 1.44402 1.43791 1.43127 1.42514 1.41984 1.41518 1.41122 1.4081 1.40568 1.40383 1.40252 1.40165 1.40107 1.40069 1.40045 1.40031 1.40022 1.40016 1.40013 1.40009 1.40008 1.40006 1.40004 1.40003 1.40001 1.40003 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.40003 1.39999 1.39999 1.40005 1.40002 1.39971 1.40035 1.40034 1.39932 1.39972 1.4007 1.40021 1.39973 1.4 1.3998 1.3998 1.40032 1.40019 1.39967 1.4002 1.39997 1.39992 1.40001 1.39991 1.39989 1.39982 1.39982 1.39985 1.39994 1.40016 1.40053 1.40107 1.40182 1.40276 1.40391 1.40529 1.40695 1.40893 1.41118 1.41364 1.4162 1.41876 1.42131 1.42376 1.42607 1.42816 1.43002 1.43165 1.43332 1.43492 1.4361 1.4373 1.43833 1.43904 1.43972 1.43998 1.43991 1.44 1.44032 1.44021 1.43869 1.4362 1.43322 1.42877 1.42353 1.41928 1.41573 1.41225 1.40932 1.40709 1.40519 1.40362 1.4025 1.40168 1.40105 1.40065 1.40043 1.40031 1.40023 1.40018 1.40014 1.40012 1.4001 1.40007 1.40007 1.40004 1.40004 1.40001 1.40002 1.40002 1.4 1.40002 1.39999 1.40001 1.40001 1.4 1.4 1.40002 1.39999 1.40003 1.39999 1.39999 1.40008 1.39984 1.40024 1.39998 1.39946 1.40056 1.40044 1.39942 1.39941 1.40037 1.40066 1.39996 1.39967 1.40004 1.39998 1.39967 1.40017 1.4003 1.39978 1.40019 1.39995 1.39999 1.39991 1.39988 1.39982 1.39983 1.39989 1.40004 1.40028 1.40066 1.40116 1.40177 1.40251 1.40336 1.40432 1.40542 1.40663 1.40794 1.40931 1.41071 1.41209 1.41339 1.41457 1.41574 1.4168 1.41786 1.41894 1.41957 1.42019 1.42096 1.42135 1.42185 1.42231 1.422 1.42172 1.42217 1.42168 1.4202 1.41886 1.41637 1.41319 1.41099 1.40872 1.40645 1.40551 1.40486 1.40359 1.40251 1.40192 1.40135 1.40085 1.40058 1.40039 1.40023 1.40014 1.40011 1.40011 1.40011 1.4001 1.4001 1.40007 1.40007 1.40005 1.40003 1.40003 1.40001 1.40003 1.4 1.40002 1.40001 1.4 1.40002 1.4 1.40001 1.4 1.40002 1.39997 1.40004 1.39997 1.40003 1.39996 1.40009 1.39978 1.40041 1.39987 1.39935 1.40043 1.40082 1.39964 1.39932 1.39986 1.40003 1.40067 1.4004 1.39965 1.39959 1.40023 1.39961 1.4001 1.40018 1.39995 1.40009 1.39994 1.39995 1.3999 1.39987 1.3999 1.39997 1.40012 1.40036 1.40068 1.40108 1.40154 1.40206 1.40263 1.40324 1.40389 1.40456 1.40526 1.40594 1.40655 1.40711 1.40769 1.4082 1.40859 1.40896 1.40913 1.40922 1.40965 1.4097 1.40963 1.40976 1.40944 1.40919 1.40903 1.40852 1.40808 1.40659 1.40504 1.40462 1.40292 1.40144 1.40237 1.40259 1.40146 1.4013 1.4015 1.40099 1.40058 1.40053 1.40034 1.40015 1.40014 1.40014 1.40009 1.40008 1.40008 1.40007 1.40008 1.40007 1.40006 1.40006 1.40003 1.40004 1.40001 1.40002 1.40001 1.4 1.40002 1.39999 1.40002 1.4 1.40001 1.4 1.40002 1.39999 1.40002 1.40001 1.39995 1.40012 1.39986 1.40017 1.39986 1.39983 1.4007 1.39961 1.39947 1.40021 1.40066 1.40016 1.39961 1.39945 1.39995 1.40007 1.40036 1.40058 1.39982 1.39954 1.40021 1.39965 1.40009 1.3999 1.40002 1.39994 1.39994 1.39991 1.39991 1.39994 1.40003 1.40016 1.40036 1.40061 1.40089 1.4012 1.40153 1.40187 1.40222 1.40258 1.40291 1.40323 1.40356 1.40386 1.40412 1.40426 1.40436 1.40452 1.4045 1.40465 1.40462 1.40434 1.40443 1.40424 1.40354 1.40335 1.40389 1.40277 1.40145 1.40231 1.40131 1.39994 1.40138 1.40133 1.4005 1.40166 1.40167 1.40036 1.4004 1.4009 1.40055 1.40025 1.4003 1.40016 1.40003 1.40008 1.4001 1.40009 1.40008 1.40008 1.40007 1.40005 1.40006 1.40005 1.40003 1.40004 1.40001 1.40002 1.4 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.39999 1.40003 1.39996 1.40006 1.39994 1.40008 1.39991 1.4001 1.39989 1.40033 1.39947 1.40014 1.40064 1.39968 1.39935 1.40006 1.4005 1.40028 1.40041 1.3994 1.39928 1.4 1.40045 1.39983 1.40072 1.39979 1.39979 1.40007 1.39981 1.39995 1.3999 1.39989 1.39989 1.39988 1.39991 1.39995 1.40003 1.40014 1.40028 1.40045 1.40063 1.40081 1.40101 1.40119 1.40137 1.40155 1.40173 1.40188 1.40201 1.4021 1.40218 1.40236 1.4024 1.40241 1.40254 1.40235 1.40233 1.40242 1.40208 1.40229 1.4022 1.40134 1.40204 1.40134 1.4005 1.4022 1.4011 1.40037 1.40279 1.40178 1.39974 1.40099 1.40156 1.40043 1.40033 1.4007 1.4003 1.40015 1.40028 1.40015 1.40005 1.40008 1.40008 1.40007 1.40008 1.40006 1.40005 1.40005 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.39999 1.40002 1.39999 1.40002 1.39999 1.40002 1.40001 1.39998 1.40005 1.39993 1.40014 1.39978 1.40015 1.4004 1.39906 1.40041 1.40064 1.39972 1.39958 1.39994 1.39996 1.40041 1.40025 1.40021 1.39989 1.39912 1.40003 1.40036 1.39982 1.40046 1.3998 1.4001 1.39988 1.39994 1.39988 1.39988 1.39987 1.39987 1.39989 1.39993 1.39999 1.40007 1.40015 1.40026 1.40036 1.40046 1.40057 1.40065 1.40075 1.40083 1.40087 1.40095 1.40102 1.40107 1.40115 1.40107 1.40118 1.4011 1.4011 1.40142 1.40119 1.40095 1.40117 1.40179 1.40064 1.40017 1.40279 1.40089 1.39943 1.40279 1.4013 1.39938 1.40166 1.40095 1.39938 1.40085 1.40134 1.40004 1.39996 1.4004 1.4001 1.40008 1.40025 1.40013 1.40007 1.40008 1.40006 1.40006 1.40004 1.40005 1.40004 1.40002 1.40003 1.40001 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40003 1.39996 1.40007 1.39993 1.40007 1.39997 1.40002 1.39993 1.40031 1.39934 1.40067 1.4001 1.3992 1.40025 1.40062 1.39998 1.39959 1.39989 1.39981 1.4001 1.4003 1.40041 1.3996 1.40054 1.39904 1.4003 1.40006 1.3999 1.40013 1.39996 1.39995 1.39994 1.39988 1.39988 1.39987 1.39987 1.39988 1.3999 1.39994 1.39998 1.40003 1.40009 1.40013 1.40019 1.40024 1.40027 1.40031 1.40036 1.4004 1.40038 1.40044 1.40039 1.4004 1.40051 1.40044 1.40047 1.40039 1.40027 1.40075 1.40036 1.39952 1.40152 1.4003 1.39892 1.4022 1.39995 1.39879 1.40226 1.3997 1.39831 1.40178 1.40133 1.39912 1.40008 1.40079 1.39987 1.40006 1.40036 1.39998 1.40001 1.40014 1.40008 1.40005 1.40007 1.40005 1.40003 1.40004 1.40002 1.40002 1.40003 1.40001 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.40002 1.39998 1.40003 1.39998 1.40003 1.39999 1.40001 1.40001 1.39993 1.4002 1.39971 1.40022 1.40019 1.3993 1.40071 1.40013 1.39929 1.40016 1.40019 1.40022 1.40004 1.39981 1.39984 1.39994 1.39958 1.40077 1.39997 1.39984 1.40025 1.39956 1.40024 1.39985 1.40005 1.39993 1.39995 1.39993 1.39989 1.39987 1.39986 1.39987 1.39986 1.39987 1.39989 1.39992 1.39994 1.39997 1.39998 1.40001 1.40004 1.40005 1.40008 1.40008 1.40007 1.40012 1.4001 1.40019 1.40005 1.40011 1.40031 1.39994 1.40003 1.40017 1.40049 1.39964 1.39938 1.40221 1.3988 1.39808 1.40325 1.39937 1.39776 1.40235 1.40043 1.39869 1.40127 1.4008 1.39886 1.40008 1.40084 1.39992 1.40011 1.40026 1.39991 1.4 1.40008 1.40003 1.40004 1.40004 1.40004 1.40003 1.40001 1.40003 1.40001 1.40001 1.40001 1.4 1.40002 1.4 1.4 1.40002 1.39999 1.40002 1.40001 1.39999 1.40004 1.39997 1.40001 1.40005 1.39994 1.39998 1.40028 1.39948 1.40052 1.39988 1.39966 1.40035 1.40006 1.39988 1.39983 1.40001 1.40024 1.39999 1.40007 1.40016 1.3993 1.40066 1.39896 1.40101 1.39962 1.40005 1.40008 1.39986 1.39998 1.39999 1.39993 1.39994 1.3999 1.39989 1.39987 1.39985 1.39985 1.39986 1.39986 1.39987 1.39987 1.39989 1.39989 1.39991 1.39993 1.39992 1.39993 1.39992 1.39999 1.39995 1.39997 1.4 1.39998 1.39996 1.3999 1.40016 1.40025 1.39972 1.39949 1.40165 1.39934 1.39823 1.40321 1.39915 1.39803 1.40307 1.39922 1.39862 1.40276 1.40015 1.39789 1.40085 1.40123 1.39925 1.40012 1.40037 1.39964 1.40006 1.40018 1.39996 1.40002 1.40006 1.40001 1.40001 1.40004 1.40001 1.40002 1.40002 1.4 1.40002 1.39999 1.40002 1.40001 1.39999 1.40003 1.39999 1.40001 1.40002 1.39998 1.40003 1.39998 1.40002 1.40003 1.3999 1.40023 1.39971 1.40018 1.40015 1.39958 1.40034 1.40003 1.39979 1.4001 1.39995 1.40029 1.3998 1.39985 1.39988 1.40029 1.39994 1.40053 1.39946 1.4 1.40006 1.39965 1.40038 1.39977 1.40012 1.39991 1.39998 1.39994 1.39993 1.39992 1.3999 1.39989 1.39988 1.39986 1.39985 1.39986 1.39985 1.39986 1.39986 1.39987 1.39987 1.39986 1.39989 1.3999 1.3999 1.39991 1.39988 1.39992 1.39987 1.39998 1.40009 1.39972 1.40002 1.40005 1.4001 1.39983 1.39927 1.40201 1.39856 1.39866 1.40402 1.39806 1.39793 1.40374 1.39954 1.39784 1.40175 1.4005 1.39838 1.40099 1.40095 1.39902 1.40002 1.40015 1.39968 1.40012 1.4001 1.39996 1.40003 1.40002 1.40001 1.4 1.4 1.40003 1.4 1.40001 1.40002 1.4 1.40002 1.39998 1.40002 1.4 1.39999 1.40003 1.39998 1.40002 1.39999 1.40001 1.39999 1.40005 1.39995 1.4 1.40017 1.39969 1.40024 1.4001 1.39973 1.40005 1.40021 1.40006 1.39969 1.39991 1.40044 1.39991 1.40011 1.39975 1.39944 1.40102 1.39917 1.40118 1.39903 1.40033 1.39986 1.39991 1.40008 1.39999 1.39997 1.39997 1.39993 1.39994 1.39992 1.39991 1.3999 1.39988 1.39988 1.39987 1.39986 1.39986 1.39987 1.39987 1.39986 1.39988 1.39989 1.39985 1.39992 1.39988 1.3999 1.39994 1.39992 1.39984 1.39992 1.40022 1.39964 1.39986 1.39999 1.4009 1.39897 1.3987 1.40359 1.39795 1.39774 1.40401 1.39867 1.39812 1.40264 1.3993 1.39797 1.40227 1.40094 1.39799 1.40053 1.40055 1.39945 1.40045 1.40019 1.39982 1.40008 1.40002 1.39994 1.4 1.40002 1.39999 1.40001 1.40001 1.39999 1.40003 1.39999 1.40003 1.39999 1.40001 1.40002 1.39998 1.40003 1.39999 1.40002 1.4 1.4 1.40001 1.40002 1.39994 1.40016 1.39978 1.40015 1.40011 1.39966 1.40025 1.40017 1.39975 1.39979 1.40043 1.40006 1.39977 1.39983 1.40008 1.4004 1.39988 1.40001 1.39951 1.40014 1.4002 1.39993 1.40039 1.39964 1.40012 1.39985 1.40002 1.39996 1.39998 1.39998 1.39995 1.39994 1.39992 1.39991 1.3999 1.3999 1.39989 1.39989 1.39989 1.39988 1.3999 1.39989 1.3999 1.39989 1.39992 1.39989 1.39989 1.39996 1.39989 1.39995 1.40001 1.39967 1.40017 1.40011 1.39964 1.40021 1.3993 1.40163 1.39884 1.39857 1.40359 1.39758 1.39846 1.40402 1.39841 1.39758 1.40289 1.40036 1.39768 1.4017 1.40047 1.39824 1.40082 1.40035 1.39961 1.40036 1.39998 1.39987 1.40007 1.4 1.39999 1.4 1.40001 1.40002 1.4 1.40002 1.40001 1.39999 1.40001 1.39999 1.40003 1.39999 1.40002 1.4 1.4 1.40002 1.39998 1.40004 1.39996 1.40004 1.39998 1.39999 1.40011 1.39982 1.40012 1.40017 1.39958 1.40023 1.40029 1.39965 1.39986 1.40019 1.40046 1.39949 1.40003 1.39976 1.40018 1.40084 1.39902 1.40077 1.39887 1.40074 1.39976 1.40016 1.40007 1.39993 1.39996 1.39997 1.39997 1.39997 1.39997 1.39996 1.39995 1.39993 1.39994 1.39992 1.39992 1.39991 1.39992 1.39992 1.39991 1.39992 1.39992 1.3999 1.39995 1.39992 1.39994 1.39993 1.39992 1.39992 1.40006 1.4001 1.39937 1.40054 1.39998 1.39977 1.39989 1.39925 1.40271 1.39769 1.39847 1.40449 1.39788 1.39761 1.40344 1.39954 1.3978 1.40271 1.39974 1.39724 1.40203 1.40057 1.39886 1.40061 1.39976 1.39957 1.40017 1.39993 1.39994 1.40008 1.40003 1.4 1.40002 1.40001 1.40001 1.40002 1.39999 1.40001 1.39999 1.40002 1.4 1.4 1.40001 1.39999 1.40003 1.39997 1.40004 1.39998 1.40002 1.39998 1.40005 1.39993 1.40007 1.40006 1.3998 1.40022 1.40006 1.39969 1.40008 1.4005 1.3995 1.39999 1.39998 1.40036 1.40003 1.39971 1.39988 1.40003 1.4002 1.40031 1.39968 1.40011 1.39957 1.40026 1.39993 1.40013 1.39999 1.4 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39996 1.39995 1.39995 1.39995 1.39994 1.39994 1.39994 1.39994 1.39994 1.39997 1.39991 1.39996 1.39998 1.39992 1.4 1.39999 1.39973 1.40038 1.39994 1.39923 1.40097 1.39932 1.40075 1.39933 1.39866 1.40351 1.39787 1.39829 1.40381 1.39813 1.39781 1.40379 1.39935 1.39696 1.40297 1.39994 1.39792 1.4019 1.39996 1.39925 1.40057 1.39981 1.39989 1.40018 1.39995 1.39997 1.40004 1.40002 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.40001 1.4 1.40001 1.39999 1.40002 1.39998 1.40002 1.40001 1.39998 1.40005 1.39997 1.4 1.40005 1.39992 1.40008 1.40005 1.39977 1.40028 1.40003 1.39965 1.40022 1.40011 1.40012 1.39944 1.40041 1.39997 1.40017 1.40007 1.39925 1.40073 1.39935 1.40082 1.3996 1.40017 1.39985 1.39993 1.40001 1.40002 1.40002 1.40001 1.4 1.39999 1.39999 1.39998 1.39998 1.39997 1.39998 1.39996 1.39996 1.39996 1.39996 1.39997 1.39997 1.39996 1.39996 1.39998 1.39997 1.39995 1.39999 1.39996 1.40004 1.39995 1.39953 1.40098 1.39941 1.39938 1.40117 1.39893 1.40151 1.39847 1.39894 1.40389 1.39739 1.39806 1.40443 1.3986 1.39698 1.40354 1.39916 1.39766 1.40344 1.39937 1.3982 1.40132 1.39973 1.39984 1.40058 1.39992 1.40002 1.40014 1.39997 1.39997 1.4 1.4 1.4 1.40001 1.39999 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40002 1.39999 1.4 1.40003 1.39996 1.40005 1.39997 1.40001 1.40002 1.39997 1.40006 1.39992 1.4001 1.39999 1.39985 1.40019 1.40011 1.39961 1.40025 1.40003 1.40016 1.3997 1.39996 1.40008 1.40028 1.39985 1.40014 1.39951 1.40034 1.39982 1.40036 1.39984 1.40006 1.39991 1.39998 1.39999 1.40002 1.40002 1.40001 1.4 1.39999 1.39999 1.39999 1.39998 1.39999 1.39998 1.39998 1.39999 1.39997 1.39998 1.4 1.39996 1.4 1.39998 1.39996 1.40002 1.39996 1.39989 1.40041 1.39958 1.39946 1.40157 1.39872 1.4001 1.40042 1.399 1.40266 1.39759 1.39853 1.4042 1.39789 1.39794 1.40416 1.39815 1.39747 1.40424 1.39856 1.39782 1.4028 1.39913 1.3991 1.40097 1.39957 1.39989 1.40025 1.39986 1.4 1.40009 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.39999 1.40003 1.39997 1.40004 1.39999 1.39999 1.40003 1.39997 1.40002 1.40001 1.39999 1.39998 1.40008 1.39997 1.39989 1.40018 1.39998 1.39998 1.39978 1.40038 1.39985 1.4 1.39997 1.39982 1.40049 1.39957 1.40043 1.39958 1.40015 1.39989 1.40011 1.40007 1.40002 1.39999 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39998 1.4 1.39998 1.4 1.40001 1.39995 1.40005 1.39993 1.39984 1.40082 1.39891 1.39991 1.4016 1.39827 1.40101 1.39939 1.39931 1.40307 1.39731 1.39888 1.4041 1.39723 1.39802 1.4047 1.39798 1.39802 1.40374 1.39792 1.39863 1.40233 1.39929 1.39967 1.40054 1.39957 1.39993 1.40009 1.39987 1.39996 1.40004 1.40002 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.39999 1.40002 1.40001 1.39999 1.40004 1.39998 1.40002 1.40002 1.39998 1.40003 1.40001 1.39998 1.40004 1.39997 1.40004 1.4 1.39995 1.40011 1.39996 1.3999 1.40016 1.39998 1.4 1.39985 1.40017 1.40003 1.40008 1.3997 1.40023 1.39975 1.40043 1.39973 1.40018 1.39979 1.40009 1.39994 1.40006 1.40003 1.40002 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.39999 1.4 1.4 1.4 1.4 1.39998 1.4 1.40002 1.39999 1.39998 1.40016 1.39955 1.40017 1.4011 1.39815 1.40066 1.40097 1.3987 1.40144 1.39815 1.39995 1.4034 1.39696 1.39899 1.40405 1.39717 1.39872 1.40418 1.39716 1.39883 1.40344 1.39822 1.39928 1.40142 1.39935 1.39997 1.40038 1.39978 1.40001 1.40006 1.39992 1.39997 1.40001 1.40002 1.40001 1.4 1.40002 1.4 1.40001 1.39999 1.40001 1.40001 1.39998 1.40003 1.39999 1.4 1.40003 1.39997 1.40003 1.40002 1.39996 1.40006 1.39996 1.40003 1.4 1.40001 1.4 1.39996 1.40008 1.39998 1.39995 1.4 1.40016 1.39987 1.40001 1.40002 1.39998 1.40017 1.39979 1.40017 1.39981 1.40016 1.39999 1.40006 1.39995 1.39997 1.4 1.40001 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.39998 1.39998 1.40005 1.39995 1.40003 1.40028 1.39907 1.40077 1.4008 1.39808 1.40116 1.39988 1.39965 1.40163 1.3975 1.4002 1.40296 1.39705 1.3999 1.40366 1.39659 1.39928 1.40364 1.39729 1.39956 1.40254 1.39854 1.39964 1.40079 1.39954 1.40003 1.40022 1.39991 1.40005 1.4001 1.4 1.39999 1.40001 1.4 1.40002 1.4 1.4 1.40002 1.4 1.40002 1.39998 1.40002 1.40001 1.39998 1.40004 1.39997 1.40002 1.40001 1.39999 1.40003 1.39999 1.4 1.40002 1.4 1.39998 1.40007 1.39994 1.4 1.40007 1.39997 1.39998 1.4 1.4001 1.39994 1.40002 1.3999 1.4002 1.39985 1.40019 1.39976 1.40016 1.39989 1.4001 1.39999 1.40004 1.39998 1.39999 1.39999 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.39999 1.4 1.40002 1.40001 1.39998 1.39997 1.40003 1.39988 1.40036 1.39999 1.39879 1.40145 1.40015 1.39863 1.40103 1.39923 1.40055 1.40125 1.39747 1.40077 1.40237 1.39692 1.40036 1.40309 1.39689 1.40009 1.40287 1.39755 1.39974 1.40165 1.39907 1.3999 1.40042 1.39971 1.40002 1.40011 1.39997 1.40003 1.40006 1.40003 1.4 1.4 1.40001 1.39999 1.40002 1.4 1.40002 1.39999 1.40001 1.40002 1.39998 1.40003 1.39999 1.40001 1.40001 1.4 1.4 1.40002 1.39999 1.40003 1.39998 1.40003 1.39999 1.4 1.40004 1.39998 1.39998 1.40005 1.40002 1.39993 1.40004 1.40002 1.4 1.40003 1.39991 1.40007 1.39998 1.40008 1.39996 1.39998 1.4 1.40001 1.40002 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.39998 1.40002 1.40003 1.39998 1.39999 1.39994 1.3998 1.40081 1.39953 1.39894 1.40144 1.3998 1.39952 1.40036 1.39897 1.40112 1.40088 1.3978 1.40101 1.40162 1.39719 1.40088 1.40247 1.39725 1.40026 1.40209 1.39827 1.39985 1.40097 1.39947 1.39999 1.40026 1.39988 1.4 1.40004 1.39994 1.39997 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.4 1.4 1.40002 1.39999 1.40002 1.4 1.4 1.40002 1.39999 1.4 1.40002 1.39999 1.40001 1.40001 1.40001 1.39999 1.40004 1.39996 1.40003 1.40002 1.39997 1.40001 1.40002 1.40001 1.39997 1.40002 1.39999 1.40006 1.39994 1.40007 1.39991 1.40011 1.39993 1.40006 1.39996 1.4 1.4 1.40002 1.40002 1.40002 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.39998 1.39999 1.40005 1.40001 1.40004 1.39967 1.39997 1.401 1.39916 1.39937 1.40097 1.39984 1.40008 1.39986 1.3992 1.40112 1.40033 1.39834 1.40133 1.4012 1.39754 1.40082 1.4018 1.39786 1.40022 1.40145 1.39898 1.3999 1.40054 1.39975 1.39998 1.40011 1.39993 1.39998 1.40002 1.39998 1.39997 1.4 1.4 1.40001 1.40001 1.39999 1.40002 1.4 1.40002 1.39999 1.40001 1.40001 1.39999 1.40002 1.39999 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40002 1.39999 1.40002 1.40001 1.39999 1.40001 1.40002 1.39999 1.39999 1.40005 1.39999 1.39999 1.40002 1.39998 1.40006 1.39998 1.40001 1.39998 1.40001 1.40003 1.39999 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.39997 1.39997 1.40002 1.40011 1.40008 1.39936 1.40019 1.4009 1.3993 1.39951 1.40038 1.40026 1.40028 1.3995 1.39955 1.4011 1.40006 1.39868 1.40121 1.40092 1.39811 1.40066 1.40136 1.39858 1.40007 1.40093 1.3995 1.3999 1.40024 1.39986 1.39995 1.40003 1.39999 1.40002 1.40004 1.40003 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.39999 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.39998 1.40003 1.4 1.39999 1.40003 1.4 1.39999 1.40001 1.40001 1.40001 1.4 1.39999 1.40003 1.39997 1.40006 1.39997 1.40003 1.39998 1.40002 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40002 1.39996 1.39994 1.39997 1.40025 1.40003 1.39931 1.40023 1.40062 1.39973 1.39955 1.39997 1.40045 1.40032 1.39955 1.39981 1.40087 1.39995 1.39898 1.40099 1.4008 1.39867 1.40039 1.401 1.3992 1.39991 1.40048 1.39976 1.3999 1.40012 1.39999 1.4 1.40003 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.4 1.4 1.40002 1.39999 1.40001 1.40002 1.39999 1.40003 1.39998 1.40002 1.40001 1.4 1.40001 1.39999 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.39999 1.40001 1.40002 1.39996 1.39989 1.39993 1.40034 1.39996 1.39944 1.40007 1.4005 1.40005 1.39949 1.39991 1.40055 1.40023 1.3996 1.39997 1.40083 1.4001 1.39921 1.40064 1.4007 1.39918 1.40011 1.40061 1.39961 1.39988 1.40025 1.39996 1.39997 1.40006 1.40001 1.4 1.4 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.40001 1.39999 1.40001 1.4 1.40001 1.40001 1.39999 1.40003 1.39998 1.40002 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.40001 1.40002 1.39997 1.39983 1.39993 1.40029 1.4 1.39965 1.39985 1.40042 1.40027 1.39961 1.39987 1.40049 1.40031 1.39983 1.39997 1.40063 1.40026 1.39951 1.40036 1.40055 1.39959 1.4 1.40038 1.3999 1.39993 1.4001 1.39999 1.39996 1.39999 1.4 1.40001 1.40002 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.39999 1.40002 1.39999 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39997 1.39997 1.4 1.40001 1.39998 1.39983 1.39995 1.40016 1.40007 1.3998 1.39985 1.40035 1.40027 1.39983 1.40003 1.40042 1.4003 1.39998 1.4 1.40049 1.40035 1.39975 1.40016 1.40039 1.39988 1.39997 1.40017 1.39996 1.39994 1.40002 1.4 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39998 1.39995 1.39996 1.39999 1.40001 1.39995 1.39988 1.39998 1.4001 1.40014 1.39989 1.39994 1.40035 1.40033 1.4 1.40009 1.40038 1.40041 1.40019 1.40005 1.40032 1.40034 1.39997 1.40008 1.40021 1.39998 1.39997 1.40006 1.4 1.39998 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39998 1.39998 1.39997 1.39994 1.39994 1.39998 1.40001 1.39996 1.39995 1.4 1.40012 1.40018 1.40005 1.40009 1.40032 1.40036 1.40023 1.40028 1.40036 1.40037 1.40029 1.40017 1.40025 1.40028 1.40008 1.40006 1.40011 1.40002 1.4 1.40002 1.4 1.39999 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39998 1.39996 1.39996 1.39997 1.39996 1.39993 1.39996 1.39999 1.40001 1.4 1.40004 1.4001 1.40021 1.40022 1.4002 1.40028 1.40044 1.40041 1.40032 1.40036 1.4004 1.40039 1.40035 1.40023 1.4002 1.4002 1.40011 1.40006 1.40005 1.40001 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39998 1.39998 1.39997 1.39996 1.39995 1.39995 1.39997 1.39995 1.39995 1.39998 1.40004 1.40007 1.40009 1.40014 1.40023 1.40034 1.40037 1.40036 1.40042 1.40052 1.40051 1.40048 1.40048 1.40042 1.40035 1.40032 1.40025 1.40018 1.40014 1.40009 1.40005 1.40002 1.4 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39997 1.39996 1.39996 1.39994 1.39994 1.39996 1.39998 1.39998 1.40001 1.40007 1.40013 1.40018 1.40025 1.40031 1.4004 1.40047 1.40052 1.40055 1.40061 1.40064 1.40058 1.40052 1.40052 1.40046 1.40037 1.4003 1.40023 1.40015 1.4001 1.40006 1.40003 1.40001 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39998 1.39997 1.39996 1.39995 1.39995 1.39995 1.39995 1.39995 1.39999 1.40003 1.40006 1.40012 1.40021 1.40029 1.40037 1.40044 1.40053 1.40062 1.40069 1.4007 1.4007 1.40072 1.40073 1.40067 1.40058 1.40051 1.40043 1.40034 1.40025 1.40018 1.40011 1.40006 1.40003 1.40001 1.4 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.39999 1.39999 1.39997 1.39996 1.39996 1.39995 1.39994 1.39995 1.39997 1.39998 1.40002 1.40008 1.40015 1.40022 1.40031 1.40041 1.40051 1.40062 1.4007 1.40077 1.40082 1.40088 1.4009 1.40086 1.40081 1.40076 1.40068 1.40057 1.40047 1.40038 1.40029 1.4002 1.40013 1.40008 1.40004 1.40001 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.39999 1.39998 1.39997 1.39996 1.39995 1.39995 1.39995 1.39996 1.39999 1.40003 1.40009 1.40016 1.40026 1.40036 1.40047 1.40059 1.4007 1.4008 1.4009 1.40099 1.40103 1.40104 1.40105 1.40103 1.40096 1.40087 1.40078 1.40067 1.40055 1.40042 1.40032 1.40023 1.40015 1.40009 1.40004 1.40001 1.4 1.39999 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.39999 1.39998 1.39997 1.39996 1.39995 1.39995 1.39997 1.4 1.40005 1.40012 1.4002 1.4003 1.40042 1.40055 1.40068 1.40081 1.40094 1.40105 1.40114 1.40121 1.40126 1.40126 1.40124 1.40119 1.40111 1.401 1.40087 1.40073 1.40061 1.40048 1.40035 1.40025 1.40016 1.4001 1.40005 1.40001 1.39999 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40001 1.40001 1.4 1.39999 1.39998 1.39997 1.39996 1.39997 1.39998 1.40002 1.40007 1.40014 1.40025 1.40037 1.4005 1.40065 1.4008 1.40096 1.4011 1.40124 1.40135 1.40143 1.40149 1.40151 1.4015 1.40145 1.40137 1.40125 1.40112 1.40098 1.40083 1.40067 1.40052 1.40039 1.40028 1.40018 1.40011 1.40005 1.40002 1.39999 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.4 1.39998 1.39998 1.39998 1.4 1.40004 1.4001 1.40019 1.40031 1.40045 1.40061 1.40078 1.40096 1.40114 1.40131 1.40147 1.4016 1.40171 1.40178 1.40181 1.40181 1.40176 1.40168 1.40157 1.40143 1.40126 1.40108 1.40091 1.40073 1.40057 1.40042 1.4003 1.4002 1.40012 1.40006 1.40002 1.39999 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 ) ; boundaryField { emptyPatches_empt { type empty; } top_cyc { type cyclic; } bottom_cyc { type cyclic; } inlet_cyc { type cyclic; } outlet_cyc { type cyclic; } } // ************************************************************************* //
[ "tdg@debian" ]
tdg@debian
eb3dba8c11f3aad7bf4e04e81aefa6151fdc8f9b
188ef12e4bf07412d7607c0d93c729f0e7ef8998
/dynamic_programming/longest_common_substring.cpp
13e0d8d31de5f7914c921871a73dc2f7e44fc115
[]
no_license
sayakura/AlgoCollection
cd5c5bcb1095630f0048dc84b7b17d1f7a8b9407
84e751392eb7050bc74c537803daadbed93d355d
refs/heads/master
2021-05-17T17:25:06.830456
2021-04-03T21:59:29
2021-04-03T21:59:29
250,894,530
4
0
null
null
null
null
UTF-8
C++
false
false
731
cpp
#include <vector> #include <iostream> using namespace std; /* a b e c 0 0 0 b 0 0 0 a 1 1 0 b 0 2 0 e 3 */ int longestCommonSubstring(string a, string b) { int n = a.size(), m = b.size(); int ret = 0; vector<vector<int> >dp(n + 1, vector<int>(m + 1, 0)); for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (a[i - 1] == b[j - 1]) { dp[i][j] = 1 + dp[i - 1][j - 1]; ret = max(ret, dp[i][j]); } } } return ret; } int main() { string a = "OldSite:GeeksforGeeks.org"; string b = "NewSite:GeeksQuiz.com"; cout << longestCommonSubstring(a, b) << endl; return 0; }
[ "linra.kura@gmail.com" ]
linra.kura@gmail.com
422ba10b1fc6c63048a917b8dfab278129428fb1
542c1cb38a366b4c8cc5ea4cdda2ea7608331cab
/tests/LabyrinthOfLoreGame/ThingDefinitionFactoryTest.cpp
61eb587fae17a0db1fad599b00d716df7341e283
[]
no_license
MarkOates/LabyrinthOfLore
8deeba407bdad10d075795606982af7cc0f1b3d3
6c360b86e6229d4a6fac92425d828d97ac691e3a
refs/heads/master
2023-04-13T09:49:16.642653
2023-04-09T13:29:00
2023-04-09T13:29:00
228,079,476
0
0
null
2022-09-23T00:58:52
2019-12-14T19:45:52
C++
UTF-8
C++
false
false
530
cpp
#include <gtest/gtest.h> #include <LabyrinthOfLoreGame/ThingDefinitionFactory.hpp> TEST(LabyrinthOfLoreGame_ThingDefinitionFactoryTest, can_be_created_without_blowing_up) { LabyrinthOfLoreGame::ThingDefinitionFactory thing_definition_factory; } TEST(LabyrinthOfLoreGame_ThingDefinitionFactoryTest, run__returns_the_expected_response) { LabyrinthOfLoreGame::ThingDefinitionFactory thing_definition_factory; std::string expected_string = "Hello World!"; EXPECT_EQ(expected_string, thing_definition_factory.run()); }
[ "markoates0@gmail.com" ]
markoates0@gmail.com