blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
8ab6502d9007ffda3c2a00a3b0a0d026b581e268
1612db65c0b1070b09d1c655db62d68df0ac4030
/MyMario/MyMario/pipeline.cpp
32337b5525112eb739d6da6aa2b0cdca4ce5aba7
[]
no_license
monk2846733026/monk2846733026
ea56b2fdf86428ea7b18002d539975fa4e30fbbe
ba26653898f988060dc1149cb7bbb676c5e0b7df
refs/heads/master
2022-06-17T02:53:28.984985
2022-05-26T02:36:58
2022-05-26T02:36:58
239,967,965
0
0
null
null
null
null
UTF-8
C++
false
false
49
cpp
#include "pipeline.h" Pipeline::Pipeline() { }
[ "60962648+monk2846733026@users.noreply.github.com" ]
60962648+monk2846733026@users.noreply.github.com
7fa38c71bb821fbda00ef7c859fcac1157d34ac9
f2a8134e2d08609100cdfac942614b314b5385f9
/galvanoServoCoilMotorSPI/galvanoServoCoilMotorSPI.ino
eb1e67da2f2cba688b3f599fde6354be2bb5e1d7
[]
no_license
sakaguti/Arduino
c568180cf799a60ba391f4d514d7b95b77e057b4
97393ac950a1f6dd821fbe46c95c419776b3071e
refs/heads/master
2021-05-01T14:18:51.936144
2018-05-02T07:08:29
2018-05-02T07:08:29
121,082,106
1
0
null
null
null
null
UTF-8
C++
false
false
34,414
ino
/* * DRV8835 端子 * M2PWM Pin 35 B2 * M1PWM Pin 34 A2 * M2DIR Pin 33 B1 * M1DIR Pin 32   A1 * * VSPI 端子 * GPIO #18  —– SCLK ( SPI Clock )
// * GPIO #23  —– MOSI ( Master Output Slave Input )
 * GPIO #19  —– MISO ( Master Input Slave Output )
 * GPIO #05  —– CS1 ( Chip Select ) * GPIO #21  —– CS2 ( Chip Select ) * * GPIO #13 -- Laser PWM #2 SDA0 * * GPIO #27 -- I2C SDA0 * GPIO #14 -- I2C SCL0 * GPIO #22 -- I2C SDA1 * GPIO #23 -- I2C SCL1 * */ #include <SPI.h> #include <WiFi.h> #include <WiFiUdp.h> #include "FS.h" #include "SPIFFS.h" #include <SoftwareSerial.h> // UART SoftwareSerial swSer(1, 3, false, 256); // make file data.txt //#define FILEWRITE // fade LED PIN (replace with LED_BUILTIN constant for built-in LED) #define LASER_PIN 13 #define LASER_CHANNEL 0 double laser_pwm=0.0; char ssid[] = "sakaguti-network3"; // your network SSID (name) char pass[] = "sakaguti55"; // your network password int keyIndex = 0; // your network key Index number (needed only for WEP) int status = WL_IDLE_STATUS; WiFiServer server(80); #include <DRV8835MotorShield.h> DRV8835MotorShield motors; // SPI CS pins #define S1 5 #define S2 21 #define S3 25 // Delay msec for motor rotate time #define Delay 0 // 10 - 20msec unsigned char values[2]; int16_t x,y; double c= (360.0/16383.0); #define KP 0.1 #define KI 0.0001 #define KD 0.000001 double Px=0.1,Ix=0.0001,Dx=0.000001;// 0.0025,0.0001,0.000025 double Py=KP,Iy=KI,Dy=KD; // MAX is 5V #define MAXS 3.0 // 3V max double X_OUTPUT_MIN= -MAXS; double X_OUTPUT_MAX= MAXS; double Y_OUTPUT_MIN= -MAXS*1.5; double Y_OUTPUT_MAX= MAXS*1.5; double xAngle,xSpeed=0.0; double yAngle,ySpeed=0.0; double xOrgAngle=200.0; double yOrgAngle=50.0; double xSetAngle=xOrgAngle, xSetAngleDt=1.0, xSetAngleOld=0.0; double ySetAngle=yOrgAngle, ySetAngleDt=1.0, ySetAngleOld=0.0; double xSetAxis=0.0; double ySetAxis=0.0; //SPIClass hspi(HSPI); unsigned long time0, time1, time2; /*working variables*/ unsigned long lastTimeM1; unsigned long lastTimeM2; double errSumM1=0.0, lastErrM1; double errSumM2=0.0, lastErrM2; boolean sSW=true; // servo SW boolean dSW=false; // whether image draw or not. #define MAXDRAW 5 // How many draw image repeatable int patternNo=0; // draw image pattern. int drawCount=0; // How many draw image int imgCount=0; #define WNO 4000 // drawing speed. motor is 4000 max, coil is 400 max. #define WNO2 250 // //#define SERVO_KICK #define GAIN_ADJUST //#define SMOOTH_AM¥NGLE // time average og angles double XYtoDeg(double x){ return atan(x/120)/M_PI*90.0; } double XtoDeg(double x){ return atan(x/12.0)/M_PI*90.0+xOrgAngle; } double YtoDeg(double x){ return atan(x/12.0)/M_PI*90.0+yOrgAngle; } // draw image double dataX[]={-0.025, 0.025, -0.025, 0.025, -0.025, 0.025, -0.025, 0.025}; double dataY[]={-0.01, -0.01, 0.0, 0.0, 0.01, 0.01, 0.0, 0.0 }; void drawImage(int pn) { // static double xsetang,ysetang; static double CX=0.0,CY=0.0; int ic=0; static double R=0.0; static double oR=0.75*20.0; static double dR=0.0; // increment diameter of circle static double C=0.95; // aspect // if (drawCount == MAXDRAW){ xSetAngle=xsetang; ySetAngle=ysetang; xSetAxis=CX; ySetAxis=CY; imgCount=0; drawCount=0; } if(drawCount == 0 && imgCount == 0){ xsetang=xSetAngle; ysetang=ySetAngle; CX=xSetAxis; CY=ySetAxis; R = oR; } switch(pn){ case 0: // draw square if(imgCount>=8*WNO){ imgCount=0; } // ic=(int)(imgCount/(2*WNO)); switch(ic){ case 0: xSetAxis = -0.1*R+CX; ySetAxis = -0.1*C*R+CY; break; case 1: xSetAxis = 0.1*R+CX; ySetAxis = -0.1*C*R+CY; break; case 2: xSetAxis = 0.1*R+CX; ySetAxis = 0.1*C*R+CY; break; case 3: xSetAxis = -0.1*R+CX; ySetAxis = 0.1*C*R+CY; break; } xSetAngle=XtoDeg(xSetAxis); ySetAngle=YtoDeg(ySetAxis); imgCount++; if(imgCount >= 4*(2*WNO)){ imgCount = 0; R += dR; drawCount++; } break; case 1: // draw circle xSetAxis = 0.15*R*cos(M_PI*(double)imgCount/(double)WNO)+CX; ySetAxis = 0.8*0.15*C*R*sin(M_PI*(double)imgCount/(double)WNO)+CY; //xSetAxis=0.0; xSetAngle=XtoDeg(xSetAxis); ySetAngle=YtoDeg(ySetAxis); imgCount++; if(imgCount >= WNO*2){ imgCount = 0; R += dR; drawCount++; } break; case 2: // draw data ic = imgCount/WNO2; xSetAxis = R*dataX[ic]+CX; ySetAxis = R*C*dataY[ic]+CY; xSetAngle=XtoDeg(xSetAxis); ySetAngle=YtoDeg(ySetAxis); imgCount++; if(imgCount >= sizeof(dataX)/sizeof(double)*WNO2){ imgCount = 0; drawCount++; } break; default: break; } // } // read command from UART void prjCmd(String currentLine){ int stx,sty,enx,eny; if( currentLine.indexOf("cen=") >= 0){ // move command (X,Y) stx=int(currentLine.indexOf("cen="))+4; enx=int(currentLine.indexOf(",",stx)); xSetAxis=currentLine.substring(stx, enx).toFloat(); stx=enx+1; enx=int(currentLine.indexOf("\0",stx)); ySetAxis=currentLine.substring(stx, enx).toFloat(); xSetAngle=XtoDeg(xSetAxis); ySetAngle=YtoDeg(ySetAxis); } if( currentLine.indexOf("srt") >= 0){ // start command sSW=true; } if( currentLine.indexOf("stp") >= 0){ // stop command sSW=false; } // laser power if( currentLine.indexOf("lp=") >= 0){ // laser power (PWM) sty=int(currentLine.indexOf(",lp=",0))+3; eny=int(currentLine.indexOf('\0',sty)); float pwm=currentLine.substring(sty, eny).toFloat(); if(pwm > 100.0) pwm = 100.0; if(pwm < 0.0 ) pwm = 0.0; laser_pwm = pwm; } if( currentLine.indexOf("sw0") >= 0){ // draw pattern 0 dSW=true; patternNo=0; } if( currentLine.indexOf("sw1") >= 0){ // draw pattern 1 dSW=true; patternNo=1; } if( currentLine.indexOf("sw2") >= 0){ // draw pattern 1 dSW=true; patternNo=2; } /// if( currentLine.indexOf("xa=") >= 0){ stx=int(currentLine.indexOf("xa="))+3; enx=int(currentLine.indexOf(",",stx)); xSetAngle==currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("ya=") >= 0){ sty=int(currentLine.indexOf(",ya=",0))+4; if( currentLine.indexOf(",xa=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } ySetAngle=currentLine.substring(sty, eny).toFloat(); } /// Axis if( currentLine.indexOf("xp=") >= 0){ stx=int(currentLine.indexOf("xp="))+3; enx=int(currentLine.indexOf(",",stx)); xSetAxis=currentLine.substring(stx, enx).toFloat(); xSetAngle=XtoDeg(xSetAxis); } if( currentLine.indexOf("yp=") >= 0){ sty=int(currentLine.indexOf(",yp=",0))+4; if( currentLine.indexOf(",Px=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } ySetAxis=currentLine.substring(sty, eny).toFloat(); ySetAngle=YtoDeg(ySetAxis); } // if( currentLine.indexOf("lp=") >= 0){ sty=int(currentLine.indexOf(",lp=",0))+4; if( currentLine.indexOf(",Px=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } float pwm=currentLine.substring(sty, eny).toFloat(); if(pwm > 100.0) pwm = 100.0; if(pwm < 0.0 ) pwm = 0.0; laser_pwm = pwm; } /// // PID Px,Ix,Dx, Py,Iy,Dy if( currentLine.indexOf("Px=") >= 0){ stx=int(currentLine.indexOf(",Px=",0))+4; enx=int(currentLine.indexOf(",",stx)); Px=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Ix=") >= 0){ stx=int(currentLine.indexOf(",Ix="))+4; enx=int(currentLine.indexOf(",",stx)); Ix=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Dx=") >= 0){ stx=int(currentLine.indexOf(",Dx="))+4; enx=int(currentLine.indexOf(",",stx)); Dx=currentLine.substring(stx, enx).toFloat(); //xSpeed = ySpeed = 0; //motors.setSpeeds(xSpeed,ySpeed); SetPIDx(Px,Ix,Dx); } if( currentLine.indexOf("Py=") >= 0){ stx=int(currentLine.indexOf(",Py="))+4; enx=int(currentLine.indexOf(",",stx)); Py=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Iy=") >= 0){ stx=int(currentLine.indexOf(",Iy="))+4; enx=int(currentLine.indexOf(",",stx)); Iy=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Dy=") >= 0){ stx=int(currentLine.indexOf(",Dy="))+4; enx=int(currentLine.indexOf(",",stx)); Dy=currentLine.substring(stx, enx).toFloat(); //xSpeed = ySpeed = 0; //motors.setM1Speed(xSpeed); //motors.setM2Speed(ySpeed); SetPIDy(Py,Iy,Dy); } if( currentLine.indexOf("sSW=") >= 0){ stx=int(currentLine.indexOf(",sSW="))+5; enx=int(currentLine.indexOf(",",stx)); sSW=currentLine.substring(stx, enx).toInt(); } if( currentLine.indexOf("dSW=") >= 0){ stx=int(currentLine.indexOf(",dSW="))+5; enx=int(currentLine.indexOf(" ",stx)); dSW=currentLine.substring(stx, enx).toInt(); drawCount=0; // How many draw image imgCount=0; } if( currentLine.indexOf("pN=") >= 0){ stx=int(currentLine.indexOf(",pN="))+4; enx=int(currentLine.indexOf(" ",stx)); patternNo=currentLine.substring(stx, enx).toInt(); drawCount=0; // How many draw image imgCount=0; } // projection ball command } #ifdef GAIN_ADJUST double GainAdjust(double v, double vOld) { double x; x=abs(v-vOld); return 1.0-0.75/(1.0+exp(-4.0*(x-1.0)))+0.1; } #endif void ComputeXY(double xAngle, double xSetAngle,double yAngle, double ySetAngle, double *xSpeed, double *ySpeed) { // How long since we last calculated unsigned long now = micros(); double timeChangeX = (double)(now - lastTimeM1)/1000000.0; double timeChangeY = (double)(now - lastTimeM2)/1000000.0; // Compute all the working error variables double errorX = xSetAngle - xAngle; double errorY = ySetAngle - yAngle; errSumM1 += (errorX * timeChangeX); errSumM2 += (errorY * timeChangeY); double dErrX = (errorX - lastErrM1) / timeChangeX; double dErrY = (errorY - lastErrM2) / timeChangeY; // kick gain #ifdef SERVO_KICK xSetAngleDt = 1.0 + 2.0*(xSetAngle - xSetAngleOld); #endif #ifdef GAIN_ADJUST xSetAngleDt=GainAdjust(xSetAngle,xSetAngleOld); ySetAngleDt=GainAdjust(ySetAngle,ySetAngleOld); #endif // Compute PID Output *xSpeed = xSetAngleDt*ySetAngleDt * (Px * errorX + Ix * errSumM1 + Dx * dErrX); *ySpeed = xSetAngleDt*ySetAngleDt * (Py * errorY + Iy * errSumM2 + Dy * dErrY); // Remember some variables for next time lastErrM1 = errorX; lastTimeM1 = now; lastErrM2 = errorY; lastTimeM2 = now; // return xSpeed; } double Computex(double xAngle, double xSetAngle) { // How long since we last calculated unsigned long now = micros(); double timeChange = (double)(now - lastTimeM1)/1000000.0; // Compute all the working error variables double error = xSetAngle - xAngle; errSumM1 += (error * timeChange); double dErr = (error - lastErrM1) / timeChange; // kick gain #ifdef SERVO_KICK xSetAngleDt = 1.0 + 2.0*(xSetAngle - xSetAngleOld); #endif #ifdef GAIN_ADJUST xSetAngleDt=GainAdjust(xSetAngle,xSetAngleOld); #endif // Compute PID Output xSpeed = xSetAngleDt * (Px * error + Ix * errSumM1 + Dx * dErr); // Remember some variables for next time lastErrM1 = error; lastTimeM1 = now; return xSpeed; } double Computey(double yAngle, double ySetAngle) { // How long since we last calculated unsigned long now = micros(); double timeChange = (double)(now - lastTimeM2)/1000000.0; // Compute all the working error variables double error = ySetAngle - yAngle; errSumM2 += (error * timeChange); double dErr = (error - lastErrM2) / timeChange; // Compute PID Output #ifdef GAIN_ADJUST ySetAngleDt=GainAdjust(ySetAngle,ySetAngleOld); #endif ySpeed = ySetAngleDt*(Py * error + Iy * errSumM2 + Dy * dErr); // Remember some variables for next time lastErrM2 = error; lastTimeM2 = now; return ySpeed; } void SetPIDx(double Kp, double Ki, double Kd) { Px = Kp; Ix = Ki; Dx = Kd; // lastErrM1=0.0; // errSumM1=0.0; // xSpeed=0.0; } void SetPIDy(double Kp, double Ki, double Kd) { Py = Kp; Iy = Ki; Dy = Kd; // lastErrM2=0.0; // errSumM2=0.0; // ySpeed=0.0; } int stx,enx,sty,eny; float sx=0,sy=0; void printWifiStatus() { // print the SSID of the network you're attached to: Serial.print("SSID: "); Serial.println(WiFi.SSID()); // print your WiFi shield's IP address: IPAddress ip = WiFi.localIP(); Serial.print("IP Address: "); Serial.println(ip); // print the received signal strength: long rssi = WiFi.RSSI(); Serial.print("signal strength (RSSI):"); Serial.print(rssi); Serial.println(" dBm"); // print where to go in a browser: Serial.print("To see this page in action, open a browser to http://"); Serial.println(ip); } void readFile(fs::FS &fs, const char * path){ Serial.printf("Reading file: %s\n", path); File file = fs.open(path); if(!file || file.isDirectory()){ Serial.println("Failed to open file for reading"); return; } Serial.print("Read from file: "); while(file.available()){ Serial.write(file.read()); } } void deleteFile(fs::FS &fs, const char * path){ Serial.printf("Deleting file: %s\n", path); if(fs.remove(path)){ Serial.println("File deleted"); } else { Serial.println("Delete failed"); } } void readFileHTML(fs::FS &fs, const char * path, WiFiClient client){ File file = fs.open(path); if(!file || file.isDirectory()){ Serial.println("Failed to open file for reading"); return; } while(file.available()){ client.printf("%s",file.read()); } } void writeFile(fs::FS &fs, const char * path, const char * message){ Serial.printf("Writing file: %s\n", path); File file = fs.open(path, FILE_WRITE); if(!file){ Serial.println("Failed to open file for writing"); return; } if(file.print(message)){ Serial.println("File written"); } else { Serial.println("Write failed"); } } void appendFile(fs::FS &fs, const char * path, const char * message){ //Serial.printf("Appending to file: %s\n", path); File file = fs.open(path, FILE_APPEND); if(!file){ Serial.println("Failed to open file for appending"); return; } if(file.print(message)){ // Serial.println("Message appended"); } else { // Serial.println("Append failed"); } } boolean fileReadSw=false; #include <NTPClient.h> #include <WiFiUdp.h> WiFiUDP ntpUDP; NTPClient timeClient(ntpUDP); void ntpsetup(){ timeClient.begin(); timeClient.update(); Serial.println(timeClient.getFormattedTime()); } void blinkSmartConfig() { digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level) delay(50); // wait for a second digitalWrite(2, LOW); // turn the LED off by making the voltage LOW delay(50); } void laserCtl(double laser_pwm) { if(laser_pwm>0.0){ // laser ON ledcWrite(LASER_CHANNEL, (int)(laser_pwm/100.0*65535.0)); } else { // laser OFF ledcWrite(LASER_CHANNEL, 0); // pwm 0% } } void setup() { int cnt = 0; Serial.begin(115200); // UART for comunicate with RPI swSer.begin(115200); // #ifdef FILEWRITE if(!SPIFFS.begin(true)){ Serial.println("SPIFFS Mount Failed"); return; } deleteFile(SPIFFS, "/data.txt"); #endif // 1:ledcSetup(チャンネル, 周波数, PWMの範囲); ledcSetup(LASER_CHANNEL, 5000, 16); // 2:ledcAttachPin(ピン番号, チャンネル); ledcAttachPin(LASER_PIN, LASER_CHANNEL); // LASER OFF ledcWrite(LASER_CHANNEL, 0); // motors.flipM1(true); motors.flipM2(true); /* * * VSPI 端子 * GPIO #18  —– SCLK ( SPI Clock )
// * GPIO #23  —– MOSI ( Master Output Slave Input )
 * GPIO #19  —– MISO ( Master Input Slave Output )
 * GPIO #05  —– CS1 ( Chip Select ) * GPIO #21  —– CS2 ( Chip Select ) * */ // SPI (vSPI) SPI.begin(18, 19, 23, 5);//int8_t sck, int8_t miso, int8_t mosi, int8_t ss SPI.setFrequency(1000000); //SSD1331 のSPI Clock Cycle Time 50nsec SPI.setDataMode(SPI_MODE3); SPI.setBitOrder(MSBFIRST); pinMode(S1, OUTPUT); pinMode(S2, OUTPUT); // SPI (hSPI) //pinMode(25, OUTPUT); //hspi.begin(14, 12, 13, 15); //hspi.setFrequency(7000000); //SSD1331 のSPI Clock Cycle Time 最低150ns //hspi.setDataMode(SPI_MODE3); // WiFi // attempt to connect to Wifi network: WiFi.begin(ssid, pass); for(int i=0;i<100;i++){ if(WiFi.status() != WL_CONNECTED) { Serial.print("Attempting to connect to Network named: "); Serial.println(ssid); // print the network name (SSID); // Connect to WPA/WPA2 network. Change this line if using open or WEP network: // wait 10 seconds for connection: delay(500); Serial.print("."); } } // smartConfig if(status != WL_CONNECTED) { Serial.println("SmartConfig Start."); // if wifi cannot connect start smartconfig while(WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); if(cnt++ >= 15){ WiFi.beginSmartConfig(); while(1){ delay(500); if(WiFi.smartConfigDone()){ Serial.println("SmartConfig Success"); blinkSmartConfig(); break; } } } } } server.begin(); // start the web server on port 80 printWifiStatus(); // you're connected now, so print out the status delay(2000); sSW=false; // servo OFF time1 = micros(); // start time // } // range 0- 16383 0-360deg 0.0021974 deg/unit String currentLineNow = ""; char buf[256]; String uartCom=""; double x_bit0=0.0,x_bit1=0.0,x_bit2=0.0,x_bit3=0.0,x_bit4=0.0,x_bit5=0.0,x_bit6=0.0,x_bit7=0.0; double sum0=0.0, sum1=0.0; double x_res0=0.0, x_res1=0.0; double GetEncPos(int ch){ double angle=0.0, x=0.0; // y axis digitalWrite(ch, LOW); delayMicroseconds(10); for(int16_t i=0; i<2; i++) { values[i] = SPI.transfer(0x00); // MISIは使わないので、引数は任意 } digitalWrite(ch, HIGH); x = ((values[0]<<8) + values[1]) & 0x3fff; angle=(double)x*c; //if(angle > 180.0 ) angle -= 360.0; return angle; } void loop() { // read UART command if avairable while (swSer.available() > 0) { uartCom += swSer.read(); } if(uartCom.length() > 0 ){ // do command processing prjCmd(uartCom); swSer.write("OK"); } // LASER POWER if(sSW==false){ laser_pwm=0.0; errSumM1=0.0; lastErrM1=0.0; errSumM2=0.0; lastErrM2=0.0; } laserCtl(laser_pwm); time0 = micros(); xAngle=GetEncPos(S1); yAngle=GetEncPos(S2); #ifdef SMOOTH_AM¥NGLE // time average of angles //dx buffer x_bit6=x_bit4; x_bit7=x_bit5; x_bit4=x_bit2; x_bit5=x_bit3; x_bit2=x_bit0; x_bit3=x_bit1; x_bit0=xAngle; x_bit1=yAngle; sum0=(x_bit0+x_bit2+x_bit4+x_bit6); sum1=(x_bit1+x_bit3+x_bit5+x_bit7); x_res0=sum0/4.0; x_res1=sum1/4.0; xAngle = x_res0; //time1 = micros(); yAngle = x_res1; #endif // /* xSpeed=Computex(xAngle, xSetAngle); ySpeed=Computey(yAngle, ySetAngle); */ ComputeXY(xAngle, xSetAngle, yAngle, ySetAngle, &xSpeed, &ySpeed); if(xSpeed < X_OUTPUT_MIN) xSpeed = X_OUTPUT_MIN; if(xSpeed > X_OUTPUT_MAX) xSpeed = X_OUTPUT_MAX; if(ySpeed < Y_OUTPUT_MIN ) ySpeed = Y_OUTPUT_MIN; if(ySpeed > Y_OUTPUT_MAX ) ySpeed = Y_OUTPUT_MAX; if(sSW){ motors.setM1Speed(xSpeed); } else { motors.setM1Speed(0.0); } // if(sSW){ motors.setM2Speed(ySpeed); } else { motors.setM2Speed(0.0); } delay(Delay); time2 = micros(); // #ifdef FILEWRITE sprintf(buf,"%d,%f,%f,%d,%f,%f\n",time1,xAngle,xSetAngle,time2,yAngle,ySetAngle); appendFile(SPIFFS, "/data.txt", buf); #endif // keep current xSetAngle xSetAngleOld=xSetAngle; ySetAngleOld=ySetAngle; if( time2 - time1 > 5000 ){ if(dSW) drawImage(patternNo);// draw image if((time2 - time1) % 500 == 0 ){ Serial.print(" xAngle="); Serial.print(xAngle); Serial.print(" xSetAngle="); Serial.print(xSetAngle); Serial.print(" xSpeed="); Serial.printf("%5.4f",xSpeed); /* Serial.print(" P="); Serial.print(Px); Serial.print(" I="); Serial.print(Ix); Serial.print(" D="); Serial.print(Dx); */ Serial.print(" yAngle="); Serial.print(yAngle); Serial.print(" ySetAngle="); Serial.print(ySetAngle); Serial.print(" ySpeed="); Serial.printf("%5.4f",ySpeed); /* Serial.print(" P="); Serial.print(Py); Serial.print(" I="); Serial.print(Iy); Serial.print(" D="); Serial.print(Dy); */ Serial.print(" laser="); Serial.print(laser_pwm); Serial.print(" time="); Serial.print(float(time2-time0)/1000.0); Serial.println("msec"); } WiFiClient client = server.available(); // listen for incoming clients if (client) { // if you get a client, Serial.println("new client"); // print a message out the serial port String currentLine = ""; // make a String to hold incoming data from the client while (client.connected()) { // loop while the client's connected if (client.available()) { // if there's bytes to read from the client, char c = client.read(); // read a byte, then Serial.write(c); // print it out the serial monitor if (c == '\n') { // if the byte is a newline character // if the current line is blank, you got two newline characters in a row. // that's the end of the client HTTP request, so send a response: if (currentLine.length() == 0) { // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK) // and a content-type so the client knows what's coming, then a blank line: //client.println(currentLineNow); client.println("HTTP/1.1 200 OK"); client.println("Content-type:text/html"); client.println(); // client.println("<p>Parameter setting</p>"); client.println("<form action='http://"); client.println(WiFi.localIP()); client.println("' method='put'>"); // angle set client.println("<p>xSetAngle=<input type='text' name='xa=' value='"); client.println(xSetAngle); client.println("' size='20' />"); client.println("ySetAngle=<input type='text' name='ya=' value='"); client.println(ySetAngle); client.println("' /></p>" ); // xy set client.println("<p>xPosition=<input type='text' name='xp=' value='"); client.println(xSetAxis); client.println("' size='20' />"); client.println("yPosition=<input type='text' name='yp=' value='"); client.println(ySetAxis); client.println("' />" ); client.println("</p>"); // laser power set client.println("laser=<input type='text' name='lp=' value='"); client.print(laser_pwm); client.println("' /></p>" ); // PID set client.println("<p>Px=<input type='text' name='Px=' value='"); client.printf("%5.4f",Px); client.println("' size='20' />"); client.println("Ix=<input type='text' name='Ix=' value='"); client.printf("%10.9f",Ix); client.println("' />" ); client.println("Dx=<input type='text' name='Dx=' value='"); client.printf("%10.9f",Dx); client.println("' />" ); client.println("</p>"); client.println("<p>Py=<input type='text' name='Py=' value='"); client.printf("%5.4f",Py); client.println("' size='20' />"); client.println("Iy=<input type='text' name='Iy=' value='"); client.printf("%10.9f",Iy); client.println("' />" ); client.println("Dy=<input type='text' name='Dy=' value='"); client.printf("%10.9f",Dy); client.println("' />" ); client.println("</p>"); client.println("<p>sSW=<input type='text' name='sSW=' value='"); client.printf("%d",sSW); client.println("' />" ); client.println("dSW=<input type='text' name='dSW=' value='"); client.printf("%d",dSW); client.println("' />" ); client.println("pN=<input type='text' name='pN=' value='"); client.printf("%d",patternNo); client.println("' /></p>" ); client.println("<input type='submit' name='' value='submit' /></p>"); client.println("</form>"); // // the content of the HTTP response follows the header: client.print(" time="); client.print(float(time2-time0)/1000.0); client.print("msec"); client.println("<br>"); // client.print(" xAngle="); client.print(xAngle); client.print(" xSetAngle="); client.print(xSetAngle); client.print(" xSetAxis="); client.printf("%5.4f",xSetAxis); client.print(" xSpeed="); client.printf("%5.4f",xSpeed); client.print("<br>"); client.print(" yAngle="); client.printf("%5.4f",yAngle); client.print(" ySetAngle="); client.print(ySetAngle); client.print(" ySetAxis="); client.printf("%5.4f",ySetAxis); client.print(" ySpeed="); client.printf("%5.4f",ySpeed); client.print("<br>"); // PID client.print(" Px="); client.printf("%5.4f",Px); client.print(" Ix="); client.printf("%10.9f",Ix); client.print(" Dx="); client.printf("%10.9f",Dx); // client.print("<br>"); client.print(" Py="); client.printf("%5.4f",Py); client.print(" Iy="); client.printf("%10.9f",Iy); client.print(" Dy="); client.printf("%10.9f",Dy); client.print("<br>"); // client.print(" lp="); client.print(laser_pwm); // The HTTP response ends with another blank line: client.print(" sSW="); client.printf("%d",sSW); // client.print(" dSW="); client.printf("%d",dSW); client.print("<br>"); client.println(); // break out of the while loop: break; } else { // if you got a newline, then clear currentLine: currentLine = ""; } } else if (c != '\r') { // if you got anything else but a carriage return character, currentLine += c; // add it to the end of the currentLine } if (currentLine.endsWith("HTTP/1.1")){ currentLine.replace("?", ""); currentLine.replace("%3D", ""); currentLine.replace("&", ","); //client.println(currentLine); // // x=***.**,y=***.**,P=*.***,I=***,D=**** if( currentLine.indexOf("xa=") >= 0){ stx=int(currentLine.indexOf("xa="))+3; enx=int(currentLine.indexOf(",",stx)); sx=currentLine.substring(stx, enx).toFloat(); xSetAngle=sx; } if( currentLine.indexOf("ya=") >= 0){ sty=int(currentLine.indexOf(",ya=",0))+4; if( currentLine.indexOf(",xa=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } sy=currentLine.substring(sty, eny).toFloat(); ySetAngle=sy; } /// Axis if( currentLine.indexOf("xp=") >= 0){ stx=int(currentLine.indexOf("xp="))+3; enx=int(currentLine.indexOf(",",stx)); sx=currentLine.substring(stx, enx).toFloat(); xSetAxis=sx; xSetAngle=XtoDeg(xSetAxis); } if( currentLine.indexOf("yp=") >= 0){ sty=int(currentLine.indexOf(",yp=",0))+4; if( currentLine.indexOf(",lp=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } sy=currentLine.substring(sty, eny).toFloat(); ySetAxis=sy; ySetAngle=YtoDeg(ySetAxis); } // if( currentLine.indexOf("lp=") >= 0){ sty=int(currentLine.indexOf(",lp=",0))+4; if( currentLine.indexOf(",Px=",sty) == -1 ){ eny=int(currentLine.indexOf(' ',sty)); } else { eny=int(currentLine.indexOf(',Px=',sty))+3; } float pwm=currentLine.substring(sty, eny).toFloat(); if(pwm > 100.0) pwm = 100.0; if(pwm < 0.0 ) pwm = 0.0; laser_pwm = pwm; } /// // PID Px,Ix,Dx, Py,Iy,Dy if( currentLine.indexOf("Px=") >= 0){ stx=int(currentLine.indexOf(",Px=",0))+4; enx=int(currentLine.indexOf(",",stx)); Px=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Ix=") >= 0){ stx=int(currentLine.indexOf(",Ix="))+4; enx=int(currentLine.indexOf(",",stx)); Ix=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Dx=") >= 0){ stx=int(currentLine.indexOf(",Dx="))+4; enx=int(currentLine.indexOf(",",stx)); Dx=currentLine.substring(stx, enx).toFloat(); //xSpeed = ySpeed = 0; //motors.setSpeeds(xSpeed,ySpeed); SetPIDx(Px,Ix,Dx); } if( currentLine.indexOf("Py=") >= 0){ stx=int(currentLine.indexOf(",Py="))+4; enx=int(currentLine.indexOf(",",stx)); Py=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Iy=") >= 0){ stx=int(currentLine.indexOf(",Iy="))+4; enx=int(currentLine.indexOf(",",stx)); Iy=currentLine.substring(stx, enx).toFloat(); } if( currentLine.indexOf("Dy=") >= 0){ stx=int(currentLine.indexOf(",Dy="))+4; enx=int(currentLine.indexOf(",",stx)); Dy=currentLine.substring(stx, enx).toFloat(); //xSpeed = ySpeed = 0; //motors.setSpeeds(xSpeed,ySpeed); //SetPIDy(Py,Iy,Dy); } if( currentLine.indexOf("sSW=") >= 0){ stx=int(currentLine.indexOf(",sSW="))+5; enx=int(currentLine.indexOf(",",stx)); sSW=currentLine.substring(stx, enx).toInt(); } if( currentLine.indexOf("dSW=") >= 0){ stx=int(currentLine.indexOf(",dSW="))+5; enx=int(currentLine.indexOf(" ",stx)); dSW=currentLine.substring(stx, enx).toInt(); drawCount=0; // How many draw image imgCount=0; } if( currentLine.indexOf("pN=") >= 0){ stx=int(currentLine.indexOf(",pN="))+4; enx=int(currentLine.indexOf(" ",stx)); patternNo=currentLine.substring(stx, enx).toInt(); drawCount=0; // How many draw image imgCount=0; } // projection ball command currentLineNow=currentLine; } } } } } }
[ "sakaguti3@icloud.com" ]
sakaguti3@icloud.com
2d88034dbdbed76fd6cf28da7de2e406c8654c5b
f83e3a9466f1483fe0c3e980fb73a8f430dfd9fa
/Project5/Project5/KTRoboScene.h
71847abc925e1543bea1c785549599622832b57f
[]
no_license
atarou32/KTROBO
b874856b9cf4d79bc55836522fa5392ce473e6aa
f59dbf65ca7c010d61ad45047ed27d97d684d9c7
refs/heads/master
2021-01-10T14:05:11.140462
2018-10-21T04:01:12
2018-10-21T04:01:12
49,708,374
1
0
null
null
null
null
SHIFT_JIS
C++
false
false
5,248
h
#ifndef KTROBOSCENE_H #define KTROBOSCENE_H #pragma once #include "KTRoboGraphics.h" //#include "KTRoboGame.h" #include "lua.hpp" #include "MyDefine.h" #include "KTRoboGameError.h" #include "KTRoboTask.h" #include "MyTokenAnalyzer.h" #include "KTRoboInput.h" #include "string.h" #include "mmsystem.h" #include "MyButukari.h" using namespace std; namespace KTROBO { class Game; // シーン同士のストラクト受け渡しなどはどうするのか // toluaのシングルトンに全て持たせる // toluaとは別にシングルトンを作るといいかもしれない class Scene { private: char scene_name[32]; public: static Graphics* gs[TASKTHREAD_NUM]; static lua_State* Ls[TASKTHREAD_NUM]; static Game* game; protected: TCB* looptcbs[TASKTHREAD_NUM]; bool send_remove_message; public: virtual void mainrenderIMPL(bool is_focused, Graphics* g, Game* game)=0; virtual void renderhojyoIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game)=0; virtual void aiIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game)=0; virtual void posbutukariIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game)=0; virtual void loaddestructIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game)=0; public: virtual void enter(); // シーンに入るときに呼ばれる enter leave が呼ばれるのはAIスレッドから //(一番上位のスレッド)で他のスレッド(インプット以外?)をロックして行う virtual void leave(); // シーンから抜けるときに呼ばれる static void Init(Graphics** mgs, lua_State** mls, Game* mgame) { for (int i=0;i<TASKTHREAD_NUM;i++) { gs[i] = mgs[i]; Ls[i] = mls[i]; } Scene::game = mgame; // gs ls game の登録に使う } static void Del() { for (int i=0;i<TASKTHREAD_NUM;i++) { gs[i] = 0; } }; Scene(char* n, int len) { if (len >= 31) { memcpy(scene_name,n,31); scene_name[31] = 0; } else { memcpy(scene_name,n, len); scene_name[len] = 0; } for (int i=0;i<TASKTHREAD_NUM;i++) { looptcbs[i] = 0; } send_remove_message = false; } virtual ~Scene(void); void mainrender(bool is_focused){ mainrenderIMPL(is_focused, gs[TASKTHREADS_UPDATEMAINRENDER], game); }; void renderhojyo(Task* task, TCB* thisTCB){ renderhojyoIMPL(task, thisTCB, gs[TASKTHREADS_UPDATEANIMEFRAMENADO], Ls[TASKTHREADS_UPDATEANIMEFRAMENADO], game); }; void ai(Task* task, TCB* thisTCB){ aiIMPL(task, thisTCB, gs[TASKTHREADS_AIDECISION], Ls[TASKTHREADS_AIDECISION], game); }; void posbutukari(Task* task,TCB* thisTCB){ posbutukariIMPL(task,thisTCB, gs[TASKTHREADS_UPDATEPOSBUTUKARI], Ls[TASKTHREADS_UPDATEPOSBUTUKARI], game); }; void loaddestruct(Task* task, TCB* thisTCB){ loaddestructIMPL(task,thisTCB,gs[TASKTHREADS_LOADDESTRUCT], Ls[TASKTHREADS_LOADDESTRUCT], game); }; }; class ONEMESSAGE : public Scene, public INPUTSHORICLASS { int message; string message_str; public: void mainrenderIMPL(bool is_focused, Graphics* g, Game* game) {}; void renderhojyoIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void aiIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void posbutukariIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void loaddestructIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void enter(); void leave(); void changeText(char* message); ONEMESSAGE(); bool handleMessage(int msg, void* data, DWORD time); }; // yes_luastr // no_luastrにはシーンのリムーブするコマンドが入っていること class LOADTYUU : public Scene, public INPUTSHORICLASS { private: int string_id; DWORD time; int dtime; public: void mainrenderIMPL(bool is_focused, Graphics* g, Game* game) {}; void renderhojyoIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game); void aiIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void posbutukariIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void loaddestructIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void enter(); void leave(); bool handleMessage(int msg, void* data, DWORD time); LOADTYUU(); }; class TWOTAKU : public Scene, public INPUTSHORICLASS {// 下のシーンにインプットメッセージを送らせないためにINPUTSHORICLASSを継承させる private: string yes_str; string no_str; string srender_text; int render_text; int yes_button; int no_button; int window_id; public: void mainrenderIMPL(bool is_focused, Graphics* g, Game* game) {}; void renderhojyoIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game) {}; void aiIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void posbutukariIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void loaddestructIMPL(Task* task, TCB* thisTCB, Graphics* g, lua_State* l, Game* game){}; void enter(); void leave(); bool handleMessage(int msg, void* data, DWORD time); void setYesStr(char* y); void setNoStr(char* n); void setRenderText(char* t); TWOTAKU ( char* yes_str, char* no_str, char* text); }; } #endif
[ "atarou32@yahoo.co.jp" ]
atarou32@yahoo.co.jp
74a4c41ab2375e55f78b84729c5161dae7f27ba7
18b3d06a8a93839f7e7a1cf536a71bfc0adf8e20
/src/agitr/src/spawn_turtle.cpp
6cff1ec9b4687a48d45d3efd295c2d0c0c82c985
[]
no_license
akingse/ros_tutorial_ws
dc52cbbf443f7823a0abd9223fef076cf959a24e
7c776d2f62af0455a899c80e171d5210e0a8b382
refs/heads/main
2023-03-01T04:48:54.510004
2021-02-08T14:08:18
2021-02-08T14:09:30
337,094,532
4
0
null
null
null
null
UTF-8
C++
false
false
1,076
cpp
// This program spawns a new turtlesim turtle by calling the appropriate service . #include <ros/ros.h> // The srv class for the service . #include <turtlesim/Spawn.h> //再生 int main( int argc , char ** argv ) { ros::init( argc , argv , "spawn_turtle") ; ros::NodeHandle nh ; // Create a client object for the spawn service . This needs to know the data type of the service and its name. ros::ServiceClient spawnClient = nh.serviceClient<turtlesim::Spawn>("spawn") ; // Create the request and response objects. turtlesim::Spawn::Request req ; turtlesim::Spawn::Response resp ; // Fill in the request data members. req.x = 2;//不能为负吗 req.y = 3; req.theta = M_PI/2; //math_pi req.name = "Leo" ; // Actually call the service. This won't return until the service is complete . bool success = spawnClient.call( req , resp ) ; // Check for success and use the response . if ( success ) { ROS_INFO_STREAM("Spawned a turtle named "<< resp.name) ; } else { ROS_ERROR_STREAM("Failed to spawn.") ; } }
[ "akingse@qq.com" ]
akingse@qq.com
1897f42d4926876a66dd2e2af11b45552994d8de
ab0e753a502e2b3dc7c74d7c12ea62c77191dce1
/modules/video/src/bgfg_gaussmix2.cpp
3c39b33d183ef902097da1d8d0fea75b938f0cca
[]
no_license
blackberry/OpenCV
d856fd4307177d61643f8a0ef7efbf27dd5210c1
36ec71cd6dd167ba3dcb699f9a9639598953f0e3
HEAD
2016-09-01T21:24:21.082564
2012-09-17T14:50:47
2012-09-17T14:50:47
3,922,780
8
11
null
null
null
null
UTF-8
C++
false
false
24,232
cpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // Intel License Agreement // // Copyright (C) 2000, Intel Corporation, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's 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. // // * The name of Intel Corporation may not 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 Intel Corporation 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. // //M*/ /*//Implementation of the Gaussian mixture model background subtraction from: // //"Improved adaptive Gausian mixture model for background subtraction" //Z.Zivkovic //International Conference Pattern Recognition, UK, August, 2004 //http://www.zoranz.net/Publications/zivkovic2004ICPR.pdf //The code is very fast and performs also shadow detection. //Number of Gausssian components is adapted per pixel. // // and // //"Efficient Adaptive Density Estimapion per Image Pixel for the Task of Background Subtraction" //Z.Zivkovic, F. van der Heijden //Pattern Recognition Letters, vol. 27, no. 7, pages 773-780, 2006. // //The algorithm similar to the standard Stauffer&Grimson algorithm with //additional selection of the number of the Gaussian components based on: // //"Recursive unsupervised learning of finite mixture models " //Z.Zivkovic, F.van der Heijden //IEEE Trans. on Pattern Analysis and Machine Intelligence, vol.26, no.5, pages 651-656, 2004 //http://www.zoranz.net/Publications/zivkovic2004PAMI.pdf // // //Example usage with as cpp class // BackgroundSubtractorMOG2 bg_model; //For each new image the model is updates using: // bg_model(img, fgmask); // //Example usage as part of the CvBGStatModel: // CvBGStatModel* bg_model = cvCreateGaussianBGModel2( first_frame ); // // //update for each frame // cvUpdateBGStatModel( tmp_frame, bg_model );//segmentation result is in bg_model->foreground // // //release at the program termination // cvReleaseBGStatModel( &bg_model ); // //Author: Z.Zivkovic, www.zoranz.net //Date: 7-April-2011, Version:1.0 ///////////*/ #include "precomp.hpp" namespace cv { /* Interface of Gaussian mixture algorithm from: "Improved adaptive Gausian mixture model for background subtraction" Z.Zivkovic International Conference Pattern Recognition, UK, August, 2004 http://www.zoranz.net/Publications/zivkovic2004ICPR.pdf Advantages: -fast - number of Gausssian components is constantly adapted per pixel. -performs also shadow detection (see bgfg_segm_test.cpp example) */ // default parameters of gaussian background detection algorithm static const int defaultHistory2 = 500; // Learning rate; alpha = 1/defaultHistory2 static const float defaultVarThreshold2 = 4.0f*4.0f; static const int defaultNMixtures2 = 5; // maximal number of Gaussians in mixture static const float defaultBackgroundRatio2 = 0.9f; // threshold sum of weights for background test static const float defaultVarThresholdGen2 = 3.0f*3.0f; static const float defaultVarInit2 = 15.0f; // initial variance for new components static const float defaultVarMax2 = 5*defaultVarInit2; static const float defaultVarMin2 = 4.0f; // additional parameters static const float defaultfCT2 = 0.05f; // complexity reduction prior constant 0 - no reduction of number of components static const unsigned char defaultnShadowDetection2 = (unsigned char)127; // value to use in the segmentation mask for shadows, set 0 not to do shadow detection static const float defaultfTau = 0.5f; // Tau - shadow threshold, see the paper for explanation struct GaussBGStatModel2Params { //image info int nWidth; int nHeight; int nND;//number of data dimensions (image channels) bool bPostFiltering;//defult 1 - do postfiltering - will make shadow detection results also give value 255 double minArea; // for postfiltering bool bInit;//default 1, faster updates at start ///////////////////////// //very important parameters - things you will change //////////////////////// float fAlphaT; //alpha - speed of update - if the time interval you want to average over is T //set alpha=1/T. It is also usefull at start to make T slowly increase //from 1 until the desired T float fTb; //Tb - threshold on the squared Mahalan. dist. to decide if it is well described //by the background model or not. Related to Cthr from the paper. //This does not influence the update of the background. A typical value could be 4 sigma //and that is Tb=4*4=16; ///////////////////////// //less important parameters - things you might change but be carefull //////////////////////// float fTg; //Tg - threshold on the squared Mahalan. dist. to decide //when a sample is close to the existing components. If it is not close //to any a new component will be generated. I use 3 sigma => Tg=3*3=9. //Smaller Tg leads to more generated components and higher Tg might make //lead to small number of components but they can grow too large float fTB;//1-cf from the paper //TB - threshold when the component becomes significant enough to be included into //the background model. It is the TB=1-cf from the paper. So I use cf=0.1 => TB=0. //For alpha=0.001 it means that the mode should exist for approximately 105 frames before //it is considered foreground float fVarInit; float fVarMax; float fVarMin; //initial standard deviation for the newly generated components. //It will will influence the speed of adaptation. A good guess should be made. //A simple way is to estimate the typical standard deviation from the images. //I used here 10 as a reasonable value float fCT;//CT - complexity reduction prior //this is related to the number of samples needed to accept that a component //actually exists. We use CT=0.05 of all the samples. By setting CT=0 you get //the standard Stauffer&Grimson algorithm (maybe not exact but very similar) //even less important parameters int nM;//max number of modes - const - 4 is usually enough //shadow detection parameters bool bShadowDetection;//default 1 - do shadow detection unsigned char nShadowDetection;//do shadow detection - insert this value as the detection result float fTau; // Tau - shadow threshold. The shadow is detected if the pixel is darker //version of the background. Tau is a threshold on how much darker the shadow can be. //Tau= 0.5 means that if pixel is more than 2 times darker then it is not shadow //See: Prati,Mikic,Trivedi,Cucchiarra,"Detecting Moving Shadows...",IEEE PAMI,2003. }; struct GMM { float weight; float variance; }; // shadow detection performed per pixel // should work for rgb data, could be usefull for gray scale and depth data as well // See: Prati,Mikic,Trivedi,Cucchiarra,"Detecting Moving Shadows...",IEEE PAMI,2003. static CV_INLINE bool detectShadowGMM(const float* data, int nchannels, int nmodes, const GMM* gmm, const float* mean, float Tb, float TB, float tau) { float tWeight = 0; // check all the components marked as background: for( int mode = 0; mode < nmodes; mode++, mean += nchannels ) { GMM g = gmm[mode]; float numerator = 0.0f; float denominator = 0.0f; for( int c = 0; c < nchannels; c++ ) { numerator += data[c] * mean[c]; denominator += mean[c] * mean[c]; } // no division by zero allowed if( denominator == 0 ) return false; // if tau < a < 1 then also check the color distortion if( numerator <= denominator && numerator >= tau*denominator ) { float a = numerator / denominator; float dist2a = 0.0f; for( int c = 0; c < nchannels; c++ ) { float dD= a*mean[c] - data[c]; dist2a += dD*dD; } if (dist2a < Tb*g.variance*a*a) return true; }; tWeight += g.weight; if( tWeight > TB ) return false; }; return false; } //update GMM - the base update function performed per pixel // //"Efficient Adaptive Density Estimapion per Image Pixel for the Task of Background Subtraction" //Z.Zivkovic, F. van der Heijden //Pattern Recognition Letters, vol. 27, no. 7, pages 773-780, 2006. // //The algorithm similar to the standard Stauffer&Grimson algorithm with //additional selection of the number of the Gaussian components based on: // //"Recursive unsupervised learning of finite mixture models " //Z.Zivkovic, F.van der Heijden //IEEE Trans. on Pattern Analysis and Machine Intelligence, vol.26, no.5, pages 651-656, 2004 //http://www.zoranz.net/Publications/zivkovic2004PAMI.pdf struct MOG2Invoker { MOG2Invoker(const Mat& _src, Mat& _dst, GMM* _gmm, float* _mean, uchar* _modesUsed, int _nmixtures, float _alphaT, float _Tb, float _TB, float _Tg, float _varInit, float _varMin, float _varMax, float _prune, float _tau, bool _detectShadows, uchar _shadowVal) { src = &_src; dst = &_dst; gmm0 = _gmm; mean0 = _mean; modesUsed0 = _modesUsed; nmixtures = _nmixtures; alphaT = _alphaT; Tb = _Tb; TB = _TB; Tg = _Tg; varInit = _varInit; varMin = MIN(_varMin, _varMax); varMax = MAX(_varMin, _varMax); prune = _prune; tau = _tau; detectShadows = _detectShadows; shadowVal = _shadowVal; cvtfunc = src->depth() != CV_32F ? getConvertFunc(src->depth(), CV_32F) : 0; } void operator()(const BlockedRange& range) const { int y0 = range.begin(), y1 = range.end(); int ncols = src->cols, nchannels = src->channels(); AutoBuffer<float> buf(src->cols*nchannels); float alpha1 = 1.f - alphaT; float dData[CV_CN_MAX]; for( int y = y0; y < y1; y++ ) { const float* data = buf; if( cvtfunc ) cvtfunc( src->ptr(y), src->step, 0, 0, (uchar*)data, 0, Size(ncols*nchannels, 1), 0); else data = src->ptr<float>(y); float* mean = mean0 + ncols*nmixtures*nchannels*y; GMM* gmm = gmm0 + ncols*nmixtures*y; uchar* modesUsed = modesUsed0 + ncols*y; uchar* mask = dst->ptr(y); for( int x = 0; x < ncols; x++, data += nchannels, gmm += nmixtures, mean += nmixtures*nchannels ) { //calculate distances to the modes (+ sort) //here we need to go in descending order!!! bool background = false;//return value -> true - the pixel classified as background //internal: bool fitsPDF = false;//if it remains zero a new GMM mode will be added int nmodes = modesUsed[x], nNewModes = nmodes;//current number of modes in GMM float totalWeight = 0.f; float* mean_m = mean; ////// //go through all modes for( int mode = 0; mode < nmodes; mode++, mean_m += nchannels ) { float weight = alpha1*gmm[mode].weight + prune;//need only weight if fit is found //// //fit not found yet if( !fitsPDF ) { //check if it belongs to some of the remaining modes float var = gmm[mode].variance; //calculate difference and distance float dist2; if( nchannels == 3 ) { dData[0] = mean_m[0] - data[0]; dData[1] = mean_m[1] - data[1]; dData[2] = mean_m[2] - data[2]; dist2 = dData[0]*dData[0] + dData[1]*dData[1] + dData[2]*dData[2]; } else { dist2 = 0.f; for( int c = 0; c < nchannels; c++ ) { dData[c] = mean_m[c] - data[c]; dist2 += dData[c]*dData[c]; } } //background? - Tb - usually larger than Tg if( totalWeight < TB && dist2 < Tb*var ) background = true; //check fit if( dist2 < Tg*var ) { ///// //belongs to the mode fitsPDF = true; //update distribution //update weight weight += alphaT; float k = alphaT/weight; //update mean for( int c = 0; c < nchannels; c++ ) mean_m[c] -= k*dData[c]; //update variance float varnew = var + k*(dist2-var); //limit the variance varnew = MAX(varnew, varMin); varnew = MIN(varnew, varMax); gmm[mode].variance = varnew; //sort //all other weights are at the same place and //only the matched (iModes) is higher -> just find the new place for it for( int i = mode; i > 0; i-- ) { //check one up if( weight < gmm[i-1].weight ) break; //swap one up std::swap(gmm[i], gmm[i-1]); for( int c = 0; c < nchannels; c++ ) std::swap(mean[i*nchannels + c], mean[(i-1)*nchannels + c]); } //belongs to the mode - bFitsPDF becomes 1 ///// } }//!bFitsPDF) //check prune if( weight < -prune ) { weight = 0.0; nmodes--; } gmm[mode].weight = weight;//update weight by the calculated value totalWeight += weight; } //go through all modes ////// //renormalize weights totalWeight = 1.f/totalWeight; for( int mode = 0; mode < nmodes; mode++ ) { gmm[mode].weight *= totalWeight; } nmodes = nNewModes; //make new mode if needed and exit if( !fitsPDF ) { // replace the weakest or add a new one int mode = nmodes == nmixtures ? nmixtures-1 : nmodes++; if (nmodes==1) gmm[mode].weight = 1.f; else { gmm[mode].weight = alphaT; // renormalize all other weights for( int i = 0; i < nmodes-1; i++ ) gmm[i].weight *= alpha1; } // init for( int c = 0; c < nchannels; c++ ) mean[mode*nchannels + c] = data[c]; gmm[mode].variance = varInit; //sort //find the new place for it for( int i = nmodes - 1; i > 0; i-- ) { // check one up if( alphaT < gmm[i-1].weight ) break; // swap one up std::swap(gmm[i], gmm[i-1]); for( int c = 0; c < nchannels; c++ ) std::swap(mean[i*nchannels + c], mean[(i-1)*nchannels + c]); } } //set the number of modes modesUsed[x] = nmodes; mask[x] = background ? 0 : detectShadows && detectShadowGMM(data, nchannels, nmodes, gmm, mean, Tb, TB, tau) ? shadowVal : 255; } } } const Mat* src; Mat* dst; GMM* gmm0; float* mean0; uchar* modesUsed0; int nmixtures; float alphaT, Tb, TB, Tg; float varInit, varMin, varMax, prune, tau; bool detectShadows; uchar shadowVal; BinaryFunc cvtfunc; }; BackgroundSubtractorMOG2::BackgroundSubtractorMOG2() { frameSize = Size(0,0); frameType = 0; nframes = 0; history = defaultHistory2; varThreshold = defaultVarThreshold2; bShadowDetection = 1; nmixtures = defaultNMixtures2; backgroundRatio = defaultBackgroundRatio2; fVarInit = defaultVarInit2; fVarMax = defaultVarMax2; fVarMin = defaultVarMin2; varThresholdGen = defaultVarThresholdGen2; fCT = defaultfCT2; nShadowDetection = defaultnShadowDetection2; fTau = defaultfTau; } BackgroundSubtractorMOG2::BackgroundSubtractorMOG2(int _history, float _varThreshold, bool _bShadowDetection) { frameSize = Size(0,0); frameType = 0; nframes = 0; history = _history > 0 ? _history : defaultHistory2; varThreshold = (_varThreshold>0)? _varThreshold : defaultVarThreshold2; bShadowDetection = _bShadowDetection; nmixtures = defaultNMixtures2; backgroundRatio = defaultBackgroundRatio2; fVarInit = defaultVarInit2; fVarMax = defaultVarMax2; fVarMin = defaultVarMin2; varThresholdGen = defaultVarThresholdGen2; fCT = defaultfCT2; nShadowDetection = defaultnShadowDetection2; fTau = defaultfTau; } BackgroundSubtractorMOG2::~BackgroundSubtractorMOG2() { } void BackgroundSubtractorMOG2::initialize(Size _frameSize, int _frameType) { frameSize = _frameSize; frameType = _frameType; nframes = 0; int nchannels = CV_MAT_CN(frameType); CV_Assert( nchannels <= CV_CN_MAX ); // for each gaussian mixture of each pixel bg model we store ... // the mixture weight (w), // the mean (nchannels values) and // the covariance bgmodel.create( 1, frameSize.height*frameSize.width*nmixtures*(2 + nchannels), CV_32F ); //make the array for keeping track of the used modes per pixel - all zeros at start bgmodelUsedModes.create(frameSize,CV_8U); bgmodelUsedModes = Scalar::all(0); } void BackgroundSubtractorMOG2::operator()(InputArray _image, OutputArray _fgmask, double learningRate) { Mat image = _image.getMat(); bool needToInitialize = nframes == 0 || learningRate >= 1 || image.size() != frameSize || image.type() != frameType; if( needToInitialize ) initialize(image.size(), image.type()); _fgmask.create( image.size(), CV_8U ); Mat fgmask = _fgmask.getMat(); ++nframes; learningRate = learningRate >= 0 && nframes > 1 ? learningRate : 1./min( 2*nframes, history ); CV_Assert(learningRate >= 0); if (learningRate > 0) { parallel_for(BlockedRange(0, image.rows), MOG2Invoker(image, fgmask, (GMM*)bgmodel.data, (float*)(bgmodel.data + sizeof(GMM)*nmixtures*image.rows*image.cols), bgmodelUsedModes.data, nmixtures, (float)learningRate, (float)varThreshold, backgroundRatio, varThresholdGen, fVarInit, fVarMin, fVarMax, -learningRate*fCT, fTau, bShadowDetection, nShadowDetection)); } } void BackgroundSubtractorMOG2::getBackgroundImage(OutputArray backgroundImage) const { int nchannels = CV_MAT_CN(frameType); CV_Assert( nchannels == 3 ); Mat meanBackground(frameSize, CV_8UC3, Scalar::all(0)); int firstGaussianIdx = 0; const GMM* gmm = (GMM*)bgmodel.data; const Vec3f* mean = reinterpret_cast<const Vec3f*>(gmm + frameSize.width*frameSize.height*nmixtures); for(int row=0; row<meanBackground.rows; row++) { for(int col=0; col<meanBackground.cols; col++) { int nmodes = bgmodelUsedModes.at<uchar>(row, col); Vec3f meanVal; float totalWeight = 0.f; for(int gaussianIdx = firstGaussianIdx; gaussianIdx < firstGaussianIdx + nmodes; gaussianIdx++) { GMM gaussian = gmm[gaussianIdx]; meanVal += gaussian.weight * mean[gaussianIdx]; totalWeight += gaussian.weight; if(totalWeight > backgroundRatio) break; } meanVal *= (1.f / totalWeight); meanBackground.at<Vec3b>(row, col) = Vec3b(meanVal); firstGaussianIdx += nmixtures; } } switch(CV_MAT_CN(frameType)) { case 1: { vector<Mat> channels; split(meanBackground, channels); channels[0].copyTo(backgroundImage); break; } case 3: { meanBackground.copyTo(backgroundImage); break; } default: CV_Error(CV_StsUnsupportedFormat, ""); } } } /* End of file. */
[ "chung@rim.com" ]
chung@rim.com
e48faebe30479d2d912a0cfb9d8769e3b1381e06
9d4033f3d774be5e05b2fe6b2285457b626ce92e
/api/bootloader.cpp
c4a59fd255331ce7aaf30fd57766f1b21dfa942e
[ "MIT" ]
permissive
sony-l/OpenMemories-Platform
16933be3f3bdccb0ccaef6b161f97077c998c453
1659a1c7ec19530a1868de6bbbce2cc762fb42ae
refs/heads/master
2020-03-20T10:26:34.847433
2018-05-04T09:40:20
2018-05-04T09:40:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,102
cpp
#include <string> #include "bootloader.hpp" extern "C" { #include "drivers/mms_ioc.h" #include "drivers/nand_ioc.h" } #if !defined DRIVER_mms_ioc && !defined DRIVER_nand_ioc #error No bootloader driver available #endif using namespace std; vector<bootloader_block> bootloader_get_blocks(int fd) { vector<bootloader_block> blocks; size_t block_size, page_size; #if defined DRIVER_mms_ioc if (mms_ioc_getblocksize(fd, (int *) &block_size)) throw bootloader_error("mms_ioc_getblocksize failed"); if (mms_ioc_getpagesize(fd, (int *) &page_size)) throw bootloader_error("mms_ioc_getpagesize failed"); #elif defined DRIVER_nand_ioc if (nand_ioc_get_devinfo(fd, (int *) &block_size, (int *) &page_size)) throw bootloader_error("nand_ioc_get_devinfo failed"); #endif size_t n_pages_per_block = block_size / page_size; #if defined DRIVER_mms_ioc blocks.reserve(MMS_IOC_NUM_BOOTLOADER_BLOCKS); for (int i = 0; i < MMS_IOC_NUM_BOOTLOADER_BLOCKS; i++) { bootloader_block b = {mms_ioc_bootloader_blocks[i], n_pages_per_block, page_size, false}; blocks.push_back(b); } #elif defined DRIVER_nand_ioc blocks.reserve(NAND_IOC_NUM_SAFE_PHYS_BLOCKS + NAND_IOC_NUM_NORMAL_PHYS_BLOCKS); int safe_blocks[NAND_IOC_NUM_SAFE_PHYS_BLOCKS]; if (nand_ioc_get_safe_phys_blocks(fd, safe_blocks)) throw bootloader_error("nand_ioc_get_safe_phys_blocks failed"); for (int i = 0; i < NAND_IOC_NUM_SAFE_PHYS_BLOCKS; i++) { bootloader_block b = {safe_blocks[i], n_pages_per_block, NAND_IOC_PAGE_SAFE_SIZE, true}; blocks.push_back(b); } int normal_blocks[NAND_IOC_NUM_NORMAL_PHYS_BLOCKS]; if (nand_ioc_get_normal_phys_blocks(fd, normal_blocks)) throw bootloader_error("nand_ioc_get_normal_phys_blocks failed"); for (int i = 0; i < NAND_IOC_NUM_NORMAL_PHYS_BLOCKS; i++) { bootloader_block b = {normal_blocks[i], n_pages_per_block, page_size, false}; blocks.push_back(b); } #endif return blocks; } vector<char> bootloader_read_pages(int fd, bootloader_block &block, size_t page, size_t n) { vector<char> buffer(n * block.page_size); #if defined DRIVER_mms_ioc size_t first_page = block.block * block.num_pages + page; for (size_t i = 0; i < n; i++) { if (mms_ioc_pread(fd, first_page + i, MMS_IOC_PAGE, block.page_size, &buffer[i * block.page_size])) throw bootloader_error("mms_ioc_pread failed"); } #elif defined DRIVER_nand_ioc if (block.is_safe) { if (nand_ioc_pread_safe(fd, block.block, page, n, block.num_pages, &buffer[0])) throw bootloader_error("nand_ioc_pread_safe failed"); } else { char info[n * NAND_IOC_PAGE_NORMAL_INFO_SIZE]; if (nand_ioc_pread_normal(fd, block.block, page, block.page_size, n, &buffer[0], info)) throw bootloader_error("nand_ioc_pread_normal failed"); } #endif return buffer; } vector<char> bootloader_read_block(int fd, bootloader_block &block) { return bootloader_read_pages(fd, block, 0, block.num_pages); }
[ "ma1co@users.noreply.github.com" ]
ma1co@users.noreply.github.com
94405e293c7116ee017b9dbad3795446f362b7d2
471091eeccacc0618dba3ad75abf184ba3b57ddc
/Software/DFR/DFR.cpp
3b8cbcbd36a19213e76c1e76045d4276bac633f7
[]
no_license
YounesChefou/EarthPod
c2c04231f2daa58ab870839994b7e36e46e5d962
19738c7f47e2a1b4f6ca404c278302fd3a32b9a3
refs/heads/master
2020-07-31T12:57:25.426566
2020-01-15T18:15:04
2020-01-15T18:15:04
210,611,412
0
0
null
null
null
null
UTF-8
C++
false
false
173
cpp
#ifndef DFR_H #define DFR_H #include "dfr.h" #endif AnalogIn DFR(A0); double lireValeursDFR() { // //Renvoie la valeur relevée par le capteur return DFR.read(); }
[ "thomas.bouix@etu.upmc.fr" ]
thomas.bouix@etu.upmc.fr
d7a2946a7a5fadca91e7e1f2f847f6635040a501
e6725534568aa25f8a9d225588a0704b16cca7d4
/src/CItemList.cpp
7064832c801a6f0f2d46467cdc81cdad96b5d76d
[]
no_license
deadlydog/Blasteroid
d9f4da13c255684f6de0c3b739d63fce026cf9e7
25f80a738c5f017d675a936004ac06f64cc3fc22
refs/heads/master
2022-12-22T14:25:49.984740
2020-09-21T14:36:27
2020-09-21T14:36:27
297,231,210
0
0
null
null
null
null
UTF-8
C++
false
false
3,977
cpp
// CEnemyList.cpp #include "CItemList.h" //*********** CItemList Functions ********** // Constructor CItemList::CItemList() { // Initialize pointers to NULL mspHead = 0; mspCurrentItem = 0; } // Destructor CItemList::~CItemList() { Purge(); } // Add a Item to the list // NOTE: The List will use/modify the given Item. It does not create a new one bool CItemList::AddItem(CItem* cpItemToAdd, bool bDeleteItemWhenRemoved) { SItemListItem* spNewItem; // Make sure Item To Add is valid if (cpItemToAdd == 0) { return false; } // Create the Item spNewItem = new SItemListItem; // If there are no Items in the List if (mspHead == 0) { mspHead = spNewItem; // Make the Head point to this item mspHead->spNext = 0; // Since this is the first item, make it's Next NULL } // Else add this Item to the List else { spNewItem->spNext = mspHead; mspHead = spNewItem; } // Set Items data mspHead->bAlive = true; mspHead->bDeleteItemWhenRemoved = bDeleteItemWhenRemoved; mspHead->cpItem = cpItemToAdd; return true; } // Makes Current Item point to the first Item in the List void CItemList::MoveToStartOfList() { mspCurrentItem = mspHead; } // Move Current Item to the next Item in the List // Returns False if Current Item is NULL bool CItemList::MoveToNextItem() { // If Current Item is Null if (mspCurrentItem == 0) { return false; } mspCurrentItem = mspCurrentItem->spNext; return true; } // Returns a Pointer to the Current Item // Returns zero if Current Item doesn't exist CItem* CItemList::ReturnCurrentItem() const { // If Current Item doesn't exist if (mspCurrentItem == 0) { return false; } return mspCurrentItem->cpItem; } // Tells if Current Item is actually pointing to a Item or is NULL bool CItemList::CurrentItemExists() const { // If Current Item doesn't exist if (mspCurrentItem == 0) { return false; } return true; } // Put Current Item on the Delete Later List // Returns False if Current Item is NULL bool CItemList::PutCurrentItemOnDeleteLaterList() { // If Current Item does not exist if (mspCurrentItem == 0) { return false; } mspCurrentItem->bAlive = false; return true; } // Delete all Items in the Delete Later List void CItemList::DeleteAllItemsInDeleteLaterList() { SItemListItem* spCurrentItem = mspHead; SItemListItem* spPreviousItem = 0; // Cycle through List and Delete Dead Items while (spCurrentItem != 0) { // If this Item is supposed to be Deleted if (!spCurrentItem->bAlive) { // If we are deleting the first Item in the List if (spCurrentItem == mspHead) { mspHead = mspHead->spNext; // Move Head to Next Item in List delete spCurrentItem; // Delete first Item in List spCurrentItem = mspHead; // Make Current Item point to the new Head }else { spPreviousItem->spNext = spCurrentItem->spNext; // Make Previous Item point to Next Item delete spCurrentItem; // Delete Current Item spCurrentItem = spPreviousItem->spNext; // Move Current Item to Next Item } } // Else skip to Next Item else { spPreviousItem = spCurrentItem; spCurrentItem = spCurrentItem->spNext; } } } // Updates all Items in the list void CItemList::UpdateAllItemsInList(unsigned long ulAmountOfTimeSinceLastUpdate) { SItemListItem* spCurrentItem = mspHead; // Cycle through List and Update all Items while (spCurrentItem != 0) { // Update Current Item spCurrentItem->cpItem->Update(ulAmountOfTimeSinceLastUpdate); // Move to Next Item spCurrentItem = spCurrentItem->spNext; } } // Remove all items from both the Item List and Delete Later List void CItemList::Purge() { SItemListItem* spCurrentItem = mspHead; SItemListItem* spNextItem = 0; // Cycle through List and Delete all Items while (spCurrentItem != 0) { spNextItem = spCurrentItem->spNext; delete spCurrentItem; spCurrentItem = spNextItem; } // Initialize pointers to NULL mspHead = 0; mspCurrentItem = 0; }
[ "deadlydog@hotmail.com" ]
deadlydog@hotmail.com
b958405976654ae2aba89bd69e47b618df08ede0
7a36a0652fe0704b4b27f644653e7b0f7e72060f
/TianShan/CDNLib/CDNSS/C2Pump/C2AsyncUdpHandler.h
e041e648b6386d93199756e4d128f921163d834e
[]
no_license
darcyg/CXX
1ee13c1765f1987e293c15b9cbc51ae625ac3a2e
ef288ad0e1624ed0582839f2a5a0ef66073d415e
refs/heads/master
2020-04-06T04:27:11.940141
2016-12-29T03:49:56
2016-12-29T03:49:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,378
h
#pragma once #ifndef _C2ASYNC_UDP_HANDLER_H #define _C2ASYNC_UDP_HANDLER_H #include <udpsocket.h> #include <Log.h> #include <Pointer.h> #include <HttpEngineInterface.h> namespace C2Streamer{ class C2AsyncUdpHandler : public LibAsync::UDPSocket { public: C2AsyncUdpHandler(LibAsync::EventLoop& loop, ZQ::common::Log& log); ~C2AsyncUdpHandler(); typedef ZQ::common::Pointer<C2AsyncUdpHandler> Ptr; bool setPeerAddr(std::string& ip, unsigned short port); bool setLocalAddr(std::string& ip, unsigned short port); virtual bool addContent(const char* data, size_t len); /// new method addBody does the same thing as addContent /// but here's some different between them /// 1. addBody do not guarantee the whole data will be transfered. if not, error code retuned virtual int addBody(const char* data, size_t len); /// register an event for writing data /// return false if failed to register virtual bool registerWrite(ZQHttp::IChannelWritable::Ptr cb); protected: virtual void onWritable(); virtual void onSocketRecved(size_t size, std::string ip, unsigned short port); virtual void onSocketError(int err); virtual void onSocketSent(size_t size); private: ZQHttp::IChannelWritable::Ptr mWritableCB; ZQ::common::Log& mLog; }; }//namespace C2Streamer #endif // ! _C2ASYNC_UDP_HANDLER_H
[ "jjz@example.com" ]
jjz@example.com
4c3dd813322c002a7f5945fbd999a57bc4d37a2a
2fad4d970229d8e5b9a8793e41519f3cc316096c
/Chapter 6/Problems/28/28.cpp
38ea98c9d5f0c13a6a1d0f05bb32986860eb4ad6
[]
no_license
sureshyhap/Schaums-Outlines-Programming-with-C-plus-plus
047cb0605a0f4c58e983c9b166cc5e2b1589b459
845870dd72ff3f14f3130ce714fabb24e13e1c25
refs/heads/master
2021-07-05T09:12:34.438129
2020-10-11T15:08:05
2020-10-11T15:08:05
162,736,501
0
0
null
null
null
null
UTF-8
C++
false
false
544
cpp
#include <iostream> float outerProduct(float p[][3], float a[], float b[]); int main(int argc, char* argv[]) { float p[3][3] = {}; float a[3] = {2.2, 3.3, 4.4}, b[3] = {2.0, -1.0, 0.0}; outerProduct(p, a, b); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { std::cout << p[i][j] << " "; } std::cout << std::endl; } return 0; } float outerProduct(float p[][3], float a[], float b[]) { for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { p[i][j] = a[i] * b[j]; } } }
[ "sureshyhap@gmail.com" ]
sureshyhap@gmail.com
753e1f0fbba8be8709be7180341b516753a099a0
a0b0eb383ecfeaeed3d2b0271657a0c32472bf8e
/lydsy/1436.cpp
12abd58ac32afb9255ca166329e096b0e67de0ab
[ "Apache-2.0" ]
permissive
tangjz/acm-icpc
45764d717611d545976309f10bebf79c81182b57
f1f3f15f7ed12c0ece39ad0dd044bfe35df9136d
refs/heads/master
2023-04-07T10:23:07.075717
2022-12-24T15:30:19
2022-12-26T06:22:53
13,367,317
53
20
Apache-2.0
2022-12-26T06:22:54
2013-10-06T18:57:09
C++
UTF-8
C++
false
false
569
cpp
#include <cstdio> typedef long long LL; const int mod = 3; int c[mod][mod]; int C(LL n, LL m) { int ret = 1; for( ; n && ret; n /= mod, m /= mod) ret = ret * c[n % mod][m % mod] % mod; return ret; } int main() { for(int i = 0; i < mod; ++i) { c[i][0] = c[i][i] = 1; for(int j = 1; j < i; ++j) if((c[i][j] = c[i - 1][j - 1] + c[i - 1][j]) >= mod) c[i][j] -= mod; } int t; LL n, m; scanf("%d", &t); while(t--) { scanf("%lld%lld", &n, &m); int ans = C(n << 1, m); if((m & 1) && ans) ans = mod - ans; printf("%d\n", ans); } return 0; }
[ "t251346744@gmail.com" ]
t251346744@gmail.com
0ff2441725c816303a030c844664f383ac72b03c
72c3074a87433e93123c05139cb788d62e597265
/Codeforces/Same_Parity_Summands.cpp
29bc2b7ac5fb3708b2c777904c63a9bc48ab01cc
[]
no_license
ganpa3/Competitive-Programming
449f59d6ff36a140bac09266a567a56404fac222
08c179b21f6c143a6baf9b9c1a16bec97a5bf173
refs/heads/master
2023-07-27T23:57:30.796928
2021-09-07T06:14:49
2021-09-07T06:14:49
286,079,300
0
0
null
2021-01-18T04:16:10
2020-08-08T16:29:45
C++
UTF-8
C++
false
false
929
cpp
/* * Problem Statement: https://codeforces.com/problemset/problem/1352/B * Author: ganpa */ #include <bits/stdc++.h> typedef long long int ll; typedef long double ld; typedef unsigned long long int ull; using namespace std; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); #endif ios_base::sync_with_stdio(false), cin.tie(0); int tc; cin >> tc; while (tc--) { int n, k; cin >> n >> k; if (k > n) cout << "NO\n"; else if (n % 2 == 0 && n / k >= 2) { cout << "YES\n"; for (int i = 0; i < k - 1; ++i) cout << "2 "; cout << n - ((k - 1) * 2) << "\n"; } else if ((n % 2 != 0 && k % 2 != 0) || (n % 2 == 0 && k % 2 == 0)) { cout << "YES\n"; for (int i = 0; i < k - 1; ++i) cout << "1 "; cout << n - (k - 1) << "\n"; } else cout << "NO\n"; } }
[ "pawarg256@gmail.com" ]
pawarg256@gmail.com
bb064f4f334dc22f0881ad9582cbb5798d5cc5df
da66a12e17ea79462feb742f17a91ce0342b4925
/Banker.cpp
2244b23e2464fcca079f3ead24d96c997209e46f
[]
no_license
mikepitiwat/OS_lAB7
b79fc763cc543d2142bba48d95ecb062475b05ec
9b8434b88128faed0b49dcd4029bf19ba6eb1564
refs/heads/master
2020-12-21T19:56:25.309663
2020-02-20T09:51:17
2020-02-20T09:51:17
236,541,437
0
0
null
null
null
null
UTF-8
C++
false
false
4,740
cpp
#include <stdio.h> int np,nr; // number process and number resource int Allocation[10][5],Max[10][5],Need[10][5],Available[10][5];; int resource[5],state[10],AvailDrives[5],AvailSUM[5]; void calAvailable(){ for (int i = 0; i < nr; ++i) { for (int j = 0; j < np; ++j) { AvailDrives[i] += Allocation[j][i]; } AvailDrives[i] = resource[i] - AvailDrives[i]; AvailSUM[i] = AvailDrives[i]; Available[0][i] = AvailDrives[i]; } } void calNeed(){ for (int i = 0; i < np; ++i) { for (int j = 0; j < nr; ++j) { Need[i][j] = Max[i][j] - Allocation[i][j]; } } } void availSum(int i){ for (int j = 0; j < nr; ++j) { Available[i][j] = Allocation[i][j] + AvailSUM[j]; AvailSUM[j] = Available[i][j]; } } void Banker(){ int Level = 0; for (int round = 1; round <=2; ++round) { for (int i = 0; i < np; ++i) { if(round == 1 || round == 2 && state[i] == -1) { for (int j = 0; j < nr; ++j) { Available[i][j] =-1; if (AvailSUM[j] >= Need[i][j]) { if (j == nr - 1) { // round 3 finish availSum(i); state[i] = Level+=1; } } else { state[i] = -1; // NULL Available[i][j] =-1; break; } } } } } } void input(){ printf("->> Input state\n"); printf("Enter number of process :"); scanf("%d", &np); printf("Enter number of resource :"); scanf("%d", &nr); printf("------------------------------------------------------\n"); printf("Enter all unit of resource :\n"); for (int i = 0; i < nr; ++i) { printf(" resource0%d : ", i + 1); scanf("%d", &resource[i]); } printf("\n------------------------------------------------------"); for (int i = 0; i < np; ++i) { printf("\nEnter allocation of process : %d\n", i + 1); for (int j = 0; j < nr; ++j) { printf("resource0%d : ", i + 1); scanf("%d", &Allocation[i][j]); } } printf("------------------------------------------------------\n"); for (int i = 0; i < np; ++i) { printf("\nEnter max of process : %d\n", i + 1); for (int j = 0; j < nr; ++j) { int temp; printf("resource0%d : ", i + 1); scanf("%d", &Max[i][j]); } } printf("------------------------------------------------------\n"); } void inTable(int i, int temp[][5]) { for (int j = 0; j < nr; ++j) { if(temp[i][j] == -1) { printf(" "); break; } else printf("%2d ", temp[i][j]); } } void showTable(){ printf("\n===========================================================\n"); printf("Poscess Alloc Max Need Avail State\n "); for (int i = 0; i < 4; ++i){ printf(" "); for (int j = 0; j < nr; ++j) printf("%c ", 65 + j); } printf("\n"); for (int i = 0; i < np; ++i){ printf("P%d\t ",i+1); inTable(i,Allocation);printf(" "); inTable(i, Max);printf(" "); inTable(i, Need);printf(" "); inTable(i, Available);printf(" "); if(state[i] == -1) printf("NULL"); else printf("%d", state[i]); printf("\n"); } printf("===========================================================\n"); } char* ansState(){ int countNULL = 0; for (int i = 0; i < np; ++i) { if(state[i] == -1){ countNULL +=1; } } if(countNULL == np) return "If grant last drive to any process may get deadlock = UNSAFE STATE\n**ALL process don't run to completion"; else if(countNULL > 0 && countNULL < np) return "Process may get deadlock = UNSAFE STATE"; else return "**ALL process run to completion = SAFE STATE"; } int main(){ input(); calAvailable(); calNeed(); Banker(); printf("%d process\n", np); printf("%d resource is ", nr); for (int i = 0; i < nr; ++i) printf("%c(%d instances) ", 65 + i, resource[i]); showTable(); printf("Available drives = "); for (int i = 0; i < nr; ++i) printf("%d ", AvailDrives[i]); printf("\nFirst state is "); int First = -1; for (int i = 0; i < np; ++i) if(state[i] == 1) { First = i + 1; break; } if(First !=-1) printf("P%d\n", First); printf("%s", ansState()); }
[ "noreply@github.com" ]
noreply@github.com
d96eab0f52808c661bf5c4744b7d55805b535c84
a8792577a27fabb545bd5c94e05183af4bfc2f19
/Ch17/tree.cpp
55d43e9fbd7ba53037c1cde3224a071a1fab48d9
[]
no_license
TatyanaV/Introduction-to-C-part-2
d49db569b430f1cad14fe0fa4de7fa561da5f89f
d06a70b7e9dcf6e8be8d70e9bfc04bb0505f8933
refs/heads/master
2021-01-17T06:41:57.833714
2016-07-22T05:15:42
2016-07-22T05:15:42
63,925,322
0
1
null
null
null
null
UTF-8
C++
false
false
2,117
cpp
//This is the implementation file tree.cpp. This is the implementation for //the template class SearchTree. The interface is in the file tree.h. namespace TreeSavitch { template<class T> void SearchTree<T>::insert(T item, TreeNode<T>*& subTreeRoot) { if (subTreeRoot == NULL) subTreeRoot = new TreeNode<T>(item, NULL, NULL); else if (item < subTreeRoot->data) insert(item, subTreeRoot->leftLink); else //item >= subTreeRoot->data insert(item, subTreeRoot->rightLink); } template<class T> void SearchTree<T>::insert(T item) { insert(item, root); } template<class T> bool SearchTree<T>::inTree(T item, TreeNode<T>* subTreeRoot) const { if (subTreeRoot == NULL) return false; else if (subTreeRoot->data == item) return true; else if (item < subTreeRoot->data) return inTree(item, subTreeRoot->leftLink); else //item >= link->data return inTree(item, subTreeRoot->rightLink); } template<class T> bool SearchTree<T>::inTree(T item) const { return inTree(item, root); } template<class T> //uses iostream: void SearchTree<T>::inOrderShow(TreeNode<T>* subTreeRoot) const { if (subTreeRoot != NULL) { inOrderShow(subTreeRoot->leftLink); cout << subTreeRoot->data << " "; inOrderShow(subTreeRoot->rightLink); } } template<class T> //uses iostream: void SearchTree<T>::inOrderShow( ) const { inOrderShow(root); } template<class T> void SearchTree<T>::deleteSubtree(TreeNode<T>*& subTreeRoot) { if (subTreeRoot != NULL) { deleteSubtree(subTreeRoot->leftLink); deleteSubtree(subTreeRoot->rightLink); //subTreeRoot now points to a one node tree. delete subTreeRoot; subTreeRoot = NULL; } } template<class T> SearchTree<T>::~SearchTree( ) { deleteSubtree(root); } }//TreeSavitch
[ "vlaskint.onid.oregonstate.edu" ]
vlaskint.onid.oregonstate.edu
874d97d4dde866ed161ecdf96f1b2b2b1f7fe91e
0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8
/CS AdminKit/development2/common_nagent_sdk/include/common/kllicinfo.h
281fca30ab2804ee58876194c7009ffe1ee3cfe1
[]
no_license
seth1002/antivirus-1
9dfbadc68e16e51f141ac8b3bb283c1d25792572
3752a3b20e1a8390f0889f6192ee6b851e99e8a4
refs/heads/master
2020-07-15T00:30:19.131934
2016-07-21T13:59:11
2016-07-21T13:59:11
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
6,047
h
/*! * (C) 2003 Kaspersky Lab * * \file kllicinfo.h * \author Andrew Kazachkov * \date 04.06.2003 11:13:00 * \brief * */ #ifndef __KL_LICINFO_H__ #define __KL_LICINFO_H__ namespace KLLIC { //Errors enum{ KLLIC_KEY_CHECK_FAILED=KLLICERRSTART, KLLIC_KEY_INSTALL_FAILED, KLLIC_BAD_VERSION, KLLIC_CANT_LOAD_MODULE, KLLIC_PRODUCT_NOT_FOUND, KLLIC_CANT_GET_PRODUCT_FOLDER, KLLIC_PRODUCT_INFO_ABSENT, KLLIC_KEY_SIGN_MISTMACH, KLLIC_APP_INFO_SIGN_MISMATCH, KLLIC_APPINFO_CANT_RESTORE, KLLIC_KAVSETXML_DATE_CANT_GET, KLLIC_KAVSETXML_SIGN_MISMATCH, KLLIC_KEYINFO_CANT_RESTORE, KLLIC_BLACKLIST_NOT_FOUND, KLLIC_KEY_SERIAL_NOT_FOUND }; const KLERR::ErrorDescription c_errorDescriptions[]={ {KLLIC_KEY_CHECK_FAILED, L"Checking key validity failed"}, {KLLIC_KEY_INSTALL_FAILED, L"Key installation failed"}, {KLLIC_BAD_VERSION, L"Module '%ls' has bad version"}, {KLLIC_CANT_LOAD_MODULE, L"Cannot load module '%ls' ('%ls')"}, {KLLIC_PRODUCT_NOT_FOUND, L"Cannot install key because product '%u' is not installed"}, {KLLIC_CANT_GET_PRODUCT_FOLDER, L"Cannot obtain folder for product '%ls'"}, {KLLIC_PRODUCT_INFO_ABSENT, L"Cannot install key because product info file is absent"}, {KLLIC_KEY_SIGN_MISTMACH, L"Key signature mistmach"}, {KLLIC_APP_INFO_SIGN_MISMATCH, L"Appinfo signature mistmach"}, {KLLIC_APPINFO_CANT_RESTORE, L"Cannot obtain application info"}, {KLLIC_KAVSETXML_DATE_CANT_GET, L"Cannot obtain kavset date"}, {KLLIC_KAVSETXML_SIGN_MISMATCH, L"Kavset signature mistmach"}, {KLLIC_KEYINFO_CANT_RESTORE, L"Cannot obtain key info"}, {KLLIC_BLACKLIST_NOT_FOUND, L"Cannot found black list"}, {KLLIC_KEY_SERIAL_NOT_FOUND, L"Cannot obtain key serial number"} }; const wchar_t c_szwTaskInstallKey[]=L"InstallKey"; const wchar_t c_szwKeyContents[]=L"KLLIC_KEY_CONTENTS"; //BINARY_T const wchar_t c_szwKeyFileName[]=L"KLLIC_KEY_FNAME"; const wchar_t c_szwIsCurrentKey[]=L"KLLIC_IS_CURRENT_KEY"; // Эти макросы определяются в SettingsStorage.h, но для версии 0.12b они дублируются здесь: //! Информация о лицензионных ключах в Product Info Settings Storage #define KLPRSS_SECTION_LIC_INFO L"LicensingInfo" //! информация об активном лицензионном ключе #define KLPRSS_VAL_LIC_KEY_CURRENT L"CurrentKey" //! информация о резервном лицензионном ключе #define KLPRSS_VAL_LIC_KEY_NEXT L"NextKey" #define KLLIC_KEY_TYPE L"KLLIC_KEY_TYPE" #define KLLIC_PROD_SUITE_ID L"KLLIC_PROD_SUITE_ID" #define KLLIC_APP_ID L"KLLIC_APP_ID" #define KLLIC_INSTALL_DATE L"KLLIC_INSTALL_DATE" #define KLLIC_CREATION_DATE L"KLLIC_CREATION_DATE" #define KLLIC_LIMIT_DATE L"KLLIC_LIMIT_DATE" #define KLLIC_EXPIRATION_DATE L"KLLIC_EXPIRATION_DATE" #define KLLIC_LICENSE_PERIOD L"KLLIC_LICENSE_PERIOD" #define KLLIC_LIC_COUNT L"KLLIC_LIC_COUNT" #define KLLIC_EFFECTIVE_LICENSE_PERIOD L"KLLIC_EFFECTIVE_LICENSE_PERIOD" #define KLLIC_EFFECTIVE_LIC_COUNT L"KLLIC_EFFECTIVE_LIC_COUNT" #define KLLIC_SERIAL L"KLLIC_SERIAL" #define KLLIC_MAJ_VER L"KLLIC_MAJ_VER" #define KLLIC_PROD_NAME L"KLLIC_PROD_NAME" //! Тип ключа (Commercial, Beta, Trial, Test, OEM) const wchar_t c_szwKeyType[] = KLLIC_KEY_TYPE; // INT_T //! Идентификатор продукта, прописанный в лицензионном ключе const wchar_t c_szwKeyProdSuiteID[]=KLLIC_PROD_SUITE_ID; // INT_T //! Идентификатор приложения, прописанный в лицензионном ключе const wchar_t c_szwKeyAppID[]=KLLIC_APP_ID; // INT_T //! Дата и время инсталляции ключа const wchar_t c_szwKeyInstallDate[]=KLLIC_INSTALL_DATE; // DATE_TIME_T //! Дата и время создания ключа const wchar_t c_szwKeyCreationDate[]=KLLIC_CREATION_DATE; // DATE_TIME_T //! Дата и время устаревания ключа const wchar_t c_szwKeyLimitDate[]=KLLIC_LIMIT_DATE; // DATE_TIME_T //! Дата окончания действия лицензии на данном компьютере const wchar_t c_szwKeyExpirationDate[]=KLLIC_EXPIRATION_DATE; // DATE_TIME_T //! Срок действия лицензии const wchar_t c_szwKeyLicPeriod[]=KLLIC_LICENSE_PERIOD; // INT_T //! Ограничение на количество лицензий const wchar_t c_szwKeyLicCount[]=KLLIC_LIC_COUNT; // INT_T //! Срок действия лицензии const wchar_t c_szwKeyLicEffectivePeriod[]=KLLIC_EFFECTIVE_LICENSE_PERIOD; // INT_T //! Ограничение на количество лицензий const wchar_t c_szwKeyLicEffectiveCount[]=KLLIC_EFFECTIVE_LIC_COUNT; // INT_T //! Серийный номер ключа const wchar_t c_szwKeySerial[]=KLLIC_SERIAL; // STRING_T //! Старшая версия продукта, прописанная в лицензионном ключе const wchar_t c_szwKeyMajVer[]=KLLIC_MAJ_VER; // INT_T //! Имя приложения, прописанное в лицензионном ключе const wchar_t c_szwKeyProdName[]=KLLIC_PROD_NAME; // STRING_T //! Events #define KLLIC_EVENT_CODES_BASE 1024L }; #endif //__KL_LICINFO_H__
[ "idrez.mochamad@gmail.com" ]
idrez.mochamad@gmail.com
4ef5445482bbcdf64f11fde7fde5748eacba86ed
e35981c70f74813b078d870cd28e72b0fb1b11dc
/examples/echoserver.cpp
1a03cacd678d65f00a332767ff9d4f3d34a77612
[ "MIT" ]
permissive
chenbk85/redis_ae_examples
9ed4a60ee56a8ab57c6433d825ccd73d1e2af9c8
7d84811f8466f2ed6884990d9c1a26863fc789a9
refs/heads/master
2021-01-17T22:27:15.799486
2015-11-02T14:28:06
2015-11-02T14:28:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,132
cpp
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include "ae/libae.h" #define MAX_BUFFER_SIZE 4096 void echo_service(aeEventLoop *ev, int fd, void *privdata, int mask) { char buffer[MAX_BUFFER_SIZE]; bool readMore = true; while (readMore) { int len = ::read(fd, buffer, MAX_BUFFER_SIZE); if (len < 0) { readMore = false; ::perror("read error 1: "); aeDeleteFileEvent(ev, fd, mask); ::close(fd); } else if (len == 0) // closed { readMore = false; ::perror("read error 1: "); aeDeleteFileEvent(ev, fd, mask); ::close(fd); } else { printf("get data on [%d] : %s\n", fd, buffer); len = anetWrite(fd, buffer, len); // should check return value if (len < MAX_BUFFER_SIZE) { readMore = false; } } } } void accept_callback(aeEventLoop *ev, int fd, void *privdata, int mask) { int port; char cip[128]; char neterr[ANET_ERR_LEN]; int clientfd = anetTcpAccept(neterr, fd, cip, sizeof(cip), &port); if (clientfd == AE_ERR) { return; } printf("accept one %d, on port [%d]\n", clientfd, port); anetEnableTcpNoDelay(neterr, clientfd); char *noparam = NULL; if (aeCreateFileEvent(ev, clientfd, AE_READABLE, echo_service, noparam) == AE_ERR) { ::close(clientfd); return; } } int main() { char srvddr[] = "0.0.0.0"; int port = 9999; char neterr[ANET_ERR_LEN]; int listen_fd = anetTcpServer(neterr, port, srvddr, 1024); if (listen_fd < 0) { printf("anetTcpServer error : %s\n", neterr); perror("open listening socket"); exit(0); } aeEventLoop *ev = aeCreateEventLoop(1024); printf("i/o multiplex : %s\n", aeGetApiName()); aeCreateFileEvent(ev, listen_fd, AE_READABLE, accept_callback, &ev); printf("server is listening on [%s:%d]\n", srvddr, port); aeMain(ev); // event loop printf("hello world\n"); }
[ "lizhenghn@gmail.com" ]
lizhenghn@gmail.com
c13369bdd624d1c66eb4dc7decbf8104349eec1f
34d762e8479ddcf13beb50ab70233a814bec1a8b
/pro1.2.5/pro1.2.5daulpal.cpp
44e55f52e3bbcc43386545e2d28744bcfd4d5870
[]
no_license
lxxx12/usaco
33546d3da4832a8afa4d41ff2d7a119941cf3143
cf35d4a7bc6cc648733acaaa711e0b798e172df3
refs/heads/master
2021-01-10T07:42:42.701988
2015-07-02T13:59:15
2015-07-02T13:59:15
36,869,041
1
0
null
null
null
null
UTF-8
C++
false
false
1,062
cpp
/* ID:lxxxsou1 PROG: dualpal LANG: C++ */ #include <iostream> #include <iostream> #include <fstream> #include <string> #include<cmath> using namespace std; bool is_palnum(int num,int base) { int i,j=0,r; string num_str,numantitone; for(i=0;num!=0;i++) { r=num%base; num_str.push_back(r); num=num/base; } for(j=0;j<i;j++) { numantitone.push_back(num_str[i-j-1]); if(numantitone[j]!=num_str[j]) { break; } } if(j==i) return true; else return false; } int main() { ofstream fout ("dualpal.out"); ifstream fin ("dualpal.in"); int base,i=0; int start,amount; fin>>amount; fin>>start; while(i<amount) { start++; int sum=0; for(base=2;base<=10;base++) { if(is_palnum(start,base)) sum++; if(sum==2) { fout<<start<<endl; i++; break; } } } return 0; }
[ "895159308@qq.com" ]
895159308@qq.com
9c85d76933fac9e10da91af32511e1a0247322a1
426f26555e653f42cb17be0819d158ce8b8bfbf9
/DirectX11SampleProj/DirectX11SampleProj/Source/Lib/WindowsSystem/WindowsSystem.h
bfe06efc03d0649747e1d4e517929541a691fed4
[]
no_license
kou65/DirectX11Sample
dece4bfd2a0b5a6dc132f36e1f8876ec4b8aab5a
f9cc5c51b85804cd7759c75438e521b569bca426
refs/heads/master
2023-02-03T21:20:11.588400
2020-12-22T16:43:50
2020-12-22T16:43:50
299,990,258
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
631
h
#ifndef MSG_H_ #define MSG_H_ #include<Windows.h> #include<string> /** * @brief namespace Windowsのシステム関数群 */ namespace WindowsSystem { /** * @brief メッセージの送受信を行う * @return bool メッセージ送信終了 = true それ以外 = false */ bool ProcessMessage(); /** * @brief メッセージボックスを出現させる */ void TextMessageBox(const std::string& string); /** * @brief デバッグログ出力 */ void OutputDebugLog(const std::string& string); /** * @brief デバッグログ出力 */ void OutputDebugLogLiteral(const std::string& string); } #endif
[ "41092674+kou65@users.noreply.github.com" ]
41092674+kou65@users.noreply.github.com
7643a3fa0fb0ba824e56b1b4be6cdf7094761027
f716d1287b1fe40c173b44d1e99c5a3c5468bfd7
/ShooterMulti_base/Source/ShooterMulti/AI/UndeadDirector.h
d1e7cc6e3c9d39b59897e20d550a07a15a38548d
[]
no_license
natheu/TPSMulti
fc07052a0e0833f7acfdcce4b45ec20f55500a6c
7d1c0edffbad3115b0e5eb7fbd35fa6b37f9247a
refs/heads/master
2023-01-28T10:26:42.624546
2020-10-06T08:11:26
2020-10-06T08:11:26
301,651,899
1
0
null
null
null
null
UTF-8
C++
false
false
1,342
h
#pragma once #include "GameFramework/Actor.h" #include "../LD/EnemySpawnerButton.h" #include "../Characters/UndeadCharacter.h" #include "UndeadDirector.generated.h" UCLASS() class SHOOTERMULTI_API AUndeadDirector : public AActor { GENERATED_BODY() protected: static AUndeadDirector* Instance; FTimerHandle SpawnTimerHandle; FDelegateHandle PunchEventHandle; public: UPROPERTY(EditInstanceOnly, BlueprintInternalUseOnly, Category = Director) TSubclassOf<class AUndeadCharacter> UndeadBlueprint; UPROPERTY(EditInstanceOnly, BlueprintInternalUseOnly, Category = Director) TArray<AActor*> SpawnPoints; UPROPERTY(EditInstanceOnly, BlueprintInternalUseOnly, Category = Director) TArray<AEnemySpawnerButton*> ButtonSpawnPoints; UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Director) int MaxPunchPerSecond = 2; UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Director, meta=(ClampMin = 0.1f)) float SecondPerSpawn = 5.0f; AUndeadDirector(); // Called when the game starts or when spawned virtual void BeginPlay() override; virtual void Destroyed() override; UFUNCTION(BlueprintPure, Category = Director) static AUndeadDirector* GetInstance(); void SpawnEnemy(FVector pos, const FRotator& rot, ETeam Team = ETeam::AI); void SpawnTickEnemy(); void UpdateFrequencies(class ADeathMatchGS* gs); };
[ "n.lepec@student.isartdigital.com" ]
n.lepec@student.isartdigital.com
b4f27d011e1b4e90eb611fa123721d5672db80be
1e96fac4cb99c7431ed4ae2bd688d74d8fb024ef
/Example1/example.cxx
ee198e40401c742fc0204a58ad86e8d2c005a205
[]
no_license
iMichka/SwigExamples
c95426149343e174cacf4a688a502910a86304bc
00a30a778368a1a425cbd03be3813c0229791830
refs/heads/master
2021-01-10T21:05:28.152482
2014-08-03T21:21:16
2014-08-03T21:21:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
344
cxx
/* File: example.cxx */ #include <string> #include <iostream> #include "example.h" bool myfunc(std::string &value) { value = "ccc"; bool val; return val; } int main(void) { /* std::string a; std::string value; bool ret = myfunc(a, value); std::cout << ret << std::endl; std::cout << a << std::endl; */ return 0; }
[ "michkapopoff@gmail.com" ]
michkapopoff@gmail.com
5cf78d6e16b73a45f5dbc03ec653e33a14d91e59
eb0c6661d965207d5dec0fb67bfc868ebd4fa014
/RiguruLib/RiguruLib/Src/scene/GamePlayScene.h
66abe5feddc2614e39609e3b8e26f5046ed4af0e
[]
no_license
shibuyadaiki/ThreadWar
26e565c0fda2f6db6fa1da96b2f545bb1590c8a7
7c25576cb1e4f9f4a0672cd45230ffcd64e641a8
refs/heads/master
2016-08-09T07:35:59.007130
2016-02-01T04:51:19
2016-02-01T04:51:19
50,814,542
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
998
h
#pragma once #include "IScene.h" #include "ISceneMediator.h" #include "../world/World.h" #include "../Math/Matrix4.h" #include "../Actor/ID.h" #include "../Actor/Stage.h" class GamePlayScene :public IScene{ public: //コンストラクタ GamePlayScene(VICTORY_ID& winner_); //デストラクタ ~GamePlayScene(); //更新前初期化 virtual void Initialize() override; //更新処理 virtual void Update(float frameTime)override; //描画処理 virtual void Draw() const override; //終了しているか? virtual bool IsEnd() const override; //次のシーンを返す virtual Scene Next() const override; //終了時処理 virtual void End()override; private: std::shared_ptr<Stage> stage; bool mIsEnd; World wa; int bvolume; int svolume; Matrix4 playerMat, enemyMat; //1チームの人数 const float teamMemberCount = 4; CAMERA_ID drawCamera = CAMERA_ID::PLAYER_CAMERA_1P; float drawNum = 0; VICTORY_ID* winner; bool fadeIn, fadeOut; float fadeTime; };
[ "aaaaaaaaaadddddddddd30@gmail.com" ]
aaaaaaaaaadddddddddd30@gmail.com
97be3a1f7b8d1200d8473e5aa6da3828c1d5333f
295cb1c76ed92ac3a379078d905ef792ce15e519
/Graph Algorithms/ques5(Building Teams).cpp
adb3405cb9b89640bfec50a4cf96a98e08016cfa
[]
no_license
grg124/cses_solution
98cd87470d3868d554be4753d81cb6406a5ec906
617bc66bacea4b4d0d2846b663911b1a0d3f74c2
refs/heads/master
2022-11-28T22:13:19.393801
2020-08-18T11:38:15
2020-08-18T11:38:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
cpp
// problem set link -- https://cses.fi/problemset/ /* UserName - ankit_S author- Ankit kumar */ #include <bits/stdc++.h> #include <iostream> using namespace std; #define FAST ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); #define ll long long #define MOD 1000000007 const int N=2e5; vector<vector<int>>graph(N+1); vector<int>par(N+1,-1); bool flag=false; void dfs(int i,int team){ if(par[i]!=-1){ if(team!=par[i]){ flag=true; return; } return; } par[i]=team; for(auto j:graph[i]){ dfs(j,!team); } } int main(){ int n,m; cin>> n>>m; for(int i=0;i<m;i++){ int a,b; cin>>a>> b; graph[a].push_back(b); graph[b].push_back(a); } for(int i=1;i<=n;i++){ if(par[i]==-1){ dfs(i,0); } } if(flag){ cout<<"IMPOSSIBLE"<<endl; } else{ for(int i=1;i<=n;i++){ cout<<par[i]+1<<" "; } } }
[ "noreply@github.com" ]
noreply@github.com
7678fd0dad980074d626803fff1c6a952068d309
933c674278e2b3b8ebc0a90a70ac4fd629ac72e9
/src/computeX2sCpp.cpp
6bab1911871973cbaa1cac445c7f296978e9a5bd
[]
no_license
dkahle/algstat
bc63249b8adca4005016939a6e7db11f5253ee01
a705514d3a3c592361cd7ee222d1c743ed8808c9
refs/heads/master
2023-05-27T22:17:47.006699
2023-05-17T17:18:06
2023-05-17T17:18:06
27,615,285
14
11
null
2022-08-18T13:44:36
2014-12-05T23:50:12
R
UTF-8
C++
false
false
405
cpp
#include <Rcpp.h> using namespace Rcpp; // [[Rcpp::export]] NumericVector computeX2sCpp(NumericMatrix x, NumericVector exp){ int ncol = x.ncol(); int n = x.nrow(); NumericVector out(ncol); double chisq; for(int i = 0; i < ncol; ++i){ chisq = 0; for(int j = 0; j < n; ++j){ if(exp[j] > 0) chisq += pow(x(j,i) - exp[j], 2) / exp[j]; } out[i] = chisq; } return out; }
[ "david.kahle@gmail.com" ]
david.kahle@gmail.com
fcf2ddcfab9379a527a16ef91e74906feb95781f
2e72a74d760a8c14ca242df077413a9ff9699774
/src/d2_ne_sd_CA.cpp
1f14736a4c5327f6d30f2f16ce64afb851ee4027
[]
no_license
chemiczny/automateusz_gto_d2
ba3f1bec939a135a3591d512663ee01c4aa10b0c
b4c7e0978424bf53fd4b1f67de8e65ab3373fc10
refs/heads/master
2020-03-21T15:30:46.767378
2019-05-08T14:33:56
2019-05-08T14:33:56
138,716,717
0
0
null
null
null
null
UTF-8
C++
false
false
706
cpp
#include "gto_d2_kit/d2_ne_sd_AC.hpp" void vne_second_derivative_02_31( double ae, double be, double xA, double yA, double zA, double xB, double yB, double zB, double xC, double yC, double zC, const double* bs, double* const d2nexx, double* const d2nexy, double* const d2nexz, double* const d2neyx, double* const d2neyy, double* const d2neyz, double* const d2nezx, double* const d2nezy, double* const d2nezz, std::size_t matrix_size, std::size_t Ai, std::size_t Bi){ vne_second_derivative_02_13( ae, be, xA, yA, zA, xB, yB, zB, xC, yC, zC, bs, d2nexx, d2neyx, d2nezx, d2nexy, d2neyy, d2nezy, d2nexz, d2neyz, d2nezz, matrix_size, Ai, Bi ); }
[ "mglanows@kierkur.ch.uj.edu.pl" ]
mglanows@kierkur.ch.uj.edu.pl
74c7d249d6dbb41c385eaa357ce1f32cc202fe6f
fd1871bd5ea968e6d077511d00c5119201881a29
/boost/asynchronous/any_shared_scheduler_proxy.hpp
94e49a4a7b8814a466d21e0f22fa50aed97a391c
[]
no_license
iCodeIN/asynchronous
04666381d8865e5f29447545bd245f99aed3415f
4f3ac92a41896cb1b72054e89f6396c1495e64ce
refs/heads/master
2023-07-09T19:15:51.007955
2021-08-15T13:45:32
2021-08-15T13:45:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,559
hpp
// Boost.Asynchronous library // Copyright (C) Christophe Henry 2016 // // Use, modification and distribution is 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) // // For more information, see http://www.boost.org #ifndef BOOST_ASYNC_ANY_SHARED_SCHEDULER_PROXY_HPP #define BOOST_ASYNC_ANY_SHARED_SCHEDULER_PROXY_HPP #include <string> #include <vector> #include <boost/mpl/vector.hpp> #include <memory> #include <boost/thread/thread.hpp> #include <boost/type_erasure/any.hpp> #include <boost/type_erasure/builtin.hpp> #include <boost/type_erasure/operators.hpp> #include <boost/type_erasure/constructible.hpp> #include <boost/type_erasure/relaxed.hpp> #include <boost/type_erasure/any_cast.hpp> #include <boost/asynchronous/detail/concept_members.hpp> #include <boost/asynchronous/callable_any.hpp> #include <boost/asynchronous/diagnostics/any_loggable.hpp> #include <boost/asynchronous/any_scheduler.hpp> #include <boost/asynchronous/detail/any_pointer.hpp> #include <boost/asynchronous/detail/any_interruptible.hpp> #include <boost/asynchronous/queue/any_queue.hpp> #include <boost/asynchronous/scheduler_diagnostics.hpp> // any_shared_scheduler_proxy_concept is provided as a concept or interface (default) // this type is what programmers will see: something representing the outer interface of a scheduler // and keeping it and its threads active. // The last any_shared_scheduler_proxy instance will destroy the scheduler and join its threads. // It can be distributed everywhere in the code EXCEPT in one of its own threads, either directly or indirectly. // This means a design with a cycle including a any_shared_scheduler_proxy might deadlock at shutdown. namespace boost { namespace asynchronous { BOOST_MPL_HAS_XXX_TRAIT_DEF(self_proxy_creation) #ifdef BOOST_ASYNCHRONOUS_USE_TYPE_ERASURE // for implementation use only template <class JOB> struct internal_scheduler_aspect_concept: ::boost::mpl::vector< boost::asynchronous::pointer<>, boost::type_erasure::same_type<boost::asynchronous::pointer<>::element_type,boost::type_erasure::_a >, boost::asynchronous::has_get_queues<std::vector<boost::asynchronous::any_queue_ptr<JOB> >(),boost::type_erasure::_a>, boost::asynchronous::has_set_steal_from_queues<void(std::vector<boost::asynchronous::any_queue_ptr<JOB> > const&),boost::type_erasure::_a>, boost::type_erasure::relaxed, boost::type_erasure::copy_constructible<> >{} ; template <class T> struct internal_scheduler_aspect : boost::type_erasure::any<boost::asynchronous::internal_scheduler_aspect_concept<T> > { internal_scheduler_aspect(): boost::type_erasure::any<boost::asynchronous::internal_scheduler_aspect_concept<T> > (){} template <class U> internal_scheduler_aspect(U const& u): boost::type_erasure::any<boost::asynchronous::internal_scheduler_aspect_concept<T> > (u){} }; template <class JOB> struct any_shared_scheduler_proxy_concept: ::boost::mpl::vector< boost::asynchronous::pointer<>, boost::type_erasure::same_type<boost::asynchronous::pointer<>::element_type,boost::type_erasure::_a >, boost::asynchronous::has_post<void(JOB), const boost::type_erasure::_a>, boost::asynchronous::has_post<void(JOB, std::size_t), const boost::type_erasure::_a>, boost::asynchronous::has_interruptible_post<boost::asynchronous::any_interruptible(JOB), const boost::type_erasure::_a>, boost::asynchronous::has_interruptible_post<boost::asynchronous::any_interruptible(JOB, std::size_t), const boost::type_erasure::_a>, boost::asynchronous::has_thread_ids<std::vector<boost::thread::id>(), const boost::type_erasure::_a>, boost::asynchronous::has_get_weak_scheduler<boost::asynchronous::any_weak_scheduler<JOB>(), const boost::type_erasure::_a>, boost::asynchronous::has_is_valid<bool(), const boost::type_erasure::_a>, boost::asynchronous::has_get_queue_size<std::vector<std::size_t>(), const boost::type_erasure::_a>, boost::asynchronous::has_reset<void()>, boost::asynchronous::has_clear_diagnostics<void(), boost::type_erasure::_a>, #ifndef BOOST_NO_RVALUE_REFERENCES boost::asynchronous::has_get_diagnostics<boost::asynchronous::scheduler_diagnostics(std::size_t), const boost::type_erasure::_a>, #endif boost::asynchronous::has_get_diagnostics<boost::asynchronous::scheduler_diagnostics(), const boost::type_erasure::_a>, boost::asynchronous::has_get_internal_scheduler_aspect<boost::asynchronous::internal_scheduler_aspect<JOB>(), boost::type_erasure::_a>, boost::asynchronous::has_set_name<void(std::string const&), boost::type_erasure::_a>, boost::asynchronous::has_get_name<std::string(), const boost::type_erasure::_a>, boost::asynchronous::has_processor_bind<void(std::vector<std::tuple<unsigned int,unsigned int>>), boost::type_erasure::_a>, boost::asynchronous::has_execute_in_all_threads<std::vector<std::future<void>>(boost::asynchronous::any_callable), boost::type_erasure::_a>, boost::type_erasure::relaxed, boost::type_erasure::copy_constructible<> >{} ; template <class T = BOOST_ASYNCHRONOUS_DEFAULT_JOB> struct any_shared_scheduler_proxy_ptr: boost::type_erasure::any<boost::asynchronous::any_shared_scheduler_proxy_concept<T> > { typedef T job_type; any_shared_scheduler_proxy_ptr(): boost::type_erasure::any<boost::asynchronous::any_shared_scheduler_proxy_concept<T> > (){} template <class U> any_shared_scheduler_proxy_ptr(U const& u): boost::type_erasure::any<boost::asynchronous::any_shared_scheduler_proxy_concept<T> > (u){} }; template <class JOB = BOOST_ASYNCHRONOUS_DEFAULT_JOB> class any_shared_scheduler_proxy { public: typedef JOB job_type; any_shared_scheduler_proxy(any_shared_scheduler_proxy_ptr<JOB> ptr):my_ptr(ptr){} any_shared_scheduler_proxy():my_ptr(){} any_shared_scheduler_proxy(any_shared_scheduler_proxy const& other):my_ptr(other.my_ptr){} void reset() { my_ptr.reset(); } //TODO check is_valid void post(JOB job) const { (*my_ptr).post(std::move(job)); } void post(JOB job, std::size_t priority) const { (*my_ptr).post(std::move(job),priority); } boost::asynchronous::any_interruptible interruptible_post(JOB job) const { return (*my_ptr).interruptible_post(std::move(job)); } boost::asynchronous::any_interruptible interruptible_post(JOB job, std::size_t priority) const { return (*my_ptr).interruptible_post(std::move(job),priority); } std::vector<boost::thread::id> thread_ids() const { return (*my_ptr).thread_ids(); } boost::asynchronous::any_weak_scheduler<JOB> get_weak_scheduler() const { return (*my_ptr).get_weak_scheduler(); } bool is_valid() const { return (*my_ptr).is_valid(); } std::vector<std::size_t> get_queue_size()const { return (*my_ptr).get_queue_size(); } std::vector<std::size_t> get_max_queue_size()const { return (*my_ptr).get_max_queue_size(); } void reset_max_queue_size() { (*my_ptr).reset_max_queue_size(); } boost::asynchronous::scheduler_diagnostics get_diagnostics(std::size_t prio=0)const { return (*my_ptr).get_diagnostics(prio); } void clear_diagnostics() { (*my_ptr).clear_diagnostics(); } boost::asynchronous::internal_scheduler_aspect<JOB> get_internal_scheduler_aspect() const { return (*my_ptr).get_internal_scheduler_aspect(); } void set_name(std::string const& name) { (*my_ptr).set_name(name); } std::string get_name()const { return (*my_ptr).get_name(name); } void processor_bind(std::vector<std::tuple<unsigned int,unsigned int>> p) { (*my_ptr).processor_bind(std::move(p)); } std::vector<std::future<void>> execute_in_all_threads(boost::asynchronous::any_callable c) { return (*my_ptr).execute_in_all_threads(std::move(c)); } private: any_shared_scheduler_proxy_ptr<JOB> my_ptr; }; #else template <class JOB> struct internal_scheduler_aspect_concept { virtual std::vector<boost::asynchronous::any_queue_ptr<JOB> > get_queues()=0; virtual void set_steal_from_queues(std::vector<boost::asynchronous::any_queue_ptr<JOB> > const&) =0; }; template <class T> struct internal_scheduler_aspect : std::shared_ptr<boost::asynchronous::internal_scheduler_aspect_concept<T> > { internal_scheduler_aspect(): std::shared_ptr<boost::asynchronous::internal_scheduler_aspect_concept<T> > (){} template <class U> internal_scheduler_aspect(U const& u): std::shared_ptr<boost::asynchronous::internal_scheduler_aspect_concept<T> > (u){} }; /*! * \class any_shared_scheduler_proxy_concept * This class is the interface class of a scheduler proxy implementation. Currently, only scheduler_shared_proxy * inherits this interface. As template argument, the job type is optional. * Default job type is BOOST_ASYNCHRONOUS_DEFAULT_JOB, which can be overwritten but defaults to any_callable. */ template <class JOB = BOOST_ASYNCHRONOUS_DEFAULT_JOB> struct any_shared_scheduler_proxy_concept { /*! * \brief virtual destructor */ virtual ~any_shared_scheduler_proxy_concept<JOB>(){} /*! * \brief posts a job into the scheduler queue * \param job passed by value */ virtual void post(JOB) const =0; /*! * \brief posts a job into the scheduler queue with the given priority * \param job passed by value * \param priority. Depending on the scheduler, it can be queue or sub-pool composite_threadpool_scheduler for example). 0 means dont'care */ virtual void post(JOB, std::size_t) const =0; /*! * \brief posts an interruptible job into the scheduler queue * \param job passed by value * \return any_interruptible. Can be used to interrupt the job */ virtual boost::asynchronous::any_interruptible interruptible_post(JOB) const =0; /*! * \brief posts an interruptible job into the scheduler queue with the given priority * \param job passed by value * \param priority. Depending on the scheduler, it can be queue or sub-pool composite_threadpool_scheduler for example). 0 means dont'care * \return any_interruptible. Can be used to interrupt the job */ virtual boost::asynchronous::any_interruptible interruptible_post(JOB, std::size_t) const =0; /*! * \brief returns the ids of the threads run by this scheduler * \return std::vector of thread ids */ virtual std::vector<boost::thread::id> thread_ids() const =0; /*! * \brief returns a weak scheduler. A weak scheduler is to a shared scheduler what weak_ptr is to a shared_ptr * \return any_weak_scheduler */ virtual boost::asynchronous::any_weak_scheduler<JOB> get_weak_scheduler() const = 0; /*! * \brief returns whether the scheduler proxy is a proxy to a valid scheduler * \return bool */ virtual bool is_valid() const =0; /*! * \brief returns the number of waiting jobs in every queue * \return a std::vector containing the queue sizes */ virtual std::vector<std::size_t> get_queue_size()const=0; /*! * \brief returns the max number of waiting jobs in every queue * \return a std::vector containing the max queue sizes */ virtual std::vector<std::size_t> get_max_queue_size()const=0; /*! * \brief reset the max queue sizes */ virtual void reset_max_queue_size()=0; /*! * \brief returns the diagnostics for this scheduler * \return a scheduler_diagnostics containing totals or current diagnostics */ virtual boost::asynchronous::scheduler_diagnostics get_diagnostics(std::size_t =0)const =0; /*! * \brief reset the diagnostics */ virtual void clear_diagnostics() =0; /*! * \brief returns a reduced scheduler interface for internal needs */ virtual boost::asynchronous::internal_scheduler_aspect<JOB> get_internal_scheduler_aspect() =0; /*! * \brief sets a name to this scheduler. On posix, this will set the name with prctl for every thread of this scheduler * \param name as string */ virtual void set_name(std::string const&)=0; /*! * \brief returns the name of this scheduler * \return name as string */ virtual std::string get_name()const =0; /*! * \brief binds threads of this scheduler to processors, starting with the given id from. * \brief thread 0 will be bound to from, thread 1 to from + 1, etc. * \param start id */ virtual void processor_bind(std::vector<std::tuple<unsigned int,unsigned int>> /*from*/)=0; /*! * \brief Executes callable (no logging) in each thread of a scheduler. * \brief Useful to register something into the TLS of each thread. * \param c callable object * \return futures indicating when tasks have been executed */ virtual std::vector<std::future<void>> execute_in_all_threads(boost::asynchronous::any_callable)=0; }; template <class JOB = BOOST_ASYNCHRONOUS_DEFAULT_JOB> class any_shared_scheduler_proxy { public: typedef JOB job_type; any_shared_scheduler_proxy():my_ptr(){} any_shared_scheduler_proxy(any_shared_scheduler_proxy const& ) = default; any_shared_scheduler_proxy(any_shared_scheduler_proxy&& ) = default; template <class U> any_shared_scheduler_proxy(U const& u): my_ptr (u){} any_shared_scheduler_proxy& operator= (any_shared_scheduler_proxy const&) =default; any_shared_scheduler_proxy& operator= (any_shared_scheduler_proxy&&) =default; /*! * \brief resets this proxy and releases the scheduler if no other proxy references it */ void reset() { my_ptr.reset(); } /*! * \brief posts a job into the scheduler queue * \param job passed by value */ void post(JOB job) const { (*my_ptr).post(std::move(job)); } /*! * \brief posts a job into the scheduler queue with the given priority * \param job passed by value * \param priority. Depending on the scheduler, it can be queue or sub-pool composite_threadpool_scheduler for example). 0 means dont'care */ void post(JOB job, std::size_t priority) const { (*my_ptr).post(std::move(job),priority); } /*! * \brief posts an interruptible job into the scheduler queue * \param job passed by value * \return any_interruptible. Can be used to interrupt the job */ boost::asynchronous::any_interruptible interruptible_post(JOB job) const { return (*my_ptr).interruptible_post(std::move(job)); } /*! * \brief posts an interruptible job into the scheduler queue with the given priority * \param job passed by value * \param priority. Depending on the scheduler, it can be queue or sub-pool composite_threadpool_scheduler for example). 0 means dont'care * \return any_interruptible. Can be used to interrupt the job */ boost::asynchronous::any_interruptible interruptible_post(JOB job, std::size_t priority) const { return (*my_ptr).interruptible_post(std::move(job),priority); } /*! * \brief returns the ids of the threads run by this scheduler * \return std::vector of thread ids */ std::vector<boost::thread::id> thread_ids() const { return (*my_ptr).thread_ids(); } /*! * \brief returns a weak scheduler. A weak scheduler is to a shared scheduler what weak_ptr is to a shared_ptr * \return any_weak_scheduler */ boost::asynchronous::any_weak_scheduler<JOB> get_weak_scheduler() const { return (*my_ptr).get_weak_scheduler(); } /*! * \brief returns whether the scheduler proxy is a proxy to a valid scheduler * \return bool */ bool is_valid() const { return !!my_ptr && (*my_ptr).is_valid(); } /*! * \brief returns the number of waiting jobs in every queue * \return a std::vector containing the queue sizes */ std::vector<std::size_t> get_queue_size()const { return (*my_ptr).get_queue_size(); } /*! * \brief returns the max number of waiting jobs in every queue * \return a std::vector containing the max queue sizes */ std::vector<std::size_t> get_max_queue_size()const { return (*my_ptr).get_max_queue_size(); } /*! * \brief reset the max queue sizes */ void reset_max_queue_size() { (*my_ptr).reset_max_queue_size(); } /*! * \brief returns the diagnostics for this scheduler * \return a scheduler_diagnostics containing totals or current diagnostics */ boost::asynchronous::scheduler_diagnostics get_diagnostics(std::size_t prio=0)const { return (*my_ptr).get_diagnostics(prio); } /*! * \brief reset the diagnostics */ void clear_diagnostics() { (*my_ptr).clear_diagnostics(); } /*! * \brief returns a reduced scheduler interface for internal needs */ boost::asynchronous::internal_scheduler_aspect<JOB> get_internal_scheduler_aspect() { return (*my_ptr).get_internal_scheduler_aspect(); } /*! * \brief sets a name to this scheduler. On posix, this will set the name with prctl for every thread of this scheduler * \param name as string */ void set_name(std::string const& name) { (*my_ptr).set_name(name); } /*! * \brief returns the name of this scheduler * \return name as string */ std::string get_name()const { return (*my_ptr).get_name(); } /*! * \brief binds threads of this scheduler to processors, starting with the given id from. * \brief thread 0 will be bound to from, thread 1 to from + 1, etc. * \param start id */ void processor_bind(std::vector<std::tuple<unsigned int,unsigned int>> p) { (*my_ptr).processor_bind(std::move(p)); } /*! * \brief Executes callable (no logging) in each thread of a scheduler. * \brief Useful to register something into the TLS of each thread. * \param c callable object * \return futures indicating when tasks have been executed */ std::vector<std::future<void>> execute_in_all_threads(boost::asynchronous::any_callable c) { return (*my_ptr).execute_in_all_threads(std::move(c)); } private: template <class J> friend class scheduler_weak_proxy; std::shared_ptr<boost::asynchronous::any_shared_scheduler_proxy_concept<JOB> > my_ptr; }; /*! * \brief any_shared_scheduler_proxy equal operator. Uses thread ids of the schedulers for comparison. */ template <class JOB> inline bool operator==(const any_shared_scheduler_proxy<JOB>& lhs, const any_shared_scheduler_proxy<JOB>& rhs) { return lhs.thread_ids() == rhs.thread_ids(); } /*! * \brief any_shared_scheduler_proxy not equal operator. Uses thread ids of the schedulers for comparison. */ template <class JOB> inline bool operator!=(const any_shared_scheduler_proxy<JOB>& lhs, const any_shared_scheduler_proxy<JOB>& rhs) { return lhs.thread_ids() != rhs.thread_ids(); } // weak pointer to any_shared_scheduler_proxy concept template <class JOB> struct any_weak_scheduler_proxy_concept : ::boost::mpl::vector< boost::type_erasure::relaxed, boost::type_erasure::copy_constructible<>, boost::type_erasure::typeid_<>, boost::asynchronous::has_lock<any_shared_scheduler_proxy<JOB>(), const boost::type_erasure::_self> > {}; template <class T = BOOST_ASYNCHRONOUS_DEFAULT_JOB> struct any_weak_scheduler_proxy: boost::type_erasure::any<boost::asynchronous::any_weak_scheduler_proxy_concept<T> > { typedef T job_type; template <class U> any_weak_scheduler_proxy(U const& u) : boost::type_erasure::any<boost::asynchronous::any_weak_scheduler_proxy_concept<T> > (u){} any_weak_scheduler_proxy() : boost::type_erasure::any<boost::asynchronous::any_weak_scheduler_proxy_concept<T> > (){} }; #endif }} // boost::asynchronous #endif // BOOST_ASYNC_ANY_SHARED_SCHEDULER_PROXY_HPP
[ "christophe.j.henry@googlemail.com" ]
christophe.j.henry@googlemail.com
30b9f5584cbffa7fe11f375f432280c89d3e2045
e83536c75242d2f465b1646c045e4e2a902fdd08
/SDL2-Exp/PhysicsHandler.h
8775630052dcbc4a9e2cddc9d7e7cf6542edc0e9
[]
no_license
AlleAnder/CPROG-PROJECT
a88a8db3f6bd5232b405440ae8bbcfc4778653d1
5c2d2c69c3549e2dd256db56f0a72db1eeb4136a
refs/heads/master
2022-04-05T03:12:58.132979
2020-01-10T13:51:15
2020-01-10T13:51:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
554
h
#pragma once #include "Element.h" class PhysicsHandler { public: PhysicsHandler(double gravity, int screenX, int screenY); void setGravity(double gravity) { this->gravity = gravity; }; void setHitboxOffset(int px) { offset = px * -1; }; bool elementsCollide(Element* e, Element* e2); bool windowElementCollide(Element* e); void applyGravityVector(Element* e); const int screenX, screenY; private: double gravity = 0; int offset = 0; int rectsCollide(const SDL_Rect* r1, const SDL_Rect* r2); int windowCollide(const SDL_Rect* r1); };
[ "savvasswe@gmail.com" ]
savvasswe@gmail.com
59c8123e767294fdebeabef52f87c816729aaefa
89485890afeeacdae996de966b8b13ba0c1bbc9a
/zwgui/include/zwmovewidgethandler.h
39cfbed97de408c5b7a3dc3f5407a8ce89149af0
[]
no_license
weinkym/src_miao
b7c8a35a80e5928470bea07d5eb7e36d54966da9
0759c1f819c15c8bb2172fe2558fcb728a186ff8
refs/heads/master
2021-08-07T17:55:52.239541
2021-06-17T03:38:44
2021-06-17T03:38:44
64,458,033
0
1
null
null
null
null
UTF-8
C++
false
false
583
h
#ifndef ZWMOVEWIDGETHANDLER_H #define ZWMOVEWIDGETHANDLER_H #include <QPointer> #include <QPoint> #include "zwgui_global.h" class QWidget; class QMouseEvent; class ZWGUISHARED_EXPORT ZWMoveWidgetHandler { public: ZWMoveWidgetHandler(QWidget *w); ~ZWMoveWidgetHandler(); void mousePressEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); private: QPointer<QWidget> m_widget; bool m_isPressed; QPoint m_pos; QPoint m_startPos; QPoint m_endPos; }; #endif // ZWMOVEWIDGETHANDLER_H
[ "weinkym@qq.com" ]
weinkym@qq.com
56cfa412e0e0b70d8d823af6a1924c430bbccd1d
934185370b67178d6e2fec6516e0980992d1e315
/FrameLib_Objects/Common_Utilities/FrameLib_VectorSet.h
c2f9b70473dfbc9148aee1d3da03efa8470dd3bb
[ "BSD-3-Clause" ]
permissive
Pezz89/FrameLib
de358577ad78aa0b4e53fb82bcd69efd1ffd87db
276b2fcc708a975eb6120e08162dbc691ae7adb4
refs/heads/master
2022-12-14T10:59:26.203346
2020-07-07T10:28:56
2020-07-07T12:11:10
276,899,482
0
0
null
2020-07-03T12:53:04
2020-07-03T12:53:03
null
UTF-8
C++
false
false
1,438
h
#ifndef FRAMELIB_VECTORSET_H #define FRAMELIB_VECTORSET_H #include "FrameLib_DSP.h" class FrameLib_VectorSet { public: // Constructor FrameLib_VectorSet(FrameLib_DSP *owner) : mFrames(nullptr), mNumFrames(0), mFrameLength(0), mAllocator(*owner) {} ~FrameLib_VectorSet() { deallocVector(mFrames); } unsigned long getNumFrames() const { return mNumFrames; } unsigned long getFrameLength() const { return mFrameLength; } double *getFrame(unsigned long idx) { return mFrames + (idx * getFrameLength()); } void reset(double initial = 0.0) { std::fill_n(mFrames, getNumFrames() * getFrameLength(), initial); } void resize(unsigned long numFrames, unsigned long frameLength, double initial = 0.0) { unsigned long totalSize = frameLength * numFrames; deallocVector(mFrames); mFrames = allocVector(totalSize); mNumFrames = mFrames ? numFrames : 0; mFrameLength = mFrames ? frameLength : 0; reset(initial); } private: double *allocVector(unsigned long N) { return mAllocator.allocate<double>(N); } void deallocVector(double *& ptr) { mAllocator.deallocate(ptr); } double *mFrames; unsigned long mNumFrames; unsigned long mFrameLength; FrameLib_DSP::Allocator mAllocator; }; #endif
[ "ajharker@gmail.com" ]
ajharker@gmail.com
7d51d47a3faa5bf0c7e8bb3820c1f065d392f3bd
8e6d80ae3b0437612803be41b261b15b431e97bb
/src/QuadControl.cpp
a1c2f7eb6afd2c320f3d2e298213e3e0fec5173f
[]
no_license
rohan-khaire25/State-Estimation-Quadrotor
10eb2395df04182a98a32ee6dd0c312101cdd46f
5441f97f3b5733c660cef5653c8806f535a11f67
refs/heads/main
2023-02-06T17:11:38.203033
2020-12-28T23:44:31
2020-12-28T23:44:31
325,191,961
0
0
null
null
null
null
UTF-8
C++
false
false
12,030
cpp
#include "Common.h" #include "QuadControl.h" #include "Utility/SimpleConfig.h" #include "Utility/StringUtils.h" #include "Trajectory.h" #include "BaseController.h" #include "Math/Mat3x3F.h" #ifdef __PX4_NUTTX #include <systemlib/param/param.h> #endif #include <iostream> using std::cout; void QuadControl::Init() { BaseController::Init(); // variables needed for integral control integratedAltitudeError = 0; // alt_previous_error = 0; #ifndef __PX4_NUTTX // Load params from simulator parameter system ParamsHandle config = SimpleConfig::GetInstance(); // Load parameters (default to 0) kpPosXY = config->Get(_config+".kpPosXY", 0); kpPosZ = config->Get(_config + ".kpPosZ", 0); KiPosZ = config->Get(_config + ".KiPosZ", 0); kpVelXY = config->Get(_config + ".kpVelXY", 0); kpVelZ = config->Get(_config + ".kpVelZ", 0); kpBank = config->Get(_config + ".kpBank", 0); kpYaw = config->Get(_config + ".kpYaw", 0); kpPQR = config->Get(_config + ".kpPQR", V3F()); maxDescentRate = config->Get(_config + ".maxDescentRate", 100); maxAscentRate = config->Get(_config + ".maxAscentRate", 100); maxSpeedXY = config->Get(_config + ".maxSpeedXY", 100); maxAccelXY = config->Get(_config + ".maxHorizAccel", 100); maxTiltAngle = config->Get(_config + ".maxTiltAngle", 100); minMotorThrust = config->Get(_config + ".minMotorThrust", 0); maxMotorThrust = config->Get(_config + ".maxMotorThrust", 100); #else // load params from PX4 parameter system //TODO param_get(param_find("MC_PITCH_P"), &Kp_bank); param_get(param_find("MC_YAW_P"), &Kp_yaw); #endif } VehicleCommand QuadControl::GenerateMotorCommands(float collThrustCmd, V3F momentCmd) { // Convert a desired 3-axis moment and collective thrust command to // individual motor thrust commands // INPUTS: // desCollectiveThrust: desired collective thrust [N] // desMoment: desired rotation moment about each axis [N m] // OUTPUT: // set class member variable cmd (class variable for graphing) where // cmd.desiredThrustsN[0..3]: motor commands, in [N] // HINTS: // - you can access parts of desMoment via e.g. desMoment.x // You'll need the arm length parameter L, and the drag/thrust ratio kappa ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// float a = momentCmd.x/(L*(1.414213562373095/2));//(L*(1.414213562373095)); float b = momentCmd.y/(L*(1.414213562373095/2));//(L*(1.414213562373095)); float c = momentCmd.z/kappa; float d = collThrustCmd; cmd.desiredThrustsN[0] = ((a+b+c+d)/(4.f)); cmd.desiredThrustsN[1] = ((-a+b-c+d)/(4.f)); cmd.desiredThrustsN[3] = ((-a-b+c+d)/(4.f)); cmd.desiredThrustsN[2] = ((a-b-c+d)/(4.f)); cmd.desiredThrustsN[0] = CONSTRAIN(cmd.desiredThrustsN[0],minMotorThrust,maxMotorThrust); cmd.desiredThrustsN[1] = CONSTRAIN(cmd.desiredThrustsN[1],minMotorThrust,maxMotorThrust); cmd.desiredThrustsN[2] = CONSTRAIN(cmd.desiredThrustsN[2],minMotorThrust,maxMotorThrust); cmd.desiredThrustsN[3] = CONSTRAIN(cmd.desiredThrustsN[3],minMotorThrust,maxMotorThrust); /////////////////////////////// END STUDENT CODE //////////////////////////// return cmd; } V3F QuadControl::BodyRateControl(V3F pqrCmd, V3F pqr) { // Calculate a desired 3-axis moment given a desired and current body rate // INPUTS: // pqrCmd: desired body rates [rad/s] // pqr: current or estimated body rates [rad/s] // OUTPUT: // return a V3F containing the desired moments for each of the 3 axes // HINTS: // - you can use V3Fs just like scalars: V3F a(1,1,1), b(2,3,4), c; c=a-b; // - you'll need parameters for moments of inertia Ixx, Iyy, Izz // - you'll also need the gain parameter kpPQR (it's a V3F) V3F momentCmd; ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// V3F error = pqrCmd -pqr; V3F ubar = kpPQR * error; V3F moments = ubar * V3F(Ixx,Iyy,Izz); /////////////////////////////// END STUDENT CODE //////////////////////////// return moments; } // returns a desired roll and pitch rate V3F QuadControl::RollPitchControl(V3F accelCmd, Quaternion<float> attitude, float collThrustCmd) { // Calculate a desired pitch and roll angle rates based on a desired global // lateral acceleration, the current attitude of the quad, and desired // collective thrust command // INPUTS: // accelCmd: desired acceleration in global XY coordinates [m/s2] // attitude: current or estimated attitude of the vehicle // collThrustCmd: desired collective thrust of the quad [N] // OUTPUT: // return a V3F containing the desired pitch and roll rates. The Z // element of the V3F should be left at its default value (0) // HINTS: // - we already provide rotation matrix R: to get element R[1,2] (python) use R(1,2) (C++) // - you'll need the roll/pitch gain kpBank // - collThrustCmd is a force in Newtons! You'll likely want to convert it to acceleration first V3F pqrCmd; Mat3x3F R = attitude.RotationMatrix_IwrtB(); ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// float b_x_a = R(0,2); float b_y_a = R(1,2); float R33 = R(2,2); float R21 = R(1,0); float R22 = R(1,1); float R12 = R(0,1); float R11 = R(0,0); float b_x_c_target = CONSTRAIN(accelCmd[0]*mass/(collThrustCmd),-maxTiltAngle, maxTiltAngle); float b_y_c_target = CONSTRAIN(accelCmd[1]*mass/(collThrustCmd),-maxTiltAngle, maxTiltAngle); if (collThrustCmd < 0) { b_x_c_target = 0; b_y_c_target = 0; } float b_dot_x_c = kpBank*(b_x_c_target - b_x_a); float b_dot_y_c = kpBank*(b_y_c_target - b_y_a); float p_c = (1/R33)*(R21*b_dot_x_c - R11*b_dot_y_c); float q_c = (1/R33)*(R22*b_dot_x_c - R12*b_dot_y_c); pqrCmd.x = p_c; pqrCmd.y = q_c; /////////////////////////////// END STUDENT CODE //////////////////////////// return pqrCmd; } float QuadControl::AltitudeControl(float posZCmd, float velZCmd, float posZ, float velZ, Quaternion<float> attitude, float accelZCmd, float dt) { // Calculate desired quad thrust based on altitude setpoint, actual altitude, // vertical velocity setpoint, actual vertical velocity, and a vertical // acceleration feed-forward command // INPUTS: // posZCmd, velZCmd: desired vertical position and velocity in NED [m] // posZ, velZ: current vertical position and velocity in NED [m] // accelZCmd: feed-forward vertical acceleration in NED [m/s2] // dt: the time step of the measurements [seconds] // OUTPUT: // return a collective thrust command in [N] // HINTS: // - we already provide rotation matrix R: to get element R[1,2] (python) use R(1,2) (C++) // - you'll need the gain parameters kpPosZ and kpVelZ // - maxAscentRate and maxDescentRate are maximum vertical speeds. Note they're both >=0! // - make sure to return a force, not an acceleration // - remember that for an upright quad in NED, thrust should be HIGHER if the desired Z acceleration is LOWER Mat3x3F R = attitude.RotationMatrix_IwrtB(); float thrust = 0; ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// float b_z = R(2,2); // float z_err = posZCmd - posZ; // float d_err = (z_err - alt_previous_error) / dt; // float d_term = 0.4f * d_err; float d_term = 0; // alt_previous_error = z_err; velZCmd = -CONSTRAIN(-velZCmd,-maxDescentRate,maxAscentRate); float e = posZCmd - posZ; integratedAltitudeError += KiPosZ*e*dt; float u_bar_1 = kpPosZ*(posZCmd - posZ) + kpVelZ*(velZCmd - velZ) + accelZCmd + integratedAltitudeError + d_term; float accelZ = (u_bar_1 - 9.81f)/b_z; if (accelZ > 0){ accelZ = 0; } thrust = -accelZ*mass; /////////////////////////////// END STUDENT CODE //////////////////////////// return thrust; } // returns a desired acceleration in global frame V3F QuadControl::LateralPositionControl(V3F posCmd, V3F velCmd, V3F pos, V3F vel, V3F accelCmd) { // Calculate a desired horizontal acceleration based on // desired lateral position/velocity/acceleration and current pose // INPUTS: // posCmd: desired position, in NED [m] // velCmd: desired velocity, in NED [m/s] // pos: current position, NED [m] // vel: current velocity, NED [m/s] // accelCmd: desired acceleration, NED [m/s2] // OUTPUT: // return a V3F with desired horizontal accelerations. // the Z component should be 0 // HINTS: // - use fmodf(foo,b) to constrain float foo to range [0,b] // - use the gain parameters kpPosXY and kpVelXY // - make sure you cap the horizontal velocity and acceleration // to maxSpeedXY and maxAccelXY // make sure we don't have any incoming z-component accelCmd.z = 0; velCmd.z = 0; posCmd.z = pos.z; ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// V3F desAccel; accelCmd[0] = CONSTRAIN(accelCmd[0], -maxAccelXY, maxAccelXY); accelCmd[1] = CONSTRAIN(accelCmd[1], -maxAccelXY, maxAccelXY); velCmd[0] = CONSTRAIN(velCmd[0], -maxSpeedXY,maxSpeedXY); velCmd[1] = CONSTRAIN(velCmd[1], -maxSpeedXY,maxSpeedXY); desAccel.x = kpPosXY*(posCmd[0] - pos[0]) + kpVelXY*(velCmd[0] - vel[0]) + accelCmd[0]; desAccel.y = kpPosXY*(posCmd[1] - pos[1]) + kpVelXY*(velCmd[1] - vel[1]) + accelCmd[1]; desAccel.x = -desAccel.x; desAccel.y = -desAccel.y; desAccel.x = CONSTRAIN(desAccel.x, -maxAccelXY, maxAccelXY); desAccel.y = CONSTRAIN(desAccel.y, -maxAccelXY, maxAccelXY); desAccel.z = 0; /////////////////////////////// END STUDENT CODE //////////////////////////// return desAccel; } // returns desired yaw rate float QuadControl::YawControl(float yawCmd, float yaw) { // Calculate a desired yaw rate to control yaw to yawCmd // INPUTS: // yawCmd: commanded yaw [rad] // yaw: current yaw [rad] // OUTPUT: // return a desired yaw rate [rad/s] // HINTS: // - use fmodf(foo,b) to constrain float foo to range [0,b] // - use the yaw control gain parameter kpYaw float yawRateCmd=0; ////////////////////////////// BEGIN STUDENT CODE /////////////////////////// float yaw_error = yawRateCmd - yaw; yaw_error = fmodf(yaw_error, F_PI*2.f); if (yaw_error >F_PI){ yaw_error = yaw_error - 2.0f*F_PI; } else if (yaw_error < -M_PI){ yaw_error = yaw_error + 2.0f*F_PI; } yawRateCmd = kpYaw*yaw_error; /////////////////////////////// END STUDENT CODE //////////////////////////// return yawRateCmd; } VehicleCommand QuadControl::RunControl(float dt, float simTime) { curTrajPoint = GetNextTrajectoryPoint(simTime); float collThrustCmd = AltitudeControl(curTrajPoint.position.z, curTrajPoint.velocity.z, estPos.z, estVel.z, estAtt, curTrajPoint.accel.z, dt); // reserve some thrust margin for angle control float thrustMargin = .1f*(maxMotorThrust - minMotorThrust); collThrustCmd = CONSTRAIN(collThrustCmd, (minMotorThrust+ thrustMargin)*4.f, (maxMotorThrust-thrustMargin)*4.f); V3F desAcc = LateralPositionControl(curTrajPoint.position, curTrajPoint.velocity, estPos, estVel, curTrajPoint.accel); V3F desOmega = RollPitchControl(desAcc, estAtt, collThrustCmd); desOmega.z = YawControl(curTrajPoint.attitude.Yaw(), estAtt.Yaw()); V3F desMoment = BodyRateControl(desOmega, estOmega); return GenerateMotorCommands(collThrustCmd, desMoment); }
[ "rohan.khaire25@gmail.com" ]
rohan.khaire25@gmail.com
5b2ae9bd5bfae212639c96a91494cb95d9ce7d89
88dd962e174bb5f268debabec1dc838433246130
/Source/External/imgui/imgui_impl_win32.cpp
6dbcdda94b5cf2aa994ebc2815e1d89919978710
[ "MIT" ]
permissive
glampert/War3HD
0a335ae6d171ddc8a4a5ebc6e8a76e7bd904c76f
728af54785d5fe5fc70ec58900f9640245777cc1
refs/heads/master
2021-09-26T15:26:57.965807
2021-09-11T16:32:52
2021-09-11T16:32:52
47,467,919
12
2
null
null
null
null
UTF-8
C++
false
false
9,961
cpp
// dear imgui: Platform Binding for Windows (standard windows API for 32 and 64 bits applications) // This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) // Implemented features: // [X] Platform: Clipboard support (for Win32 this is actually part of core imgui) // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. // [X] Platform: Keyboard arrays indexed using VK_* Virtual Key Codes, e.g. ImGui::IsKeyPressed(VK_SPACE). // [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. #include "imgui_impl_win32.h" #include "imgui.h" #include <tchar.h> // Win32 Data static HWND g_hWnd = 0; static INT64 g_Time = 0; static INT64 g_TicksPerSecond = 0; static ImGuiMouseCursor g_LastMouseCursor = ImGuiMouseCursor_COUNT; // Functions bool ImGui_ImplWin32_Init(void* hwnd) { if (!::QueryPerformanceFrequency((LARGE_INTEGER*)&g_TicksPerSecond)) return false; if (!::QueryPerformanceCounter((LARGE_INTEGER*)&g_Time)) return false; // Setup back-end capabilities flags g_hWnd = (HWND)hwnd; ImGuiIO& io = ImGui::GetIO(); io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used) io.BackendPlatformName = "imgui_impl_win32"; io.ImeWindowHandle = hwnd; // Keyboard mapping. ImGui will use those indices to peek into the io.KeysDown[] array that we will update during the application lifetime. io.KeyMap[ImGuiKey_Tab] = VK_TAB; io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT; io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT; io.KeyMap[ImGuiKey_UpArrow] = VK_UP; io.KeyMap[ImGuiKey_DownArrow] = VK_DOWN; io.KeyMap[ImGuiKey_PageUp] = VK_PRIOR; io.KeyMap[ImGuiKey_PageDown] = VK_NEXT; io.KeyMap[ImGuiKey_Home] = VK_HOME; io.KeyMap[ImGuiKey_End] = VK_END; io.KeyMap[ImGuiKey_Insert] = VK_INSERT; io.KeyMap[ImGuiKey_Delete] = VK_DELETE; io.KeyMap[ImGuiKey_Backspace] = VK_BACK; io.KeyMap[ImGuiKey_Space] = VK_SPACE; io.KeyMap[ImGuiKey_Enter] = VK_RETURN; io.KeyMap[ImGuiKey_Escape] = VK_ESCAPE; io.KeyMap[ImGuiKey_KeyPadEnter] = VK_RETURN; io.KeyMap[ImGuiKey_A] = 'A'; io.KeyMap[ImGuiKey_C] = 'C'; io.KeyMap[ImGuiKey_V] = 'V'; io.KeyMap[ImGuiKey_X] = 'X'; io.KeyMap[ImGuiKey_Y] = 'Y'; io.KeyMap[ImGuiKey_Z] = 'Z'; return true; } void ImGui_ImplWin32_Shutdown() { g_hWnd = (HWND)0; } static bool ImGui_ImplWin32_UpdateMouseCursor() { ImGuiIO& io = ImGui::GetIO(); if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) return false; ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor) { // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor ::SetCursor(NULL); } else { // Show OS mouse cursor LPTSTR win32_cursor = IDC_ARROW; switch (imgui_cursor) { case ImGuiMouseCursor_Arrow: win32_cursor = IDC_ARROW; break; case ImGuiMouseCursor_TextInput: win32_cursor = IDC_IBEAM; break; case ImGuiMouseCursor_ResizeAll: win32_cursor = IDC_SIZEALL; break; case ImGuiMouseCursor_ResizeEW: win32_cursor = IDC_SIZEWE; break; case ImGuiMouseCursor_ResizeNS: win32_cursor = IDC_SIZENS; break; case ImGuiMouseCursor_ResizeNESW: win32_cursor = IDC_SIZENESW; break; case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break; case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break; } ::SetCursor(::LoadCursor(NULL, win32_cursor)); } return true; } static void ImGui_ImplWin32_UpdateMousePos() { ImGuiIO& io = ImGui::GetIO(); // Set OS mouse position if requested (rarely used, only when ImGuiConfigFlags_NavEnableSetMousePos is enabled by user) if (io.WantSetMousePos) { POINT pos = { (int)io.MousePos.x, (int)io.MousePos.y }; ::ClientToScreen(g_hWnd, &pos); ::SetCursorPos(pos.x, pos.y); } // Set mouse position io.MousePos = ImVec2(-FLT_MAX, -FLT_MAX); POINT pos; if (HWND active_window = ::GetForegroundWindow()) if (active_window == g_hWnd || ::IsChild(active_window, g_hWnd)) if (::GetCursorPos(&pos) && ::ScreenToClient(g_hWnd, &pos)) io.MousePos = ImVec2((float)pos.x, (float)pos.y); } void ImGui_ImplWin32_NewFrame() { ImGuiIO& io = ImGui::GetIO(); IM_ASSERT(io.Fonts->IsBuilt() && "Font atlas not built! It is generally built by the renderer back-end. Missing call to renderer _NewFrame() function? e.g. ImGui_ImplOpenGL3_NewFrame()."); // Setup display size (every frame to accommodate for window resizing) RECT rect; ::GetClientRect(g_hWnd, &rect); io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top)); // Setup time step INT64 current_time; ::QueryPerformanceCounter((LARGE_INTEGER*)&current_time); io.DeltaTime = (float)(current_time - g_Time) / g_TicksPerSecond; g_Time = current_time; // Read keyboard modifiers inputs io.KeyCtrl = (::GetKeyState(VK_CONTROL) & 0x8000) != 0; io.KeyShift = (::GetKeyState(VK_SHIFT) & 0x8000) != 0; io.KeyAlt = (::GetKeyState(VK_MENU) & 0x8000) != 0; io.KeySuper = false; // io.KeysDown[], io.MousePos, io.MouseDown[], io.MouseWheel: filled by the WndProc handler below. // Update OS mouse position ImGui_ImplWin32_UpdateMousePos(); // Update OS mouse cursor with the cursor requested by imgui ImGuiMouseCursor mouse_cursor = io.MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor(); if (g_LastMouseCursor != mouse_cursor) { g_LastMouseCursor = mouse_cursor; ImGui_ImplWin32_UpdateMouseCursor(); } // Update game controllers (if enabled and available) //ImGui_ImplWin32_UpdateGamepads(); } // Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. #ifndef WM_MOUSEHWHEEL #define WM_MOUSEHWHEEL 0x020E #endif #ifndef DBT_DEVNODES_CHANGED #define DBT_DEVNODES_CHANGED 0x0007 #endif // Process Win32 mouse/keyboard inputs. // You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs. // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. // - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. // Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags. // PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinates when dragging mouse outside of our window bounds. // PS: We treat DBLCLK messages as regular mouse down messages, so this code will work on windows classes that have the CS_DBLCLKS flag set. Our own example app code doesn't set this flag. LRESULT CALLBACK ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { if (ImGui::GetCurrentContext() == NULL) return 0; ImGuiIO& io = ImGui::GetIO(); switch (msg) { case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK: case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK: case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK: case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK: { int button = 0; if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) { button = 0; } if (msg == WM_RBUTTONDOWN || msg == WM_RBUTTONDBLCLK) { button = 1; } if (msg == WM_MBUTTONDOWN || msg == WM_MBUTTONDBLCLK) { button = 2; } if (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONDBLCLK) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } if (!ImGui::IsAnyMouseDown() && ::GetCapture() == NULL) ::SetCapture(hwnd); io.MouseDown[button] = true; return 0; } case WM_LBUTTONUP: case WM_RBUTTONUP: case WM_MBUTTONUP: case WM_XBUTTONUP: { int button = 0; if (msg == WM_LBUTTONUP) { button = 0; } if (msg == WM_RBUTTONUP) { button = 1; } if (msg == WM_MBUTTONUP) { button = 2; } if (msg == WM_XBUTTONUP) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } io.MouseDown[button] = false; if (!ImGui::IsAnyMouseDown() && ::GetCapture() == hwnd) ::ReleaseCapture(); return 0; } case WM_MOUSEWHEEL: io.MouseWheel += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; return 0; case WM_MOUSEHWHEEL: io.MouseWheelH += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; return 0; case WM_KEYDOWN: case WM_SYSKEYDOWN: if (wParam < 256) io.KeysDown[wParam] = 1; return 0; case WM_KEYUP: case WM_SYSKEYUP: if (wParam < 256) io.KeysDown[wParam] = 0; return 0; case WM_CHAR: // You can also use ToAscii()+GetKeyboardState() to retrieve characters. io.AddInputCharacter((unsigned int)wParam); return 0; case WM_SETCURSOR: if (LOWORD(lParam) == HTCLIENT && ImGui_ImplWin32_UpdateMouseCursor()) return 1; return 0; } return 0; }
[ "guilherme.ronaldo.lampert@gmail.com" ]
guilherme.ronaldo.lampert@gmail.com
1fce64c909711e08d143535f68d0accc834f1b82
83c0700a9b14dbd2eed4ad9abe7594a8ff12ce0a
/services/oboeservice/AAudioServiceEndpointPlay.h
a0a383cd9eb62e6f4484b205729964059aed7b14
[ "LicenseRef-scancode-unicode", "Apache-2.0" ]
permissive
PixelExperience/frameworks_av
e5ab74641a88237ac84ff698539c95033a3aa09f
10d08c030053cbcb30d114630b3276fddce96a45
refs/heads/oreo-mr1
2023-08-05T20:29:20.970331
2018-12-04T20:38:27
2018-12-04T20:38:27
130,521,429
8
167
NOASSERTION
2023-07-15T06:06:36
2018-04-22T00:10:21
C++
UTF-8
C++
false
false
1,772
h
/* * Copyright (C) 2017 The Android Open Source Project * * 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. */ #ifndef AAUDIO_SERVICE_ENDPOINT_PLAY_H #define AAUDIO_SERVICE_ENDPOINT_PLAY_H #include <atomic> #include <functional> #include <mutex> #include <vector> #include "client/AudioStreamInternal.h" #include "client/AudioStreamInternalPlay.h" #include "binding/AAudioServiceMessage.h" #include "AAudioServiceEndpointShared.h" #include "AAudioServiceStreamShared.h" #include "AAudioServiceStreamMMAP.h" #include "AAudioMixer.h" #include "AAudioService.h" namespace aaudio { /** * Contains a mixer and a stream for writing the result of the mix. */ class AAudioServiceEndpointPlay : public AAudioServiceEndpointShared { public: explicit AAudioServiceEndpointPlay(android::AAudioService &audioService); virtual ~AAudioServiceEndpointPlay(); aaudio_result_t open(const aaudio::AAudioStreamRequest &request) override; void *callbackLoop() override; private: AudioStreamInternalPlay mStreamInternalPlay; // for playing output of mixer bool mLatencyTuningEnabled = false; // TODO implement tuning AAudioMixer mMixer; // }; } /* namespace aaudio */ #endif //AAUDIO_SERVICE_ENDPOINT_PLAY_H
[ "philburk@google.com" ]
philburk@google.com
2dbfcb2e3a206463930d0aa315a70863445a56b7
691abe5f62df930ae7420d00f48e5b2f7f57faed
/atcoder.jp/abc131/abc131_c/Main.cpp
3a57c0857f47c165466a353c706b5039e13b85e8
[]
no_license
Volverman/procon-archive
2fa9d10d0a655590f2c6342c5e494deff5718c73
834adc4a70a275eb28cea6d724ee5cc5d926ffe7
refs/heads/master
2022-12-18T23:40:48.494023
2020-09-12T07:48:48
2020-09-12T07:48:48
294,258,109
0
0
null
null
null
null
UTF-8
C++
false
false
1,179
cpp
#include <bits/stdc++.h> #define REP(i, n) for(int i = 0; i < n; i++) #define REPR(i, n) for(int i = n; i >= 0; i--) #define FOR(i, m, n) for(int i = m; i < n; i++) #define INF 2e9 #define MOD 1000000007 #define ALL(v) v.begin(), v.end() using namespace std; typedef long long ll; using P = pair<int,int>; unsigned long long gcd(unsigned long long a, unsigned long long b) { if (a%b == 0) { return(b); } else { return(gcd(b, a%b)); } } unsigned long long lcm(unsigned long long a, unsigned long long b) { return a * b / gcd(a, b); } int main() { unsigned long long A, B, C, D; cin >> A >> B >> C >> D; // unsigned long long x = lcm(C,D); // unsigned long long ac,ad,ax; // if(A%C==0){ // ac = A/C; // }else{ // ac = A/C+1; // } // if(A%D==0){ // ad = A/D; // }else{ // ad = A/D+1; // } // if(A%x==0){ // ax = A/x; // }else{ // ax = A/x+1; // } // unsigned long long a = B/C-(ac)+1; // unsigned long long b = B/D-(ad)+1; // unsigned long long c = B/x-(ax)+1; // cout << B-A+1-a-b+c << endl; cout << (B-(B/C)-(B/D)+(B/lcm(C,D)))-(A-1-((A-1)/C)-((A-1)/D)+((A-1)/lcm(C,D))) << endl; }
[ "volverman1017@gmail.com" ]
volverman1017@gmail.com
917bd8f7c8fcce4f06689f164fbf68b9a81c7e44
2f309d79cff3b8f0118de853d9667461dc2777cc
/3DFitting/ManModel.cpp
b667809a606960ccac59164800908e8bb03a25f5
[]
no_license
alllenwang/opengl_clothes_3d
3e0bd78256b156ed8c9a61bb234845f435e02ff9
4b37838e56e01d60a87ea0915bfaf5d7e8e14e86
refs/heads/master
2016-09-16T03:04:37.282191
2016-03-10T01:37:15
2016-03-10T01:37:15
20,688,131
2
2
null
2016-03-10T01:37:16
2014-06-10T14:21:04
C++
UTF-8
C++
false
false
2,243
cpp
#include "ManModel.h" using namespace std; ManModel manModel; const M3DVector3f headCenter = { 0.0f, 150.0f, 0.0f }; //const M3DVector3f neckCenter = {0.0f, 50.0f, 0.0f}; //const M3DVector3f bodyCenter = { 0.0f, 0.0f, 0.0f }; const GLfloat headRadius = 100.0f; const GLfloat shoulderWidth = 800.0f; const GLfloat shoulderRadius = 50.0f; const GLfloat neckRadius = 20.0f; const GLfloat armRadius = 60.0f; const GLfloat bodyHeight = 2400.0f; //const M3DVector3f shoulderWidth = { void initManModel() { m3dLoadVector3( manModel.head.center, headCenter[0], headCenter[1], headCenter[2]); manModel.head.radius = headRadius; m3dLoadVector3( manModel.neck.endpoint2, 0.0f,headCenter[1] + headRadius ,0.0f); m3dLoadVector3( manModel.neck.endpoint1, 0.0f,-headCenter[1] - headRadius , 0.0f); manModel.neck.radius = neckRadius; m3dLoadVector3( manModel.shoulder.endpoint1, shoulderWidth/2, 0.0f, 0.0f); m3dLoadVector3( manModel.shoulder.endpoint2, -shoulderWidth/2, 0.0f, 0.0f); manModel.shoulder.radius = shoulderRadius; m3dLoadVector3( manModel.leftShoulder.center, shoulderWidth/2, 0.0f, 0.0f ); manModel.leftShoulder.radius = shoulderRadius; m3dLoadVector3( manModel.rightShoulder.center, -shoulderWidth/2, 0.0f, 0.0f ); manModel.rightShoulder.radius = shoulderRadius; m3dLoadVector3( manModel.body.center, 0.0f, -bodyHeight/2, 0.0f ); manModel.body.ylength = bodyHeight; manModel.body.xlength = shoulderWidth/2 - 20.0f; manModel.body.zlength = shoulderRadius*2 - 50.0f; } void adjustPositionByCollision(const M3DVector3f curPos, M3DVector3f nextPos) { adjustPositionByCollisionCylinder( curPos, nextPos, manModel.shoulder.endpoint1, manModel.shoulder.endpoint2, manModel.shoulder.radius + 2.0f); adjustPositionByCollisionSphere( curPos, nextPos, manModel.leftShoulder.center, manModel.leftShoulder.radius + 2.0f); adjustPositionByCollisionSphere( curPos, nextPos, manModel.rightShoulder.center, manModel.rightShoulder.radius + 2.0f); adjustPositionByCollisionCylinder( curPos, nextPos, manModel.neck.endpoint1, manModel.neck.endpoint2, manModel.neck.radius + 2.0f); adjustPositionByCollisionCube( curPos, nextPos, manModel.body.center, manModel.body.xlength, manModel.body.ylength, manModel.body.zlength ); }
[ "wangqi199204@gmail.com" ]
wangqi199204@gmail.com
b09a9b8b2a9563f312140f70639aba45f41e4be5
986c21d401983789d9b3e5255bcf9d76070f65ec
/src/plugins/azoth/plugins/adiumstyles/adiumstylesource.cpp
cc72b56d1797a4a85685acc00b777c66bd2b2ead
[ "BSL-1.0" ]
permissive
0xd34df00d/leechcraft
613454669be3a0cecddd11504950372c8614c4c8
15c091d15262abb0a011db03a98322248b96b46f
refs/heads/master
2023-07-21T05:08:21.348281
2023-06-04T16:50:17
2023-06-04T16:50:17
119,854
149
71
null
2017-09-03T14:16:15
2009-02-02T13:52:45
C++
UTF-8
C++
false
false
20,498
cpp
/********************************************************************** * LeechCraft - modular cross-platform feature rich internet client. * Copyright (C) 2006-2014 Georg Rudoy * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt) **********************************************************************/ #include "adiumstylesource.h" #include <QWebEnginePage> #include <QtDebug> #include <util/sys/resourceloader.h> #include <util/sll/qtutil.h> #include <util/util.h> #include <interfaces/azoth/iproxyobject.h> #include <interfaces/azoth/imessage.h> #include <interfaces/azoth/irichtextmessage.h> #include <interfaces/azoth/iadvancedmessage.h> #include <interfaces/azoth/iclentry.h> #include <interfaces/azoth/imucentry.h> #include <interfaces/azoth/iaccount.h> #include <interfaces/azoth/iprotocol.h> #include <interfaces/azoth/iextselfinfoaccount.h> #include "packproxymodel.h" namespace LC { namespace Azoth { namespace AdiumStyles { AdiumStyleSource::AdiumStyleSource (IProxyObject *proxy, QObject *parent) : QObject (parent) , StylesLoader_ (new Util::ResourceLoader ("azoth/styles/adium/", this)) , Proxy_ (proxy) , PackProxyModel_ (new PackProxyModel (StylesLoader_, this)) { StylesLoader_->AddGlobalPrefix (); StylesLoader_->AddLocalPrefix (); StylesLoader_->SetCacheParams (2048, 0); } QAbstractItemModel* AdiumStyleSource::GetOptionsModel () const { return PackProxyModel_; } QUrl AdiumStyleSource::GetBaseURL (const QString& srcPack) const { if (srcPack.contains ('/')) { const auto& split = srcPack.split ('/', Qt::SkipEmptyParts); return GetBaseURL (split.value (0)); } const QString& pack = PackProxyModel_->GetOrigName (srcPack); const QString& prefix = pack + "/Contents/Resources/"; QString path = StylesLoader_-> GetPath (QStringList (prefix + "Header.html")); if (path.isEmpty ()) path = StylesLoader_-> GetPath (QStringList (prefix + "main.css")); if (path.isEmpty ()) { qWarning () << Q_FUNC_INFO << "empty base URL for" << srcPack; return QUrl (); } return QUrl::fromLocalFile (QFileInfo (path).absolutePath () + '/'); } namespace { void FixSelfClosing (QString& str) { QRegExp rx ("<div([^>]*)/>"); rx.setMinimal (true); str.replace (rx, "<div\\1></div>"); } void FormatTime (QString& templ, const QString& elem, const QDateTime& dt) { QStringMatcher timeMatcher ("%" + elem + "{"); int pos = 0; while ((pos = timeMatcher.indexIn (templ, pos)) != -1) { const auto start = pos; pos += timeMatcher.pattern ().size (); const auto end = templ.indexOf ('}', pos); if (end == -1) break; const auto& formatStr = templ.mid (pos, end - pos); const auto& formatted = dt.toString (formatStr); templ.replace (start, end - start + 2, formatted); } } void ReplaceIcon (QString& result, const QString& pattern, const QString& entryId) { if (result.contains (pattern)) result.replace (pattern, "azoth://avatar/" + entryId.toUtf8 ().toBase64 ()); } void ParseGlobalTemplate (QString& result, ICLEntry *entry) { auto acc = entry->GetParentAccount (); auto extSelf = qobject_cast<IExtSelfInfoAccount*> (acc->GetQObject ()); ICLEntry *selfEntry = extSelf ? qobject_cast<ICLEntry*> (extSelf->GetSelfContact ()) : 0; result.replace ("%chatName%", entry->GetEntryName ()); result.replace ("%sourceName%", acc->GetOurNick ()); result.replace ("%destinationName%", entry->GetHumanReadableID ()); result.replace ("%destinationDisplayName%", entry->GetEntryName ()); ReplaceIcon (result, "%incomingIconPath%", entry->GetEntryID ()); ReplaceIcon (result, "%outgoingIconPath%", selfEntry ? selfEntry->GetEntryID () : ""); const auto& now = QDateTime::currentDateTime (); QLocale loc; result.replace ("%timeOpened%", loc.toString (now.time (), QLocale::LongFormat)); result.replace ("%dateOpened%", loc.toString (now.date (), QLocale::LongFormat)); FormatTime (result, "timeOpened", now); } } QString AdiumStyleSource::GetHTMLTemplate (const QString& srcPack, const QString& varCss, QObject *entryObj, QWebEnginePage *frame) const { if (srcPack.contains ('/')) { const auto& split = srcPack.split ('/', Qt::SkipEmptyParts); return GetHTMLTemplate (split.value (0), split.value (1), entryObj, frame); } if (srcPack != LastPack_) { Coloring2Colors_.clear (); Frame2LastContact_.clear (); LastPack_ = srcPack; StylesLoader_->FlushCache (); } connect (frame, SIGNAL (destroyed ()), this, SLOT (handleFrameDestroyed ()), Qt::UniqueConnection); const QString& pack = PackProxyModel_->GetOrigName (srcPack); Frame2Pack_ [frame] = pack; Frame2LastContact_.remove (frame); const QString& prefix = pack + "/Contents/Resources/"; auto insensitive = [&prefix] (const QString& name) { return QStringList { prefix + name, prefix + name.toLower () }; }; const auto& header = StylesLoader_->Load (insensitive ("Header.html")); const auto& footer = StylesLoader_->Load (insensitive ("Footer.html")); const auto& css = StylesLoader_->Load ({ prefix + "main.css" }); const auto& tmpl = StylesLoader_->Load (insensitive ("Template.html")); if ((header && !header->open (QIODevice::ReadOnly)) || (footer && !footer->open (QIODevice::ReadOnly)) || (css && !css->open (QIODevice::ReadOnly))) { qWarning () << Q_FUNC_INFO << "unable to open source files for" << pack << (header ? header->errorString () : "empty header") << (footer ? footer->errorString () : "empty footer") << (css ? css->errorString () : "empty css"); return QString (); } const QUrl& baseUrl = GetBaseURL (srcPack); QString varCssStr; if (!varCss.isEmpty ()) varCssStr = "Variants/" + varCss + ".css"; else varCssStr = "main.css"; QString result; if (tmpl && tmpl->open (QIODevice::ReadOnly)) result = QString::fromUtf8 (tmpl->readAll ()); else { QFile file (":/plugins/azoth/plugins/adiumstyles/resources/html/Template.html"); if (!file.open (QIODevice::ReadOnly)) { qWarning () << Q_FUNC_INFO << "failed to open resource file" << file.fileName () << file.errorString (); return {}; } result = QString::fromUtf8 (file.readAll ()); } QMap<QString, QString> map; map ["Path"] = baseUrl.toString (); map ["CSS"] = "@import url( \"main.css\" );"; if (!varCssStr.isEmpty ()) map ["VariantCSS"] = baseUrl.resolved (QUrl (varCssStr)).toString (); map ["Header"] = header ? header->readAll () : QString (); map ["Footer"] = footer ? footer->readAll () : QString (); PercentTemplate (result, map); ICLEntry *entry = qobject_cast<ICLEntry*> (entryObj); if (!entry) { qWarning () << Q_FUNC_INFO << entryObj << "doesn't implement ICLEntry, but proceeding..."; return result; } auto colors = StylesLoader_->Load (insensitive ("Incoming/SenderColors.txt")); if (colors && colors->open (QIODevice::ReadOnly)) for (const auto& colorName : QString::fromUtf8 (colors->readAll ()).split (":")) Coloring2Colors_ ["hash"] << QColor (colorName); ParseGlobalTemplate (result, entry); FixSelfClosing (result); return result; } namespace { IMessage::Direction GetMsgDirection (IMessage *msg) { if (msg->GetMessageType () != IMessage::Type::MUCMessage) return msg->GetDirection (); const auto muc = qobject_cast<IMUCEntry*> (msg->ParentCLEntry ()); const auto part = qobject_cast<ICLEntry*> (msg->OtherPart ()); if (!muc || !part) return IMessage::Direction::In; return muc->GetNick () == part->GetEntryName () ? IMessage::Direction::Out : IMessage::Direction::In; } } namespace { QString GetMessageID (const QObject *msgObj) { return QString::number (reinterpret_cast<uintptr_t> (msgObj)); } QString MakeStateSetterJS (Util::ResourceLoader& loader, const QObject *msgObj, const QString& prefix, const QString& stateFile) { const auto& stateContent = loader.Load ({ prefix + stateFile }); QString replacement; if (stateContent && stateContent->open (QIODevice::ReadOnly)) replacement = QString::fromUtf8 (stateContent->readAll ()); return uR"( (() => { let elem = document.querySelector("*[id='delivery_state_%1']"); if (elem) elem.innerHTML = "%2"; }) (); )"_qsv.arg (GetMessageID (msgObj), replacement); } } bool AdiumStyleSource::AppendMessage (QWebEnginePage *frame, QObject *msgObj, const ChatMsgAppendInfo& info) { IMessage *msg = qobject_cast<IMessage*> (msgObj); if (!msg) { qWarning () << Q_FUNC_INFO << msgObj << "doesn't implement IMessage"; return false; } const QString& pack = Frame2Pack_ [frame]; if (pack.isEmpty ()) { qWarning () << Q_FUNC_INFO << "empty pack for" << msgObj << msg->OtherPart (); return false; } connect (msgObj, SIGNAL (destroyed ()), this, SLOT (handleMessageDestroyed ())); const bool in = GetMsgDirection (msg) == IMessage::Direction::In; QObject *kindaSender = in ? msg->OtherPart () : reinterpret_cast<QObject*> (42); const bool isSlashMe = msg->GetBody ().trimmed ().startsWith ("/me "); const bool alwaysNotNext = isSlashMe || !(msg->GetMessageType () == IMessage::Type::ChatMessage || msg->GetMessageType () == IMessage::Type::MUCMessage); const bool isNextMsg = !alwaysNotNext && Frame2LastContact_.contains (frame) && kindaSender == Frame2LastContact_ [frame]; const QString& root = pack + "/Contents/Resources/"; const QString& prefix = root + (in || isSlashMe ? "Incoming" : "Outgoing") + '/'; QString filename; if ((msg->GetMessageType () == IMessage::Type::ChatMessage || msg->GetMessageType () == IMessage::Type::MUCMessage) && !isSlashMe) filename = isNextMsg ? "NextContent.html" : "Content.html"; else filename = "Action.html"; if (msg->GetMessageType () != IMessage::Type::MUCMessage && msg->GetMessageType () != IMessage::Type::ChatMessage) Frame2LastContact_.remove (frame); else if (!isNextMsg && !alwaysNotNext) Frame2LastContact_ [frame] = kindaSender; else if (alwaysNotNext) Frame2LastContact_.remove (frame); QStringList templCands; templCands << (prefix + filename); if (filename == "Action.html") { templCands << (root + "Status.html"); templCands << (root + "status.html"); } if (isNextMsg) templCands << (root + "NextContent.html"); templCands << (root + "Content.html"); Util::QIODevice_ptr content; while (!content && !templCands.isEmpty ()) content = StylesLoader_->Load (templCands.takeFirst ()); if (!content) { qWarning () << Q_FUNC_INFO << "unable to load content template for" << pack << prefix; return false; } if (!content->open (QIODevice::ReadOnly)) { qWarning () << Q_FUNC_INFO << "unable to open contents for" << pack << prefix << content->errorString (); return false; } QString templ = QString::fromUtf8 (content->readAll ()); FixSelfClosing (templ); QString bodyS = ParseMsgTemplate (templ, prefix, frame, msgObj, info); QString body; body.reserve (bodyS.size () * 1.2); for (int i = 0, size = bodyS.size (); i < size; ++i) { switch (bodyS.at (i).unicode ()) { case L'\"': body += "\\\""; break; case L'\n': body += "\\n"; break; case L'\t': body += "\\t"; break; case L'\\': body += "\\\\"; break; case L'\r': body += "\\r"; break; default: body += bodyS.at (i); break; } } const auto& command = isNextMsg ? u"appendNextMessage(\"%1\");"_qsv : u"appendMessage(\"%1\");"_qsv; auto js = command.arg (body); if (templ.contains (u"%stateElementId%"_qsv)) { const auto advMsg = qobject_cast<IAdvancedMessage*> (msgObj); QString fname; if (!advMsg || advMsg->IsDelivered () || in) fname = "StateSent.html"_ql; else { fname = "StateSending.html"_ql; connect (msgObj, SIGNAL (messageDelivered ()), this, SLOT (handleMessageDelivered ()), Qt::UniqueConnection); Msg2Frame_ [msgObj] = frame; } js += MakeStateSetterJS (*StylesLoader_, msgObj, prefix, fname); } frame->runJavaScript (js); return true; } void AdiumStyleSource::FrameFocused (QWebEnginePage*) { } QStringList AdiumStyleSource::GetVariantsForPack (const QString& pack) { QStringList result; const auto& origName = PackProxyModel_->GetOrigName (pack); if (!StylesLoader_->GetPath ({ origName + "/Contents/Resources/main.css" }).isEmpty ()) result << ""; const auto& suff = origName + "/Contents/Resources/Variants/"; const auto& path = StylesLoader_->GetPath ({ suff }); if (!path.isEmpty ()) for (auto&& variant : QDir { path }.entryList ({ "*.css" })) { variant.chop (4); result << variant; } return result; } void AdiumStyleSource::PercentTemplate (QString& result, const QMap<QString, QString>& map) const { QRegExp rx ("(?:%@){1}"); const int count = result.count (rx); QStringList rpls (map ["Path"]); if (count == 5) rpls << map ["CSS"]; rpls << map ["VariantCSS"] << map ["Header"] << map ["Footer"]; int i = 0; int pos = 0; while ((pos = rx.indexIn (result, pos)) != -1 && i < rpls.size ()) { result.replace (pos, 2, rpls [i]); pos += rpls [i].length (); i++; } } void AdiumStyleSource::SubstituteUserIcon (QString& templ, const QString& base, bool in, ICLEntry *other, IAccount *acc) { const auto iha = qobject_cast<IHaveAvatars*> (other->GetQObject ()); if (in && iha && iha->HasAvatar ()) { ReplaceIcon (templ, "%userIconPath", other->GetEntryID ()); return; } QImage image; if (!in && acc) { const auto self = qobject_cast<IExtSelfInfoAccount*> (acc->GetQObject ()); if (const auto selfEntry = self ? self->GetSelfContact () : nullptr) ReplaceIcon (templ, "%userIconPath%", qobject_cast<ICLEntry*> (selfEntry)->GetEntryID ()); } if (image.isNull ()) image = QImage (StylesLoader_->GetPath (QStringList (base + "buddy_icon.png"))); if (image.isNull ()) image = Proxy_->GetDefaultAvatar (); if (image.isNull ()) qWarning () << Q_FUNC_INFO << "image is still null, though tried" << base + "buddy_icon.png"; templ.replace ("%userIconPath%", Util::GetAsBase64Src (image)); } QString AdiumStyleSource::ParseMsgTemplate (QString templ, const QString& base, QWebEnginePage*, QObject *msgObj, const ChatMsgAppendInfo& info) { const bool isHighlightMsg = info.IsHighlightMsg_; auto& formatter = Proxy_->GetFormatterProxy (); IMessage *msg = qobject_cast<IMessage*> (msgObj); const bool in = msg->GetDirection () == IMessage::Direction::In; ICLEntry *other = 0; switch (msg->GetMessageType ()) { case IMessage::Type::ChatMessage: case IMessage::Type::MUCMessage: case IMessage::Type::StatusMessage: other = qobject_cast<ICLEntry*> (msg->OtherPart ()); break; case IMessage::Type::EventMessage: case IMessage::Type::ServiceMessage: other = qobject_cast<ICLEntry*> (msg->ParentCLEntry ()); break; } if (!other) { qWarning () << Q_FUNC_INFO << "null other part, gonna fail:" << static_cast<int> (msg->GetMessageType ()) << msg->GetBody () << msg->OtherPart () << msg->ParentCLEntry (); return templ; } auto acc = other->GetParentAccount (); if (!acc && msg->ParentCLEntry ()) { if (const auto entry = qobject_cast<ICLEntry*> (msg->ParentCLEntry ())) acc = entry->GetParentAccount (); } if (!acc && !in) { qWarning () << Q_FUNC_INFO << "no account for outgoing message, that sucks" << static_cast<int> (msg->GetMessageType ()) << msg->OtherPart () << msg->ParentCLEntry (); return templ; } QString senderNick = in ? other->GetEntryName () : acc->GetOurNick (); if (in && msg->GetMessageType () == IMessage::Type::ChatMessage && Proxy_->GetSettingsManager ()->property ("ShowNormalChatResources").toBool ()) { const auto& resource = msg->GetOtherVariant (); if (!resource.isEmpty ()) senderNick += '/' + resource; } // %time% templ.replace ("%time%", msg->GetDateTime ().time ().toString ()); // %time{X}% FormatTime (templ, "time", msg->GetDateTime ()); // %messageDirection% templ.replace ("%messageDirection%", "ltr"); // %userIconPath% if (templ.contains ("%userIconPath%")) SubstituteUserIcon (templ, base, in, other, acc); // %senderScreenName% templ.replace ("%senderScreenName%", in ? other->GetHumanReadableID () : acc->GetAccountName ()); // %sender% templ.replace ("%sender%", formatter.FormatNickname (senderNick, msgObj, "%senderColor%")); // %service% templ.replace ("%service%", acc ? qobject_cast<IProtocol*> (acc->GetParentProtocol ())->GetProtocolName () : QString ()); // %textbackgroundcolor{X}% QRegExp bgColorRx ("%textbackgroundcolor\\{([^}]*)\\}%"); int pos = 0; const QString& highColor = isHighlightMsg ? Proxy_->GetSettingsManager ()-> property ("HighlightColor").toString () : "inherit"; bool hasHighBackground = false; while ((pos = bgColorRx.indexIn (templ, pos)) != -1) { templ.replace (pos, bgColorRx.matchedLength (), highColor); hasHighBackground = true; } // %senderStatusIcon% if (templ.contains ("%senderStatusIcon%")) { const State state = in ? other->GetStatus (msg->GetOtherVariant ()).State_ : acc->GetState ().State_; const QIcon& icon = Proxy_->GetIconForState (state); const QPixmap& px = icon.pixmap (icon.actualSize (QSize (256, 256))); templ.replace ("%senderStatusIcon%", Util::GetAsBase64Src (px.toImage ())); } // First, prepare colors if (templ.contains ("%senderColor") && !Coloring2Colors_.contains ("hash")) Coloring2Colors_ ["hash"] = formatter.GenerateColors ("hash", {}); // %senderColor% const auto& colors = Coloring2Colors_ ["hash"]; const auto& nickColor = formatter.GetNickColor (senderNick, colors); templ.replace ("%senderColor%", nickColor); // %senderColor{N}% QRegExp senderColorRx ("%senderColor(?:\\{([^}]*)\\})?%"); pos = 0; while ((pos = senderColorRx.indexIn (templ, pos)) != -1) { QColor color (nickColor); color = color.lighter (senderColorRx.cap (1).toInt ()); templ.replace (pos, senderColorRx.matchedLength (), color.name ()); } // %stateElementId% if (templ.contains ("%stateElementId%")) templ.replace ("%stateElementId%", "delivery_state_" + GetMessageID (msgObj)); // %message% IRichTextMessage *richMsg = qobject_cast<IRichTextMessage*> (msgObj); QString body; if (richMsg && info.UseRichTextBody_) body = richMsg->GetRichBody ().replace ('\n', ' '); if (body.isEmpty ()) body = Proxy_->GetFormatterProxy ().EscapeBody (msg->GetBody (), msg->GetEscapePolicy ()); if (body.startsWith ("/me ")) body = QString ("* %1 %2") .arg (senderNick) .arg (body.mid (4)); body = formatter.FormatBody (body, msgObj, colors); if (isHighlightMsg && !hasHighBackground) body = "<span style=\"color:" + highColor + "\">" + body + "</span>"; templ.replace ("%message%", body); return templ; } void AdiumStyleSource::handleMessageDelivered () { const auto frame = Msg2Frame_.take (sender ()); if (!frame) return; IMessage *msg = qobject_cast<IMessage*> (sender ()); if (!msg) { qWarning () << Q_FUNC_INFO << sender () << "doesn't implement IMessage"; return; } const QString& pack = Frame2Pack_ [frame]; const QString& prefix = pack + "/Contents/Resources/Outgoing/"; frame->runJavaScript (MakeStateSetterJS (*StylesLoader_, sender (), prefix, "StateSent.html")); disconnect (sender (), SIGNAL (messageDelivered ()), this, SLOT (handleMessageDelivered ())); } void AdiumStyleSource::handleMessageDestroyed () { Msg2Frame_.remove (sender ()); } void AdiumStyleSource::handleFrameDestroyed () { const QObject *snd = sender (); for (auto i = Msg2Frame_.begin (); i != Msg2Frame_.end (); ) if (i.value () == snd) i = Msg2Frame_.erase (i); else ++i; Frame2LastContact_.remove (static_cast<QWebEnginePage*> (sender ())); Frame2Pack_.remove (static_cast<QWebEnginePage*> (sender ())); } } } }
[ "0xd34df00d@gmail.com" ]
0xd34df00d@gmail.com
d2c167e6069ea4fa5fc9ea09f07ad4941c78f3dc
daf52f4913219c520bb781fca9937aeb9430889f
/trees/switchKlevelNodes.cpp
54c4b413f6dc12fdd468895f2abeeb1ae5d5bcfc
[]
no_license
rostun/teenyWeeny
4c3a34a9854b591d5e6916934365a197f2304539
e1bf18d78bdad9251915c95e481192a831628482
refs/heads/master
2020-12-11T17:06:24.449542
2016-08-16T16:50:57
2016-08-16T16:50:57
54,285,702
0
0
null
null
null
null
UTF-8
C++
false
false
3,458
cpp
/* Swap Nodes */ #include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <queue> #include <algorithm> using namespace std; struct node{ int data; int level; node* left; node* right; }; node* insertIntoTree(node* parent, int a, int b); void printInOrder(node* root); int main() { node* root = new node; root->data = 1; root->level = 1; root->right = NULL; root->left = NULL; int height = 1; int n, a, b; cin >> n; int currentLevel = 1; int nextLevel = 0; node* currentNode = root; int i = 0; queue <node*> line; line.push(root); while(i < n){ while(currentLevel > 0){ currentNode = line.front(); //take in user input and insert at currentNode cin >> a >> b; insertIntoTree(currentNode, a, b); if(a != -1){ nextLevel++; line.push(currentNode->left); } if(b != -1){ nextLevel++; line.push(currentNode->right); } line.pop(); currentLevel--; } currentLevel = nextLevel; nextLevel = 0; i++; } int T; //number of swaps we need vector <int> kValues; cin >> T; int k; for(int i = 0; i < T; i++){ cin >> k; //cout << "pushing back: " << k << endl; kValues.push_back(k); } currentLevel = 1; nextLevel = 0; line.push(root); node* placeHolder; for(int i = 0; i < kValues.size(); i++){ //swap children at level k while(!line.empty()){ while(currentLevel > 0){ currentNode = line.front(); //if the level is the correct one, we need to switch it //cout << "line.front()->data: " << line.front()->data << endl; //cout << "line.front()->level: " << line.front()->level << endl; if(line.front()->level%kValues[i] == 0){ placeHolder = line.front()->right; line.front()->right = line.front()->left; line.front()->left = placeHolder; } if(currentNode->left){ nextLevel++; line.push(currentNode->left); } if(currentNode->right){ nextLevel++; line.push(currentNode->right); } line.pop(); currentLevel--; } currentLevel = nextLevel; nextLevel = 0; } printInOrder(root); cout << endl; currentLevel = 1; line.push(root); } return 0; } node* insertIntoTree(node* parent, int a, int b){ if(a == -1){ parent->left = NULL; } else { node* l = new node; l->data = a; l->level = parent->level + 1; parent->left = l; } if(b == -1){ parent->right = NULL; } else { node* r = new node; r->data = b; r->level = parent->level + 1; parent->right = r; } return parent; } void printInOrder(node* root){ if(root->left){ printInOrder(root->left); } cout << root->data << " "; if(root->right){ printInOrder(root->right); } }
[ "rosa.m.tung@gmail.com" ]
rosa.m.tung@gmail.com
f07b68406e505471a5f754e1524d570486777bb0
ed9b059bf7ac2fafe391feed8fd10c6c5c94dffb
/crawler/用户信息统计分布_code/statistical_analysis.cpp
35c4d8906d7a271f24f3fc0bd3c406c1f9028bc4
[]
no_license
SccsAtmtn/PythonProjects
64579d54c1841d446b831fb951de3f10c2911b90
b0dd148bcd1dbc82264c70cf8f7e9045697c135f
refs/heads/master
2020-04-06T06:56:54.322001
2016-09-10T16:03:33
2016-09-10T16:03:33
59,921,726
1
0
null
null
null
null
GB18030
C++
false
false
6,356
cpp
#include <iostream> #include <string> #include <fstream> using namespace std; void main() { ifstream fan("fans_information3.txt", ios::in); ifstream discuss("discuss_information6.txt", ios::in); ofstream fan1("fan_locate3.txt"); ofstream fan2("fan_isV_gender3.txt"); ofstream fan3("fan_birth3.txt"); ofstream discuss1("discuss_locate6.txt"); ofstream discuss2("discuss_isV_gender6.txt"); ofstream discuss3("discuss_birth6.txt"); ofstream time("discuss_time6.txt"); string gender[5000]; int isV[5000]; string province[5000]; string birtht[5000]; string birthtd[5000]; string uid[5000]; string location[50]; string time1[5000]; int om = 6, od = 2, oh = 12, omm = 57; int otime = oh * 60 + omm; int h = 0; string time2[5000]; string birthyear[100]; birthyear[0] = "0000"; int y_num[100]; int num[50]; int i = 0, m = 0; int p = 0, flag = 0, j = 0, k = 0; string f; for (i = 0; i < 100; i++) y_num[i] = 0; for (i = 0; i < 50; i++) num[i] = 0; i = 0; while (1) { if (fan.fail()) break; fan >> f; if (f == "N") isV[i] = 0; else isV[i] = 1; fan >> uid[i]; //id fan >> f; //用户名字 fan >> province[i]; fan >> f; if (f != "男" && f != "女" && f != "#") { fan >> f; } gender[i] = f; fan >> f; if (f != "#" && f.length() >=8 && f[1] >'2') { for (p = 0; p < 4; p++) birtht[i] = birtht[i] + f[p]; } else birtht[i] = "0000"; fan >> f; while (f != "]") fan >> f; for (m = 0; m < i; m++) if (uid[m] == uid[i]) { uid[i] = ""; province[i] = ""; birtht[i] = ""; gender[i] = ""; i--; } i++; } int t = i - 1, fan_isv = 0,fan_male = 0,fan_female = 0,fan_notsure = 0; j = 0; k = 0; for (i = 0; i < t; i++) { fan_isv = fan_isv + isV[i]; if (gender[i] == "男") fan_male++; else if (gender[i] == "女") fan_female++; else fan_notsure++; for (p = 0; p < k; p++) { if (birtht[i] == birthyear[p]) { y_num[p]++; flag = 1; } } if (flag == 0) { birthyear[k] = birtht[i]; y_num[k]++; k++; } else flag = 0; for (p = 0; p < j; p++) { if (province[i] == location[p]) { num[p]++; flag = 1; } } if (flag == 0) { location[j] = province[i]; num[j]++; j++; } else flag = 0; } fan2 << "男 " << fan_male<<endl; fan2 << "女 " << fan_female<<endl; fan2 << "不确定 " << fan_notsure<<endl; fan2 << "大V " << fan_isv<<endl; fan2 << "非大V " << fan_male + fan_female + fan_notsure - fan_isv; for (i = 0; i < j; i++) { fan1 << location[i] << " " << num[i] << endl; } for (i = 0; i < k; i++) { fan3 << birthyear[i] << " " << y_num[i] << endl; } fan1.close(); fan2.close(); fan3.close(); fan.close(); i = 0; j = 0; k = 0; p = 0; for (i = 0; i < 100; i++) y_num[i] = 0; for (i = 0; i < 50; i++) num[i] = 0; i = 0; while (1) { if (discuss.fail()) break; discuss >> time1[i]; discuss >> f; if (f == "]") break; if (f != "Y"&&f != "N") { time2[i] = f; discuss >> f; } if (f == "N") isV[i] = 0; else isV[i] = 1; discuss >> uid[i]; /* discuss >> gender[i]; discuss >> f; discuss >> province[i]; discuss >> f; if (f.length() != 10) discuss >> f; */ discuss >> f; //用户名字 discuss >> province[i]; discuss >> f; if (f != "男" && f != "女" && f != "#") { discuss >> f; } gender[i] = f; discuss >> f; if (f != "#" && f.length() >= 8 && f[1] >'2') { for (p = 0; p < 4; p++) birthtd[i] = birthtd[i] + f[p]; } else birthtd[i] = "0000"; discuss >> f; while (f != "]") discuss >> f; if (gender[i] == "#") gender[i] == "#"; for (m = 0; m < i; m++) if (uid[m] == uid[i]) { uid[i] = ""; province[i] = ""; birthtd[i] = ""; gender[i] = ""; time1[i] = ""; time2[i] = ""; i--; } i++; } t = i - 1; int discuss_isv = 0, discuss_male = 0, discuss_female = 0, discuss_notsure = 0; j = 0; k = 0; for (i = 0; i < t; i++) { if (time1[i] == "\\u4eca\\u5929") { h = atoi(time2[i].substr(0, time2[i].find(":")).c_str()) * 60 + atoi(time2[i].substr(time2[i].find(":") + 1, time2[i].length()).c_str()); h = otime - h; } else if (time1[i] == "\\u6628\\u5929") h = (24 - atoi(time2[i].substr(0, time2[i].find(":")).c_str())) * 60 + otime + 60 - atoi(time2[i].substr(time2[i].find(":") + 1, time2[i].length()).c_str()); else if (time1[i].find("\\u5206\\u949f\\u524d") != time1[i].npos) { h = atoi(time1[i].substr(0, time1[i].find("\\u5206\\u949f\\u524d")).c_str()); } else { if (od < atoi(time1[i].substr(time1[i].find("-") + 1, time1[i].length()).c_str())) { h = (od + 31 - atoi(time1[i].substr(time1[i].find("-") + 1, time1[i].length()).c_str()) - 1) * 24 * 60 + (24 - atoi(time2[i].substr(0, time2[i].find(":")).c_str()) - 1) * 60 + otime + 60 - atoi(time2[i].substr(time2[i].find(":") + 1, time2[i].length()).c_str()); } else h = (od - atoi(time1[i].substr(time1[i].find("-") + 1, time1[i].length()).c_str()) - 1) * 24 * 60 + (24 - atoi(time2[i].substr(0, time2[i].find(":")).c_str()) - 1) * 60 + otime + 60 - atoi(time2[i].substr(time2[i].find(":") + 1, time2[i].length()).c_str()); } time << uid[i] << " " << h << endl; discuss_isv = discuss_isv + isV[i]; if (gender[i] == "男") discuss_male++; else if (gender[i] == "女") discuss_female++; else discuss_notsure++; for (p = 0; p < k; p++) { if (birthtd[i] == birthyear[p]) { y_num[p]++; flag = 1; } } if (flag == 0) { birthyear[k] = birthtd[i]; y_num[k]++; k++; } else flag = 0; for (p = 0; p < j; p++) { if (province[i] == location[p]) { num[p]++; flag = 1; } } if (flag == 0) { location[j] = province[i]; num[j]++; j++; } else flag = 0; } discuss2 << "男 " << discuss_male << endl; discuss2 << "女 " << discuss_female << endl; discuss2 << "不确定 " << discuss_notsure << endl; discuss2 << "大V " << discuss_isv<<endl; discuss2 << "非大V " << discuss_male + discuss_female + discuss_notsure - discuss_isv; for (i = 0; i < j; i++) { discuss1 << location[i] << " " << num[i] << endl; } for (i = 0; i < k; i++) { discuss3 << birthyear[i] << " " << y_num[i] << endl; } discuss1.close(); discuss2.close(); discuss3.close(); discuss.close(); }
[ "lizt1994@163.com" ]
lizt1994@163.com
b203e984c8a3fbddbb13120a91cb4ad286bc53c4
fee2ca510b521364f86902c385c53e8da91b8b70
/src/Commands/TankDrive.cpp
9ad2dfaf7d2193f3e6d012540cbf6d4ca575c975
[]
no_license
Team-1922/TinMan2015
a39a46f79384afc4da529a4483076866b24759a1
f2aa2500e444e9099cfbb1c8f7768e63694ad0d9
refs/heads/master
2021-01-19T12:36:39.005636
2015-05-18T23:51:16
2015-05-18T23:51:16
28,838,971
1
2
null
null
null
null
UTF-8
C++
false
false
676
cpp
#include "TankDrive.h" TankDrive::TankDrive() { Requires(driveTrain); } // Called just before this Command runs the first time void TankDrive::Initialize() { } // Called repeatedly when this Command is scheduled to run void TankDrive::Execute() { driveTrain->TankDrivePeriodic(oi->GetDriverJoystick1(), oi->GetDriverJoystick2()); } // Make this return true when this Command no longer needs to run execute() bool TankDrive::IsFinished() { return false; } // Called once after isFinished returns true void TankDrive::End() { } // Called when another command which requires one or more of the same // subsystems is scheduled to run void TankDrive::Interrupted() { }
[ "kjmack305@gmail.com" ]
kjmack305@gmail.com
536a99dc326904e9aa3b80783b9e1dd490ca0327
f7790d6edfd422751e904bda1ab9a329ebd812e4
/session06/LinkedLists.cc
8ed6fe189f44ce1f97155c339c0ca09f63893615
[]
no_license
yanzhic92/CPE593_2017S
213d50f2ff76928ef23570caf1daa787a12dbe7b
b62c17a87aa60f31133892f40cdf39c3087a507e
refs/heads/master
2021-01-20T10:06:47.685152
2017-02-22T15:12:09
2017-02-22T15:12:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
764
cc
class LinkedList1 { private: class Node { int val; Node* next; }; Node* head; void addEnd(int v); // O(n) void addStart(int v); // O(1) void removeEnd(); //O(n) void removeStart(); //O(1) }; class LinkedList2 { private: class Node { int val; Node* next; }; Node* head; Node* tail; void addEnd(int v); // O(??) void addStart(int v); // O(1) void removeEnd(); //O(??) void removeStart(); //O(1) }; class LinkedList3 { private: class Node { int val; Node* next; Node* prev; }; Node* head; }; class LinkedList4 { private: class Node { int val; Node* next; Node* prev; }; Node* head; Node* tail; }; class LinkedList5 { private: class Node { int val; Node* next; Node* prev; }; Node* head; // tail is head->prev };
[ "dov.kruger@gmail.com" ]
dov.kruger@gmail.com
31f7d97b69345b34624c077034840e571f665552
9f087cfdb02d3f1de0091876fad0504934bef17c
/Framwork/FramworkAp/Include/TradePacket.h
197d9d985fd4c5d3f136d13efaf2d2c52a63945f
[]
no_license
kknet/qt_client
0ac41592856048510f7c470521845b89f0078a41
6c71db967369f07bd37cfbe52690565e2be9924d
refs/heads/master
2022-04-04T17:24:41.731274
2018-11-08T03:51:11
2018-11-08T03:51:11
null
0
0
null
null
null
null
GB18030
C++
false
false
9,234
h
#ifndef _TRADE_PACKET_H #define _TRADE_PACKET_H #include "CommAp.h" #include "PairPacket.h" #include "strutils.h" #include <algorithm> #include "stdlib.h" using namespace strutils; #define MSGLEN 8U #define SEQNO 8U #define MSGTYPE 1U #define EXCHCODE 4U #define MSGFLAG 1U #define TERMTYPE 2U #define USERTYPE 2U #define USERID 10U #define AERACODE 4U #define BRANCHID 12U #define CTELLERID1 10U #define CTELLERID2 10U #define RSPCODE 8U #define LENGTH_BYTES MSGLEN #define MSGFLAG_OFFSET MSGLEN+SEQNO+MSGTYPE+EXCHCODE #define REQHEAD_BYTES MSGLEN+SEQNO+MSGTYPE+EXCHCODE+MSGFLAG+TERMTYPE+USERTYPE+USERID+AERACODE+BRANCHID+CTELLERID1+CTELLERID2 #define RSPHEAD_BYTES MSGLEN+SEQNO+MSGTYPE+EXCHCODE+MSGFLAG+TERMTYPE+USERTYPE+USERID+AERACODE+BRANCHID+RSPCODE #define HEAD_REQ 1U #define HEAD_RSP 2U #define TAGCODE "#" typedef struct tagReqHead //请求报文头 { char msg_len[MSGLEN+1]; //报文长度 char seq_no[SEQNO+1]; //流水号 char msg_type[MSGTYPE+1]; //报文类型 char exch_code[EXCHCODE+1]; //交易代码 char msg_flag[MSGFLAG+1]; //报文标识 char term_type[TERMTYPE+1]; //终端来源 char user_type[USERTYPE+1]; //用户类型 char user_id[USERID+1]; //用户ID char area_code[AERACODE+1]; //地区代码 char branch_id[BRANCHID+1]; //代理机构 char c_teller_id1[CTELLERID1+1]; //一级复核操作员 char c_teller_id2[CTELLERID2+1]; //一级复核操作员 std::string SeqNo() const { string sTmp; for (int i = 0; i < SEQNO; i++) sTmp.append(1,seq_no[i]); return trim(sTmp); } std::string MsgType() const { string sTmp; for (int i = 0; i < MSGTYPE; i++) sTmp.append(1,msg_type[i]); return trim(sTmp); } std::string MsgFlag() const { string sTmp; for (int i = 0; i < MSGFLAG; i++) sTmp.append(1,msg_flag[i]); return trim(sTmp); } std::string TermType() const { string sTmp; for (int i = 0; i < TERMTYPE; i++) sTmp.append(1,term_type[i]); return trim(sTmp); } std::string UserType() const { string sTmp; for (int i = 0; i < USERTYPE; i++) sTmp.append(1,user_type[i]); return trim(sTmp); } std::string UserID() const { string sTmp; for (int i = 0; i < USERID; i++) sTmp.append(1,user_id[i]); return trim(sTmp); } std::string AreaCode() const { string sTmp; for (int i = 0; i < AERACODE; i++) sTmp.append(1,area_code[i]); return trim(sTmp); } std::string BranchID() const { string sTmp; for (int i = 0; i < BRANCHID; i++) sTmp.append(1,branch_id[i]); return trim(sTmp); } std::string CTellerID1() const { string sTmp; for (int i = 0; i < CTELLERID1; i++) sTmp.append(1,c_teller_id1[i]); return trim(sTmp); } std::string CTellerID2() const { string sTmp; for (int i = 0; i < CTELLERID2; i++) sTmp.append(1,c_teller_id2[i]); return trim(sTmp); } // added by Jerry Lee, 2011-3-30 // begin //////////////////////////// void SetSeqNo(const string& sSeqNo) { if (sSeqNo.empty()) return; memcpy(seq_no,sSeqNo.c_str(),min(SEQNO,(unsigned int)sSeqNo.length())); } void SetMsgType(const string& sMsgType) { if (sMsgType.empty()) return; memcpy(msg_type,sMsgType.c_str(), min(MSGTYPE, (unsigned int)sMsgType.length())); } void SetExchCode(const string& sExchCode) { if (sExchCode.empty()) return; strncpy(exch_code,sExchCode.c_str(),min(EXCHCODE, (unsigned int)sExchCode.length())); } void SetMsgFlag(const string& sMsgFlag) { if (sMsgFlag.empty()) return; #ifdef _WIN32 memcpy(msg_flag,sMsgFlag.c_str(),min(MSGFLAG, (unsigned int)sMsgFlag.length())); #else memcpy(msg_flag,sMsgFlag.c_str(),min(EXCHCODE, (unsigned int)sMsgFlag.length())); #endif } void SetTermType(const string& sTermType) { if (sTermType.empty()) return; memcpy(term_type,sTermType.c_str(),min(TERMTYPE, (unsigned int)sTermType.length())); } void SetUserType(const string& sUserType) { if (sUserType.empty()) return; memcpy(user_type,sUserType.c_str(),min(USERTYPE, (unsigned int)sUserType.length())); } void SetUserID(const string& sUserID) { if (sUserID.empty()) return; /*if (sUserID.length() < USERID) { string sNewStr = sUserID; int nLen = sNewStr.length(); int i = 0; for (i = 0; i < (USERID - nLen); i ++) sNewStr = sNewStr + " "; memcpy(user_id,sNewStr.c_str(),min(USERID,sNewStr.length())); } else*/ memcpy(user_id,sUserID.c_str(),min(USERID, (unsigned int)sUserID.length())); } void SetAreaCode(const string& sAreaCode) { if (sAreaCode.empty()) return; memcpy(area_code,sAreaCode.c_str(),min(AERACODE, (unsigned int)sAreaCode.length())); } void SetBranchID(const string& sBranchID) { if (sBranchID.empty()) return; memcpy(branch_id,sBranchID.c_str(),min(BRANCHID, (unsigned int)sBranchID.length())); } void SetCTellerID1(const string& sTellerID1) { if (sTellerID1.empty()) return; memcpy(c_teller_id1,sTellerID1.c_str(),min(CTELLERID1, (unsigned int)sTellerID1.length())); } void SetCTellerID2(const string& sTellerID2) { if (sTellerID2.empty()) return; memcpy(c_teller_id2,sTellerID2.c_str(),min(CTELLERID2, (unsigned int)sTellerID2.length())); } //// void SetSeqNo(const UINT64 uiSeqNo) { #ifdef _WIN32 char acSeq[32]; _ui64toa(uiSeqNo, acSeq, 16); string sTmp = acSeq; #else string sTmp = uintstr(uiSeqNo); #endif return SetSeqNo(sTmp); } //// void SetSeqNo(const char* sSeqNo) { string sTmp = sSeqNo; return SetSeqNo(sTmp); } void SetMsgType(const char* sMsgType) { string sTmp = sMsgType; return SetMsgType(sTmp); } void SetExchCode(const char* sExchCode) { string sTmp = sExchCode; return SetExchCode(sTmp); } void SetMsgFlag(const char* sMsgFlag) { string sTmp = sMsgFlag; return SetMsgFlag(sTmp); } void SetTermType(const char* sTermType) { string sTmp = sTermType; return SetTermType(sTmp); } void SetUserType(const char* sUserType) { string sTmp = sUserType; return SetUserType(sTmp); } void SetUserID(const char* sUserID) { string sTmp = sUserID; return SetUserID(sTmp); } void SetAreaCode(const char* sAreaCode) { string sTmp = sAreaCode; return SetAreaCode(sTmp); } void SetBranchID(const char* sBranchID) { string sTmp = sBranchID; return SetBranchID(sTmp); } void SetCTellerID1(const char* sTellerID1) { string sTmp = sTellerID1; return SetCTellerID1(sTmp); } void SetCTellerID2(const char* sTellerID2) { string sTmp = sTellerID2; return SetCTellerID2(sTmp); } void IniRequst(const string& sExchCode, UINT64 &uiSeqNo) { SetExchCode(sExchCode); SetSeqNo(uiSeqNo++); } // end } HEADER_REQ,*PHEADER_REQ ; typedef struct tagRspHead //响应报文头 { char msg_len[MSGLEN+1]; //报文长度 char seq_no[SEQNO+1]; //流水号 char msg_type[MSGTYPE+1]; //报文类型 char exch_code[EXCHCODE+1]; //交易代码 char msg_flag[MSGFLAG+1]; //报文标识 char term_type[TERMTYPE+1]; //终端来源 char user_type[USERTYPE+1]; //用户类型 char user_id[USERID+1]; //用户ID char area_code[AERACODE+1]; //地区代码 char branch_id[BRANCHID+1]; //代理机构 char rsp_code[RSPCODE+1]; //响应代码 } HEADER_RSP,*PHEADER_RSP; class COMMAP_CLASS CTradePacket:public CPairPacket { public: CTradePacket(void); ~CTradePacket(void); const char* Encode(unsigned int & uiLength,CPairPacket & packet){return 0;} const char* Encode(unsigned int & uiLength); void Decode(const char * pData, unsigned int uiLength); std::string RouteKey() { std::string sRouteKey(""); if (m_HeadMsg.m_type == 1) { sRouteKey=trim(m_HeadMsg.uheader.Req_Hmsg.term_type); sRouteKey+=trim(m_HeadMsg.uheader.Req_Hmsg.user_type); sRouteKey+=trim(m_HeadMsg.uheader.Req_Hmsg.user_id); } else { sRouteKey=trim(m_HeadMsg.uheader.Rsp_Hmsg.term_type); sRouteKey+=trim(m_HeadMsg.uheader.Rsp_Hmsg.user_type); sRouteKey+=trim(m_HeadMsg.uheader.Rsp_Hmsg.user_id); } return sRouteKey; } const string& GetCmdID(); // add by xrs 20131104 直接获取响应码 int GetRspCode( string &sCode ); int GetHeader(HEADER_REQ& reqHeader); int GetHeader(HEADER_RSP& reqHeader); void SetHeader(HEADER_REQ& reqHeader); void SetHeader(HEADER_RSP& reqHeader); int PktType() {return m_HeadMsg.m_type;} std::string Print(std::string sParaSeperator = "#",std::string sValSeperator = "="); private: void DecodeReqHead(const char * pData,HEADER_REQ& v); void DecodeRspHead(const char * pData,HEADER_RSP& v); std::string AssembleReqHead(HEADER_REQ& v); std::string AssembleRspHead(HEADER_RSP& v); typedef struct tagHeader { int m_type ; union { HEADER_REQ Req_Hmsg; HEADER_RSP Rsp_Hmsg; } uheader; } Head; Head m_HeadMsg; std::string m_sCmdID; //命令字 即ApiName std::string m_sEncode; //编码后的字符串 //获取递增序列号 static long GetSID(); static CGessMutex m_csSID; static long m_uiSID; //维护的序列号,用于心跳等通讯类报文 }; #endif
[ "ypdxcn@163.com" ]
ypdxcn@163.com
2beab2e37b1cc762098cf24d7d8be4f12d704cc7
2de8f5ba729a846f8ad5630272dd5b1f3b7b6e44
/src/server/gameserver/skill/Teleport.h
b96e6977a4f58600c72c9fd2c045cfa4973ced18
[]
no_license
najosky/darkeden-v2-serverfiles
dc0f90381404953e3716bf71320a619eb10c3825
6e0015f5b8b658697228128543ea145a1fc4c559
refs/heads/master
2021-10-09T13:01:42.843224
2018-12-24T15:01:52
2018-12-24T15:01:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,192
h
////////////////////////////////////////////////////////////////////////////// // Filename : Teleport.h // Written By : // Description : ////////////////////////////////////////////////////////////////////////////// #ifndef __SKILL_TELEPORT_HANDLER_H__ #define __SKILL_TELEPORT_HANDLER_H__ #include "SkillHandler.h" ////////////////////////////////////////////////////////////////////////////// // class Teleport; ////////////////////////////////////////////////////////////////////////////// class Teleport : public SkillHandler { public: Teleport() throw() {} ~Teleport() throw() {} public: string getSkillHandlerName() const throw() { return "Teleport"; } SkillType_t getSkillType() const throw() { return SKILL_TELEPORT; } void execute(Ousters* pOusters, ObjectID_t TargetObjectID, OustersSkillSlot* pOustersSkillSlot, CEffectID_t CEffectID) throw(Error); void execute(Ousters* pOusters, ZoneCoord_t X, ZoneCoord_t Y, OustersSkillSlot* pOustersSkillSlot, CEffectID_t CEffectID) throw(Error); void computeOutput(const SkillInput& input, SkillOutput& output); }; // global variable declaration extern Teleport g_Teleport; #endif // __SKILL_TELEPORT_HANDLER_H__
[ "paulomatew@gmail.com" ]
paulomatew@gmail.com
b066e618352ae97bae4e2c4a3ec70731f0cc52d0
e12169c2d46a6965675ae0d162e53b486e8a03ab
/statusinfo.cpp
4fa865f7cff5c8432a6dffc3a25db7a6ab3ac167
[]
no_license
Eguiste/taskmgr
82379278dcaf3ca6a2cca2b571634a8a8671009e
33bdf9de37543a033095f5f6c9940ccdf0b0ca90
refs/heads/master
2023-06-02T16:50:04.141171
2021-06-15T04:23:43
2021-06-15T04:23:43
377,034,712
0
0
null
null
null
null
UTF-8
C++
false
false
2,025
cpp
#include "statusinfo.h" StatusInfo::StatusInfo() { previous_idle_time = 0, previous_total_time = 0; } // Получение информации о CPU std::vector<size_t> StatusInfo::get_cpu_times() { std::ifstream proc_stat("/proc/stat"); proc_stat.ignore(5, ' '); // Пропустить преписку 'cpu' std::vector<size_t> times; for (size_t time; proc_stat >> time; times.push_back(time)); return times; } bool StatusInfo::get_cpu_times(size_t &idle_time, size_t &total_time) { const std::vector<size_t> cpu_times = get_cpu_times(); if (cpu_times.size() < 4) return false; idle_time = cpu_times[3]; total_time = std::accumulate(cpu_times.begin(), cpu_times.end(), 0); return true; } // Получение статуса QMap<QString, QString> StatusInfo::get_status_info() { sys_info.clear(); struct sysinfo info; // Информация об использовании памяти if (sysinfo(&info) != 0) qDebug()<< "Ошибка при чтении системной статистики"; QString uptime=QString::number(info.uptime / 3600)+"ч " + QString::number(info.uptime % 3600 / 60)+ "м "+QString::number(info.uptime % 60)+"с"; sys_info.insert("Время работы", uptime); sys_info.insert("Всего RAM МБ", QString::number(info.totalram/1024/1024)); sys_info.insert("Свободно RAM МБ", QString::number((info.totalram-info.freeram)/1024/1024)); // Информация о использовании процессора size_t idle_time, total_time; get_cpu_times(idle_time, total_time); const float idle_time_delta = idle_time - previous_idle_time; const float total_time_delta = total_time - previous_total_time; const float utilization = 100.0 * (1.0 - idle_time_delta / total_time_delta); previous_idle_time = idle_time; previous_total_time = total_time; sys_info.insert("CPU %", QString::number(utilization)); return sys_info; }
[ "yuuihyakuya@gmail.com" ]
yuuihyakuya@gmail.com
d0d8a08671e2782742f26c544c67d53472f75d94
4854c41302f31b6081028367fecf8da3dad110d3
/usaco/BarnRepair.cpp
c05f8055e7a9772e986658a8b7a3748baccdd160
[]
no_license
grain1101/algorithm-training
25e36d6d68da2be1cd56d68cd0a2cb6e05f7234d
1a9fac339c9c148d1caef2e0330a9a64abaa4ccb
refs/heads/master
2021-10-20T19:34:32.925432
2021-10-20T06:14:11
2021-10-20T06:14:11
78,502,374
0
0
null
null
null
null
UTF-8
C++
false
false
1,706
cpp
/* ID: crazyco3 PROG: barn1 LANG: C++11 */ #include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> #include <set> #include <utility> #include <cmath> using namespace std; typedef pair<int, int> PII; ifstream fin ("barn1.in"); ofstream fout ("barn1.out"); void show(vector<int> t){ for(auto tt : t){ cout << tt << " "; } cout << endl; } int findMaxnumber(const vector<int>& nums){ int num = 0; int subscript = 0; for(int i=0;i<nums.size();i++){ if(nums[i] > num){ num = nums[i]; subscript = i; } } return subscript; } int main() { int m, s, c; fin >> m >> s >> c; int result = 0; // 1. input stalls numbers vector<int> stalls; int tmp; for(int i=0;i<c;i++){ fin >> tmp; stalls.push_back(tmp); } sort(stalls.begin(), stalls.end()); // 2. calculate the discontinuous segments vector<int> segments(c, 0); for(int i=1;i<c;i++){ segments[i] = stalls[i]-stalls[i-1]-1; } // 3. find m-1 max discontinuous segments subscript vector<int> subscripts; for(int i=0;i<m-1;i++){ int tmp = findMaxnumber(segments); if(tmp == 0) break; subscripts.push_back(tmp); segments[tmp] = 0; } sort(subscripts.begin(), subscripts.end()); // 4. calculate stalls int p,q; p = 0; for(int i=0;i<=subscripts.size();i++){ if(i==subscripts.size()){ q = stalls.size(); } else{ q = subscripts[i]; } result += stalls[q-1] - stalls[p] + 1; p = q; } fout << result << endl; return 0; }
[ "grains@qq.com" ]
grains@qq.com
886c2fb30d839ee288648e728ed49a5440f3907b
d337c4b2c09d6ed5de487fa8291f8c4a7b942a74
/C++/03_Tools/ProtocolBuffers/Reader/src/Reader.cpp
93c599152045660b44a3ed4d7c356e9c44f61ab2
[ "MIT" ]
permissive
zhenkunhe/Developer-Tutorial
5d959b508429c7c4258a5c2a43ce59ddd24ce70b
6e4e4e36364fd8081a68ebf43bf6ab433add613e
refs/heads/master
2021-05-06T12:09:42.531524
2017-12-22T10:03:15
2017-12-22T10:03:15
111,396,103
0
0
null
null
null
null
UTF-8
C++
false
false
429
cpp
#include <iostream> #include <fstream> #include "lm.helloworld.pb.h" using namespace std; void ListMsg(const lm::helloworld & msg) { cout << msg.id() << endl; cout << msg.str() << endl; } int main() { lm::helloworld msg1; { fstream input("/home/zhenkun/Alex.log", ios::in | ios::binary); if (!msg1.ParseFromIstream(&input)) { cerr << "Failed to parse address book." << endl; return -1; } } ListMsg(msg1); }
[ "Alex_Hoh@pegatroncorp.com" ]
Alex_Hoh@pegatroncorp.com
76aa64eb8cf00fefc1dd2cd93cdaef8139fe6532
e6994a5a44725e86064a8247fb02feff18b5c179
/8 task.cpp
3c8e972f2bf36a5a27651fe3fc0bb9ed849cc3e3
[]
no_license
erdosslm/50zadachPraktiki
d6437e0e3d5e03af702eb7662813a4d0d9e7c1b2
01e1d61582fbd4ed28c69b2ea6a74825e15e1368
refs/heads/master
2022-01-20T06:25:43.876892
2022-01-11T09:05:31
2022-01-11T09:05:31
222,524,098
0
0
null
null
null
null
UTF-8
C++
false
false
197
cpp
//8 #include<iostream> #include<cmath> using namespace std; int main() { int a, b, sum; a = 2; b = 3; sum = (a + (4 * b))*(a - (3 * b)) + (a*a); cout << sum << endl; return 0; }
[ "noreply@github.com" ]
noreply@github.com
7cef48507705f5143de33cb6f557c74ffd39f154
d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3
/Modules/Core/GPUCommon/include/itkGPUUnaryFunctorImageFilter.h
aae50037af2ef49d2a1b08c7c0033b30d6ce0097
[ "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "NTP", "IJG", "GPL-1.0-or-later", "libtiff", "BSD-4.3TAHOE", "...
permissive
nalinimsingh/ITK_4D
18e8929672df64df58a6446f047e6ec04d3c2616
95a2eacaeaffe572889832ef0894239f89e3f303
refs/heads/master
2020-03-17T18:58:50.953317
2018-10-01T20:46:43
2018-10-01T21:21:01
133,841,430
0
0
Apache-2.0
2018-05-17T16:34:54
2018-05-17T16:34:53
null
UTF-8
C++
false
false
3,887
h
/*========================================================================= * * Copyright Insight Software Consortium * * 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.txt * * 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. * *=========================================================================*/ #ifndef itkGPUUnaryFunctorImageFilter_h #define itkGPUUnaryFunctorImageFilter_h #include "itkGPUFunctorBase.h" #include "itkGPUInPlaceImageFilter.h" #include "itkUnaryFunctorImageFilter.h" namespace itk { /** \class GPUUnaryFunctorImageFilter * \brief Implements pixel-wise generic operation on one image using the GPU. * * GPU version of unary functor image filter. * GPU Functor handles parameter setup for the GPU kernel. * * \ingroup ITKGPUCommon */ template< typename TInputImage, typename TOutputImage, typename TFunction, typename TParentImageFilter = InPlaceImageFilter< TInputImage, TOutputImage > > class ITK_TEMPLATE_EXPORT GPUUnaryFunctorImageFilter : public GPUInPlaceImageFilter< TInputImage, TOutputImage, TParentImageFilter > { public: /** Standard class typedefs. */ typedef GPUUnaryFunctorImageFilter Self; typedef TParentImageFilter CPUSuperclass; typedef GPUInPlaceImageFilter< TInputImage, TOutputImage > GPUSuperclass; typedef SmartPointer< Self > Pointer; typedef SmartPointer< const Self > ConstPointer; /** Method for creation through the object factory. */ itkNewMacro(Self); /** Run-time type information (and related methods). */ itkTypeMacro(GPUUnaryFunctorImageFilter, GPUInPlaceImageFilter); /** Some typedefs. */ typedef TFunction FunctorType; typedef TInputImage InputImageType; typedef typename InputImageType::ConstPointer InputImagePointer; typedef typename InputImageType::RegionType InputImageRegionType; typedef typename InputImageType::PixelType InputImagePixelType; typedef TOutputImage OutputImageType; typedef typename OutputImageType::Pointer OutputImagePointer; typedef typename OutputImageType::RegionType OutputImageRegionType; typedef typename OutputImageType::PixelType OutputImagePixelType; FunctorType & GetFunctor() { return m_Functor; } const FunctorType & GetFunctor() const { return m_Functor; } /** Set the functor object. */ void SetFunctor(const FunctorType & functor) { if ( m_Functor != functor ) { m_Functor = functor; this->Modified(); } } protected: GPUUnaryFunctorImageFilter() { } virtual ~GPUUnaryFunctorImageFilter() { } virtual void GenerateOutputInformation() ITK_OVERRIDE; virtual void GPUGenerateData() ITK_OVERRIDE; /** GPU kernel handle is defined here instead of in the child class * because GPUGenerateData() in this base class is used. */ int m_UnaryFunctorImageFilterGPUKernelHandle; private: ITK_DISALLOW_COPY_AND_ASSIGN(GPUUnaryFunctorImageFilter); FunctorType m_Functor; }; } // end of namespace itk #ifndef ITK_MANUAL_INSTANTIATION #include "itkGPUUnaryFunctorImageFilter.hxx" #endif #endif
[ "ruizhi@csail.mit.edu" ]
ruizhi@csail.mit.edu
ccf0d2cb693ac492d2ccc2594021214cd11c5630
8a4bfe5d0e6102c930d96a10e7d7d94493efa62a
/project/network/TyperAssis-master/TypeAssisServer/widget.h
16a523fa81c80f37adad23de89ef3f3705950c26
[]
no_license
hszhoushen/wifi_cam_qt_windows
67c1e4f70e1d3e281784801e0f8f0e58bfef461f
72695ad9888a0c92e27b8da11327b8d0f41e1145
refs/heads/master
2021-01-10T10:11:10.489145
2016-01-21T09:12:25
2016-01-21T09:12:25
49,767,385
0
1
null
null
null
null
UTF-8
C++
false
false
1,415
h
#ifndef WIDGET_H #define WIDGET_H #include <QWidget> #include "server.h" #include "receivethread.h" #include "getdatathread.h" #define TABWIDGET_COLUMN 6 #define MARGIN 5 #define SWITCH 0 class ReceiveThread; class GetDataThread; namespace Ui { class Widget; class ReceiveThread; class GetDataThread; } class Widget : public QWidget { Q_OBJECT public: explicit Widget(QWidget *parent = 0); ~Widget(); //用户列表操作 public: void addANewUser(QString *); void updateUserData(QString *); void deleteUser(QString *); //窗口初始化 private: void initUi(); private: Ui::Widget *ui; Server * server; int port; int maxConnectNum; ReceiveThread * receiveThread; GetDataThread * getDataThread; //鼠标相关 private: bool isLeftPressed; int curPos; QPoint pLast; int countFlag(QPoint p, int row); void setCursorType(int flag); int countRow(QPoint p); protected: void mousePressEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void mouseDoubleClickEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); //按钮槽函数 private slots: void on_minButton_clicked(); void on_maxButton_clicked(); void on_closeButton_clicked(); //服务器处理槽函数 public slots: void slotCreateServer(); void getDataSlot(QVariantMap); }; #endif // WIDGET_H
[ "liguang zhou" ]
liguang zhou
20e7258d41a50998357256b3bfa9ca5e66b5e0fa
431507675eb6cbd39485491475180aa9a917fb74
/baselib/base/src/qt/propertybrowser/qttreepropertybrowser.h
1fab291bb60db0865246678fd0f6f78160d76baa
[]
no_license
antiwb3/code
dafbc75784682748cca0ce336b05358ba1937f07
c6e7912ab071a74b53d7b1b6a3c659a9d9017c07
refs/heads/master
2021-01-18T22:52:33.850593
2016-09-03T07:24:21
2016-09-03T07:24:21
13,461,396
1
0
null
null
null
null
UTF-8
C++
false
false
3,096
h
#ifndef QTTREEPROPERTYBROWSER_H #define QTTREEPROPERTYBROWSER_H #include "qtpropertybrowser.h" #if QT_VERSION >= 0x040400 QT_BEGIN_NAMESPACE #endif class QTreeWidgetItem; class QtTreePropertyBrowserPrivate; class QT_QTPROPERTYBROWSER_EXPORT QtTreePropertyBrowser : public QtAbstractPropertyBrowser { Q_OBJECT Q_ENUMS(ResizeMode) Q_PROPERTY(int indentation READ indentation WRITE setIndentation) Q_PROPERTY(bool rootIsDecorated READ rootIsDecorated WRITE setRootIsDecorated) Q_PROPERTY(bool alternatingRowColors READ alternatingRowColors WRITE setAlternatingRowColors) Q_PROPERTY(bool headerVisible READ isHeaderVisible WRITE setHeaderVisible) Q_PROPERTY(ResizeMode resizeMode READ resizeMode WRITE setResizeMode) Q_PROPERTY(int splitterPosition READ splitterPosition WRITE setSplitterPosition) Q_PROPERTY(bool propertiesWithoutValueMarked READ propertiesWithoutValueMarked WRITE setPropertiesWithoutValueMarked) public: enum ResizeMode { Interactive, Stretch, Fixed, ResizeToContents }; QtTreePropertyBrowser(QWidget *parent = 0); ~QtTreePropertyBrowser(); int indentation() const; void setIndentation(int i); bool rootIsDecorated() const; void setRootIsDecorated(bool show); bool alternatingRowColors() const; void setAlternatingRowColors(bool enable); bool isHeaderVisible() const; void setHeaderVisible(bool visible); ResizeMode resizeMode() const; void setResizeMode(ResizeMode mode); int splitterPosition() const; void setSplitterPosition(int position); void setExpanded(QtBrowserItem *item, bool expanded); bool isExpanded(QtBrowserItem *item) const; bool isItemVisible(QtBrowserItem *item) const; void setItemVisible(QtBrowserItem *item, bool visible); void setBackgroundColor(QtBrowserItem *item, const QColor &color); QColor backgroundColor(QtBrowserItem *item) const; QColor calculatedBackgroundColor(QtBrowserItem *item) const; void setPropertiesWithoutValueMarked(bool mark); bool propertiesWithoutValueMarked() const; void editItem(QtBrowserItem *item); public Q_SLOTS: virtual void expandItem(const QtBrowserItem *item); virtual void collapseItem(const QtBrowserItem *item); Q_SIGNALS: void collapsed(QtBrowserItem *item); void expanded(QtBrowserItem *item); protected: virtual void itemInserted(QtBrowserItem *item, QtBrowserItem *afterItem); virtual void itemRemoved(QtBrowserItem *item); virtual void itemChanged(QtBrowserItem *item); private: QtTreePropertyBrowserPrivate *d_ptr; Q_DECLARE_PRIVATE(QtTreePropertyBrowser) Q_DISABLE_COPY(QtTreePropertyBrowser) Q_PRIVATE_SLOT(d_func(), void slotCollapsed(const QModelIndex &)) Q_PRIVATE_SLOT(d_func(), void slotExpanded(const QModelIndex &)) Q_PRIVATE_SLOT(d_func(), void slotCurrentBrowserItemChanged(QtBrowserItem *)) Q_PRIVATE_SLOT(d_func(), void slotCurrentTreeItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)) }; #if QT_VERSION >= 0x040400 QT_END_NAMESPACE #endif #endif
[ "99143631@qq.com" ]
99143631@qq.com
bbc56e16e46c3bcb85a1818250f798c99e6ba123
76f0efb245ff0013e0428ee7636e72dc288832ab
/out/Default/gen/blink/bindings/core/v8/V8Document.cpp
e4b04fcf3acbc0c5b59923630485cf78b9ec0ae5
[]
no_license
dckristiono/chromium
e8845d2a8754f39e0ca1d3d3d44d01231957367c
8ad7c1bd5778bfda3347cf6b30ef60d3e4d7c0b9
refs/heads/master
2020-04-22T02:34:41.775069
2016-08-24T14:05:09
2016-08-24T14:05:09
66,465,243
0
2
null
null
null
null
UTF-8
C++
false
false
277,889
cpp
// Copyright 2014 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. // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! #include "V8Document.h" #include "bindings/core/v8/ExceptionState.h" #include "bindings/core/v8/HTMLScriptElementOrSVGScriptElement.h" #include "bindings/core/v8/PrivateScriptRunner.h" #include "bindings/core/v8/ScriptState.h" #include "bindings/core/v8/ScriptValue.h" #include "bindings/core/v8/V8AbstractEventListener.h" #include "bindings/core/v8/V8Attr.h" #include "bindings/core/v8/V8CDATASection.h" #include "bindings/core/v8/V8Comment.h" #include "bindings/core/v8/V8DOMConfiguration.h" #include "bindings/core/v8/V8DOMImplementation.h" #include "bindings/core/v8/V8DocumentFragment.h" #include "bindings/core/v8/V8DocumentTimeline.h" #include "bindings/core/v8/V8DocumentType.h" #include "bindings/core/v8/V8Element.h" #include "bindings/core/v8/V8ElementRegistrationOptions.h" #include "bindings/core/v8/V8Event.h" #include "bindings/core/v8/V8EventListenerList.h" #include "bindings/core/v8/V8EventTarget.h" #include "bindings/core/v8/V8FontFaceSet.h" #include "bindings/core/v8/V8HTMLCollection.h" #include "bindings/core/v8/V8HTMLElement.h" #include "bindings/core/v8/V8HTMLHeadElement.h" #include "bindings/core/v8/V8HTMLScriptElement.h" #include "bindings/core/v8/V8Location.h" #include "bindings/core/v8/V8Node.h" #include "bindings/core/v8/V8NodeFilter.h" #include "bindings/core/v8/V8NodeIterator.h" #include "bindings/core/v8/V8NodeList.h" #include "bindings/core/v8/V8ObjectConstructor.h" #include "bindings/core/v8/V8ProcessingInstruction.h" #include "bindings/core/v8/V8Range.h" #include "bindings/core/v8/V8SVGSVGElement.h" #include "bindings/core/v8/V8SVGScriptElement.h" #include "bindings/core/v8/V8Selection.h" #include "bindings/core/v8/V8StyleSheetList.h" #include "bindings/core/v8/V8Text.h" #include "bindings/core/v8/V8Touch.h" #include "bindings/core/v8/V8TouchList.h" #include "bindings/core/v8/V8TreeWalker.h" #include "bindings/core/v8/V8Window.h" #include "bindings/core/v8/V8XPathExpression.h" #include "bindings/core/v8/V8XPathNSResolver.h" #include "bindings/core/v8/V8XPathResult.h" #include "core/animation/DocumentAnimation.h" #include "core/css/DocumentFontFaceSet.h" #include "core/dom/ClassCollection.h" #include "core/dom/Document.h" #include "core/dom/DocumentFullscreen.h" #include "core/dom/DocumentOrShadowRoot.h" #include "core/dom/GlobalEventHandlers.h" #include "core/dom/NameNodeList.h" #include "core/dom/NodeList.h" #include "core/dom/NonElementParentNode.h" #include "core/dom/ParentNode.h" #include "core/dom/StaticNodeList.h" #include "core/dom/TagCollection.h" #include "core/dom/custom/CEReactionsScope.h" #include "core/dom/custom/V0CustomElementProcessingStack.h" #include "core/frame/LocalFrame.h" #include "core/frame/UseCounter.h" #include "core/html/HTMLCollection.h" #include "core/html/HTMLDataListOptionsCollection.h" #include "core/html/HTMLFormControlsCollection.h" #include "core/html/HTMLTableRowsCollection.h" #include "core/html/LabelsNodeList.h" #include "core/inspector/ConsoleMessage.h" #include "core/svg/SVGDocumentExtensions.h" #include "core/xml/DocumentXPathEvaluator.h" #include "platform/RuntimeEnabledFeatures.h" #include "platform/ScriptForbiddenScope.h" #include "wtf/GetPtr.h" #include "wtf/RefPtr.h" namespace blink { // Suppress warning: global constructors, because struct WrapperTypeInfo is trivial // and does not depend on another global objects. #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wglobal-constructors" #endif const WrapperTypeInfo V8Document::wrapperTypeInfo = { gin::kEmbedderBlink, V8Document::domTemplate, V8Document::trace, V8Document::traceWrappers, 0, 0, V8Document::preparePrototypeAndInterfaceObject, nullptr, "Document", &V8Node::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::NodeClassId, WrapperTypeInfo::InheritFromEventTarget, WrapperTypeInfo::Dependent }; #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG) #pragma clang diagnostic pop #endif // This static member must be declared by DEFINE_WRAPPERTYPEINFO in Document.h. // For details, see the comment of DEFINE_WRAPPERTYPEINFO in // bindings/core/v8/ScriptWrappable.h. const WrapperTypeInfo& Document::s_wrapperTypeInfo = V8Document::wrapperTypeInfo; static_assert( !std::is_base_of<ActiveScriptWrappable, Document>::value, "Document inherits from ActiveScriptWrappable, but does not specify " "[ActiveScriptWrappable] extended attribute in the IDL file. " "Be consistent."); namespace DocumentV8Internal { static void implementationAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->implementation()), impl); } static void implementationAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::implementationAttributeGetter(info); } static void URLAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->url(), info.GetIsolate()); } static void URLAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::URLAttributeGetter(info); } static void documentURIAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueStringOrNull(info, impl->url(), info.GetIsolate()); } static void documentURIAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::documentURIAttributeGetter(info); } static void originAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->origin(), info.GetIsolate()); } static void originAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::originAttributeGetter(info); } static void suboriginAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->suborigin(), info.GetIsolate()); } static void suboriginAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::suboriginAttributeGetter(info); } static void compatModeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->compatMode(), info.GetIsolate()); } static void compatModeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::compatModeAttributeGetter(info); } static void characterSetAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->characterSet(), info.GetIsolate()); } static void characterSetAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::characterSetAttributeGetter(info); } static void charsetAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->characterSet(), info.GetIsolate()); } static void charsetAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::charsetAttributeGetter(info); } static void inputEncodingAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->characterSet(), info.GetIsolate()); } static void inputEncodingAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::inputEncodingAttributeGetter(info); } static void contentTypeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->contentType(), info.GetIsolate()); } static void contentTypeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::contentTypeAttributeGetter(info); } static void doctypeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->doctype()), impl); } static void doctypeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::doctypeAttributeGetter(info); } static void documentElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->documentElement()), impl); } static void documentElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::documentElementAttributeGetter(info); } static void rootScrollerAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->rootScroller()), impl); } static void rootScrollerAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::rootScrollerAttributeGetter(info); } static void rootScrollerAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "rootScroller", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); Element* cppValue = V8Element::toImplWithTypeCheck(info.GetIsolate(), v8Value); if (!cppValue && !isUndefinedOrNull(v8Value)) { exceptionState.throwTypeError("The provided value is not of type 'Element'."); exceptionState.throwIfNeeded(); return; } impl->setRootScroller(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void rootScrollerAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::rootScrollerAttributeSetter(v8Value, info); } static void xmlEncodingAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueStringOrNull(info, impl->xmlEncoding(), info.GetIsolate()); } static void xmlEncodingAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXMLEncoding); DocumentV8Internal::xmlEncodingAttributeGetter(info); } static void xmlVersionAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueStringOrNull(info, impl->xmlVersion(), info.GetIsolate()); } static void xmlVersionAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXMLVersion); DocumentV8Internal::xmlVersionAttributeGetter(info); } static void xmlVersionAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "xmlVersion", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); V8StringResource<TreatNullAndUndefinedAsNullString> cppValue = v8Value; if (!cppValue.prepare()) return; impl->setXMLVersion(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void xmlVersionAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXMLVersion); DocumentV8Internal::xmlVersionAttributeSetter(v8Value, info); } static void xmlStandaloneAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, impl->xmlStandalone()); } static void xmlStandaloneAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXMLStandalone); DocumentV8Internal::xmlStandaloneAttributeGetter(info); } static void xmlStandaloneAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "xmlStandalone", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); bool cppValue = toBoolean(info.GetIsolate(), v8Value, exceptionState); if (exceptionState.throwIfNeeded()) return; impl->setXMLStandalone(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void xmlStandaloneAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXMLStandalone); DocumentV8Internal::xmlStandaloneAttributeSetter(v8Value, info); } static void locationAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->location()), impl); } static void locationAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::locationAttributeGetter(info); } static void locationAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* proxyImpl = V8Document::toImpl(holder); Location* impl = WTF::getPtr(proxyImpl->location()); if (!impl) return; V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; impl->setHref(currentDOMWindow(info.GetIsolate()), enteredDOMWindow(info.GetIsolate()), cppValue); } static void locationAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::locationAttributeSetter(v8Value, info); } static void domainAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->domain(), info.GetIsolate()); } static void domainAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::domainAttributeGetter(info); } static void domainAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "domain", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; impl->setDomain(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void domainAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::domainAttributeSetter(v8Value, info); } static void referrerAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->referrer(), info.GetIsolate()); } static void referrerAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::referrerAttributeGetter(info); } static void cookieAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); ExceptionState exceptionState(ExceptionState::GetterContext, "cookie", "Document", holder, info.GetIsolate()); String cppValue(impl->cookie(exceptionState)); if (UNLIKELY(exceptionState.throwIfNeeded())) return; v8SetReturnValueString(info, cppValue, info.GetIsolate()); } static void cookieAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::cookieAttributeGetter(info); } static void cookieAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "cookie", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; impl->setCookie(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void cookieAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::cookieAttributeSetter(v8Value, info); } static void lastModifiedAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->lastModified(), info.GetIsolate()); } static void lastModifiedAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::lastModifiedAttributeGetter(info); } static void readyStateAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->readyState(), info.GetIsolate()); } static void readyStateAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::readyStateAttributeGetter(info); } static void titleAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->title(), info.GetIsolate()); } static void titleAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::titleAttributeGetter(info); } static void titleAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; impl->setTitle(cppValue); } static void titleAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; CEReactionsScope ceReactionsScope; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; DocumentV8Internal::titleAttributeSetter(v8Value, info); } static void dirAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->dir(), info.GetIsolate()); } static void dirAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::dirAttributeGetter(info); } static void dirAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; impl->setDir(cppValue); } static void dirAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; CEReactionsScope ceReactionsScope; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; DocumentV8Internal::dirAttributeSetter(v8Value, info); } static void bodyAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->body()), impl); } static void bodyAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::bodyAttributeGetter(info); } static void bodyAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "body", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); HTMLElement* cppValue = V8HTMLElement::toImplWithTypeCheck(info.GetIsolate(), v8Value); if (!cppValue && !isUndefinedOrNull(v8Value)) { exceptionState.throwTypeError("The provided value is not of type 'HTMLElement'."); exceptionState.throwIfNeeded(); return; } V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; impl->setBody(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void bodyAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; CEReactionsScope ceReactionsScope; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; DocumentV8Internal::bodyAttributeSetter(v8Value, info); } static void bodyAttributeGetterForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueForMainWorld(info, WTF::getPtr(impl->body())); } static void bodyAttributeGetterCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::bodyAttributeGetterForMainWorld(info); } static void bodyAttributeSetterForMainWorld(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); ExceptionState exceptionState(ExceptionState::SetterContext, "body", "Document", holder, info.GetIsolate()); Document* impl = V8Document::toImpl(holder); HTMLElement* cppValue = V8HTMLElement::toImplWithTypeCheck(info.GetIsolate(), v8Value); if (!cppValue && !isUndefinedOrNull(v8Value)) { exceptionState.throwTypeError("The provided value is not of type 'HTMLElement'."); exceptionState.throwIfNeeded(); return; } V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; impl->setBody(cppValue, exceptionState); exceptionState.throwIfNeeded(); } static void bodyAttributeSetterCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; CEReactionsScope ceReactionsScope; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; DocumentV8Internal::bodyAttributeSetterForMainWorld(v8Value, info); } static void headAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->head()), impl); } static void headAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::headAttributeGetter(info); } static void imagesAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->images()), impl); } static void imagesAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Images_AttributeGetter); DocumentV8Internal::imagesAttributeGetter(info); } static void embedsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->embeds()), impl); } static void embedsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Embeds_AttributeGetter); DocumentV8Internal::embedsAttributeGetter(info); } static void pluginsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->embeds()), impl); } static void pluginsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Plugins_AttributeGetter); DocumentV8Internal::pluginsAttributeGetter(info); } static void linksAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->links()), impl); } static void linksAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Links_AttributeGetter); DocumentV8Internal::linksAttributeGetter(info); } static void formsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->forms()), impl); } static void formsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Forms_AttributeGetter); DocumentV8Internal::formsAttributeGetter(info); } static void scriptsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->scripts()), impl); } static void scriptsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Scripts_AttributeGetter); DocumentV8Internal::scriptsAttributeGetter(info); } static void currentScriptAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); HTMLScriptElementOrSVGScriptElement result; impl->currentScriptForBinding(result); v8SetReturnValue(info, result); } static void currentScriptAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::currentScriptAttributeGetter(info); } static void defaultViewAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->domWindow()), impl); } static void defaultViewAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::defaultViewAttributeGetter(info); } static void designModeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->designMode(), info.GetIsolate()); } static void designModeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentDesignMode); DocumentV8Internal::designModeAttributeGetter(info); } static void designModeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); V8StringResource<> cppValue = v8Value; if (!cppValue.prepare()) return; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; impl->setDesignMode(cppValue); } static void designModeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentDesignMode); CEReactionsScope ceReactionsScope; V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; DocumentV8Internal::designModeAttributeSetter(v8Value, info); } static void onreadystatechangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onreadystatechange())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onreadystatechangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onreadystatechangeAttributeGetter(info); } static void onreadystatechangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnreadystatechange(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onreadystatechangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onreadystatechangeAttributeSetter(v8Value, info); } static void anchorsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->anchors()), impl); } static void anchorsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Anchors_AttributeGetter); DocumentV8Internal::anchorsAttributeGetter(info); } static void appletsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->applets()), impl); } static void appletsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_Applets_AttributeGetter); DocumentV8Internal::appletsAttributeGetter(info); } static void selectedStylesheetSetAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueStringOrNull(info, impl->selectedStylesheetSet(), info.GetIsolate()); } static void selectedStylesheetSetAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::selectedStylesheetSetAttributeGetter(info); } static void selectedStylesheetSetAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); V8StringResource<TreatNullAndUndefinedAsNullString> cppValue = v8Value; if (!cppValue.prepare()) return; impl->setSelectedStylesheetSet(cppValue); } static void selectedStylesheetSetAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::selectedStylesheetSetAttributeSetter(v8Value, info); } static void preferredStylesheetSetAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueStringOrNull(info, impl->preferredStylesheetSet(), info.GetIsolate()); } static void preferredStylesheetSetAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::preferredStylesheetSetAttributeGetter(info); } static void scrollingElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, WTF::getPtr(impl->scrollingElement()), impl); } static void scrollingElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::scrollingElementAttributeGetter(info); } static void onpointerlockchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onpointerlockchange())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerlockchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerlockchangeAttributeGetter(info); } static void onpointerlockchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnpointerlockchange(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerlockchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerlockchangeAttributeSetter(v8Value, info); } static void onpointerlockerrorAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onpointerlockerror())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerlockerrorAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerlockerrorAttributeGetter(info); } static void onpointerlockerrorAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnpointerlockerror(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerlockerrorAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerlockerrorAttributeSetter(v8Value, info); } static void hiddenAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, impl->hidden()); } static void hiddenAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::hiddenAttributeGetter(info); } static void visibilityStateAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->visibilityState(), info.GetIsolate()); } static void visibilityStateAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::visibilityStateAttributeGetter(info); } static void addressSpaceAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->addressSpaceForBindings(), info.GetIsolate()); } static void addressSpaceAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::addressSpaceAttributeGetter(info); } static void webkitVisibilityStateAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueString(info, impl->visibilityState(), info.GetIsolate()); } static void webkitVisibilityStateAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedPageVisibility); DocumentV8Internal::webkitVisibilityStateAttributeGetter(info); } static void webkitHiddenAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, impl->hidden()); } static void webkitHiddenAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedPageVisibility); DocumentV8Internal::webkitHiddenAttributeGetter(info); } static void onbeforecopyAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onbeforecopy())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onbeforecopyAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onbeforecopyAttributeGetter(info); } static void onbeforecopyAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnbeforecopy(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onbeforecopyAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onbeforecopyAttributeSetter(v8Value, info); } static void onbeforecutAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onbeforecut())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onbeforecutAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onbeforecutAttributeGetter(info); } static void onbeforecutAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnbeforecut(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onbeforecutAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onbeforecutAttributeSetter(v8Value, info); } static void onbeforepasteAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onbeforepaste())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onbeforepasteAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onbeforepasteAttributeGetter(info); } static void onbeforepasteAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnbeforepaste(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onbeforepasteAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onbeforepasteAttributeSetter(v8Value, info); } static void oncopyAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->oncopy())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncopyAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncopyAttributeGetter(info); } static void oncopyAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOncopy(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncopyAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncopyAttributeSetter(v8Value, info); } static void oncutAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->oncut())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncutAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncutAttributeGetter(info); } static void oncutAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOncut(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncutAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncutAttributeSetter(v8Value, info); } static void onpasteAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onpaste())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpasteAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpasteAttributeGetter(info); } static void onpasteAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnpaste(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpasteAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpasteAttributeSetter(v8Value, info); } static void onsearchAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onsearch())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onsearchAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onsearchAttributeGetter(info); } static void onsearchAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnsearch(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onsearchAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onsearchAttributeSetter(v8Value, info); } static void onsecuritypolicyviolationAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onsecuritypolicyviolation())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onsecuritypolicyviolationAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onsecuritypolicyviolationAttributeGetter(info); } static void onsecuritypolicyviolationAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnsecuritypolicyviolation(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onsecuritypolicyviolationAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onsecuritypolicyviolationAttributeSetter(v8Value, info); } static void onselectionchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onselectionchange())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onselectionchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onselectionchangeAttributeGetter(info); } static void onselectionchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnselectionchange(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onselectionchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onselectionchangeAttributeSetter(v8Value, info); } static void onselectstartAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onselectstart())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onselectstartAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onselectstartAttributeGetter(info); } static void onselectstartAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnselectstart(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onselectstartAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onselectstartAttributeSetter(v8Value, info); } static void onwheelAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(WTF::getPtr(impl->onwheel())); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onwheelAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onwheelAttributeGetter(info); } static void onwheelAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); impl->setOnwheel(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onwheelAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onwheelAttributeSetter(v8Value, info); } static void timelineAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentAnimation::timeline(*impl), impl); } static void timelineAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::timelineAttributeGetter(info); } static void fontsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentFontFaceSet::fonts(*impl), impl); } static void fontsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentFonts); DocumentV8Internal::fontsAttributeGetter(info); } static void fullscreenEnabledAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, DocumentFullscreen::fullscreenEnabled(*impl)); } static void fullscreenEnabledAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::fullscreenEnabledAttributeGetter(info); } static void fullscreenElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentFullscreen::fullscreenElement(*impl), impl); } static void fullscreenElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::fullscreenElementAttributeGetter(info); } static void onfullscreenchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(DocumentFullscreen::onfullscreenchange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onfullscreenchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onfullscreenchangeAttributeGetter(info); } static void onfullscreenchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); DocumentFullscreen::setOnfullscreenchange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onfullscreenchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onfullscreenchangeAttributeSetter(v8Value, info); } static void onfullscreenerrorAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(DocumentFullscreen::onfullscreenerror(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onfullscreenerrorAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onfullscreenerrorAttributeGetter(info); } static void onfullscreenerrorAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); DocumentFullscreen::setOnfullscreenerror(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onfullscreenerrorAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onfullscreenerrorAttributeSetter(v8Value, info); } static void webkitIsFullScreenAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, DocumentFullscreen::currentFullScreenElement(*impl)); } static void webkitIsFullScreenAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentIsFullscreen); DocumentV8Internal::webkitIsFullScreenAttributeGetter(info); } static void webkitCurrentFullScreenElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentFullscreen::currentFullScreenElement(*impl), impl); } static void webkitCurrentFullScreenElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentCurrentFullScreenElement); DocumentV8Internal::webkitCurrentFullScreenElementAttributeGetter(info); } static void webkitFullscreenEnabledAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueBool(info, DocumentFullscreen::fullscreenEnabled(*impl)); } static void webkitFullscreenEnabledAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentFullscreenEnabled); DocumentV8Internal::webkitFullscreenEnabledAttributeGetter(info); } static void webkitFullscreenElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentFullscreen::fullscreenElement(*impl), impl); } static void webkitFullscreenElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentFullscreenElement); DocumentV8Internal::webkitFullscreenElementAttributeGetter(info); } static void onwebkitfullscreenchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(DocumentFullscreen::onwebkitfullscreenchange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onwebkitfullscreenchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onwebkitfullscreenchangeAttributeGetter(info); } static void onwebkitfullscreenchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); DocumentFullscreen::setOnwebkitfullscreenchange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onwebkitfullscreenchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onwebkitfullscreenchangeAttributeSetter(v8Value, info); } static void onwebkitfullscreenerrorAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(DocumentFullscreen::onwebkitfullscreenerror(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onwebkitfullscreenerrorAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onwebkitfullscreenerrorAttributeGetter(info); } static void onwebkitfullscreenerrorAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); DocumentFullscreen::setOnwebkitfullscreenerror(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onwebkitfullscreenerrorAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onwebkitfullscreenerrorAttributeSetter(v8Value, info); } static void activeElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentOrShadowRoot::activeElement(*impl), impl); } static void activeElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::activeElementAttributeGetter(info); } static void styleSheetsAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentOrShadowRoot::styleSheets(*impl), impl); } static void styleSheetsAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::styleSheetsAttributeGetter(info); } static void pointerLockElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, DocumentOrShadowRoot::pointerLockElement(*impl), impl); } static void pointerLockElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::pointerLockElementAttributeGetter(info); } static void onabortAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onabort(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onabortAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onabortAttributeGetter(info); } static void onabortAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnabort(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onabortAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onabortAttributeSetter(v8Value, info); } static void onblurAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onblur(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onblurAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onblurAttributeGetter(info); } static void onblurAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnblur(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onblurAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onblurAttributeSetter(v8Value, info); } static void oncancelAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oncancel(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncancelAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncancelAttributeGetter(info); } static void oncancelAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOncancel(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncancelAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncancelAttributeSetter(v8Value, info); } static void oncanplayAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oncanplay(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncanplayAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncanplayAttributeGetter(info); } static void oncanplayAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOncanplay(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncanplayAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncanplayAttributeSetter(v8Value, info); } static void oncanplaythroughAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oncanplaythrough(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncanplaythroughAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncanplaythroughAttributeGetter(info); } static void oncanplaythroughAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOncanplaythrough(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncanplaythroughAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncanplaythroughAttributeSetter(v8Value, info); } static void onchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onchange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onchangeAttributeGetter(info); } static void onchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnchange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onchangeAttributeSetter(v8Value, info); } static void onclickAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onclick(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onclickAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onclickAttributeGetter(info); } static void onclickAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnclick(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onclickAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onclickAttributeSetter(v8Value, info); } static void oncloseAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onclose(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncloseAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncloseAttributeGetter(info); } static void oncloseAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnclose(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncloseAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncloseAttributeSetter(v8Value, info); } static void oncontextmenuAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oncontextmenu(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncontextmenuAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncontextmenuAttributeGetter(info); } static void oncontextmenuAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOncontextmenu(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncontextmenuAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncontextmenuAttributeSetter(v8Value, info); } static void oncuechangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oncuechange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oncuechangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oncuechangeAttributeGetter(info); } static void oncuechangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOncuechange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oncuechangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oncuechangeAttributeSetter(v8Value, info); } static void ondblclickAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondblclick(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondblclickAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondblclickAttributeGetter(info); } static void ondblclickAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndblclick(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondblclickAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondblclickAttributeSetter(v8Value, info); } static void ondragAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondrag(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragAttributeGetter(info); } static void ondragAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndrag(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragAttributeSetter(v8Value, info); } static void ondragendAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondragend(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragendAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragendAttributeGetter(info); } static void ondragendAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndragend(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragendAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragendAttributeSetter(v8Value, info); } static void ondragenterAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondragenter(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragenterAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragenterAttributeGetter(info); } static void ondragenterAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndragenter(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragenterAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragenterAttributeSetter(v8Value, info); } static void ondragleaveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondragleave(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragleaveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragleaveAttributeGetter(info); } static void ondragleaveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndragleave(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragleaveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragleaveAttributeSetter(v8Value, info); } static void ondragoverAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondragover(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragoverAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragoverAttributeGetter(info); } static void ondragoverAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndragover(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragoverAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragoverAttributeSetter(v8Value, info); } static void ondragstartAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondragstart(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondragstartAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondragstartAttributeGetter(info); } static void ondragstartAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndragstart(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondragstartAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondragstartAttributeSetter(v8Value, info); } static void ondropAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondrop(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondropAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondropAttributeGetter(info); } static void ondropAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndrop(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondropAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondropAttributeSetter(v8Value, info); } static void ondurationchangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ondurationchange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ondurationchangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ondurationchangeAttributeGetter(info); } static void ondurationchangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOndurationchange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ondurationchangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ondurationchangeAttributeSetter(v8Value, info); } static void onemptiedAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onemptied(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onemptiedAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onemptiedAttributeGetter(info); } static void onemptiedAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnemptied(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onemptiedAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onemptiedAttributeSetter(v8Value, info); } static void onendedAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onended(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onendedAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onendedAttributeGetter(info); } static void onendedAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnended(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onendedAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onendedAttributeSetter(v8Value, info); } static void onerrorAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onerror(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onerrorAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onerrorAttributeGetter(info); } static void onerrorAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnerror(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onerrorAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onerrorAttributeSetter(v8Value, info); } static void onfocusAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onfocus(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onfocusAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onfocusAttributeGetter(info); } static void onfocusAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnfocus(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onfocusAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onfocusAttributeSetter(v8Value, info); } static void oninputAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oninput(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oninputAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oninputAttributeGetter(info); } static void oninputAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOninput(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oninputAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oninputAttributeSetter(v8Value, info); } static void oninvalidAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::oninvalid(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void oninvalidAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::oninvalidAttributeGetter(info); } static void oninvalidAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOninvalid(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void oninvalidAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::oninvalidAttributeSetter(v8Value, info); } static void onkeydownAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onkeydown(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onkeydownAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onkeydownAttributeGetter(info); } static void onkeydownAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnkeydown(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onkeydownAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onkeydownAttributeSetter(v8Value, info); } static void onkeypressAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onkeypress(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onkeypressAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onkeypressAttributeGetter(info); } static void onkeypressAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnkeypress(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onkeypressAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onkeypressAttributeSetter(v8Value, info); } static void onkeyupAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onkeyup(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onkeyupAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onkeyupAttributeGetter(info); } static void onkeyupAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnkeyup(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onkeyupAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onkeyupAttributeSetter(v8Value, info); } static void onloadAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onload(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onloadAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onloadAttributeGetter(info); } static void onloadAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnload(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onloadAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onloadAttributeSetter(v8Value, info); } static void onloadeddataAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onloadeddata(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onloadeddataAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onloadeddataAttributeGetter(info); } static void onloadeddataAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnloadeddata(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onloadeddataAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onloadeddataAttributeSetter(v8Value, info); } static void onloadedmetadataAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onloadedmetadata(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onloadedmetadataAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onloadedmetadataAttributeGetter(info); } static void onloadedmetadataAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnloadedmetadata(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onloadedmetadataAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onloadedmetadataAttributeSetter(v8Value, info); } static void onloadstartAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onloadstart(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onloadstartAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onloadstartAttributeGetter(info); } static void onloadstartAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnloadstart(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onloadstartAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onloadstartAttributeSetter(v8Value, info); } static void onmousedownAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmousedown(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmousedownAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmousedownAttributeGetter(info); } static void onmousedownAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmousedown(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmousedownAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmousedownAttributeSetter(v8Value, info); } static void onmouseenterAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmouseenter(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmouseenterAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmouseenterAttributeGetter(info); } static void onmouseenterAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmouseenter(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmouseenterAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmouseenterAttributeSetter(v8Value, info); } static void onmouseleaveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmouseleave(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmouseleaveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmouseleaveAttributeGetter(info); } static void onmouseleaveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { if (!V8Document::hasInstance(info.Holder(), info.GetIsolate())) return; // Return silently because of [LenientThis]. v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmouseleave(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmouseleaveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmouseleaveAttributeSetter(v8Value, info); } static void onmousemoveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmousemove(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmousemoveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmousemoveAttributeGetter(info); } static void onmousemoveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmousemove(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmousemoveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmousemoveAttributeSetter(v8Value, info); } static void onmouseoutAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmouseout(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmouseoutAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmouseoutAttributeGetter(info); } static void onmouseoutAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmouseout(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmouseoutAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmouseoutAttributeSetter(v8Value, info); } static void onmouseoverAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmouseover(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmouseoverAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmouseoverAttributeGetter(info); } static void onmouseoverAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmouseover(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmouseoverAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmouseoverAttributeSetter(v8Value, info); } static void onmouseupAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmouseup(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmouseupAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmouseupAttributeGetter(info); } static void onmouseupAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmouseup(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmouseupAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmouseupAttributeSetter(v8Value, info); } static void onmousewheelAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onmousewheel(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onmousewheelAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onmousewheelAttributeGetter(info); } static void onmousewheelAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnmousewheel(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onmousewheelAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onmousewheelAttributeSetter(v8Value, info); } static void onpauseAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpause(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpauseAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpauseAttributeGetter(info); } static void onpauseAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpause(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpauseAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpauseAttributeSetter(v8Value, info); } static void onplayAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onplay(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onplayAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onplayAttributeGetter(info); } static void onplayAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnplay(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onplayAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onplayAttributeSetter(v8Value, info); } static void onplayingAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onplaying(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onplayingAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onplayingAttributeGetter(info); } static void onplayingAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnplaying(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onplayingAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onplayingAttributeSetter(v8Value, info); } static void onprogressAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onprogress(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onprogressAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onprogressAttributeGetter(info); } static void onprogressAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnprogress(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onprogressAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onprogressAttributeSetter(v8Value, info); } static void onratechangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onratechange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onratechangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onratechangeAttributeGetter(info); } static void onratechangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnratechange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onratechangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onratechangeAttributeSetter(v8Value, info); } static void onresetAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onreset(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onresetAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onresetAttributeGetter(info); } static void onresetAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnreset(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onresetAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onresetAttributeSetter(v8Value, info); } static void onresizeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onresize(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onresizeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onresizeAttributeGetter(info); } static void onresizeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnresize(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onresizeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onresizeAttributeSetter(v8Value, info); } static void onscrollAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onscroll(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onscrollAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onscrollAttributeGetter(info); } static void onscrollAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnscroll(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onscrollAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onscrollAttributeSetter(v8Value, info); } static void onseekedAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onseeked(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onseekedAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onseekedAttributeGetter(info); } static void onseekedAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnseeked(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onseekedAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onseekedAttributeSetter(v8Value, info); } static void onseekingAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onseeking(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onseekingAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onseekingAttributeGetter(info); } static void onseekingAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnseeking(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onseekingAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onseekingAttributeSetter(v8Value, info); } static void onselectAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onselect(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onselectAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onselectAttributeGetter(info); } static void onselectAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnselect(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onselectAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onselectAttributeSetter(v8Value, info); } static void onshowAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onshow(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onshowAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onshowAttributeGetter(info); } static void onshowAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnshow(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onshowAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onshowAttributeSetter(v8Value, info); } static void onstalledAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onstalled(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onstalledAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onstalledAttributeGetter(info); } static void onstalledAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnstalled(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onstalledAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onstalledAttributeSetter(v8Value, info); } static void onsubmitAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onsubmit(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onsubmitAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onsubmitAttributeGetter(info); } static void onsubmitAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnsubmit(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onsubmitAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onsubmitAttributeSetter(v8Value, info); } static void onsuspendAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onsuspend(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onsuspendAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onsuspendAttributeGetter(info); } static void onsuspendAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnsuspend(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onsuspendAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onsuspendAttributeSetter(v8Value, info); } static void ontimeupdateAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontimeupdate(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontimeupdateAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontimeupdateAttributeGetter(info); } static void ontimeupdateAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntimeupdate(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontimeupdateAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontimeupdateAttributeSetter(v8Value, info); } static void ontoggleAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontoggle(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontoggleAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontoggleAttributeGetter(info); } static void ontoggleAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntoggle(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontoggleAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontoggleAttributeSetter(v8Value, info); } static void onvolumechangeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onvolumechange(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onvolumechangeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onvolumechangeAttributeGetter(info); } static void onvolumechangeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnvolumechange(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onvolumechangeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onvolumechangeAttributeSetter(v8Value, info); } static void onwaitingAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onwaiting(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onwaitingAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onwaitingAttributeGetter(info); } static void onwaitingAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnwaiting(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onwaitingAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onwaitingAttributeSetter(v8Value, info); } static void onauxclickAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onauxclick(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onauxclickAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onauxclickAttributeGetter(info); } static void onauxclickAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnauxclick(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onauxclickAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onauxclickAttributeSetter(v8Value, info); } static void onpointerdownAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerdown(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerdownAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerdownAttributeGetter(info); } static void onpointerdownAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerdown(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerdownAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerdownAttributeSetter(v8Value, info); } static void onpointermoveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointermove(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointermoveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointermoveAttributeGetter(info); } static void onpointermoveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointermove(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointermoveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointermoveAttributeSetter(v8Value, info); } static void onpointerupAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerup(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerupAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerupAttributeGetter(info); } static void onpointerupAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerup(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerupAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerupAttributeSetter(v8Value, info); } static void onpointercancelAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointercancel(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointercancelAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointercancelAttributeGetter(info); } static void onpointercancelAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointercancel(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointercancelAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointercancelAttributeSetter(v8Value, info); } static void onpointeroverAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerover(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointeroverAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointeroverAttributeGetter(info); } static void onpointeroverAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerover(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointeroverAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointeroverAttributeSetter(v8Value, info); } static void onpointeroutAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerout(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointeroutAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointeroutAttributeGetter(info); } static void onpointeroutAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerout(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointeroutAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointeroutAttributeSetter(v8Value, info); } static void onpointerenterAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerenter(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerenterAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerenterAttributeGetter(info); } static void onpointerenterAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerenter(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerenterAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerenterAttributeSetter(v8Value, info); } static void onpointerleaveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::onpointerleave(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void onpointerleaveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::onpointerleaveAttributeGetter(info); } static void onpointerleaveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOnpointerleave(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void onpointerleaveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::onpointerleaveAttributeSetter(v8Value, info); } static void ontouchcancelAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontouchcancel(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontouchcancelAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontouchcancelAttributeGetter(info); } static void ontouchcancelAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntouchcancel(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontouchcancelAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontouchcancelAttributeSetter(v8Value, info); } static void ontouchendAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontouchend(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontouchendAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontouchendAttributeGetter(info); } static void ontouchendAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntouchend(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontouchendAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontouchendAttributeSetter(v8Value, info); } static void ontouchmoveAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontouchmove(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontouchmoveAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontouchmoveAttributeGetter(info); } static void ontouchmoveAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntouchmove(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontouchmoveAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontouchmoveAttributeSetter(v8Value, info); } static void ontouchstartAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); EventListener* cppValue(GlobalEventHandlers::ontouchstart(*impl)); v8SetReturnValue(info, cppValue ? V8AbstractEventListener::cast(cppValue)->getListenerOrNull(info.GetIsolate(), impl->getExecutionContext()) : v8::Null(info.GetIsolate()).As<v8::Value>()); } static void ontouchstartAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::ontouchstartAttributeGetter(info); } static void ontouchstartAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); GlobalEventHandlers::setOntouchstart(*impl, V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate)); } static void ontouchstartAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Value> v8Value = info[0]; DocumentV8Internal::ontouchstartAttributeSetter(v8Value, info); } static void childrenAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, ParentNode::children(*impl), impl); } static void childrenAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::childrenAttributeGetter(info); } static void childrenAttributeGetterForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueForMainWorld(info, ParentNode::children(*impl)); } static void childrenAttributeGetterCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::childrenAttributeGetterForMainWorld(info); } static void firstElementChildAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, ParentNode::firstElementChild(*impl), impl); } static void firstElementChildAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::firstElementChildAttributeGetter(info); } static void firstElementChildAttributeGetterForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueForMainWorld(info, ParentNode::firstElementChild(*impl)); } static void firstElementChildAttributeGetterCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::firstElementChildAttributeGetterForMainWorld(info); } static void lastElementChildAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, ParentNode::lastElementChild(*impl), impl); } static void lastElementChildAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::lastElementChildAttributeGetter(info); } static void lastElementChildAttributeGetterForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueForMainWorld(info, ParentNode::lastElementChild(*impl)); } static void lastElementChildAttributeGetterCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::lastElementChildAttributeGetterForMainWorld(info); } static void childElementCountAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueUnsigned(info, ParentNode::childElementCount(*impl)); } static void childElementCountAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::childElementCountAttributeGetter(info); } static void rootElementAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); Document* impl = V8Document::toImpl(holder); v8SetReturnValueFast(info, SVGDocumentExtensions::rootElement(*impl), impl); } static void rootElementAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::SVGDocumentRootElement); DocumentV8Internal::rootElementAttributeGetter(info); } static void getElementsByTagNameMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementsByTagName", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> localName; { localName = info[0]; if (!localName.prepare()) return; } v8SetReturnValueFast(info, impl->getElementsByTagName(localName), impl); } static void getElementsByTagNameMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementsByTagNameMethod(info); } static void getElementsByTagNameNSMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 2)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementsByTagNameNS", "Document", 2, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<TreatNullAndUndefinedAsNullString> namespaceURI; V8StringResource<> localName; { namespaceURI = info[0]; if (!namespaceURI.prepare()) return; localName = info[1]; if (!localName.prepare()) return; } v8SetReturnValueFast(info, impl->getElementsByTagNameNS(namespaceURI, localName), impl); } static void getElementsByTagNameNSMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementsByTagNameNSMethod(info); } static void getElementsByClassNameMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementsByClassName", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> classNames; { classNames = info[0]; if (!classNames.prepare()) return; } v8SetReturnValueFast(info, impl->getElementsByClassName(classNames), impl); } static void getElementsByClassNameMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementsByClassNameMethod(info); } static void createElement1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> localName; { localName = info[0]; if (!localName.prepare()) return; } Element* result = impl->createElement(localName, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void createElement1MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> localName; { localName = info[0]; if (!localName.prepare()) return; } Element* result = impl->createElement(localName, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueForMainWorld(info, result); } static void createElementNS1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElementNS", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<TreatNullAndUndefinedAsNullString> namespaceURI; V8StringResource<> qualifiedName; { namespaceURI = info[0]; if (!namespaceURI.prepare()) return; qualifiedName = info[1]; if (!qualifiedName.prepare()) return; } Element* result = impl->createElementNS(namespaceURI, qualifiedName, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void createDocumentFragmentMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); DocumentFragment* result = impl->createDocumentFragment(); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createDocumentFragmentMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createDocumentFragmentMethod(info); } static void createTextNodeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "createTextNode", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> data; { data = info[0]; if (!data.prepare()) return; } Text* result = impl->createTextNode(data); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createTextNodeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createTextNodeMethod(info); } static void createCDATASectionMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createCDATASection", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> data; { data = info[0]; if (!data.prepare()) return; } CDATASection* result = impl->createCDATASection(data, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createCDATASectionMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createCDATASectionMethod(info); } static void createCommentMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "createComment", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> data; { data = info[0]; if (!data.prepare()) return; } Comment* result = impl->createComment(data); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createCommentMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createCommentMethod(info); } static void createProcessingInstructionMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createProcessingInstruction", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 2)) { setMinimumArityTypeError(exceptionState, 2, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> target; V8StringResource<> data; { target = info[0]; if (!target.prepare()) return; data = info[1]; if (!data.prepare()) return; } ProcessingInstruction* result = impl->createProcessingInstruction(target, data, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createProcessingInstructionMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createProcessingInstructionMethod(info); } static void importNodeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "importNode", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; Node* node; bool deep; { node = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (!node) { exceptionState.throwTypeError("parameter 1 is not of type 'Node'."); exceptionState.throwIfNeeded(); return; } if (!info[1]->IsUndefined()) { deep = toBoolean(info.GetIsolate(), info[1], exceptionState); if (exceptionState.throwIfNeeded()) return; } else { deep = false; } } Node* result = impl->importNode(node, deep, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void importNodeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::importNodeMethod(info); } static void adoptNodeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "adoptNode", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; Node* node; { node = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (!node) { exceptionState.throwTypeError("parameter 1 is not of type 'Node'."); exceptionState.throwIfNeeded(); return; } } Node* result = impl->adoptNode(node, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void adoptNodeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::adoptNodeMethod(info); } static void createAttributeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createAttribute", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> localName; { localName = info[0]; if (!localName.prepare()) return; } Attr* result = impl->createAttribute(localName, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createAttributeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentCreateAttribute); DocumentV8Internal::createAttributeMethod(info); } static void createAttributeNSMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createAttributeNS", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 2)) { setMinimumArityTypeError(exceptionState, 2, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<TreatNullAndUndefinedAsNullString> namespaceURI; V8StringResource<> qualifiedName; { namespaceURI = info[0]; if (!namespaceURI.prepare()) return; qualifiedName = info[1]; if (!qualifiedName.prepare()) return; } Attr* result = impl->createAttributeNS(namespaceURI, qualifiedName, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createAttributeNSMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentCreateAttributeNS); DocumentV8Internal::createAttributeNSMethod(info); } static void createEventMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createEvent", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> eventType; { eventType = info[0]; if (!eventType.prepare()) return; } ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate()); Event* result = impl->createEvent(executionContext, eventType, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createEventMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createEventMethod(info); } static void createRangeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); Range* result = impl->createRange(); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createRangeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createRangeMethod(info); } static void createNodeIteratorMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createNodeIterator", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); Node* root; unsigned whatToShow; NodeFilter* filter; { root = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (!root) { exceptionState.throwTypeError("parameter 1 is not of type 'Node'."); exceptionState.throwIfNeeded(); return; } if (!info[1]->IsUndefined()) { whatToShow = toUInt32(info.GetIsolate(), info[1], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } else { whatToShow = 4294967295u; } if (!info[2]->IsUndefined()) { filter = toNodeFilter(info[2], info.Holder(), ScriptState::current(info.GetIsolate())); } else { filter = nullptr; } } NodeIterator* result = impl->createNodeIterator(root, whatToShow, filter); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createNodeIteratorMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createNodeIteratorMethod(info); } static void createTreeWalkerMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createTreeWalker", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); Node* root; unsigned whatToShow; NodeFilter* filter; { root = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (!root) { exceptionState.throwTypeError("parameter 1 is not of type 'Node'."); exceptionState.throwIfNeeded(); return; } if (!info[1]->IsUndefined()) { whatToShow = toUInt32(info.GetIsolate(), info[1], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } else { whatToShow = 4294967295u; } if (!info[2]->IsUndefined()) { filter = toNodeFilter(info[2], info.Holder(), ScriptState::current(info.GetIsolate())); } else { filter = nullptr; } } TreeWalker* result = impl->createTreeWalker(root, whatToShow, filter); // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void createTreeWalkerMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createTreeWalkerMethod(info); } static void getElementsByNameMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementsByName", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> elementName; { elementName = info[0]; if (!elementName.prepare()) return; } v8SetReturnValueFast(info, impl->getElementsByName(elementName), impl); } static void getElementsByNameMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementsByNameMethod(info); } static void getElementsByNameMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementsByName", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> elementName; { elementName = info[0]; if (!elementName.prepare()) return; } v8SetReturnValueForMainWorld(info, impl->getElementsByName(elementName)); } static void getElementsByNameMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementsByNameMethodForMainWorld(info); } static void openMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentOpen); CEReactionsScope ceReactionsScope; V8Document::openMethodCustom(info); } static void closeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "close", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); impl->close(exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } } static void closeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::closeMethod(info); } static void writeMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "write", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; Vector<String> text; { text = toImplArguments<Vector<String>>(info, 0, exceptionState); if (exceptionState.throwIfNeeded()) return; } impl->write(enteredDOMWindow(info.GetIsolate()), text, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } } static void writeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::writeMethod(info); } static void writelnMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "writeln", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; Vector<String> text; { text = toImplArguments<Vector<String>>(info, 0, exceptionState); if (exceptionState.throwIfNeeded()) return; } impl->writeln(enteredDOMWindow(info.GetIsolate()), text, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } } static void writelnMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::writelnMethod(info); } static void hasFocusMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); v8SetReturnValueBool(info, impl->hasFocus()); } static void hasFocusMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::hasFocusMethod(info); } static void execCommandMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "execCommand", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> commandId; bool showUI; V8StringResource<> value; { commandId = info[0]; if (!commandId.prepare()) return; if (!info[1]->IsUndefined()) { showUI = toBoolean(info.GetIsolate(), info[1], exceptionState); if (exceptionState.throwIfNeeded()) return; } else { showUI = false; } if (!info[2]->IsUndefined()) { value = info[2]; if (!value.prepare()) return; } else { value = String(""); } } bool result = impl->execCommand(commandId, showUI, value, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueBool(info, result); } static void execCommandMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::execCommandMethod(info); } static void queryCommandEnabledMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "queryCommandEnabled", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> commandId; { commandId = info[0]; if (!commandId.prepare()) return; } bool result = impl->queryCommandEnabled(commandId, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueBool(info, result); } static void queryCommandEnabledMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::queryCommandEnabledMethod(info); } static void queryCommandIndetermMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "queryCommandIndeterm", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> commandId; { commandId = info[0]; if (!commandId.prepare()) return; } bool result = impl->queryCommandIndeterm(commandId, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueBool(info, result); } static void queryCommandIndetermMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::queryCommandIndetermMethod(info); } static void queryCommandStateMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "queryCommandState", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> commandId; { commandId = info[0]; if (!commandId.prepare()) return; } bool result = impl->queryCommandState(commandId, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueBool(info, result); } static void queryCommandStateMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::queryCommandStateMethod(info); } static void queryCommandSupportedMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "queryCommandSupported", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> commandId; { commandId = info[0]; if (!commandId.prepare()) return; } bool result = impl->queryCommandSupported(commandId, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueBool(info, result); } static void queryCommandSupportedMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::queryCommandSupportedMethod(info); } static void queryCommandValueMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "queryCommandValue", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> commandId; { commandId = info[0]; if (!commandId.prepare()) return; } String result = impl->queryCommandValue(commandId, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueString(info, result, info.GetIsolate()); } static void queryCommandValueMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::queryCommandValueMethod(info); } static void exitPointerLockMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); impl->exitPointerLock(); } static void exitPointerLockMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentExitPointerLock); DocumentV8Internal::exitPointerLockMethod(info); } static void createTouchMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createTouch", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); DOMWindow* window; EventTarget* target; int identifier; double pageX; double pageY; double screenX; double screenY; double radiusX; double radiusY; float rotationAngle; float force; { window = toDOMWindow(info.GetIsolate(), info[0]); target = toEventTarget(info.GetIsolate(), info[1]); identifier = toInt32(info.GetIsolate(), info[2], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; pageX = toDouble(info.GetIsolate(), info[3], exceptionState); if (exceptionState.throwIfNeeded()) return; pageY = toDouble(info.GetIsolate(), info[4], exceptionState); if (exceptionState.throwIfNeeded()) return; screenX = toDouble(info.GetIsolate(), info[5], exceptionState); if (exceptionState.throwIfNeeded()) return; screenY = toDouble(info.GetIsolate(), info[6], exceptionState); if (exceptionState.throwIfNeeded()) return; radiusX = toDouble(info.GetIsolate(), info[7], exceptionState); if (exceptionState.throwIfNeeded()) return; radiusY = toDouble(info.GetIsolate(), info[8], exceptionState); if (exceptionState.throwIfNeeded()) return; rotationAngle = toFloat(info.GetIsolate(), info[9], exceptionState); if (exceptionState.throwIfNeeded()) return; force = toFloat(info.GetIsolate(), info[10], exceptionState); if (exceptionState.throwIfNeeded()) return; } v8SetReturnValueFast(info, impl->createTouch(window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force), impl); } static void createTouchMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::V8Document_CreateTouch_Method); DocumentV8Internal::createTouchMethod(info); } static void createTouchListMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createTouchList", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); HeapVector<Member<Touch>> touches; { for (int i = 0; i < info.Length(); ++i) { if (!V8Touch::hasInstance(info[i], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'Touch'."); exceptionState.throwIfNeeded(); return; } touches.append(V8Touch::toImpl(v8::Local<v8::Object>::Cast(info[i]))); } } v8SetReturnValueFast(info, impl->createTouchList(touches), impl); } static void createTouchListMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createTouchListMethod(info); } static void registerElementMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "registerElement", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> type; ElementRegistrationOptions options; { type = info[0]; if (!type.prepare()) return; if (!isUndefinedOrNull(info[1]) && !info[1]->IsObject()) { exceptionState.throwTypeError("parameter 2 ('options') is not an object."); exceptionState.throwIfNeeded(); return; } V8ElementRegistrationOptions::toImpl(info.GetIsolate(), info[1], options, exceptionState); if (exceptionState.throwIfNeeded()) return; } ScriptState* scriptState = ScriptState::forReceiverObject(info); ScriptValue result = impl->registerElement(scriptState, type, options, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValue(info, result.v8Value()); } static void registerElementMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentRegisterElement); DocumentV8Internal::registerElementMethod(info); } static void createElement2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> localName; V8StringResource<TreatNullAndUndefinedAsNullString> typeExtension; { localName = info[0]; if (!localName.prepare()) return; typeExtension = info[1]; if (!typeExtension.prepare()) return; } Element* result = impl->createElement(localName, typeExtension, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void createElementMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); switch (std::min(2, info.Length())) { case 1: if (true) { createElement1Method(info); return; } break; case 2: if (true) { createElement2Method(info); return; } break; default: break; } if (info.Length() < 1) { exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwTypeError("No function was found that matched the signature provided."); exceptionState.throwIfNeeded(); return; } static void createElementMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createElementMethod(info); } static void createElement2MethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<> localName; V8StringResource<TreatNullAndUndefinedAsNullString> typeExtension; { localName = info[0]; if (!localName.prepare()) return; typeExtension = info[1]; if (!typeExtension.prepare()) return; } Element* result = impl->createElement(localName, typeExtension, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueForMainWorld(info, result); } static void createElementMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElement", "Document", info.Holder(), info.GetIsolate()); switch (std::min(2, info.Length())) { case 1: if (true) { createElement1MethodForMainWorld(info); return; } break; case 2: if (true) { createElement2MethodForMainWorld(info); return; } break; default: break; } if (info.Length() < 1) { exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwTypeError("No function was found that matched the signature provided."); exceptionState.throwIfNeeded(); return; } static void createElementMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createElementMethodForMainWorld(info); } static void createElementNS2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElementNS", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; V8StringResource<TreatNullAndUndefinedAsNullString> namespaceURI; V8StringResource<> qualifiedName; V8StringResource<TreatNullAndUndefinedAsNullString> typeExtension; { namespaceURI = info[0]; if (!namespaceURI.prepare()) return; qualifiedName = info[1]; if (!qualifiedName.prepare()) return; typeExtension = info[2]; if (!typeExtension.prepare()) return; } Element* result = impl->createElementNS(namespaceURI, qualifiedName, typeExtension, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void createElementNSMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createElementNS", "Document", info.Holder(), info.GetIsolate()); switch (std::min(3, info.Length())) { case 2: if (true) { createElementNS1Method(info); return; } break; case 3: if (true) { createElementNS2Method(info); return; } break; default: break; } if (info.Length() < 2) { exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwTypeError("No function was found that matched the signature provided."); exceptionState.throwIfNeeded(); return; } static void createElementNSMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::createElementNSMethod(info); } static void caretRangeFromPointMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "caretRangeFromPoint", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); int x; int y; { x = toInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; y = toInt32(info.GetIsolate(), info[1], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } v8SetReturnValueFast(info, impl->caretRangeFromPoint(x, y), impl); } static void caretRangeFromPointMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentCaretRangeFromPoint); DocumentV8Internal::caretRangeFromPointMethod(info); } static void exitFullscreenMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); DocumentFullscreen::exitFullscreen(*impl); } static void exitFullscreenMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::exitFullscreenMethod(info); } static void webkitCancelFullScreenMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); DocumentFullscreen::exitFullscreen(*impl); } static void webkitCancelFullScreenMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentCancelFullScreen); DocumentV8Internal::webkitCancelFullScreenMethod(info); } static void webkitExitFullscreenMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); DocumentFullscreen::exitFullscreen(*impl); } static void webkitExitFullscreenMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::PrefixedDocumentExitFullscreen); DocumentV8Internal::webkitExitFullscreenMethod(info); } static void getSelectionMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { Document* impl = V8Document::toImpl(info.Holder()); v8SetReturnValueFast(info, DocumentOrShadowRoot::getSelection(*impl), impl); } static void getSelectionMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getSelectionMethod(info); } static void elementFromPointMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "elementFromPoint", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 2)) { setMinimumArityTypeError(exceptionState, 2, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); int x; int y; { x = toInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; y = toInt32(info.GetIsolate(), info[1], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } v8SetReturnValueFast(info, DocumentOrShadowRoot::elementFromPoint(*impl, x, y), impl); } static void elementFromPointMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::elementFromPointMethod(info); } static void elementsFromPointMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "elementsFromPoint", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 2)) { setMinimumArityTypeError(exceptionState, 2, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); int x; int y; { x = toInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; y = toInt32(info.GetIsolate(), info[1], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } v8SetReturnValue(info, toV8(DocumentOrShadowRoot::elementsFromPoint(*impl, x, y), info.Holder(), info.GetIsolate())); } static void elementsFromPointMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::elementsFromPointMethod(info); } static void getElementByIdMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementById", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> elementId; { elementId = info[0]; if (!elementId.prepare()) return; } v8SetReturnValueFast(info, NonElementParentNode::getElementById(*impl, elementId), impl); } static void getElementByIdMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementByIdMethod(info); } static void getElementByIdMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "getElementById", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> elementId; { elementId = info[0]; if (!elementId.prepare()) return; } v8SetReturnValueForMainWorld(info, NonElementParentNode::getElementById(*impl, elementId)); } static void getElementByIdMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::getElementByIdMethodForMainWorld(info); } static void prependMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "prepend", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; HeapVector<NodeOrString> nodes; { nodes = toImplArguments<HeapVector<NodeOrString>>(info, 0, exceptionState); if (exceptionState.throwIfNeeded()) return; } ParentNode::prepend(*impl, nodes, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } } static void prependMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::prependMethod(info); } static void appendMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "append", "Document", info.Holder(), info.GetIsolate()); Document* impl = V8Document::toImpl(info.Holder()); V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; HeapVector<NodeOrString> nodes; { nodes = toImplArguments<HeapVector<NodeOrString>>(info, 0, exceptionState); if (exceptionState.throwIfNeeded()) return; } ParentNode::append(*impl, nodes, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } } static void appendMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { CEReactionsScope ceReactionsScope; DocumentV8Internal::appendMethod(info); } static void querySelectorMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "querySelector", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> selectors; { selectors = info[0]; if (!selectors.prepare()) return; } Element* result = ParentNode::querySelector(*impl, selectors, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void querySelectorMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::querySelectorMethod(info); } static void querySelectorAllMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "querySelectorAll", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> selectors; { selectors = info[0]; if (!selectors.prepare()) return; } NodeList* result = ParentNode::querySelectorAll(*impl, selectors, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } // [NewObject] must always create a new wrapper. Check that a wrapper // does not exist yet. DCHECK(!result || DOMDataStore::getWrapper(result, info.GetIsolate()).IsEmpty()); v8SetReturnValueFast(info, result, impl); } static void querySelectorAllMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { DocumentV8Internal::querySelectorAllMethod(info); } static void createExpressionMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "createExpression", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 1)) { setMinimumArityTypeError(exceptionState, 1, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> expression; XPathNSResolver* resolver; { expression = info[0]; if (!expression.prepare()) return; if (!info[1]->IsUndefined()) { resolver = toXPathNSResolver(ScriptState::current(info.GetIsolate()), info[1]); if (!resolver && !isUndefinedOrNull(info[1])) { exceptionState.throwTypeError("parameter 2 is not of type 'XPathNSResolver'."); exceptionState.throwIfNeeded(); return; } } else { resolver = nullptr; } } XPathExpression* result = DocumentXPathEvaluator::createExpression(*impl, expression, resolver, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void createExpressionMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXPathCreateExpression); DocumentV8Internal::createExpressionMethod(info); } static void createNSResolverMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { if (UNLIKELY(info.Length() < 1)) { V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "createNSResolver", "Document", 1, info.Length())); return; } Document* impl = V8Document::toImpl(info.Holder()); Node* nodeResolver; { nodeResolver = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (!nodeResolver) { V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessages::failedToExecute("createNSResolver", "Document", "parameter 1 is not of type 'Node'.")); return; } } v8SetReturnValueFast(info, DocumentXPathEvaluator::createNSResolver(*impl, nodeResolver), impl); } static void createNSResolverMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXPathCreateNSResolver); DocumentV8Internal::createNSResolverMethod(info); } static void evaluateMethod(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "evaluate", "Document", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 2)) { setMinimumArityTypeError(exceptionState, 2, info.Length()); exceptionState.throwIfNeeded(); return; } Document* impl = V8Document::toImpl(info.Holder()); V8StringResource<> expression; Node* contextNode; XPathNSResolver* resolver; unsigned type; ScriptValue inResult; { expression = info[0]; if (!expression.prepare()) return; contextNode = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[1]); if (!contextNode) { exceptionState.throwTypeError("parameter 2 is not of type 'Node'."); exceptionState.throwIfNeeded(); return; } if (!info[2]->IsUndefined()) { resolver = toXPathNSResolver(ScriptState::current(info.GetIsolate()), info[2]); if (!resolver && !isUndefinedOrNull(info[2])) { exceptionState.throwTypeError("parameter 3 is not of type 'XPathNSResolver'."); exceptionState.throwIfNeeded(); return; } } else { resolver = nullptr; } if (!info[3]->IsUndefined()) { type = toUInt16(info.GetIsolate(), info[3], NormalConversion, exceptionState); if (exceptionState.throwIfNeeded()) return; } else { type = 0u; } if (!info[4]->IsUndefined()) { inResult = ScriptValue(ScriptState::current(info.GetIsolate()), info[4]); } else { inResult = ScriptValue(); } } XPathResult* result = DocumentXPathEvaluator::evaluate(*impl, expression, contextNode, resolver, type, inResult, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); return; } v8SetReturnValueFast(info, result, impl); } static void evaluateMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { UseCounter::countIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::DocumentXPathEvaluate); DocumentV8Internal::evaluateMethod(info); } } // namespace DocumentV8Internal const V8DOMConfiguration::AccessorConfiguration V8DocumentAccessors[] = { {"implementation", DocumentV8Internal::implementationAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"URL", DocumentV8Internal::URLAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"documentURI", DocumentV8Internal::documentURIAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"origin", DocumentV8Internal::originAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"compatMode", DocumentV8Internal::compatModeAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"characterSet", DocumentV8Internal::characterSetAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"charset", DocumentV8Internal::charsetAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"inputEncoding", DocumentV8Internal::inputEncodingAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"contentType", DocumentV8Internal::contentTypeAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"doctype", DocumentV8Internal::doctypeAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"documentElement", DocumentV8Internal::documentElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"xmlEncoding", DocumentV8Internal::xmlEncodingAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"xmlVersion", DocumentV8Internal::xmlVersionAttributeGetterCallback, DocumentV8Internal::xmlVersionAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"xmlStandalone", DocumentV8Internal::xmlStandaloneAttributeGetterCallback, DocumentV8Internal::xmlStandaloneAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"location", DocumentV8Internal::locationAttributeGetterCallback, DocumentV8Internal::locationAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::DontDelete), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnInstance, V8DOMConfiguration::CheckHolder}, {"domain", DocumentV8Internal::domainAttributeGetterCallback, DocumentV8Internal::domainAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"referrer", DocumentV8Internal::referrerAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"cookie", DocumentV8Internal::cookieAttributeGetterCallback, DocumentV8Internal::cookieAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"lastModified", DocumentV8Internal::lastModifiedAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"readyState", DocumentV8Internal::readyStateAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"title", DocumentV8Internal::titleAttributeGetterCallback, DocumentV8Internal::titleAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"dir", DocumentV8Internal::dirAttributeGetterCallback, DocumentV8Internal::dirAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"body", DocumentV8Internal::bodyAttributeGetterCallback, DocumentV8Internal::bodyAttributeSetterCallback, DocumentV8Internal::bodyAttributeGetterCallbackForMainWorld, DocumentV8Internal::bodyAttributeSetterCallbackForMainWorld, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"head", DocumentV8Internal::headAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"images", DocumentV8Internal::imagesAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"embeds", DocumentV8Internal::embedsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"plugins", DocumentV8Internal::pluginsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"links", DocumentV8Internal::linksAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"forms", DocumentV8Internal::formsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"scripts", DocumentV8Internal::scriptsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"currentScript", DocumentV8Internal::currentScriptAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"defaultView", DocumentV8Internal::defaultViewAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"designMode", DocumentV8Internal::designModeAttributeGetterCallback, DocumentV8Internal::designModeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onreadystatechange", DocumentV8Internal::onreadystatechangeAttributeGetterCallback, DocumentV8Internal::onreadystatechangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::DoNotCheckHolder}, {"anchors", DocumentV8Internal::anchorsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"applets", DocumentV8Internal::appletsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"selectedStylesheetSet", DocumentV8Internal::selectedStylesheetSetAttributeGetterCallback, DocumentV8Internal::selectedStylesheetSetAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"preferredStylesheetSet", DocumentV8Internal::preferredStylesheetSetAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"scrollingElement", DocumentV8Internal::scrollingElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onpointerlockchange", DocumentV8Internal::onpointerlockchangeAttributeGetterCallback, DocumentV8Internal::onpointerlockchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onpointerlockerror", DocumentV8Internal::onpointerlockerrorAttributeGetterCallback, DocumentV8Internal::onpointerlockerrorAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"hidden", DocumentV8Internal::hiddenAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"visibilityState", DocumentV8Internal::visibilityStateAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitVisibilityState", DocumentV8Internal::webkitVisibilityStateAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitHidden", DocumentV8Internal::webkitHiddenAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onbeforecopy", DocumentV8Internal::onbeforecopyAttributeGetterCallback, DocumentV8Internal::onbeforecopyAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onbeforecut", DocumentV8Internal::onbeforecutAttributeGetterCallback, DocumentV8Internal::onbeforecutAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onbeforepaste", DocumentV8Internal::onbeforepasteAttributeGetterCallback, DocumentV8Internal::onbeforepasteAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncopy", DocumentV8Internal::oncopyAttributeGetterCallback, DocumentV8Internal::oncopyAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncut", DocumentV8Internal::oncutAttributeGetterCallback, DocumentV8Internal::oncutAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onpaste", DocumentV8Internal::onpasteAttributeGetterCallback, DocumentV8Internal::onpasteAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onsearch", DocumentV8Internal::onsearchAttributeGetterCallback, DocumentV8Internal::onsearchAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onselectionchange", DocumentV8Internal::onselectionchangeAttributeGetterCallback, DocumentV8Internal::onselectionchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onselectstart", DocumentV8Internal::onselectstartAttributeGetterCallback, DocumentV8Internal::onselectstartAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onwheel", DocumentV8Internal::onwheelAttributeGetterCallback, DocumentV8Internal::onwheelAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"fonts", DocumentV8Internal::fontsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitIsFullScreen", DocumentV8Internal::webkitIsFullScreenAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitCurrentFullScreenElement", DocumentV8Internal::webkitCurrentFullScreenElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitFullscreenEnabled", DocumentV8Internal::webkitFullscreenEnabledAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"webkitFullscreenElement", DocumentV8Internal::webkitFullscreenElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onwebkitfullscreenchange", DocumentV8Internal::onwebkitfullscreenchangeAttributeGetterCallback, DocumentV8Internal::onwebkitfullscreenchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onwebkitfullscreenerror", DocumentV8Internal::onwebkitfullscreenerrorAttributeGetterCallback, DocumentV8Internal::onwebkitfullscreenerrorAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"activeElement", DocumentV8Internal::activeElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"styleSheets", DocumentV8Internal::styleSheetsAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"pointerLockElement", DocumentV8Internal::pointerLockElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onabort", DocumentV8Internal::onabortAttributeGetterCallback, DocumentV8Internal::onabortAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onblur", DocumentV8Internal::onblurAttributeGetterCallback, DocumentV8Internal::onblurAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncancel", DocumentV8Internal::oncancelAttributeGetterCallback, DocumentV8Internal::oncancelAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncanplay", DocumentV8Internal::oncanplayAttributeGetterCallback, DocumentV8Internal::oncanplayAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncanplaythrough", DocumentV8Internal::oncanplaythroughAttributeGetterCallback, DocumentV8Internal::oncanplaythroughAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onchange", DocumentV8Internal::onchangeAttributeGetterCallback, DocumentV8Internal::onchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onclick", DocumentV8Internal::onclickAttributeGetterCallback, DocumentV8Internal::onclickAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onclose", DocumentV8Internal::oncloseAttributeGetterCallback, DocumentV8Internal::oncloseAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncontextmenu", DocumentV8Internal::oncontextmenuAttributeGetterCallback, DocumentV8Internal::oncontextmenuAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oncuechange", DocumentV8Internal::oncuechangeAttributeGetterCallback, DocumentV8Internal::oncuechangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondblclick", DocumentV8Internal::ondblclickAttributeGetterCallback, DocumentV8Internal::ondblclickAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondrag", DocumentV8Internal::ondragAttributeGetterCallback, DocumentV8Internal::ondragAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondragend", DocumentV8Internal::ondragendAttributeGetterCallback, DocumentV8Internal::ondragendAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondragenter", DocumentV8Internal::ondragenterAttributeGetterCallback, DocumentV8Internal::ondragenterAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondragleave", DocumentV8Internal::ondragleaveAttributeGetterCallback, DocumentV8Internal::ondragleaveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondragover", DocumentV8Internal::ondragoverAttributeGetterCallback, DocumentV8Internal::ondragoverAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondragstart", DocumentV8Internal::ondragstartAttributeGetterCallback, DocumentV8Internal::ondragstartAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondrop", DocumentV8Internal::ondropAttributeGetterCallback, DocumentV8Internal::ondropAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ondurationchange", DocumentV8Internal::ondurationchangeAttributeGetterCallback, DocumentV8Internal::ondurationchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onemptied", DocumentV8Internal::onemptiedAttributeGetterCallback, DocumentV8Internal::onemptiedAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onended", DocumentV8Internal::onendedAttributeGetterCallback, DocumentV8Internal::onendedAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onerror", DocumentV8Internal::onerrorAttributeGetterCallback, DocumentV8Internal::onerrorAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onfocus", DocumentV8Internal::onfocusAttributeGetterCallback, DocumentV8Internal::onfocusAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oninput", DocumentV8Internal::oninputAttributeGetterCallback, DocumentV8Internal::oninputAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"oninvalid", DocumentV8Internal::oninvalidAttributeGetterCallback, DocumentV8Internal::oninvalidAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onkeydown", DocumentV8Internal::onkeydownAttributeGetterCallback, DocumentV8Internal::onkeydownAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onkeypress", DocumentV8Internal::onkeypressAttributeGetterCallback, DocumentV8Internal::onkeypressAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onkeyup", DocumentV8Internal::onkeyupAttributeGetterCallback, DocumentV8Internal::onkeyupAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onload", DocumentV8Internal::onloadAttributeGetterCallback, DocumentV8Internal::onloadAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onloadeddata", DocumentV8Internal::onloadeddataAttributeGetterCallback, DocumentV8Internal::onloadeddataAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onloadedmetadata", DocumentV8Internal::onloadedmetadataAttributeGetterCallback, DocumentV8Internal::onloadedmetadataAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onloadstart", DocumentV8Internal::onloadstartAttributeGetterCallback, DocumentV8Internal::onloadstartAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmousedown", DocumentV8Internal::onmousedownAttributeGetterCallback, DocumentV8Internal::onmousedownAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmouseenter", DocumentV8Internal::onmouseenterAttributeGetterCallback, DocumentV8Internal::onmouseenterAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::DoNotCheckHolder}, {"onmouseleave", DocumentV8Internal::onmouseleaveAttributeGetterCallback, DocumentV8Internal::onmouseleaveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::DoNotCheckHolder}, {"onmousemove", DocumentV8Internal::onmousemoveAttributeGetterCallback, DocumentV8Internal::onmousemoveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmouseout", DocumentV8Internal::onmouseoutAttributeGetterCallback, DocumentV8Internal::onmouseoutAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmouseover", DocumentV8Internal::onmouseoverAttributeGetterCallback, DocumentV8Internal::onmouseoverAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmouseup", DocumentV8Internal::onmouseupAttributeGetterCallback, DocumentV8Internal::onmouseupAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onmousewheel", DocumentV8Internal::onmousewheelAttributeGetterCallback, DocumentV8Internal::onmousewheelAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onpause", DocumentV8Internal::onpauseAttributeGetterCallback, DocumentV8Internal::onpauseAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onplay", DocumentV8Internal::onplayAttributeGetterCallback, DocumentV8Internal::onplayAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onplaying", DocumentV8Internal::onplayingAttributeGetterCallback, DocumentV8Internal::onplayingAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onprogress", DocumentV8Internal::onprogressAttributeGetterCallback, DocumentV8Internal::onprogressAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onratechange", DocumentV8Internal::onratechangeAttributeGetterCallback, DocumentV8Internal::onratechangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onreset", DocumentV8Internal::onresetAttributeGetterCallback, DocumentV8Internal::onresetAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onresize", DocumentV8Internal::onresizeAttributeGetterCallback, DocumentV8Internal::onresizeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onscroll", DocumentV8Internal::onscrollAttributeGetterCallback, DocumentV8Internal::onscrollAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onseeked", DocumentV8Internal::onseekedAttributeGetterCallback, DocumentV8Internal::onseekedAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onseeking", DocumentV8Internal::onseekingAttributeGetterCallback, DocumentV8Internal::onseekingAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onselect", DocumentV8Internal::onselectAttributeGetterCallback, DocumentV8Internal::onselectAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onshow", DocumentV8Internal::onshowAttributeGetterCallback, DocumentV8Internal::onshowAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onstalled", DocumentV8Internal::onstalledAttributeGetterCallback, DocumentV8Internal::onstalledAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onsubmit", DocumentV8Internal::onsubmitAttributeGetterCallback, DocumentV8Internal::onsubmitAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onsuspend", DocumentV8Internal::onsuspendAttributeGetterCallback, DocumentV8Internal::onsuspendAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ontimeupdate", DocumentV8Internal::ontimeupdateAttributeGetterCallback, DocumentV8Internal::ontimeupdateAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"ontoggle", DocumentV8Internal::ontoggleAttributeGetterCallback, DocumentV8Internal::ontoggleAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onvolumechange", DocumentV8Internal::onvolumechangeAttributeGetterCallback, DocumentV8Internal::onvolumechangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"onwaiting", DocumentV8Internal::onwaitingAttributeGetterCallback, DocumentV8Internal::onwaitingAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"children", DocumentV8Internal::childrenAttributeGetterCallback, 0, DocumentV8Internal::childrenAttributeGetterCallbackForMainWorld, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"firstElementChild", DocumentV8Internal::firstElementChildAttributeGetterCallback, 0, DocumentV8Internal::firstElementChildAttributeGetterCallbackForMainWorld, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"lastElementChild", DocumentV8Internal::lastElementChildAttributeGetterCallback, 0, DocumentV8Internal::lastElementChildAttributeGetterCallbackForMainWorld, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"childElementCount", DocumentV8Internal::childElementCountAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, {"rootElement", DocumentV8Internal::rootElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}, }; const V8DOMConfiguration::MethodConfiguration V8DocumentMethods[] = { {"getElementsByTagName", DocumentV8Internal::getElementsByTagNameMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"getElementsByTagNameNS", DocumentV8Internal::getElementsByTagNameNSMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"getElementsByClassName", DocumentV8Internal::getElementsByClassNameMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createDocumentFragment", DocumentV8Internal::createDocumentFragmentMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createTextNode", DocumentV8Internal::createTextNodeMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createCDATASection", DocumentV8Internal::createCDATASectionMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createComment", DocumentV8Internal::createCommentMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createProcessingInstruction", DocumentV8Internal::createProcessingInstructionMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"importNode", DocumentV8Internal::importNodeMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"adoptNode", DocumentV8Internal::adoptNodeMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createAttribute", DocumentV8Internal::createAttributeMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createAttributeNS", DocumentV8Internal::createAttributeNSMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createEvent", DocumentV8Internal::createEventMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createRange", DocumentV8Internal::createRangeMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createNodeIterator", DocumentV8Internal::createNodeIteratorMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createTreeWalker", DocumentV8Internal::createTreeWalkerMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"getElementsByName", DocumentV8Internal::getElementsByNameMethodCallback, DocumentV8Internal::getElementsByNameMethodCallbackForMainWorld, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"open", DocumentV8Internal::openMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"close", DocumentV8Internal::closeMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"write", DocumentV8Internal::writeMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"writeln", DocumentV8Internal::writelnMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"hasFocus", DocumentV8Internal::hasFocusMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"execCommand", DocumentV8Internal::execCommandMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"queryCommandEnabled", DocumentV8Internal::queryCommandEnabledMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"queryCommandIndeterm", DocumentV8Internal::queryCommandIndetermMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"queryCommandState", DocumentV8Internal::queryCommandStateMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"queryCommandSupported", DocumentV8Internal::queryCommandSupportedMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"queryCommandValue", DocumentV8Internal::queryCommandValueMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"exitPointerLock", DocumentV8Internal::exitPointerLockMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"registerElement", DocumentV8Internal::registerElementMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createElement", DocumentV8Internal::createElementMethodCallback, DocumentV8Internal::createElementMethodCallbackForMainWorld, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createElementNS", DocumentV8Internal::createElementNSMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"caretRangeFromPoint", DocumentV8Internal::caretRangeFromPointMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"webkitCancelFullScreen", DocumentV8Internal::webkitCancelFullScreenMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"webkitExitFullscreen", DocumentV8Internal::webkitExitFullscreenMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"getSelection", DocumentV8Internal::getSelectionMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"elementFromPoint", DocumentV8Internal::elementFromPointMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"elementsFromPoint", DocumentV8Internal::elementsFromPointMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"getElementById", DocumentV8Internal::getElementByIdMethodCallback, DocumentV8Internal::getElementByIdMethodCallbackForMainWorld, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"querySelector", DocumentV8Internal::querySelectorMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"querySelectorAll", DocumentV8Internal::querySelectorAllMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createExpression", DocumentV8Internal::createExpressionMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"createNSResolver", DocumentV8Internal::createNSResolverMethodCallback, 0, 1, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, {"evaluate", DocumentV8Internal::evaluateMethodCallback, 0, 2, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}, }; static void installV8DocumentTemplate(v8::Isolate* isolate, const DOMWrapperWorld& world, v8::Local<v8::FunctionTemplate> interfaceTemplate) { // Initialize the interface object's template. V8DOMConfiguration::initializeDOMInterfaceTemplate(isolate, interfaceTemplate, V8Document::wrapperTypeInfo.interfaceName, V8Node::domTemplate(isolate, world), V8Document::internalFieldCount); v8::Local<v8::Signature> signature = v8::Signature::New(isolate, interfaceTemplate); ALLOW_UNUSED_LOCAL(signature); v8::Local<v8::ObjectTemplate> instanceTemplate = interfaceTemplate->InstanceTemplate(); ALLOW_UNUSED_LOCAL(instanceTemplate); v8::Local<v8::ObjectTemplate> prototypeTemplate = interfaceTemplate->PrototypeTemplate(); ALLOW_UNUSED_LOCAL(prototypeTemplate); // Register DOM constants, attributes and operations. V8DOMConfiguration::installAccessors(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, V8DocumentAccessors, WTF_ARRAY_LENGTH(V8DocumentAccessors)); V8DOMConfiguration::installMethods(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, V8DocumentMethods, WTF_ARRAY_LENGTH(V8DocumentMethods)); if (RuntimeEnabledFeatures::auxclickEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessoronauxclickConfiguration = \ {"onauxclick", DocumentV8Internal::onauxclickAttributeGetterCallback, DocumentV8Internal::onauxclickAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronauxclickConfiguration); } if (RuntimeEnabledFeatures::corsRFC1918Enabled()) { const V8DOMConfiguration::AccessorConfiguration accessoraddressSpaceConfiguration = \ {"addressSpace", DocumentV8Internal::addressSpaceAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoraddressSpaceConfiguration); } if (RuntimeEnabledFeatures::experimentalContentSecurityPolicyFeaturesEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessoronsecuritypolicyviolationConfiguration = \ {"onsecuritypolicyviolation", DocumentV8Internal::onsecuritypolicyviolationAttributeGetterCallback, DocumentV8Internal::onsecuritypolicyviolationAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronsecuritypolicyviolationConfiguration); } if (RuntimeEnabledFeatures::fullscreenUnprefixedEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessorfullscreenElementConfiguration = \ {"fullscreenElement", DocumentV8Internal::fullscreenElementAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorfullscreenElementConfiguration); const V8DOMConfiguration::AccessorConfiguration accessorfullscreenEnabledConfiguration = \ {"fullscreenEnabled", DocumentV8Internal::fullscreenEnabledAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorfullscreenEnabledConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronfullscreenchangeConfiguration = \ {"onfullscreenchange", DocumentV8Internal::onfullscreenchangeAttributeGetterCallback, DocumentV8Internal::onfullscreenchangeAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronfullscreenchangeConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronfullscreenerrorConfiguration = \ {"onfullscreenerror", DocumentV8Internal::onfullscreenerrorAttributeGetterCallback, DocumentV8Internal::onfullscreenerrorAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronfullscreenerrorConfiguration); } if (RuntimeEnabledFeatures::pointerEventEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessoronpointercancelConfiguration = \ {"onpointercancel", DocumentV8Internal::onpointercancelAttributeGetterCallback, DocumentV8Internal::onpointercancelAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointercancelConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointerdownConfiguration = \ {"onpointerdown", DocumentV8Internal::onpointerdownAttributeGetterCallback, DocumentV8Internal::onpointerdownAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointerdownConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointerenterConfiguration = \ {"onpointerenter", DocumentV8Internal::onpointerenterAttributeGetterCallback, DocumentV8Internal::onpointerenterAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointerenterConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointerleaveConfiguration = \ {"onpointerleave", DocumentV8Internal::onpointerleaveAttributeGetterCallback, DocumentV8Internal::onpointerleaveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointerleaveConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointermoveConfiguration = \ {"onpointermove", DocumentV8Internal::onpointermoveAttributeGetterCallback, DocumentV8Internal::onpointermoveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointermoveConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointeroutConfiguration = \ {"onpointerout", DocumentV8Internal::onpointeroutAttributeGetterCallback, DocumentV8Internal::onpointeroutAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointeroutConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointeroverConfiguration = \ {"onpointerover", DocumentV8Internal::onpointeroverAttributeGetterCallback, DocumentV8Internal::onpointeroverAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointeroverConfiguration); const V8DOMConfiguration::AccessorConfiguration accessoronpointerupConfiguration = \ {"onpointerup", DocumentV8Internal::onpointerupAttributeGetterCallback, DocumentV8Internal::onpointerupAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessoronpointerupConfiguration); } if (RuntimeEnabledFeatures::setRootScrollerEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessorrootScrollerConfiguration = \ {"rootScroller", DocumentV8Internal::rootScrollerAttributeGetterCallback, DocumentV8Internal::rootScrollerAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorrootScrollerConfiguration); } if (RuntimeEnabledFeatures::touchEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessorontouchcancelConfiguration = \ {"ontouchcancel", DocumentV8Internal::ontouchcancelAttributeGetterCallback, DocumentV8Internal::ontouchcancelAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorontouchcancelConfiguration); const V8DOMConfiguration::AccessorConfiguration accessorontouchendConfiguration = \ {"ontouchend", DocumentV8Internal::ontouchendAttributeGetterCallback, DocumentV8Internal::ontouchendAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorontouchendConfiguration); const V8DOMConfiguration::AccessorConfiguration accessorontouchmoveConfiguration = \ {"ontouchmove", DocumentV8Internal::ontouchmoveAttributeGetterCallback, DocumentV8Internal::ontouchmoveAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorontouchmoveConfiguration); const V8DOMConfiguration::AccessorConfiguration accessorontouchstartConfiguration = \ {"ontouchstart", DocumentV8Internal::ontouchstartAttributeGetterCallback, DocumentV8Internal::ontouchstartAttributeSetterCallback, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::None), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorontouchstartConfiguration); } if (RuntimeEnabledFeatures::webAnimationsAPIEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessortimelineConfiguration = \ {"timeline", DocumentV8Internal::timelineAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessortimelineConfiguration); } if (RuntimeEnabledFeatures::suboriginsEnabled()) { const V8DOMConfiguration::AccessorConfiguration accessorsuboriginConfiguration = \ {"suborigin", DocumentV8Internal::suboriginAttributeGetterCallback, 0, 0, 0, 0, v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly), V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype, V8DOMConfiguration::CheckHolder}; V8DOMConfiguration::installAccessor(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, accessorsuboriginConfiguration); } if (RuntimeEnabledFeatures::touchEnabled()) { const V8DOMConfiguration::MethodConfiguration createTouchMethodConfiguration = {"createTouch", DocumentV8Internal::createTouchMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}; V8DOMConfiguration::installMethod(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, createTouchMethodConfiguration); } if (RuntimeEnabledFeatures::touchEnabled()) { const V8DOMConfiguration::MethodConfiguration createTouchListMethodConfiguration = {"createTouchList", DocumentV8Internal::createTouchListMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}; V8DOMConfiguration::installMethod(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, createTouchListMethodConfiguration); } if (RuntimeEnabledFeatures::fullscreenUnprefixedEnabled()) { const V8DOMConfiguration::MethodConfiguration exitFullscreenMethodConfiguration = {"exitFullscreen", DocumentV8Internal::exitFullscreenMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}; V8DOMConfiguration::installMethod(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, exitFullscreenMethodConfiguration); } if (RuntimeEnabledFeatures::dOMConvenienceAPIEnabled()) { const V8DOMConfiguration::MethodConfiguration prependMethodConfiguration = {"prepend", DocumentV8Internal::prependMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}; V8DOMConfiguration::installMethod(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, prependMethodConfiguration); } if (RuntimeEnabledFeatures::dOMConvenienceAPIEnabled()) { const V8DOMConfiguration::MethodConfiguration appendMethodConfiguration = {"append", DocumentV8Internal::appendMethodCallback, 0, 0, v8::None, V8DOMConfiguration::ExposedToAllScripts, V8DOMConfiguration::OnPrototype}; V8DOMConfiguration::installMethod(isolate, world, instanceTemplate, prototypeTemplate, interfaceTemplate, signature, appendMethodConfiguration); } } v8::Local<v8::FunctionTemplate> V8Document::domTemplate(v8::Isolate* isolate, const DOMWrapperWorld& world) { return V8DOMConfiguration::domClassTemplate(isolate, world, const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), installV8DocumentTemplate); } bool V8Document::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) { return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Value); } v8::Local<v8::Object> V8Document::findInstanceInPrototypeChain(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) { return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); } Document* V8Document::toImplWithTypeCheck(v8::Isolate* isolate, v8::Local<v8::Value> value) { return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)) : nullptr; } void V8Document::preparePrototypeAndInterfaceObject(v8::Local<v8::Context> context, const DOMWrapperWorld& world, v8::Local<v8::Object> prototypeObject, v8::Local<v8::Function> interfaceObject, v8::Local<v8::FunctionTemplate> interfaceTemplate) { v8::Isolate* isolate = context->GetIsolate(); v8::Local<v8::Name> unscopablesSymbol(v8::Symbol::GetUnscopables(isolate)); v8::Local<v8::Object> unscopeables; if (v8CallBoolean(prototypeObject->HasOwnProperty(context, unscopablesSymbol))) unscopeables = prototypeObject->Get(context, unscopablesSymbol).ToLocalChecked().As<v8::Object>(); else unscopeables = v8::Object::New(isolate); if (RuntimeEnabledFeatures::dOMConvenienceAPIEnabled()) { unscopeables->CreateDataProperty(context, v8AtomicString(isolate, "append"), v8::True(isolate)).FromJust(); } if (RuntimeEnabledFeatures::dOMConvenienceAPIEnabled()) { unscopeables->CreateDataProperty(context, v8AtomicString(isolate, "prepend"), v8::True(isolate)).FromJust(); } prototypeObject->CreateDataProperty(context, unscopablesSymbol, unscopeables).FromJust(); } bool V8Document::PrivateScript::transformDocumentToTreeViewMethod(LocalFrame* frame, Document* holderImpl, String noStyleMessage) { if (!frame) return false; v8::HandleScope handleScope(toIsolate(frame)); ScriptForbiddenScope::AllowUserAgentScript script; ScriptState* scriptState = ScriptState::forWorld(frame, DOMWrapperWorld::privateScriptIsolatedWorld()); if (!scriptState) return false; ScriptState* scriptStateInUserScript = ScriptState::forMainWorld(frame); if (!scriptStateInUserScript) return false; ScriptState::Scope scope(scriptState); v8::Local<v8::Value> holder = toV8(holderImpl, scriptState->context()->Global(), scriptState->isolate()); if (holder.IsEmpty()) return false; v8::Local<v8::Value> noStyleMessageHandle = v8String(scriptState->isolate(), noStyleMessage); v8::Local<v8::Value> argv[] = { noStyleMessageHandle }; ExceptionState exceptionState(ExceptionState::ExecutionContext, "transformDocumentToTreeView", "Document", scriptState->context()->Global(), scriptState->isolate()); v8::Local<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState, scriptStateInUserScript, "Document", "transformDocumentToTreeView", holder, 1, argv); if (v8Value.IsEmpty()) return false; RELEASE_ASSERT(!exceptionState.hadException()); return true; } } // namespace blink
[ "dckristiono@gmail.com" ]
dckristiono@gmail.com
4782757bc6f87fa979590744de52b38f525e4c24
d331d36eb3d87a6dc7180d6c0552c3eb289aa2c4
/src/libev3.cpp
e72bb00bec828ca642f243435ba422e1b699bfd5
[ "MIT" ]
permissive
lanen/libev_example
ef8e14b0851c80a98a1f12bdf8eb04359ab55b4f
582bfe1c0dddc4a25ec8472b438a7ed1216006c3
refs/heads/master
2021-01-21T11:19:29.845291
2017-03-06T07:34:50
2017-03-06T07:34:50
83,557,200
0
0
null
null
null
null
UTF-8
C++
false
false
750
cpp
#include <stdcfg.hpp> #include <stdio.h> #include <ev.h> static void stdin_cb (struct ev_loop * loop, ev_io *w, int revents) { puts ("stdin ready"); // for one-shot events, one must manually stop the watcher // with its corresponding stop function. ev_io_stop (EV_A_ w); // this causes all nested ev_run's to stop iterating //ev_break (EV_A_ EVBREAK_ALL); } int main(int argc, char** argv){ struct ev_loop *loop = ev_loop_new( EVFLAG_AUTO ); // struct ev_loop *loop = EV_DEFAULT; ev_io stdin_watcher; ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ); ev_io_start (loop, &stdin_watcher); ev_run (loop, 0); // ev_tstamp ts=ev_time(); // printf("current time %D", ts); return 0; }
[ "cppmain@gmail.com" ]
cppmain@gmail.com
910589b1ac67ca5d15d405506f7aee392b1e906b
3649dab9ded12dbf9bfeaf10fac7f8c0ac40344b
/controleur/PiloteMoteur.cpp
09d09134010537b19a115f266f4b6a91eba7ecef
[]
no_license
Path000/Hector
97bd136292043533265639c26bd2c9a5466d198d
1ec6ea1aa8a4d9bd9c408b7f27a5d2d3c3c28891
refs/heads/master
2021-01-11T21:25:56.371070
2019-01-26T10:45:10
2019-01-26T10:45:10
78,783,699
2
0
null
null
null
null
UTF-8
C++
false
false
1,296
cpp
#include "PiloteMoteur.h" void PiloteMoteur::init(byte pinDir, byte pinPWM, String whoami) { _pinDir = pinDir; _pinPWM = pinPWM; _whoami = whoami; pinMode(_pinDir, OUTPUT); pinMode(_pinPWM, OUTPUT); setCommand(0); stop(); } void PiloteMoteur::setCommand(int command) { if(command >= 0) { digitalWrite(_pinDir, HIGH); } else { digitalWrite(_pinDir, LOW); } _setpoint = abs(command); //Serial.print(_whoami); //Serial.print(": cmd:"); //Serial.println(_setpoint); } // TODO mesuer la vitesse à 255 au démarrage du robot void PiloteMoteur::update(unsigned int vitesseMesuree, unsigned int duration) { Serial.print(vitesseMesuree, DEC); Serial.print(","); Serial.println(_setpoint, DEC); float output = (float)_setpoint * 255.0 / 280.0; // PWM 100% -> 280 fronts/100ms if( duration < 3000) { // On accélère sur 3s de 0 à output output = output * duration / 3000; } else { // On gère une correction proportionnelle basée sur l'erreur float errorRatio = 0; if(_setpoint > 0) { errorRatio = (_setpoint - vitesseMesuree) / _setpoint * 255.0 / 280.0; } output = output + (output * errorRatio); } byte command = constrain((int)output, 0, 255); analogWrite(_pinPWM, command); } void PiloteMoteur::stop() { analogWrite(_pinPWM, 0); }
[ "loic@MBP-Loic.local" ]
loic@MBP-Loic.local
c7f1e02c4e9cbb9b90402eeb86ab46797fc78ee4
37b1033a25bb67b01c360b0e067f78e9434f9044
/motion_capture/src/video_recorder.cpp
2bb8c6e963b3c44b3bcfdc5613fb915033695f14
[]
no_license
wangsd01/motion_capture
3c8d95c9a802657db1c45d7c00c114c0896da3f4
4a6ea49ef730929b9e78873535ab05184052d55d
refs/heads/master
2020-04-11T01:09:45.795427
2018-12-11T23:33:33
2018-12-11T23:33:33
161,407,274
0
0
null
null
null
null
UTF-8
C++
false
false
6,208
cpp
/**************************************************************************** * Software License Agreement (Apache License) * * Copyright (C) 2012-2013 Open Source Robotics 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. * *****************************************************************************/ #include <opencv2/highgui/highgui.hpp> #include <ros/ros.h> #include <sensor_msgs/image_encodings.h> #include <cv_bridge/cv_bridge.h> #include <image_transport/image_transport.h> #include <camera_calibration_parsers/parse.h> #if CV_MAJOR_VERSION == 3 #include <opencv2/videoio.hpp> #endif namespace enc = sensor_msgs::image_encodings; int g_count = 0; std::string encoding; std::string codec; int fps; std::string filename; double min_depth_range; double max_depth_range; bool use_dynamic_range; int colormap; void callback(const sensor_msgs::ImageConstPtr &image_msg, cv::VideoWriter &outputVideo, ros::Time &last_wrote_time, std::string encoding, std::string filename) { if (!outputVideo.isOpened()) { cv::Size size(image_msg->width, image_msg->height); outputVideo.open(filename, #if CV_MAJOR_VERSION == 3 cv::VideoWriter::fourcc(codec.c_str()[0], #else CV_FOURCC(codec.c_str()[0], #endif codec.c_str()[1], codec.c_str()[2], codec.c_str()[3]), fps, size, true); if (!outputVideo.isOpened()) { ROS_ERROR("Could not create the output video! Check filename and/or support for codec."); exit(-1); } ROS_INFO_STREAM("Starting to record " << codec << " video at " << size << "@" << fps << "fps. Press Ctrl+C to stop recording."); } if ((image_msg->header.stamp - last_wrote_time) < ros::Duration(1 / fps)) { // Skip to get video with correct fps return; } try { cv_bridge::CvImageConstPtr cv_ptr; if (enc::isColor(image_msg->encoding)) { std::cout << "color image got!" << std::endl; cv_bridge::CvtColorForDisplayOptions options; options.do_dynamic_scaling = use_dynamic_range; options.min_image_value = min_depth_range; options.max_image_value = max_depth_range; options.colormap = colormap; cv_ptr = cv_bridge::cvtColorForDisplay(cv_bridge::toCvShare(image_msg), encoding, options); } else { std::cout << "depth image got!" << std::endl; cv_ptr = cv_bridge::cvtColorForDisplay(cv_bridge::toCvShare(image_msg)); } const cv::Mat image = cv_ptr->image; if (!image.empty()) { outputVideo << image; ROS_INFO_STREAM("Recording frame " << g_count << "\x1b[1F"); g_count++; last_wrote_time = image_msg->header.stamp; } else { ROS_WARN("Frame skipped, no data!"); } } catch (cv_bridge::Exception) { ROS_ERROR("Unable to convert %s image to %s", image_msg->encoding.c_str(), encoding.c_str()); return; } } int main(int argc, char **argv) { ros::init(argc, argv, "video_recorder", ros::init_options::AnonymousName); ros::NodeHandle nh; ros::NodeHandle local_nh("~"); local_nh.param("filename", filename, std::string("output.avi")); bool stamped_filename; local_nh.param("stamped_filename", stamped_filename, false); local_nh.param("fps", fps, 15); local_nh.param("codec", codec, std::string("MJPG")); local_nh.param("encoding", encoding, std::string("bgr8")); // cv_bridge::CvtColorForDisplayOptions local_nh.param("min_depth_range", min_depth_range, 0.0); local_nh.param("max_depth_range", max_depth_range, 0.0); local_nh.param("use_dynamic_depth_range", use_dynamic_range, false); local_nh.param("colormap", colormap, -1); if (stamped_filename) { std::size_t found = filename.find_last_of("/\\"); std::string path = filename.substr(0, found + 1); std::string basename = filename.substr(found + 1); std::stringstream ss; ss << ros::Time::now().toNSec() << basename; filename = path + ss.str(); ROS_INFO("Video recording to %s", filename.c_str()); } if (codec.size() != 4) { ROS_ERROR("The video codec must be a FOURCC identifier (4 chars)"); exit(-1); } image_transport::ImageTransport it(nh); std::string color_img_topic = nh.resolveName("/camera/color/image_raw"); cv::VideoWriter output_color_video; ros::Time color_last_wrote_time = ros::Time(0); std::string color_encoding("bgr8"); image_transport::Subscriber sub_color_image = it.subscribe(color_img_topic, 1, boost::bind(callback, _1, output_color_video, color_last_wrote_time, color_encoding, "color.avi")); ROS_INFO_STREAM("Waiting for topic " << color_img_topic << "..."); std::string depth_img_topic = nh.resolveName("/camera/aligned_depth_to_color/image_raw"); cv::VideoWriter output_depth_video; ros::Time depth_last_wrote_time = ros::Time(0); std::string depth_encoding(""); image_transport::Subscriber sub_depth_image = it.subscribe(depth_img_topic, 1, boost::bind(callback, _1, output_depth_video, depth_last_wrote_time, depth_encoding, "depth.avi")); ROS_INFO_STREAM("Waiting for topic " << depth_img_topic << "..."); ros::spin(); std::cout << "\nStopped!" << std::endl; }
[ "kun.wang2012@rutgers.edu" ]
kun.wang2012@rutgers.edu
ee1a4829c70b2d08efb6aa04683bf64b064f9200
14582f8c74c28d346399f877b9957d0332ba1c3c
/branches/pstade_1_03_5_head/pstade_subversive/pstade/junk/result_of_const.hpp
aba8f5616143cf5460a8fa289d3b23547210a370
[]
no_license
svn2github/p-stade
c7b421be9eeb8327ddd04d3cb36822ba1331a43e
909b46567aa203d960fe76055adafc3fdc48e8a5
refs/heads/master
2016-09-05T22:14:09.460711
2014-08-22T08:16:11
2014-08-22T08:16:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,644
hpp
#ifndef BOOST_PP_IS_ITERATING #ifndef PSTADE_RESULT_OF_CONST_HPP #define PSTADE_RESULT_OF_CONST_HPP // PStade.Wine // // Copyright Shunsuke Sogame 2005-2007. // 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) // What: // // 'boost::result_of<const function-pointer(..)>' doesn't work. // It seems a bug, but IMO, function behavior should not be affected by 'const'. // Thus, this is a pending issue. #include <boost/preprocessor/iteration/iterate.hpp> #include <boost/preprocessor/repetition/enum_params.hpp> #include <boost/utility/result_of.hpp> #define PSTADE_RESULT_OF_CONST_NEEDS_WORKAROUND namespace pstade { template<class FunCall> struct result_of_const; // 0ary template<class Fun> struct result_of_const<Fun(void)> : #if !defined(PSTADE_RESULT_OF_CONST_NEEDS_WORKAROUND) boost::result_of<Fun const()> #else boost::result_of<Fun()> #endif { }; // 1ary- #define BOOST_PP_ITERATION_PARAMS_1 (3, (1, BOOST_RESULT_OF_NUM_ARGS, <pstade/result_of_const.hpp>)) #include BOOST_PP_ITERATE() } // namespace pstade #endif #else #define n BOOST_PP_ITERATION() template<class Fun, BOOST_PP_ENUM_PARAMS(n, class A)> struct result_of_const<Fun(BOOST_PP_ENUM_PARAMS(n, A))> : #if !defined(PSTADE_RESULT_OF_CONST_NEEDS_WORKAROUND) boost::result_of<Fun const(BOOST_PP_ENUM_PARAMS(n, A))> #else boost::result_of<Fun(BOOST_PP_ENUM_PARAMS(n, A))> #endif { }; #undef n #endif
[ "mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec" ]
mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec
0de3eef663f0a37f567f4193872f8e809d9fcaee
559207eb5beae4ba9fd638d19bd3009cbe3a6d11
/src/net/instaweb/util/file_system_lock_manager.cc
b2b71a1ca2d991260ca2ae3045d78b494c665b2d
[ "Apache-2.0" ]
permissive
voku/mod-spdy
2a8989668fe0c0f0de48c0b7ecd85b5b5b554ed1
bcfb388cbc5415ee660c2b5dbcf61f6f43c2a5ca
refs/heads/master
2023-04-05T09:50:46.847114
2015-03-19T17:58:09
2015-03-19T17:58:09
32,537,692
0
0
NOASSERTION
2023-04-04T01:40:41
2015-03-19T17:56:26
C++
UTF-8
C++
false
false
3,103
cc
/* * Copyright 2010 Google Inc. * * 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. */ // Author: jmaessen@google.com (Jan Maessen) #include "net/instaweb/util/public/file_system_lock_manager.h" #include "net/instaweb/util/public/basictypes.h" #include "net/instaweb/util/public/file_system.h" #include "net/instaweb/util/public/scheduler_based_abstract_lock.h" #include "net/instaweb/util/public/string.h" #include "net/instaweb/util/public/string_util.h" namespace net_instaweb { class MessageHandler; class Scheduler; class FileSystemLock : public SchedulerBasedAbstractLock { public: virtual ~FileSystemLock() { if (held_) { Unlock(); } } virtual bool TryLock() { bool result = false; if (manager_->file_system()-> TryLock(name_, manager_->handler()).is_true()) { held_ = result = true; } return result; } virtual bool TryLockStealOld(int64 timeout_ms) { bool result = false; if (manager_->file_system()-> TryLockWithTimeout(name_, timeout_ms, manager_->handler()).is_true()) { held_ = result = true; } return result; } virtual void Unlock() { held_ = !manager_->file_system()->Unlock(name_, manager_->handler()); } virtual GoogleString name() { return name_; } virtual bool Held() { return held_; } protected: virtual Scheduler* scheduler() const { return manager_->scheduler(); } private: friend class FileSystemLockManager; // ctor should only be called by CreateNamedLock below. FileSystemLock(const StringPiece& name, FileSystemLockManager* manager) : name_(name.data(), name.size()), manager_(manager), held_(false) { } GoogleString name_; FileSystemLockManager* manager_; // The held_ field contains an approximation to whether the lock is locked or // not. If we believe the lock to be locked, we will unlock on destruction. // We therefore try to conservatively leave it "true" when we aren't sure. bool held_; DISALLOW_COPY_AND_ASSIGN(FileSystemLock); }; FileSystemLockManager::FileSystemLockManager( FileSystem* file_system, const StringPiece& base_path, Scheduler* scheduler, MessageHandler* handler) : file_system_(file_system), base_path_(base_path.as_string()), scheduler_(scheduler), handler_(handler) { EnsureEndsInSlash(&base_path_); } FileSystemLockManager::~FileSystemLockManager() { } NamedLock* FileSystemLockManager::CreateNamedLock(const StringPiece& name) { return new FileSystemLock(StrCat(base_path_, name), this); } } // namespace net_instaweb
[ "ptrck@blck.io" ]
ptrck@blck.io
e1caa00049782ddb48706f736d24cd47b642ca6d
172fdc531f4ab2fad00ebdaf3ab36b7b81ed376e
/dueric_summativesdl/GridTile.h
f19f7101983c4eb8db9f5705d0c906f2acf6f47f
[]
no_license
eric-zdw/dueric_summative-sdl-git
c0bab498a502c456a029a119fa419ee11b608812
b78842593e2457f1bc2926d592ee5e37ff025f46
refs/heads/master
2020-05-30T23:23:39.764960
2019-02-18T00:20:20
2019-02-18T00:20:20
60,701,411
0
0
null
null
null
null
UTF-8
C++
false
false
407
h
#pragma once #include <SDL.h> #include <SDL_image.h> #include <string> class GridTile { private: const int GRID_WIDTH = 64; const int GRID_HEIGHT = 64; SDL_Texture* gridTexture; SDL_Surface* surface; std::string path; SDL_Rect renderSpace; int posX, posY; int offPosX, offPosY; public: GridTile(SDL_Renderer*); void render(SDL_Renderer*, int, int); void setPosX(int); void setPosY(int); };
[ "eric.zdw@gmail.com" ]
eric.zdw@gmail.com
2321b489fd6e218fa1b2a17169eab5a7600b6260
22ffe1203a95cf23d42307d6741e654c5507a5bd
/thread/repeating_task.cc
262cac19513359b565c15b248829fa2c9495a1f6
[]
no_license
boss-li/quick
87adad728788734187847d743afc911f438d6674
4037876cad64c541490ac4a6bc8cfc52f10aa8e2
refs/heads/master
2023-07-13T07:02:51.644786
2021-08-27T01:05:55
2021-08-27T01:05:55
400,380,625
3
1
null
null
null
null
GB18030
C++
false
false
1,768
cc
#include "repeating_task.h" #include "to_queued_task.h" #include "utility.h" #include <limits> #include <algorithm> #include <iostream> namespace dd { inline bool IsPlusInfinity(int64_t v) { // windows下定义了max min的宏,为了避免冲突所以这样写 return v == (std::numeric_limits<int64_t>::max)(); } RepeatingTaskBase::RepeatingTaskBase(TaskQueueBase* task_queue, int64_t first_delay) : _task_queue(task_queue), _next_run_time(GetCurrentTick() + first_delay) {} RepeatingTaskBase::~RepeatingTaskBase() = default; bool RepeatingTaskBase::Run() { if (IsPlusInfinity(_next_run_time)) return true; auto delay = RunClosure(); if (IsPlusInfinity(_next_run_time)) return true; uint64_t lost_time = GetCurrentTick() - _next_run_time; _next_run_time += delay; delay -= lost_time; delay = delay > 0 ? delay : 0;// (std::max)(delay, 0); _task_queue->PostDelayedTask(std::unique_ptr<RepeatingTaskBase>(this), delay); return false; } void RepeatingTaskBase::Stop() { _next_run_time = (std::numeric_limits<int64_t>::max)(); } RepeatingTaskHandle::RepeatingTaskHandle(RepeatingTaskHandle&& other) : _repeating_task(other._repeating_task) { other._repeating_task = nullptr; } RepeatingTaskHandle& RepeatingTaskHandle::operator=(RepeatingTaskHandle&& other) { _repeating_task = other._repeating_task; other._repeating_task = nullptr; return *this; } RepeatingTaskHandle::RepeatingTaskHandle( RepeatingTaskBase* repeating_task) : _repeating_task(repeating_task) {} void RepeatingTaskHandle::Stop() { if (_repeating_task) { _repeating_task->Stop(); _repeating_task = nullptr; } } bool RepeatingTaskHandle::Running()const { return _repeating_task != nullptr; } }// namespace dd
[ "460775150@qq.com" ]
460775150@qq.com
f91ef1ee797e11248a62204694455a399ec13f2c
cead36171ee5329b43b0da68e41aa3fca2b039c3
/src/Menu.cpp
dff0783b4c0e04432af0e7c0ff07f9be3e014878
[]
no_license
vardakisDev/Domes
942b91ceac43ffb3071c23488ac7c2cda34d9e7a
76dc7b9040e6d3efc5afde241f74997c4df74a01
refs/heads/master
2022-06-17T22:39:51.978000
2020-05-16T11:48:12
2020-05-16T11:48:12
260,748,317
0
0
null
null
null
null
UTF-8
C++
false
false
1,071
cpp
#include "../headers/Menu.h" #include <iostream> using namespace std; void Menu::InformUser() { cout << "\n This app simulates a possible tracking app that uses the gps singals from your devide. This app doesnt track any of your movements or store them in anyway."; cout << "\n Every movement is random generated by rand using the RandomWaypoint model"; } void Menu::PrintMenu() { cout << "\n -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------"; cout << "\n Menu"; cout << "\n Start The Tracking Proccess...\n"; } void Menu::PromtForSimulation() { cout << "\n User has to be informed please go check your Goverment Health Administration"; } void Menu::PromtForFunctions() { cout << "\n Choose from the above menu: "; cout << "\n 1.Find possible hotspots"; cout << "\n 2.Continue to the next day"; cout << "\n 3.Dont promt again and run simulation till the end"; cout << "\n 4 . Exit the programm"; }
[ "vardakisdev@gmail.com" ]
vardakisdev@gmail.com
af64d4e3126084cb92b10d283968b1533c76ac93
c3865d4902501314b25f3c9f63e45456f6f22cad
/include/systems/DataGraphicDisplayer.hpp
c338d9388bb04feebe61ba5671ee83b7e014c960
[]
no_license
dwarfman78/cryptobot
610f976838f53c879d2a5c61c5c827af9a020810
c00b82fc690baa61248b2d7968a4b15dbf4cf812
refs/heads/master
2023-07-27T11:11:20.200119
2021-09-12T20:12:30
2021-09-12T20:12:30
398,643,984
0
0
null
null
null
null
UTF-8
C++
false
false
1,765
hpp
// // Created by dwarf on 18/07/2021. // #ifndef CRYPTOBOT_DATAGRAPHICDISPLAYER_HPP #define CRYPTOBOT_DATAGRAPHICDISPLAYER_HPP #include "../Common.hpp" #include "../components/Data.hpp" #include "../components/GuiEvent.hpp" class DataGraphicDisplayer : public entityx::System<DataGraphicDisplayer> { public: void configure(entityx::EntityManager &es, entityx::EventManager &events); void update(entityx::EntityManager &es, entityx::EventManager &events,entityx::TimeDelta dt); private: float mCumulDeltaT=0.f; chaiscript::ChaiScript mChai; void displayGraphs(entityx::EntityManager &es); void displayKeywords(entityx::EntityManager &es,entityx::EventManager& em); void displayDataTable(entityx::EntityManager &es); void displayOptions(entityx::EntityManager &es, entityx::EventManager &events) const; void displaySearch(entityx::EntityManager &entityManager, entityx::EventManager &events); void displayLinearRegression(std::vector<double>& vectorX, std::pair<double,double>& pairAB); void displayHiLows(Data& data, const std::string& symbol, unsigned int offset) const; void displayTrendingChanges(Data& data, const std::string& symbol, unsigned int offset) const; static bool mFilterByKeyWord; static bool mShowOnlyAccPos; static bool mCalculateLinearRegression; static bool mCalculateMinAndMax; std::vector<std::tuple<std::string,double,double,ImVec4,ImVec4>> mDisplayVector; std::map<std::string,std::vector<std::pair<double,double>>> mDisplayByTokenName; Json::Value mGeckoTrendingJson; std::set<std::pair<unsigned int,std::string>,TrendingTokenComp> mTrendingTokens; static std::string mRegexpFilter; }; #endif //CRYPTOBOT_DATAGRAPHICDISPLAYER_HPP
[ "dwarf@dwarfman.fr" ]
dwarf@dwarfman.fr
97878855a7a14a2de742d1dc955c6f831b269289
b902d1a65dbdc780936694eb3704cbe81e124f26
/Opt/HRSOptUID.h
10ebfbe7e12eed8ef2b7f8603d85d459f5ad7cd1
[]
no_license
Jiansiyu/PRexCRex_HRSOpt
69e99d5fedaa2714ad90a1d06bd1001b58892948
01c14aeb4310dedcbd4eb98a53a3b95621671586
refs/heads/master
2023-08-17T18:32:31.835571
2021-01-15T23:25:26
2021-01-15T23:25:26
265,965,146
0
0
null
null
null
null
UTF-8
C++
false
false
754
h
/* * HRSOptUID.h * * Created on: Nov 7, 2019 * Author: newdriver */ #ifndef HRSOPTUID_H_ #define HRSOPTUID_H_ #include <TROOT.h> #include <TVector3.h> namespace HRSOpt{ const UInt_t NSieveRow = 7; const UInt_t NSieveCol = 13; inline const UInt_t GetMomID(const UInt_t uid) { return uid/(NSieveRow *(NSieveCol+1)); } inline const UInt_t GetRowID(const UInt_t uid){ auto res=uid %(NSieveRow *(NSieveCol+1)); const auto Row= res%NSieveRow; return Row; } inline const UInt_t GetColID(const UInt_t uid){ auto res=uid %(NSieveRow *(NSieveCol+1)); const auto Col= res / NSieveRow; return Col; } inline const TVector3 GetSievePosTCS(const UInt_t Row, const UInt_t Col){ return TVector3(0.0,0.0,0.0); } } #endif /* HRSOPTUID_H_ */
[ "jiansiyu@gmail.com" ]
jiansiyu@gmail.com
dd2051cc6c217d2c6b4dc03a8e1b4c9f0119f4ff
5e166ba9964663b3b988f0615003b118fa001496
/src/plugins/stock_strategy/stock_proto_buf.h
9952f5438536b44f196816af2885381dfb589dd2
[ "Apache-2.0" ]
permissive
smartdata-x/strade
73242d9590a4ac9be78aee5271a9028cd671f007
3c12eb6df81edc598df0a7146ad7d9a4f20d2685
refs/heads/master
2021-04-29T08:16:08.604361
2017-03-22T02:46:58
2017-03-22T02:46:58
77,651,574
0
5
null
2017-03-22T02:46:59
2016-12-30T01:46:28
C++
UTF-8
C++
false
false
12,884
h
// Copyright (c) 2015-2015 The george Authors. All rights reserved. // Created on: 2016年5月21日 Author: kerry #ifndef GEORGE_VIP_PROTO_BUF_H__ #define GEORGE_VIP_PROTO_BUF_H__ #include "basic/basictypes.h" #include "logic/base_values.h" #include "net/proto_buf.h" #include <list> #include <string> namespace stock_logic { namespace net_request { class VIPNews : public george_logic::PacketHead { public: VIPNews() { uid_ = pos_ = count_ = NULL; token_ = NULL; } ~VIPNews() { if (uid_) { delete uid_; uid_ = NULL; } if (token_) { delete token_; token_ = NULL; } if (pos_) { delete pos_; pos_ = NULL; } if (count_) { delete count_; count_ = NULL; } } virtual void set_http_packet(base_logic::DictionaryValue* value); void set_uid(const int64 uid) { uid_ = new base_logic::FundamentalValue(uid); } void set_token(const std::string& token) { token_ = new base_logic::StringValue(token); } void set_pos(const int32 pos) { pos_ = new base_logic::FundamentalValue(pos); } void set_count(const int32 count) { count_ = new base_logic::FundamentalValue(count); } public: base_logic::FundamentalValue* uid_; base_logic::StringValue* token_; base_logic::FundamentalValue* pos_; base_logic::FundamentalValue* count_; }; } namespace net_reply { class VIPNews { public: VIPNews() { article_type_ = NULL; vid_ = aid_ = article_time_ = NULL; name_ = title_ = article_source_ = NULL; value_ = NULL; } void set_vid(const int64 vid) { vid_ = new base_logic::FundamentalValue(vid); } void set_aid(const int64 aid) { aid_ = new base_logic::FundamentalValue(aid); } void set_name(const std::string& name) { name_ = new base_logic::StringValue(name); } void set_title(const std::string& title) { title_ = new base_logic::StringValue(title); } void set_article_source(const std::string& article_source) { article_source_ = new base_logic::StringValue(article_source); } void set_article_time(const int64 article_time) { article_time_ = new base_logic::FundamentalValue(article_time); } ~VIPNews() { if (vid_) { delete vid_; vid_ = NULL; } if (aid_) { delete aid_; aid_ = NULL; } if (name_) { delete name_; name_ = NULL; } if (title_) { delete title_; title_ = NULL; } if (article_source_) { delete article_source_; article_source_ = NULL; } if (article_type_) { delete article_type_; article_type_ = NULL; } if (article_time_) { delete article_time_; article_time_ = NULL; } } base_logic::DictionaryValue* get() { value_ = new base_logic::DictionaryValue(); if (vid_ != NULL) value_->Set(L"vid", vid_); if (aid_ != NULL) value_->Set(L"aid", aid_); if (name_ != NULL) value_->Set(L"name", name_); if (title_ != NULL) value_->Set(L"title", title_); if (article_source_ != NULL) value_->Set(L"article_source", article_source_); if (article_type_ != NULL) value_->Set(L"article_type", article_type_); if (article_time_ != NULL) value_->Set(L"article_time", article_time_); return value_; } private: base_logic::FundamentalValue* vid_; base_logic::FundamentalValue* aid_; base_logic::StringValue* name_; base_logic::StringValue* title_; base_logic::StringValue* article_source_; base_logic::ListValue* article_type_; base_logic::FundamentalValue* article_time_; base_logic::DictionaryValue* value_; }; class VIPLimitData { public: VIPLimitData() { surged_stock_num_ = NULL; decline_stock_num_ = NULL; time_ = NULL; value_ = NULL; } void set_surged_stock_num(const int64 surged_stock_num) { surged_stock_num_ = new base_logic::FundamentalValue(surged_stock_num); } void set_decline_stock_num(const int64 decline_stock_num) { decline_stock_num_ = new base_logic::FundamentalValue(decline_stock_num); } void set_time(const int64 current_time) { time_ = new base_logic::FundamentalValue(current_time); } ~VIPLimitData() { /*if(surged_stock_num_) {delete surged_stock_num_; surged_stock_num_ = NULL;} if(decline_stock_num_) {delete decline_stock_num_; decline_stock_num_ = NULL;} if(time_) {delete time_; time_ = NULL;} if(value_) {delete value_; value_ = NULL;}*/ } base_logic::DictionaryValue* get() { value_ = new base_logic::DictionaryValue(); if (surged_stock_num_ != NULL) value_->Set(L"surged_stock_num", surged_stock_num_); if (decline_stock_num_ != NULL) value_->Set(L"decline_stock_num", decline_stock_num_); if (time_ != NULL) value_->Set(L"time", time_); return value_; } private: base_logic::FundamentalValue* surged_stock_num_; base_logic::FundamentalValue* decline_stock_num_; base_logic::FundamentalValue* time_; base_logic::DictionaryValue* value_; }; class STOIndustryData { public: STOIndustryData() { code_ = NULL; name_ = NULL; change_percent_ = NULL; volume_ = NULL; current_trade_ = NULL; date_ = NULL; open_ = NULL; high_ = NULL; close_ = NULL; low_ = NULL; support_ = NULL; pressure_ = NULL; day_yield_ = NULL; adjusted_day_yield_ = NULL; hs300_day_yield_ = NULL; hs300_adjusted_day_yield_ = NULL; month_init_price_ = NULL; month_init_date_ = NULL; qfq_close_ = NULL; time_ = NULL; visit_= NULL; value_ = NULL; } ~STOIndustryData() { /*if (NULL != code_) { delete code_; code_ = NULL; } if (NULL != name_) { delete name_; name_ = NULL; } if (NULL != change_percent_) { delete change_percent_; change_percent_ = NULL; } if (NULL != volume_) { delete volume_; volume_ = NULL; } if (NULL != current_trade_) { delete current_trade_; current_trade_ = NULL; } if (NULL != date_) { delete date_; date_ = NULL; } if (NULL != open_) { delete open_; open_ = NULL; } if (NULL != high_) { delete high_; high_ = NULL; } if (NULL != close_) { delete close_; close_ = NULL; } if (NULL != low_) { delete low_; low_ = NULL; } if (NULL != support_) { delete support_; support_ = NULL; } if (NULL != pressure_) { delete pressure_; pressure_ = NULL; } if (NULL != value_) { delete value_; value_ = NULL; }*/ } void set_code(std::string code) { code_ = new base_logic::StringValue(code); } void set_name(std::string name) { name_ = new base_logic::StringValue(name); } void set_change_percent(const double change_percent) { change_percent_ = new base_logic::FundamentalValue(change_percent); } void set_volume(double volume) { volume_ = new base_logic::FundamentalValue(volume); } void set_current_trade(double current_trade) { current_trade_ = new base_logic::FundamentalValue(current_trade); } base_logic::DictionaryValue* get() { value_ = new base_logic::DictionaryValue(); if (NULL != code_) value_->Set(L"code", code_); if (NULL != name_) value_->Set(L"name", name_); if (change_percent_ != NULL) value_->Set(L"change_percent", change_percent_); if (volume_ != NULL) value_->Set(L"volume", volume_); if (current_trade_ != NULL) value_->Set(L"current_trade", current_trade_); if (date_ != NULL) value_->Set(L"date", date_); if (open_ != NULL) value_->Set(L"open", open_); if (high_ != NULL) value_->Set(L"high", high_); if (close_ != NULL) value_->Set(L"close", close_); if (low_ != NULL) value_->Set(L"low", low_); if (support_ != NULL) value_->Set(L"support", support_); if (pressure_ != NULL) value_->Set(L"pressure", pressure_); if (day_yield_ != NULL) value_->Set(L"day_yield", day_yield_); if (visit_ != NULL) value_->Set(L"visit", visit_); if (hs300_day_yield_ != NULL) value_->Set(L"hs300_day_yield", hs300_day_yield_); if (hs300_adjusted_day_yield_ != NULL) value_->Set(L"hs300_adjusted_day_yield", hs300_adjusted_day_yield_); if (adjusted_day_yield_ != NULL) value_->Set(L"adjusted_day_yield", adjusted_day_yield_); if (month_init_price_ != NULL) value_->Set(L"month_init_price", month_init_price_); if (month_init_date_ != NULL) value_->Set(L"month_init_date", month_init_date_); if (qfq_close_ != NULL) value_->Set(L"qfq_close", qfq_close_); if (time_ != NULL) value_->Set(L"trade_time", time_); return value_; } void setClose(double close) { close_ = new base_logic::FundamentalValue(close); } void setDate(std::string date) { date_ = new base_logic::StringValue(date); } void setHigh(double high) { high_ = new base_logic::FundamentalValue(high); } void setLow(double low) { low_ = new base_logic::FundamentalValue(low); } void setOpen(double open) { open_ = new base_logic::FundamentalValue(open); } void setPressure(double pressure) { pressure_ = new base_logic::FundamentalValue(pressure); } void setSupport(double support) { support_ = new base_logic::FundamentalValue(support); } void setDayYield(double day_yield) { day_yield_ = new base_logic::FundamentalValue(day_yield); } void setVisit(int visit) { visit_ = new base_logic::FundamentalValue(visit); } void setAdjustedDayYield(double adjusted_day_yield) { adjusted_day_yield_ = new base_logic::FundamentalValue(adjusted_day_yield); } void setHS300DayYield(double hs300_day_yield) { hs300_day_yield_ = new base_logic::FundamentalValue(hs300_day_yield); } void setHS300AdjustedDayYield(double hs300_adjusted_day_yield) { hs300_adjusted_day_yield_ = new base_logic::FundamentalValue( hs300_adjusted_day_yield); } void setMonthInitPrice(double month_init_price) { month_init_price_ = new base_logic::FundamentalValue(month_init_price); } void setMonthInitDate(std::string month_init_date) { month_init_date_ = new base_logic::StringValue(month_init_date); } void setQfqClose(double qfq_close) { qfq_close_ = new base_logic::FundamentalValue(qfq_close); } void setTime(int32 trade_time) { time_ = new base_logic::FundamentalValue(trade_time); } private: base_logic::StringValue* code_; base_logic::StringValue* name_; base_logic::FundamentalValue* change_percent_; base_logic::FundamentalValue* volume_; base_logic::FundamentalValue* current_trade_; base_logic::StringValue* date_; base_logic::StringValue* month_init_date_; base_logic::FundamentalValue* open_; base_logic::FundamentalValue* high_; base_logic::FundamentalValue* close_; base_logic::FundamentalValue* low_; base_logic::FundamentalValue* support_; base_logic::FundamentalValue* pressure_; base_logic::FundamentalValue* day_yield_; base_logic::FundamentalValue* adjusted_day_yield_; base_logic::FundamentalValue* hs300_day_yield_; base_logic::FundamentalValue* hs300_adjusted_day_yield_; base_logic::FundamentalValue* month_init_price_; base_logic::FundamentalValue* qfq_close_; base_logic::FundamentalValue* time_; base_logic::FundamentalValue* visit_; base_logic::DictionaryValue* value_; }; class VIPNewsList : public george_logic::PacketHead { public: VIPNewsList() { list_ = new base_logic::ListValue; } virtual ~VIPNewsList() { //if (list_) {delete list_; list_ = NULL;} //if (body_value_) {delete body_value_; body_value_ = NULL;} } void set_vip_news(base_logic::Value* value) { list_->Append(value); } base_logic::ListValue*& get_list() { return list_; } base_logic::DictionaryValue* body() { if (NULL == body_value_) body_value_ = new base_logic::DictionaryValue(); body_value_->SetWithoutPathExpansion(L"list", list_); body_value_->SetInteger(L"count", list_->GetSize()); return body_value_; } void set_string_value(std::wstring key, std::string value) { if (NULL == body_value_) body_value_ = new base_logic::DictionaryValue(); body_value_->SetString(key, value); } void set_integer_value(std::wstring key, int32 value) { if (NULL == body_value_) body_value_ = new base_logic::DictionaryValue(); body_value_->SetInteger(key, value); } void set_double_value(std::wstring key, double value) { if (NULL == body_value_) body_value_ = new base_logic::DictionaryValue(); body_value_->SetReal(key, value); } void set_http_packet(base_logic::DictionaryValue* value) { } private: base_logic::ListValue* list_; }; } } #endif
[ "zjchuilunmei@gmail.com" ]
zjchuilunmei@gmail.com
7ea56c6b7c05afe9b8d054a4481fec69c2bf6eb2
04b1803adb6653ecb7cb827c4f4aa616afacf629
/extensions/browser/disable_reason.h
53040afeaeca2072cabbabd18a23a0e299eabffe
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
2,359
h
// Copyright (c) 2017 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 EXTENSIONS_BROWSER_DISABLE_REASON_H_ #define EXTENSIONS_BROWSER_DISABLE_REASON_H_ #include <limits> namespace extensions { namespace disable_reason { // Reasons a Chrome extension may be disabled. These are used in histograms, so // do not remove/reorder entries - only add at the end just before // DISABLE_REASON_LAST (and update the shift value for it). Also remember to // update the enum listing in tools/metrics/histograms.xml. // Also carefully consider if your reason should sync to other devices, and if // so, add it to kKnownSyncableDisableReasons in // chrome/browser/extensions/extension_sync_service.cc. // Finally, consider whether your disable reason applies to component // extensions. Reference/update the existing list of applicable reasons in // ExtensionsPrefs::ClearInapplicableDisableReasonsForComponentExtension. enum DisableReason { DISABLE_NONE = 0, DISABLE_USER_ACTION = 1 << 0, DISABLE_PERMISSIONS_INCREASE = 1 << 1, DISABLE_RELOAD = 1 << 2, DISABLE_UNSUPPORTED_REQUIREMENT = 1 << 3, DISABLE_SIDELOAD_WIPEOUT = 1 << 4, DEPRECATED_DISABLE_UNKNOWN_FROM_SYNC = 1 << 5, // DISABLE_PERMISSIONS_CONSENT = 1 << 6, // Deprecated. // DISABLE_KNOWN_DISABLED = 1 << 7, // Deprecated. // Disabled because we could not verify the install. DISABLE_NOT_VERIFIED = 1 << 8, DISABLE_GREYLIST = 1 << 9, DISABLE_CORRUPTED = 1 << 10, DISABLE_REMOTE_INSTALL = 1 << 11, // DISABLE_INACTIVE_EPHEMERAL_APP = 1 << 12, // Deprecated. // External extensions might be disabled for user prompting. DISABLE_EXTERNAL_EXTENSION = 1 << 13, // Doesn't meet minimum version requirement. DISABLE_UPDATE_REQUIRED_BY_POLICY = 1 << 14, // Supervised user needs approval by custodian. DISABLE_CUSTODIAN_APPROVAL_REQUIRED = 1 << 15, // Blocked due to management policy. DISABLE_BLOCKED_BY_POLICY = 1 << 16, // This should always be the last value. DISABLE_REASON_LAST = 1LL << 17, }; static_assert(DISABLE_REASON_LAST - 1 <= std::numeric_limits<int>::max(), "The DisableReason bitmask cannot be stored in an int."); } // namespace disable_reason } // namespace extensions #endif // EXTENSIONS_BROWSER_DISABLE_REASON_H_
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
2fe3867ac65045d297ba744e4c5bd4db504faf8e
bda1a38febd5b251a2fd6da56781d580d0dde5df
/LeetCode/KClosestPointsToOrigin.cpp
74bfae46a3da13b8736fb9b76a32a995a50c7261
[]
no_license
FernandoZhuang/LeetCode
d9d8919e3985a3daa48206762163de8be1888810
a05f097ac515450ad776ad73b658da37479a3df3
refs/heads/master
2020-04-20T10:03:27.814403
2020-01-31T08:03:47
2020-01-31T08:03:47
168,780,527
0
0
null
null
null
null
UTF-8
C++
false
false
733
cpp
#define LOCAL #include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> sumup; vector<vector<int>> kClosest(vector<vector<int>>& points, int K) { int cnt = 1; vector<int> idx; vector<vector<int> > ret; for (int i = 0; i < points.size(); i++) { sumup.push_back(points[i][0] * points[i][0] + points[i][1] * points[i][1]); idx.push_back(i); } sort(idx.begin(), idx.end(), [&](int a, int b) {return sumup[a] < sumup[b]; }); for (int i = 0; i < K && i < idx.size(); i++) { ret.push_back(points[idx[i]]); } return ret; } int main() { #ifdef LOCAL freopen("data.txt", "r", stdin); #endif vector<vector<int> > points = { {3,3},{5,-1},{-2,4} }; int K = 2; kClosest(points, K); return 0; }
[ "957130821@qq.com" ]
957130821@qq.com
6c8553bdd34fd1621746b579989216bdc1260e84
c26ad89b9f84d7d45141e680c6990f0a1668e7f4
/TP5/auto_generate/Livres.h
558adc6c984f0877ccf66e1069f9f210b86911b3
[]
no_license
dai2019-ui/AYOUJJIL_DAI2_TPs
8b5b8a16ea383c051af6ebbcd644a8e72ab4698e
e475b076a48c3f3e58d0054210bac777919c60f3
refs/heads/master
2020-12-04T11:31:52.409805
2020-01-09T20:42:51
2020-01-09T20:42:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
310
h
#ifndef Livres_h #define Livres_h #include "boolean.h" #include "volumes.h" class Emprunte; class Livres : public volumes { public: virtual void empruntable(); public: boolean disponible; public: /** * @element-type Emprunte */ Emprunte *myEmprunte; }; #endif // Livres_h
[ "develeppement505@gmail.com" ]
develeppement505@gmail.com
cdfbccbd14c7c04f13eea5f923d4258856c7e001
0621b297716ef8c89a88a38ed576fde42e40cdf0
/UIDevelop/CUIDevelopWindow.h
65d30fbee005442209aa1e7155ad3d42ce263ca1
[]
no_license
radtek/venus
a654e3de3e7e48017ec9f6669053631f94a6db95
0ce2c7b363ec083c89e8a0a49cd77abce8e6c9c7
refs/heads/master
2020-06-27T21:14:07.971790
2016-10-11T08:00:52
2016-10-11T08:00:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
431
h
#pragma once #include "BaseInc.h" class CUIDevelopWindow : public CForm { public: CUIDevelopWindow(); ~CUIDevelopWindow(); void OnCreate(); void OnLoaded(); void OnShow(); void OnVisualSizeChanged(); void GetMeta(IMetaHelper * pHelper); void OnMouseDownL(pointix point); void OnKeyDown(KeyCodeE key); void OnPaint(IPaint * pPaint, const rectix & rcClip, const IUITheme * pTheme) const; private: CTextLine m_txl; };
[ "thexujie@qq.com" ]
thexujie@qq.com
823292b721f163ab65e61f4a101d70ddc2bb1e92
4ddf464dff8ed5572789dc82cd2a8a723aef6127
/src/timedata.cpp
0825a5c5193bed15e9ff1f29697c7c48669501bf
[ "MIT" ]
permissive
clycoin/clycoin
2c577cf4a308b39e2cf55f6e93b8976ebe1b663b
34efad8b2554b9a3369a059cb78fbe45d8007f53
refs/heads/master
2020-04-08T08:43:37.493214
2018-11-26T15:54:54
2018-11-26T15:54:54
159,191,184
0
0
null
null
null
null
UTF-8
C++
false
false
3,701
cpp
// Copyright (c) 2014-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. #include "timedata.h" #include "netaddress.h" #include "sync.h" #include "ui_interface.h" #include "util.h" #include "utilstrencodings.h" #include <boost/foreach.hpp> using namespace std; static CCriticalSection cs_nTimeOffset; static int64_t nTimeOffset = 0; /** * "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) */ int64_t GetTimeOffset() { LOCK(cs_nTimeOffset); return nTimeOffset; } int64_t GetAdjustedTime() { return GetTime() + GetTimeOffset(); } static int64_t abs64(int64_t n) { return (n >= 0 ? n : -n); } #define BITCOIN_TIMEDATA_MAX_SAMPLES 200 void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample) { LOCK(cs_nTimeOffset); // Ignore duplicates static set<CNetAddr> setKnown; if (setKnown.size() == BITCOIN_TIMEDATA_MAX_SAMPLES) return; if (!setKnown.insert(ip).second) return; // Add data static CMedianFilter<int64_t> vTimeOffsets(BITCOIN_TIMEDATA_MAX_SAMPLES, 0); vTimeOffsets.input(nOffsetSample); LogPrint("net","added time data, samples %d, offset %+d (%+d minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60); // There is a known issue here (see issue #4521): // // - The structure vTimeOffsets contains up to 200 elements, after which // any new element added to it will not increase its size, replacing the // oldest element. // // - The condition to update nTimeOffset includes checking whether the // number of elements in vTimeOffsets is odd, which will never happen after // there are 200 elements. // // But in this case the 'bug' is protective against some attacks, and may // actually explain why we've never seen attacks which manipulate the // clock offset. // // So we should hold off on fixing this and clean it up as part of // a timing cleanup that strengthens it in a number of other ways. // 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 = _("Please check that your computer's date and time are correct! If your clock is wrong CLY Coin will not work properly."); strMiscWarning = strMessage; uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING); } } } BOOST_FOREACH(int64_t n, vSorted) LogPrint("net", "%+d ", n); LogPrint("net", "| "); LogPrint("net", "nTimeOffset = %+d (%+d minutes)\n", nTimeOffset, nTimeOffset/60); } }
[ "clycoin@gmail.com" ]
clycoin@gmail.com
b725511e0ed99a675c8b176f63a4340a30ec9deb
0543967d1fcd1ce4d682dbed0866a25b4fef73fd
/Midterm/solutions/midterm2017_43/A/001453-midterm2017_43-A.cpp
6d6dd470a433b3086fa80776e7cd9d32f453e8ec
[]
no_license
Beisenbek/PP12017
5e21fab031db8a945eb3fa12aac0db45c7cbb915
85a314d47cd067f4ecbbc24df1aa7a1acd37970a
refs/heads/master
2021-01-19T18:42:22.866838
2017-11-25T12:13:24
2017-11-25T12:13:24
101,155,127
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
#include <iostream> #include <algorithm> using namespace std; int main(){ int n; cin >> n; for (int i = 1; i < n; ++i) { if (n % 2 == 0 && (n % i == 0 && n / i = int(i))) { cout << "NO"; }else{ cout<<"YES"; } } return 0; }
[ "beysenbek@gmail.com" ]
beysenbek@gmail.com
80403e8a28f20c9d6598c6aba017c88e3e29dee4
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/chrome/browser/previews/previews_browsertest.cc
a2a649dda9d723e8e4220c8e9ba9de7620e2d365
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
17,411
cc
// Copyright 2017 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. #include "base/bind.h" #include "base/command_line.h" #include "base/metrics/field_trial_param_associator.h" #include "base/metrics/field_trial_params.h" #include "base/run_loop.h" #include "base/task/post_task.h" #include "base/test/metrics/histogram_tester.h" #include "base/test/scoped_feature_list.h" #include "build/build_config.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/metrics/subprocess_metrics_provider.h" #include "chrome/browser/previews/previews_service_factory.h" #include "chrome/browser/previews/previews_test_util.h" #include "chrome/browser/previews/previews_ui_tab_helper.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/browser.h" #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" #include "components/data_reduction_proxy/core/common/data_reduction_proxy_features.h" #include "components/optimization_guide/hints_component_info.h" #include "components/optimization_guide/hints_component_util.h" #include "components/optimization_guide/optimization_guide_constants.h" #include "components/optimization_guide/optimization_guide_features.h" #include "components/optimization_guide/optimization_guide_service.h" #include "components/optimization_guide/proto/hints.pb.h" #include "components/optimization_guide/test_hints_component_creator.h" #include "components/previews/core/previews_features.h" #include "components/previews/core/previews_switches.h" #include "content/public/browser/browser_task_traits.h" #include "content/public/test/browser_test_utils.h" #include "net/dns/mock_host_resolver.h" #include "net/test/embedded_test_server/embedded_test_server.h" #include "net/test/embedded_test_server/http_request.h" #include "net/test/embedded_test_server/http_response.h" #include "services/network/public/cpp/network_quality_tracker.h" class PreviewsBrowserTest : public InProcessBrowserTest { public: PreviewsBrowserTest() = default; ~PreviewsBrowserTest() override = default; void SetUpOnMainThread() override { g_browser_process->network_quality_tracker() ->ReportEffectiveConnectionTypeForTesting( net::EFFECTIVE_CONNECTION_TYPE_2G); // Set up https server with resource monitor. https_server_.reset( new net::EmbeddedTestServer(net::EmbeddedTestServer::TYPE_HTTPS)); https_server_->ServeFilesFromSourceDirectory("chrome/test/data/previews"); https_server_->RegisterRequestMonitor(base::BindRepeating( &PreviewsBrowserTest::MonitorResourceRequest, base::Unretained(this))); ASSERT_TRUE(https_server_->Start()); https_url_ = https_server_->GetURL("/noscript_test.html"); ASSERT_TRUE(https_url_.SchemeIs(url::kHttpsScheme)); https_no_transform_url_ = https_server_->GetURL("/noscript_test_with_no_transform_header.html"); ASSERT_TRUE(https_no_transform_url_.SchemeIs(url::kHttpsScheme)); https_hint_setup_url_ = https_server_->GetURL("/hint_setup.html"); ASSERT_TRUE(https_hint_setup_url_.SchemeIs(url::kHttpsScheme)); ASSERT_EQ(https_hint_setup_url_.host(), https_url_.host()); // Set up http server with resource monitor and redirect handler. http_server_.reset( new net::EmbeddedTestServer(net::EmbeddedTestServer::TYPE_HTTP)); http_server_->ServeFilesFromSourceDirectory("chrome/test/data/previews"); http_server_->RegisterRequestMonitor(base::BindRepeating( &PreviewsBrowserTest::MonitorResourceRequest, base::Unretained(this))); http_server_->RegisterRequestHandler(base::BindRepeating( &PreviewsBrowserTest::HandleRedirectRequest, base::Unretained(this))); ASSERT_TRUE(http_server_->Start()); http_url_ = http_server_->GetURL("/noscript_test.html"); ASSERT_TRUE(http_url_.SchemeIs(url::kHttpScheme)); redirect_url_ = http_server_->GetURL("/redirect.html"); ASSERT_TRUE(redirect_url_.SchemeIs(url::kHttpScheme)); http_hint_setup_url_ = http_server_->GetURL("/hint_setup.html"); ASSERT_TRUE(http_hint_setup_url_.SchemeIs(url::kHttpScheme)); ASSERT_EQ(http_hint_setup_url_.host(), http_url_.host()); } void SetUpCommandLine(base::CommandLine* cmd) override { cmd->AppendSwitch("enable-spdy-proxy-auth"); // Due to race conditions, it's possible that blacklist data is not loaded // at the time of first navigation. That may prevent Preview from // triggering, and causing the test to flake. cmd->AppendSwitch(previews::switches::kIgnorePreviewsBlacklist); } const GURL& https_url() const { return https_url_; } const GURL& https_no_transform_url() const { return https_no_transform_url_; } const GURL& https_hint_setup_url() const { return https_hint_setup_url_; } const GURL& http_url() const { return http_url_; } const GURL& redirect_url() const { return redirect_url_; } const GURL& http_hint_setup_url() const { return http_hint_setup_url_; } bool noscript_css_requested() const { DCHECK_CURRENTLY_ON(content::BrowserThread::UI); return noscript_css_requested_; } bool noscript_js_requested() const { DCHECK_CURRENTLY_ON(content::BrowserThread::UI); return noscript_js_requested_; } private: void TearDownOnMainThread() override { EXPECT_TRUE(https_server_->ShutdownAndWaitUntilComplete()); EXPECT_TRUE(http_server_->ShutdownAndWaitUntilComplete()); InProcessBrowserTest::TearDownOnMainThread(); } // Called by |https_server_|. void MonitorResourceRequest(const net::test_server::HttpRequest& request) { // This method is called on embedded test server thread. Post the // information on UI thread. base::PostTask( FROM_HERE, {content::BrowserThread::UI}, base::BindOnce(&PreviewsBrowserTest::MonitorResourceRequestOnUIThread, base::Unretained(this), request)); } void MonitorResourceRequestOnUIThread( const net::test_server::HttpRequest& request) { DCHECK_CURRENTLY_ON(content::BrowserThread::UI); if (request.GetURL().spec().find("noscript_test.css") != std::string::npos) { noscript_css_requested_ = true; } if (request.GetURL().spec().find("noscript_test.js") != std::string::npos) { noscript_js_requested_ = true; } } std::unique_ptr<net::test_server::HttpResponse> HandleRedirectRequest( const net::test_server::HttpRequest& request) { std::unique_ptr<net::test_server::BasicHttpResponse> response; if (request.GetURL().spec().find("redirect") != std::string::npos) { response.reset(new net::test_server::BasicHttpResponse); response->set_code(net::HTTP_FOUND); response->AddCustomHeader("Location", https_url().spec()); } return std::move(response); } std::unique_ptr<net::EmbeddedTestServer> https_server_; std::unique_ptr<net::EmbeddedTestServer> http_server_; GURL https_url_; GURL https_no_transform_url_; GURL https_hint_setup_url_; GURL http_url_; GURL redirect_url_; GURL http_hint_setup_url_; // Should be accessed only on UI thread. bool noscript_css_requested_ = false; bool noscript_js_requested_ = false; DISALLOW_COPY_AND_ASSIGN(PreviewsBrowserTest); }; // Loads a webpage that has both script and noscript tags and also requests // a script resource. Verifies that the noscript tag is not evaluated and the // script resource is loaded. IN_PROC_BROWSER_TEST_F(PreviewsBrowserTest, NoScriptPreviewsDisabled) { base::HistogramTester histogram_tester; ui_test_utils::NavigateToURL(browser(), https_url()); // Verify loaded js resource but not css triggered by noscript tag. EXPECT_TRUE(noscript_js_requested()); EXPECT_FALSE(noscript_css_requested()); // Verify info bar not presented via histogram check. histogram_tester.ExpectTotalCount("Previews.PreviewShown.NoScript", 0); } // This test class enables NoScriptPreviews and with OptimizationHints. class PreviewsNoScriptBrowserTest : public ::testing::WithParamInterface<bool>, public PreviewsBrowserTest { public: PreviewsNoScriptBrowserTest() {} ~PreviewsNoScriptBrowserTest() override {} void SetUp() override { scoped_feature_list_.InitWithFeaturesAndParameters( {{previews::features::kPreviews, {{"override_should_show_preview_check", GetParam() ? "true" : "false"}}}, {optimization_guide::features::kOptimizationHints, {}}, {previews::features::kNoScriptPreviews, {}}, {data_reduction_proxy::features:: kDataReductionProxyEnabledWithNetworkService, {}}}, {}); PreviewsBrowserTest::SetUp(); } void SetUpCommandLine(base::CommandLine* cmd) override { cmd->AppendSwitch("enable-spdy-proxy-auth"); cmd->AppendSwitch("optimization-guide-disable-installer"); cmd->AppendSwitch("purge_hint_cache_store"); cmd->AppendSwitch(previews::switches::kIgnorePreviewsBlacklist); } // Creates hint data for the |hint_setup_url|'s host and then performs a // navigation to |hint_setup_url| to trigger the hints to be loaded into the // hint cache so they will be available for a subsequent navigation to a test // url to the same host. void SetUpNoScriptWhitelist(const GURL& hint_setup_url) { const optimization_guide::HintsComponentInfo& component_info = test_hints_component_creator_.CreateHintsComponentInfoWithPageHints( optimization_guide::proto::NOSCRIPT, {hint_setup_url.host()}, "*", {}); base::HistogramTester histogram_tester; g_browser_process->optimization_guide_service()->MaybeUpdateHintsComponent( component_info); RetryForHistogramUntilCountReached( &histogram_tester, optimization_guide::kComponentHintsUpdatedResultHistogramString, 1); // Navigate to |hint_setup_url| to prime the OptimizationGuide hints for the // url's host and ensure that they have been loaded from the store (via // histogram) prior to the navigation that tests functionality. ui_test_utils::NavigateToURL(browser(), hint_setup_url); RetryForHistogramUntilCountReached( &histogram_tester, optimization_guide::kLoadedHintLocalHistogramString, 1); } // Returns whether the ShouldShowPreview check should have been overridden for // the test case. bool ShouldOverrideShouldShowPreviewCheck() const { return GetParam(); } private: base::test::ScopedFeatureList scoped_feature_list_; optimization_guide::testing::TestHintsComponentCreator test_hints_component_creator_; }; INSTANTIATE_TEST_SUITE_P(ShouldSkipPreview, PreviewsNoScriptBrowserTest, ::testing::Bool()); // Loads a webpage that has both script and noscript tags and also requests // a script resource. Verifies that the noscript tag is evaluated and the // script resource is not loaded. IN_PROC_BROWSER_TEST_P(PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsEnabled)) { GURL url = https_url(); // Whitelist NoScript for https_hint_setup_url()'s' host. SetUpNoScriptWhitelist(https_hint_setup_url()); base::HistogramTester histogram_tester; ui_test_utils::NavigateToURL(browser(), url); // Verify loaded noscript tag triggered css resource but not js one. EXPECT_TRUE(noscript_css_requested()); EXPECT_FALSE(noscript_js_requested()); // Verify info bar presented via histogram check. RetryForHistogramUntilCountReached(&histogram_tester, "Previews.PreviewShown.NoScript", 1); } IN_PROC_BROWSER_TEST_P( PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsEnabled_Incognito)) { GURL url = https_url(); // Whitelist NoScript for https_hint_setup_url()'s' host. SetUpNoScriptWhitelist(https_hint_setup_url()); base::HistogramTester histogram_tester; Browser* incognito = CreateIncognitoBrowser(); ASSERT_FALSE(PreviewsServiceFactory::GetForProfile(incognito->profile())); ASSERT_TRUE(PreviewsServiceFactory::GetForProfile(browser()->profile())); ui_test_utils::NavigateToURL(incognito, url); // Verify JS was loaded indicating that NoScript preview was not triggered. EXPECT_FALSE(noscript_css_requested()); EXPECT_TRUE(noscript_js_requested()); } IN_PROC_BROWSER_TEST_P(PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsForHttp)) { GURL url = http_url(); // Whitelist NoScript for http_hint_setup_url() host. SetUpNoScriptWhitelist(http_hint_setup_url()); ui_test_utils::NavigateToURL(browser(), url); // Verify loaded noscript tag triggered css resource but not js one. EXPECT_TRUE(noscript_css_requested()); EXPECT_FALSE(noscript_js_requested()); } IN_PROC_BROWSER_TEST_P(PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS( NoScriptPreviewsEnabledButNoTransformDirective)) { GURL url = https_no_transform_url(); // Whitelist NoScript for https_hint_setup_url()'s' host. SetUpNoScriptWhitelist(https_hint_setup_url()); base::HistogramTester histogram_tester; ui_test_utils::NavigateToURL(browser(), url); // Verify loaded js resource but not css triggered by noscript tag. EXPECT_TRUE(noscript_js_requested()); EXPECT_FALSE(noscript_css_requested()); histogram_tester.ExpectUniqueSample( "Previews.CacheControlNoTransform.BlockedPreview", 5 /* NoScript */, 1); } IN_PROC_BROWSER_TEST_P( PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsEnabledHttpRedirectToHttps)) { GURL url = redirect_url(); // Whitelist NoScript for http_hint_setup_url() host. SetUpNoScriptWhitelist(http_hint_setup_url()); base::HistogramTester histogram_tester; ui_test_utils::NavigateToURL(browser(), url); // Verify loaded noscript tag triggered css resource but not js one. EXPECT_TRUE(noscript_css_requested()); EXPECT_FALSE(noscript_js_requested()); // Verify info bar presented via histogram check. RetryForHistogramUntilCountReached(&histogram_tester, "Previews.PreviewShown.NoScript", 1); } IN_PROC_BROWSER_TEST_P( PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsRecordsOptOut)) { GURL url = redirect_url(); // Whitelist NoScript for http_hint_setup_url()'s' host. SetUpNoScriptWhitelist(http_hint_setup_url()); base::HistogramTester histogram_tester; // Navigate to a NoScript Preview page. ui_test_utils::NavigateToURL(browser(), url); // Terminate the previous page (non-opt out) and pull up a new NoScript page. ui_test_utils::NavigateToURL(browser(), url); histogram_tester.ExpectUniqueSample("Previews.OptOut.UserOptedOut.NoScript", 0, 1); // Opt out of the NoScript Preview page. PreviewsUITabHelper::FromWebContents( browser()->tab_strip_model()->GetActiveWebContents()) ->ReloadWithoutPreviews(); histogram_tester.ExpectBucketCount("Previews.OptOut.UserOptedOut.NoScript", 1, 1); } IN_PROC_BROWSER_TEST_P( PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsEnabledByWhitelist)) { GURL url = https_url(); // Whitelist NoScript for https_hint_setup_url()'s' host. SetUpNoScriptWhitelist(https_hint_setup_url()); ui_test_utils::NavigateToURL(browser(), url); // Verify loaded noscript tag triggered css resource but not js one. EXPECT_TRUE(noscript_css_requested()); EXPECT_FALSE(noscript_js_requested()); } IN_PROC_BROWSER_TEST_P( PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS(NoScriptPreviewsNotEnabledByWhitelist)) { GURL url = https_url(); // Whitelist random site for NoScript. SetUpNoScriptWhitelist(GURL("https://foo.com")); ui_test_utils::NavigateToURL(browser(), url); // Verify loaded js resource but not css triggered by noscript tag. EXPECT_TRUE(noscript_js_requested()); EXPECT_FALSE(noscript_css_requested()); } IN_PROC_BROWSER_TEST_P(PreviewsNoScriptBrowserTest, DISABLE_ON_WIN_MAC_CHROMEOS( NoScriptPreviewsEnabledShouldSkipPreviewCheck)) { // Set ECT to 4G so that the Preview should not be shown in the regular case. g_browser_process->network_quality_tracker() ->ReportEffectiveConnectionTypeForTesting( net::EFFECTIVE_CONNECTION_TYPE_4G); GURL url = https_url(); // Whitelist NoScript for https_hint_setup_url()'s' host. SetUpNoScriptWhitelist(https_hint_setup_url()); base::HistogramTester histogram_tester; ui_test_utils::NavigateToURL(browser(), url); if (ShouldOverrideShouldShowPreviewCheck()) { // Verify loaded noscript tag triggered css resource but not js one. EXPECT_TRUE(noscript_css_requested()); EXPECT_FALSE(noscript_js_requested()); // Verify info bar presented via histogram check. RetryForHistogramUntilCountReached(&histogram_tester, "Previews.PreviewShown.NoScript", 1); } else { // Verify loaded js resource but not css triggered by noscript tag. EXPECT_TRUE(noscript_js_requested()); EXPECT_FALSE(noscript_css_requested()); } }
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
4232cb91bc37e4e09f73aba3713a9e0e99e5b1d4
6bd2c66b1c9bf984f2dfb866bb97ecf29d69ae0f
/src/leveldb/db/table_cache.h
a652d40adab1d9b74c235096927e1f52f7b28266
[ "MIT", "BSD-3-Clause" ]
permissive
futurecoin1/futurecoin1
efe8280d39b8df32a075623a7e70102a4aaf9c01
0a6f143b0b37bd5245ae5bab04baf7d61d1c7fb2
refs/heads/master
2020-07-15T12:34:24.799080
2017-04-17T10:13:48
2017-04-17T10:13:48
65,669,859
0
0
null
null
null
null
UTF-8
C++
false
false
1,980
h
// Copyright (c) 2011 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. // // Thread-safe (provides internal synchronization) #ifndef STORAGE_LEVELDB_DB_TABLE_CACHE_H_ #define STORAGE_LEVELDB_DB_TABLE_CACHE_H_ #include <stdint.h> #include <string> #include "db/dbformat.h" #include "leveldb/cache.h" #include "leveldb/table.h" #include "port/port.h" namespace leveldb { class Env; class TableCache { public: TableCache(const std::string& dbname, const Options* options, int entries); ~TableCache(); // Return an iterator for the specified file number (the corresponding // file length must be exactly "file_size" bytes). If "tableptr" is // non-NULL, also sets "*tableptr" to point to the Table object // underlying the returned iterator, or NULL if no Table object underlies // the returned iterator. The returned "*tableptr" object is owned by // the cache and should not be deleted, and is valid for as long as the // returned iterator is live. Iterator* NewIterator(const ReadOptions& options, uint64_t file_number, uint64_t file_size, Table** tableptr = NULL); // If a seek to internal key "k" in specified file finds an entry, // call (*handle_result)(arg, found_key, found_value). Status Get(const ReadOptions& options, uint64_t file_number, uint64_t file_size, const Slice& k, void* arg, void (*handle_result)(void*, const Slice&, const Slice&)); // Evict any entry for the specified file number void Evict(uint64_t file_number); private: Env* const env_; const std::string dbname_; const Options* options_; Cache* cache_; Status FindTable(uint64_t file_number, uint64_t file_size, Cache::Handle**); }; } // namespace leveldb #endif // STORAGE_LEVELDB_DB_TABLE_CACHE_H_
[ "futuredev@protonmail.com" ]
futuredev@protonmail.com
3dde11a490d1e8c4e070538c8e0505ea25e2925d
318f01d007b038732800b9d47f2926dcce8865c4
/timer.h
dbe3da6535aa88db594e386b7fcf5b063d1b8bbd
[]
no_license
i-v-s/flyflow
270564bbb5e0c1b9d220da79e3ecc6233489d96c
f026c4e79bc4133a609b35d967be926512969060
refs/heads/master
2021-01-16T23:33:36.738801
2016-11-01T10:01:09
2016-11-01T10:01:09
51,923,379
0
0
null
null
null
null
UTF-8
C++
false
false
520
h
#ifndef TIMER_H #define TIMER_H #include <chrono> class Timer { private: std::chrono::high_resolution_clock::time_point tp1_; public: Timer() { } void start() { tp1_ = std::chrono::high_resolution_clock::now(); } double end() { using namespace std::chrono; high_resolution_clock::time_point tp2 = high_resolution_clock::now(); duration<double> dt = duration_cast<duration<double>>(tp2 - tp1_); return dt.count(); } }; #endif // TIMER_H
[ "smirnoviv@rambler.ru" ]
smirnoviv@rambler.ru
45356067e8925d09681a55b3000e644b9d84b72c
b0a23d63ca998797053bd6d011bcd3a99b9aba7f
/source/WorldServer/Titles.cpp
36c6efbed0c9dbd7c9bb469e26cce76914346350
[]
no_license
kirmmin/EQ2Emu-Classic
ff8b25354e03aab8516c838e8b6bf7f78a758747
7adefa5e1f0e4e4c3dd779f581e85f0e2c0e8a97
refs/heads/master
2021-05-18T02:55:27.048787
2020-03-29T16:27:51
2020-03-29T16:27:51
251,073,491
1
0
null
null
null
null
UTF-8
C++
false
false
2,919
cpp
/* EQ2Emulator: Everquest II Server Emulator Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net) This file is part of EQ2Emulator. EQ2Emulator 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. EQ2Emulator 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 EQ2Emulator. If not, see <http://www.gnu.org/licenses/>. */ #include <assert.h> #include <string.h> #include "Titles.h" #include "../common/MiscFunctions.h" Title::Title(){ id = 0; memset(name, 0, sizeof(name)); prefix = 0; save_needed = false; } Title::Title(Title* title){ id = title->id; strncpy(name, title->GetName(), sizeof(name)); prefix = title->prefix; save_needed = title->save_needed; } Title::~Title(){ } MasterTitlesList::MasterTitlesList(){ } MasterTitlesList::~MasterTitlesList(){ Clear(); } void MasterTitlesList::Clear(){ map<int32, Title*>::iterator itr; for(itr = titles_list.begin(); itr != titles_list.end(); itr++) safe_delete(itr->second); titles_list.clear(); } void MasterTitlesList::AddTitle(Title* title){ assert(title); if(titles_list.count(title->GetID()) == 0) titles_list[title->GetID()] = title; } int32 MasterTitlesList::Size(){ return titles_list.size(); } Title* MasterTitlesList::GetTitle(int32 id){ if(titles_list.count(id) > 0) return titles_list[id]; else return 0; } Title* MasterTitlesList::GetTitleByName(const char* title_name){ Title* title = 0; map<int32, Title*>::iterator itr; for(itr = titles_list.begin(); itr != titles_list.end(); itr++){ Title* current_title = itr->second; if(::ToLower(string(current_title->GetName())) == ::ToLower(string(title_name))){ title = current_title; break; } } return title; } map<int32, Title*>* MasterTitlesList::GetAllTitles(){ return &titles_list; } PlayerTitlesList::PlayerTitlesList(){ } PlayerTitlesList::~PlayerTitlesList(){ list<Title*>::iterator itr; for (itr = player_titles_list.begin(); itr != player_titles_list.end(); itr++) safe_delete(*itr); } Title* PlayerTitlesList::GetTitle(int32 index){ list<Title*>::iterator itr; Title* title = 0; Title* ret = 0; for(itr = player_titles_list.begin(); itr != player_titles_list.end(); itr++){ title = *itr; if(title->GetID() == index){ ret = title; break; } } return ret; } list<Title*>* PlayerTitlesList::GetAllTitles(){ return &player_titles_list; } void PlayerTitlesList::Add(Title* title){ player_titles_list.push_back(title); }
[ "kirmmin@hotmail.com" ]
kirmmin@hotmail.com
87c7b6620fc39f234bae5423912ecaf4904a2780
d0d36b90d7efdf8f111316a23e167aba34082026
/common.cpp
d81c5e04ec9956cc53d832e4c88efc5fc1e511fd
[]
no_license
blockspacer/litehtml-qt-widget
3c65d8604c0c55a0d83b5e706ee00a4dc8a318d2
b748e4e1ac3b3371ebf215266ce51e6f780ee54d
refs/heads/master
2020-05-07T09:03:53.028864
2019-04-25T16:20:22
2019-04-25T16:20:22
180,360,194
5
1
null
null
null
null
UTF-8
C++
false
false
3,701
cpp
#include "common.h" #include "litehtml.h" #include "color.h" //////////////////////////////// // https://github.com/rkudiyarov/ClutterWebkit/blob/05d919e0598691bcd34f57d27f44872919e39e92/WebCore/platform/graphics/GraphicsTypes.cpp static const char* const compositeOperatorNames[] = { "clear", "copy", "source-over", "source-in", "source-out", "source-atop", "destination-over", "destination-in", "destination-out", "destination-atop", "xor", "darker", "highlight", "lighter" }; const int numCompositeOperatorNames = sizeof(compositeOperatorNames) / sizeof(compositeOperatorNames[0]); bool parseCompositeOperator(const String& s, CompositeOperator& op) { for (int i = 0; i < numCompositeOperatorNames; i++) if (s == compositeOperatorNames[i]) { op = static_cast<CompositeOperator>(i); return true; } return false; } String compositeOperatorName(CompositeOperator op) { ASSERT(op >= 0); ASSERT(op < numCompositeOperatorNames); return compositeOperatorNames[op]; } bool parseLineCap(const String& s, LineCap& cap) { if (s == "butt") { cap = ButtCap; return true; } if (s == "round") { cap = RoundCap; return true; } if (s == "square") { cap = SquareCap; return true; } return false; } String lineCapName(LineCap cap) { ASSERT(cap >= 0); ASSERT(cap < 3); const char* const names[3] = { "butt", "round", "square" }; return names[cap]; } bool parseLineJoin(const String& s, LineJoin& join) { if (s == "miter") { join = MiterJoin; return true; } if (s == "round") { join = RoundJoin; return true; } if (s == "bevel") { join = BevelJoin; return true; } return false; } String lineJoinName(LineJoin join) { ASSERT(join >= 0); ASSERT(join < 3); const char* const names[3] = { "miter", "round", "bevel" }; return names[join]; } String textAlignName(TextAlign align) { ASSERT(align >= 0); ASSERT(align < 5); const char* const names[5] = { "start", "end", "left", "center", "right" }; return names[align]; } bool parseTextAlign(const String& s, TextAlign& align) { if (s == "start") { align = StartTextAlign; return true; } if (s == "end") { align = EndTextAlign; return true; } if (s == "left") { align = LeftTextAlign; return true; } if (s == "center") { align = CenterTextAlign; return true; } if (s == "right") { align = RightTextAlign; return true; } return false; } String textBaselineName(TextBaseline baseline) { ASSERT(baseline >= 0); ASSERT(baseline < 6); const char* const names[6] = { "alphabetic", "top", "middle", "bottom", "ideographic", "hanging" }; return names[baseline]; } bool parseTextBaseline(const String& s, TextBaseline& baseline) { if (s == "alphabetic") { baseline = AlphabeticTextBaseline; return true; } if (s == "top") { baseline = TopTextBaseline; return true; } if (s == "middle") { baseline = MiddleTextBaseline; return true; } if (s == "bottom") { baseline = BottomTextBaseline; return true; } if (s == "ideographic") { baseline = IdeographicTextBaseline; return true; } if (s == "hanging") { baseline = HangingTextBaseline; return true; } return false; } Color toColor(const litehtml::web_color &clr) { return Color(clr.red,clr.green,clr.blue,clr.alpha); }
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
283f375c2023421619c2aa618526e9505796aace
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/1.86/polyMesh/points
a2a8dfe7a168bfc8791dd20f2fb30fa46795f5c3
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
781,831
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class vectorField; location "1.86/polyMesh"; object points; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 26316 ( (-1.2 -2.2 0.1) (-1.02836 -2.2 0.1) (-1.0284 -2.01675 0.1) (-1.2 -2.01667 0.1) (-1.02845 -1.83342 0.1) (-1.2 -1.83333 0.1) (-1.0285 -1.65009 0.1) (-1.2 -1.65 0.1) (-1.02855 -1.46674 0.1) (-1.11428 -1.46671 0.1) (-1.2 -1.46667 0.1) (-1.1143 -1.37504 0.1) (-1.2 -1.375 0.1) (-1.2 -1.28333 0.1) (-1.11432 -1.28338 0.1) (-1.11433 -1.19171 0.1) (-1.2 -1.19167 0.1) (-1.2 -1.1 0.1) (-1.11435 -1.10005 0.1) (-1.11437 -1.00838 0.1) (-1.2 -1.00833 0.1) (-1.2 -0.916667 0.1) (-1.11439 -0.916715 0.1) (-1.11441 -0.825051 0.1) (-1.2 -0.825 0.1) (-1.2 -0.733333 0.1) (-1.11443 -0.733386 0.1) (-1.11444 -0.641721 0.1) (-1.2 -0.641667 0.1) (-1.2 -0.55 0.1) (-1.11446 -0.550056 0.1) (-1.11448 -0.458391 0.1) (-1.2 -0.458333 0.1) (-1.2 -0.366667 0.1) (-1.11449 -0.366726 0.1) (-1.11451 -0.27506 0.1) (-1.2 -0.275 0.1) (-1.2 -0.183333 0.1) (-1.11452 -0.183395 0.1) (-1.11452 -0.0917285 0.1) (-1.2 -0.0916667 0.1) (-1.2 0 0.1) (-1.11452 -6.20099e-05 0.1) (-1.11452 0.0916048 0.1) (-1.2 0.0916667 0.1) (-1.2 0.183333 0.1) (-1.11452 0.183272 0.1) (-1.11451 0.27494 0.1) (-1.2 0.275 0.1) (-1.2 0.366667 0.1) (-1.11449 0.366608 0.1) (-1.11448 0.458276 0.1) (-1.2 0.458333 0.1) (-1.2 0.55 0.1) (-1.11446 0.549944 0.1) (-1.11444 0.641612 0.1) (-1.2 0.641667 0.1) (-1.2 0.733333 0.1) (-1.11443 0.733281 0.1) (-1.11441 0.824949 0.1) (-1.2 0.825 0.1) (-1.2 0.916667 0.1) (-1.11439 0.916618 0.1) (-1.11437 1.00829 0.1) (-1.2 1.00833 0.1) (-1.2 1.1 0.1) (-1.11435 1.09995 0.1) (-1.11433 1.19162 0.1) (-1.2 1.19167 0.1) (-1.2 1.28333 0.1) (-1.11432 1.28329 0.1) (-1.1143 1.37497 0.1) (-1.2 1.375 0.1) (-1.2 1.46667 0.1) (-1.11429 1.46665 0.1) (-1.02854 1.46685 0.1) (-1.02831 1.65049 0.1) (-1.2 1.65 0.1) (-1.02824 1.83417 0.1) (-1.2 1.83387 0.1) (-1.02804 2.01728 0.1) (-1.2 2.01724 0.1) (-1.02778 2.2 0.1) (-1.2 2.2 0.1) (-0.85612 -2.2 0.1) (-0.85642 -2.01697 0.1) (-0.85678 -1.83375 0.1) (-0.85688 -1.65042 0.1) (-0.85704 -1.46688 0.1) (-0.942809 -1.46678 0.1) (-0.942854 -1.37512 0.1) (-1.02858 -1.37508 0.1) (-1.02862 -1.28342 0.1) (-0.942902 -1.28346 0.1) (-0.942953 -1.19179 0.1) (-1.02865 -1.19175 0.1) (-1.02869 -1.10009 0.1) (-0.943007 -1.10013 0.1) (-0.943063 -1.00847 0.1) (-0.985895 -1.00845 0.1) (-1.02872 -1.00843 0.1) (-1.02876 -0.916763 0.1) (-0.985943 -0.916786 0.1) (-0.985992 -0.870958 0.1) (-1.02881 -0.870935 0.1) (-1.02884 -0.733437 0.1) (-0.986043 -0.733463 0.1) (-0.986093 -0.687634 0.1) (-1.02889 -0.687609 0.1) (-1.02892 -0.550112 0.1) (-0.986141 -0.550139 0.1) (-0.986191 -0.504311 0.1) (-1.02897 -0.504284 0.1) (-1.02898 -0.366785 0.1) (-0.986227 -0.366814 0.1) (-0.986274 -0.320985 0.1) (-1.02903 -0.320956 0.1) (-1.02903 -0.183456 0.1) (-0.986288 -0.183486 0.1) (-0.9863275902 -0.1376593386 0.1) (-1.02908 -0.137627 0.1) (-1.02905 -0.000123943 0.1) (-0.9863103257 -0.0001811844683 0.1) (-0.9863364965 0.04565343257 0.1) (-1.02908 0.0457059 0.1) (-1.02903 0.183211 0.1) (-0.986288 0.18318 0.1) (-0.986305 0.229012 0.1) (-1.02906 0.229042 0.1) (-1.02898 0.366549 0.1) (-0.986228 0.36652 0.1) (-0.986235 0.412352 0.1) (-1.029 0.41238 0.1) (-1.02892 0.549888 0.1) (-0.986141 0.549861 0.1) (-0.986143 0.595694 0.1) (-1.02893 0.59572 0.1) (-1.02884 0.733229 0.1) (-0.986043 0.733204 0.1) (-0.986043 0.779037 0.1) (-1.02885 0.779061 0.1) (-1.02876 0.91657 0.1) (-0.985944 0.916547 0.1) (-0.985942 0.962381 0.1) (-1.02877 0.962403 0.1) (-1.02869 1.09992 0.1) (-0.943013 1.09996 0.1) (-0.942949 1.19183 0.1) (-1.02865 1.19161 0.1) (-1.02862 1.28331 0.1) (-0.942852 1.2837 0.1) (-0.942603 1.37575 0.1) (-1.02858 1.3751 0.1) (-0.94248 1.46749 0.1) (-0.856309 1.46797 0.1) (-0.856172 1.65126 0.1) (-0.856002 1.83463 0.1) (-0.855752 2.01733 0.1) (-0.855556 2.2 0.1) (-0.683333 -2.2 0.1) (-0.683732 -2.01725 0.1) (-0.684123 -1.8345 0.1) (-0.68446 -1.65166 0.1) (-0.684565 -1.46844 0.1) (-0.77116 -1.46732 0.1) (-0.77125 -1.37562 0.1) (-0.857103 -1.37519 0.1) (-0.857167 -1.28353 0.1) (-0.771348 -1.2839 0.1) (-0.771487 -1.19201 0.1) (-0.857238 -1.19184 0.1) (-0.85731 -1.10017 0.1) (-0.771588 -1.10027 0.1) (-0.771687 -1.00855 0.1) (-0.814539 -1.00853 0.1) (-0.857385 -1.00851 0.1) (-0.857463 -0.916853 0.1) (-0.814627 -0.916875 0.1) (-0.814684 -0.871047 0.1) (-0.857517 -0.871025 0.1) (-0.857628 -0.733536 0.1) (-0.814814 -0.733559 0.1) (-0.814875 -0.687732 0.1) (-0.857684 -0.687708 0.1) (-0.857795 -0.550219 0.1) (-0.8150427676 -0.5502941253 0.1) (-0.8152765771 -0.5047250732 0.1) (-0.8578527669 -0.5043947965 0.1) (-0.8583475961 -0.3676545227 0.1) (-0.8161786174 -0.3689180988 0.1) (-0.8164149784 -0.3237949949 0.1) (-0.8585457294 -0.3222536773 0.1) (-0.8587262697 -0.1860686303 0.1) (-0.8164834353 -0.1882634663 0.1) (-0.8163210539 -0.1429226511 0.1) (-0.8586653339 -0.1405825886 0.1) (-0.8581188878 -0.003565827489 0.1) (-0.8153833459 -0.006098729491 0.1) (-0.8150396159 0.03980713271 0.1) (-0.8579184785 0.04232000648 0.1) (-0.8574208541 0.1805858147 0.1) (-0.8141844691 0.1783823758 0.1) (-0.8140655319 0.2248074323 0.1) (-0.8573824144 0.2268274818 0.1) (-0.8575547342 0.3656684174 0.1) (-0.8142091614 0.3643948903 0.1) (-0.8144225812 0.4108981906 0.1) (-0.8576978801 0.4118725972 0.1) (-0.857795 0.549781 0.1) (-0.8149684282 0.5497020927 0.1) (-0.814972 0.595592 0.1) (-0.857769 0.595617 0.1) (-0.857628 0.733131 0.1) (-0.814815 0.733107 0.1) (-0.814779 0.778944 0.1) (-0.8576 0.778967 0.1) (-0.857464 0.916483 0.1) (-0.814633 0.916519 0.1) (-0.814603 0.96244 0.1) (-0.857438 0.962328 0.1) (-0.85725 1.10049 0.1) (-0.770908 1.1016 0.1) (-0.770553 1.19343 0.1) (-0.856875 1.19274 0.1) (-0.856623 1.28457 0.1) (-0.770431 1.28507 0.1) (-0.770351 1.37669 0.1) (-0.856389 1.37633 0.1) (-0.770297 1.46831 0.1) (-0.684227 1.46864 0.1) (-0.683965 1.6519 0.1) (-0.683689 1.8347 0.1) (-0.683502 2.01736 0.1) (-0.683333 2.2 0.1) (-0.511111 -2.2 0.1) (-0.511372 -2.01734 0.1) (-0.511646 -1.83468 0.1) (-0.511912 -1.65201 0.1) (-0.512088 -1.46924 0.1) (-0.598172 -1.46894 0.1) (-0.5982 -1.37737 0.1) (-0.684628 -1.37684 0.1) (-0.684917 -1.28506 0.1) (-0.598333 -1.28576 0.1) (-0.598734 -1.194 0.1) (-0.685494 -1.19278 0.1) (-0.68575 -1.10077 0.1) (-0.599191 -1.10213 0.1) (-0.59999 -1.00954 0.1) (-0.643085 -1.00875 0.1) (-0.685965 -1.00863 0.1) (-0.686088 -0.916936 0.1) (-0.643229 -0.916968 0.1) (-0.643304 -0.871132 0.1) (-0.686158 -0.871109 0.1) (-0.686344 -0.733627 0.1) (-0.6436116857 -0.733776001 0.1) (-0.6441498581 -0.6885624884 0.1) (-0.6865518724 -0.6879679778 0.1) (-0.6885079882 -0.5532917459 0.1) (-0.6468344837 -0.5553317163 0.1) (-0.6477482288 -0.5114585943 0.1) (-0.68929218 -0.5089486527 0.1) (-0.69090578 -0.3765299113 0.1) (-0.6494236126 -0.3802692276 0.1) (-0.6495162569 -0.3364310796 0.1) (-0.6910749607 -0.3323632929 0.1) (-0.6902752473 -0.1990007232 0.1) (-0.6482910422 -0.2037739151 0.1) (-0.6474781671 -0.1590455371 0.1) (-0.6896505761 -0.1541280988 0.1) (-0.6871036214 -0.01792494124 0.1) (-0.6443165857 -0.02303283013 0.1) (-0.6431956164 0.0229430081 0.1) (-0.6861945356 0.02803725726 0.1) (-0.683826227 0.1675779216 0.1) (-0.6402354969 0.162766511 0.1) (-0.6395477275 0.2099647924 0.1) (-0.6833088399 0.2145926069 0.1) (-0.68286808 0.356709991 0.1) (-0.638770235 0.3529248586 0.1) (-0.6389962453 0.4008679756 0.1) (-0.6831313149 0.4042778959 0.1) (-0.6847360361 0.5466634233 0.1) (-0.6408019688 0.5445970877 0.1) (-0.6416158975 0.5921988284 0.1) (-0.6853759687 0.5937717245 0.1) (-0.686358 0.733246 0.1) (-0.6433100539 0.7340555728 0.1) (-0.64276 0.781174 0.1) (-0.686277 0.779542 0.1) (-0.684856 0.918994 0.1) (-0.641698 0.91929 0.1) (-0.641653 0.965082 0.1) (-0.684683 0.964872 0.1) (-0.684589 1.10222 0.1) (-0.598587 1.10257 0.1) (-0.598492 1.19415 0.1) (-0.684489 1.19382 0.1) (-0.684423 1.28541 0.1) (-0.598356 1.28576 0.1) (-0.598227 1.37737 0.1) (-0.684353 1.37701 0.1) (-0.598044 1.46899 0.1) (-0.511813 1.46933 0.1) (-0.511625 1.65211 0.1) (-0.511417 1.83475 0.1) (-0.511259 2.01738 0.1) (-0.511111 2.2 0.1) (-0.338889 -2.2 0.1) (-0.339075 -2.01738 0.1) (-0.339307 -1.83475 0.1) (-0.339552 -1.6521 0.1) (-0.339914 -1.46942 0.1) (-0.42603 -1.4694 0.1) (-0.426107 -1.37793 0.1) (-0.512124 -1.37767 0.1) (-0.512175 -1.28611 0.1) (-0.426152 -1.28638 0.1) (-0.426205 -1.19484 0.1) (-0.512281 -1.19454 0.1) (-0.512399 -1.10297 0.1) (-0.426261 -1.10332 0.1) (-0.42631 -1.0118 0.1) (-0.469316 -1.01165 0.1) (-0.512427 -1.01145 0.1) (-0.513033 -0.919636 0.1) (-0.469459 -0.920103 0.1) (-0.4696831799 -0.8743456364 0.1) (-0.513554 -0.87351 0.1) (-0.5168086329 -0.7366219089 0.1) (-0.4744601449 -0.7392912161 0.1) (-0.4763927182 -0.6956099491 0.1) (-0.5182576257 -0.6928179744 0.1) (-0.5226617427 -0.5641947028 0.1) (-0.4813827996 -0.5678688463 0.1) (-0.4825323633 -0.5258706001 0.1) (-0.5237921909 -0.5217594794 0.1) (-0.5251825227 -0.3940658334 0.1) (-0.4836972238 -0.39915244 0.1) (-0.4832999204 -0.3563469716 0.1) (-0.5249259155 -0.3510700085 0.1) (-0.5222347344 -0.2200085084 0.1) (-0.4801106011 -0.2255155012 0.1) (-0.4785606051 -0.181067856 0.1) (-0.5208546489 -0.1755566969 0.1) (-0.5159299649 -0.03988629218 0.1) (-0.473148944 -0.04537965583 0.1) (-0.4712617589 0.0005916546678 0.1) (-0.5142077715 0.006097679466 0.1) (-0.5094712516 0.1463814847 0.1) (-0.4659935034 0.1408298875 0.1) (-0.4645603272 0.1884486584 0.1) (-0.5082241043 0.1939450511 0.1) (-0.506133759 0.3389609731 0.1) (-0.4619730836 0.3341063399 0.1) (-0.461829683 0.3833625807 0.1) (-0.5061110334 0.3879223989 0.1) (-0.5079434839 0.5372308421 0.1) (-0.4623679038 0.5349995674 0.1) (-0.4626467356 0.5852080608 0.1) (-0.5081643034 0.5875556967 0.1) (-0.5108191953 0.7336826807 0.1) (-0.4667682561 0.7321642918 0.1) (-0.4681233386 0.7801591071 0.1) (-0.5118644894 0.7811364528 0.1) (-0.512777 0.919803 0.1) (-0.469804 0.919959 0.1) (-0.469767 0.965722 0.1) (-0.512742 0.965571 0.1) (-0.512576 1.1029 0.1) (-0.426399 1.10328 0.1) (-0.426059 1.1949 0.1) (-0.512348 1.19452 0.1) (-0.512064 1.28615 0.1) (-0.425833 1.28649 0.1) (-0.425757 1.37805 0.1) (-0.511924 1.37774 0.1) (-0.42569 1.46951 0.1) (-0.339558 1.46954 0.1) (-0.339308 1.65218 0.1) (-0.339106 1.8348 0.1) (-0.338986 2.0174 0.1) (-0.338889 2.2 0.1) (-0.166667 -2.2 0.1) (-0.16675 -2.01741 0.1) (-0.166857 -1.83481 0.1) (-0.167034 -1.6522 0.1) (-0.167458 -1.46954 0.1) (-0.253787 -1.46946 0.1) (-0.25393 -1.37813 0.1) (-0.340052 -1.37808 0.1) (-0.340133 -1.28663 0.1) (-0.254058 -1.28681 0.1) (-0.254132 -1.19535 0.1) (-0.340185 -1.1951 0.1) (-0.340241 -1.10359 0.1) (-0.25418 -1.10384 0.1) (-0.25416 -1.01239 0.1) (-0.29726 -1.01222 0.1) (-0.340301 -1.01208 0.1) (-0.3405731931 -0.9208583704 0.1) (-0.2978033548 -0.9213657282 0.1) (-0.2990461198 -0.8773516945 0.1) (-0.3415157479 -0.8763837273 0.1) (-0.3470348758 -0.7483140801 0.1) (-0.3052226814 -0.7508599623 0.1) (-0.3074874751 -0.7100257521 0.1) (-0.3491843409 -0.7069511339 0.1) (-0.3551978827 -0.5839283329 0.1) (-0.3128191309 -0.588750055 0.1) (-0.3139592815 -0.5479914112 0.1) (-0.3567091102 -0.5425548311 0.1) (-0.3583504291 -0.4157963852 0.1) (-0.3158121798 -0.4214810024 0.1) (-0.3151909374 -0.3779740786 0.1) (-0.3575438124 -0.3725659452 0.1) (-0.3531888563 -0.2400272659 0.1) (-0.3106135773 -0.2441278604 0.1) (-0.3086564373 -0.198462571 0.1) (-0.3512639751 -0.1950480428 0.1) (-0.344927322 -0.05859941586 0.1) (-0.3022301049 -0.06128860623 0.1) (-0.3000050261 -0.01545155019 0.1) (-0.3427306842 -0.01273052281 0.1) (-0.3361649288 0.1275319878 0.1) (-0.2930652679 0.1245484329 0.1) (-0.2908578175 0.1716467766 0.1) (-0.334114197 0.1750911828 0.1) (-0.3292799812 0.3215011904 0.1) (-0.284355678 0.3184522081 0.1) (-0.282587483 0.3683182792 0.1) (-0.3275527737 0.3723390783 0.1) (-0.3273240152 0.5236843376 0.1) (-0.2829318701 0.5195132074 0.1) (-0.2841691719 0.5706063886 0.1) (-0.3285926001 0.5744240479 0.1) (-0.3341840681 0.7259653044 0.1) (-0.2899477955 0.7236002153 0.1) (-0.292116213 0.7738465141 0.1) (-0.3362200833 0.7756527854 0.1) (-0.340355107 0.9200595016 0.1) (-0.2966793133 0.9200353109 0.1) (-0.2970272237 0.9665598751 0.1) (-0.340495 0.966291 0.1) (-0.339984 1.10368 0.1) (-0.253752 1.104 0.1) (-0.25369 1.1955 0.1) (-0.33981 1.19524 0.1) (-0.339723 1.28677 0.1) (-0.253617 1.28696 0.1) (-0.253479 1.37829 0.1) (-0.339655 1.37822 0.1) (-0.253377 1.4696 0.1) (-0.167064 1.46964 0.1) (-0.166945 1.65224 0.1) (-0.166826 1.83483 0.1) (-0.166743 2.01742 0.1) (-0.166667 2.2 0.1) (0.00555556 -2.2 0.1) (0.00551007 -2.01742 0.1) (0.00546213 -1.83484 0.1) (0.00540281 -1.65225 0.1) (0.0053634 -1.46967 0.1) (-0.0809386 -1.46965 0.1) (-0.0809705 -1.37835 0.1) (-0.167621 -1.37821 0.1) (-0.167738 -1.2869 0.1) (-0.0810137 -1.28705 0.1) (-0.081081 -1.19575 0.1) (-0.167848 -1.19558 0.1) (-0.167946 -1.10413 0.1) (-0.081294 -1.10442 0.1) (-0.08179833561 -1.01292816 0.1) (-0.1250045303 -1.012740746 0.1) (-0.16807 -1.01263 0.1) (-0.1696107291 -0.9233308754 0.1) (-0.1269508677 -0.9240994002 0.1) (-0.1289635515 -0.8817324572 0.1) (-0.1714472019 -0.8805515956 0.1) (-0.1789313557 -0.7579707887 0.1) (-0.1367690571 -0.760508442 0.1) (-0.1393019479 -0.7213097748 0.1) (-0.1817158154 -0.7188456096 0.1) (-0.1869542804 -0.6008195853 0.1) (-0.1446122322 -0.6042610726 0.1) (-0.1451937722 -0.5643682983 0.1) (-0.1875778953 -0.5608031254 0.1) (-0.1863182302 -0.435791577 0.1) (-0.1433251158 -0.4392440558 0.1) (-0.1418490597 -0.3952614046 0.1) (-0.1853006468 -0.3920339887 0.1) (-0.1814815198 -0.2540815873 0.1) (-0.1371343787 -0.2580517482 0.1) (-0.1364175357 -0.2349504404 0.1) (-0.1366446307 -0.2105601137 0.1) (-0.1585875314 -0.2083904421 0.1) (-0.1800403574 -0.2071434766 0.1) (-0.1741714569 -0.06751913607 0.1) (-0.1528293912 -0.06855108719 0.1) (-0.1517175554 -0.04516914056 0.1) (-0.173063737 -0.04426391539 0.1) (-0.1633313894 0.1204098444 0.1) (-0.1413783088 0.1200477848 0.1) (-0.1190776188 0.1198351363 0.1) (-0.1172824863 0.1430615916 0.1) (-0.115926161 0.1659708383 0.1) (-0.1599925964 0.1670871427 0.1) (-0.1524074009 0.3078780848 0.1) (-0.1091238565 0.3049185041 0.1) (-0.1076433143 0.3532911977 0.1) (-0.1511225103 0.3564920878 0.1) (-0.1504303459 0.5081337111 0.1) (-0.1061437792 0.5052589193 0.1) (-0.1068706949 0.5571569414 0.1) (-0.1513158429 0.5601125454 0.1) (-0.1566552282 0.7168545604 0.1) (-0.112490097 0.7142523475 0.1) (-0.1150821281 0.7662327274 0.1) (-0.159109239 0.7683796347 0.1) (-0.1658238949 0.9183087638 0.1) (-0.1223069347 0.9175643465 0.1) (-0.1238510451 0.9658228375 0.1) (-0.1671600125 0.966154917 0.1) (-0.167581 1.10426 0.1) (-0.0812491 1.10447 0.1) (-0.0810988 1.19579 0.1) (-0.167498 1.19571 0.1) (-0.167364 1.28702 0.1) (-0.0810205 1.28709 0.1) (-0.080918 1.37839 0.1) (-0.16716 1.37833 0.1) (-0.0808667 1.46969 0.1) (0.00526028 1.4697 0.1) (0.00533705 1.65227 0.1) (0.00541418 1.83485 0.1) (0.00548531 2.01743 0.1) (0.00555556 2.2 0.1) (0.177778 -2.2 0.1) (0.177739 -2.01742 0.1) (0.1777 -1.83484 0.1) (0.177661 -1.65227 0.1) (0.177627 -1.46969 0.1) (0.0915047 -1.4697 0.1) (0.0914852 -1.37841 0.1) (0.00534656 -1.37838 0.1) (0.00532381 -1.28709 0.1) (0.0914651 -1.28711 0.1) (0.0914414 -1.19582 0.1) (0.00528866 -1.19579 0.1) (0.00515509 -1.10449 0.1) (0.0913796 -1.10453 0.1) (0.09101517524 -1.013503339 0.1) (0.04780860133 -1.013337242 0.1) (0.004691275986 -1.013285189 0.1) (0.002042851362 -0.9261704256 0.1) (0.04509839443 -0.9265601075 0.1) (0.04274676411 -0.8853304672 0.1) (-0.0002754517986 -0.884748304 0.1) (-0.008684846438 -0.7667006812 0.1) (0.03427162297 -0.7679777216 0.1) (0.03168765908 -0.7300266125 0.1) (-0.01126447143 -0.7285321659 0.1) (-0.01603885506 -0.6132298109 0.1) (0.02694418952 -0.6153270123 0.1) (0.02665209291 -0.5757841599 0.1) (-0.01639357759 -0.5735461106 0.1) (-0.01372465883 -0.4474880914 0.1) (0.02962034932 -0.4497828603 0.1) (0.03161804092 -0.4048352246 0.1) (-0.01181896377 -0.4026791836 0.1) (-0.0057308288 -0.265938567 0.1) (0.01628484874 -0.2671296097 0.1) (0.01725218528 -0.2443517577 0.1) (-0.00472889911 -0.2431643875 0.1) (0.01200530158 0.115025359 0.1) (0.0338198094 0.1141023291 0.1) (0.03500889798 0.1368634681 0.1) (0.0132278299 0.1378089115 0.1) (0.02173640772 0.2977544915 0.1) (0.064977268 0.2955123571 0.1) (0.06688886955 0.3426827148 0.1) (0.02356579355 0.3451369212 0.1) (0.02538368277 0.4955174037 0.1) (0.06885960719 0.4930273004 0.1) (0.06814904908 0.5454900563 0.1) (0.02463573777 0.5478336739 0.1) (0.01881392778 0.7076134096 0.1) (0.06236869946 0.7059902305 0.1) (0.05967912286 0.7594489407 0.1) (0.01608744565 0.7607760548 0.1) (0.008059996616 0.9156112958 0.1) (0.05196766857 0.9146425101 0.1) (0.04988333167 0.9642260632 0.1) (0.006112402186 0.9648589581 0.1) (0.00498511 1.10452 0.1) (0.0912177 1.10457 0.1) (0.0912678 1.19586 0.1) (0.00512268 1.19582 0.1) (0.00517435 1.28712 0.1) (0.0913049 1.28714 0.1) (0.0913415 1.37843 0.1) (0.00522194 1.37841 0.1) (0.0913798 1.46972 0.1) (0.17756 1.46972 0.1) (0.177642 1.65229 0.1) (0.17769 1.83486 0.1) (0.177734 2.01743 0.1) (0.177778 2.2 0.1) (0.35 -2.2 0.1) (0.349964 -2.01742 0.1) (0.349927 -1.83485 0.1) (0.349892 -1.65227 0.1) (0.349867 -1.4697 0.1) (0.263757 -1.46971 0.1) (0.263743 -1.37842 0.1) (0.177608 -1.3784 0.1) (0.177589 -1.28711 0.1) (0.263728 -1.28713 0.1) (0.263712 -1.19584 0.1) (0.17757 -1.19582 0.1) (0.177544 -1.10453 0.1) (0.263698 -1.10455 0.1) (0.2634085216 -1.013773684 0.1) (0.2203553498 -1.013703006 0.1) (0.1772712131 -1.013627797 0.1) (0.1742212741 -0.9279988268 0.1) (0.2172363416 -0.928322077 0.1) (0.2147275421 -0.8879174241 0.1) (0.1717404175 -0.8874014491 0.1) (0.1631177975 -0.7721535643 0.1) (0.2060724476 -0.7733304288 0.1) (0.2035179439 -0.7362785329 0.1) (0.1605585753 -0.7348838054 0.1) (0.1560546782 -0.62168376 0.1) (0.199055743 -0.6235970096 0.1) (0.1989021058 -0.5844064997 0.1) (0.1558805563 -0.5823898577 0.1) (0.1592311483 -0.4562324563 0.1) (0.202317044 -0.4582977153 0.1) (0.2044369505 -0.4130626031 0.1) (0.1613384459 -0.4110379182 0.1) (0.1678934176 -0.2745392153 0.1) (0.1894570256 -0.2755652659 0.1) (0.1905446701 -0.2528502887 0.1) (0.1689812068 -0.2518212415 0.1) (0.1860182203 0.1071418021 0.1) (0.2077081983 0.1060996388 0.1) (0.2088176243 0.1288095598 0.1) (0.1871388264 0.129855188 0.1) (0.1949499243 0.289057918 0.1) (0.2382251237 0.2869067153 0.1) (0.2402067582 0.3334407082 0.1) (0.1969235654 0.3356918984 0.1) (0.1993822489 0.4855849525 0.1) (0.2427610405 0.4833362162 0.1) (0.2422538135 0.5361321706 0.1) (0.1988389594 0.5382831934 0.1) (0.1933619087 0.7003820569 0.1) (0.2368508719 0.6987803863 0.1) (0.234094058 0.7532044028 0.1) (0.1905978437 0.754585704 0.1) (0.1819653742 0.9127418646 0.1) (0.2253960055 0.9120836668 0.1) (0.22308503 0.9625667561 0.1) (0.1797048965 0.9630079596 0.1) (0.177442 1.10447 0.1) (0.263862 1.10431 0.1) (0.263862 1.19583 0.1) (0.177467 1.19586 0.1) (0.177495 1.28715 0.1) (0.263864 1.28717 0.1) (0.263866 1.37846 0.1) (0.177525 1.37843 0.1) (0.263867 1.46975 0.1) (0.350165 1.46972 0.1) (0.350091 1.65229 0.1) (0.350058 1.83486 0.1) (0.350028 2.01743 0.1) (0.35 2.2 0.1) (0.522222 -2.2 0.1) (0.522182 -2.01743 0.1) (0.522141 -1.83485 0.1) (0.522103 -1.65228 0.1) (0.522069 -1.46971 0.1) (0.435968 -1.46972 0.1) (0.43595 -1.37843 0.1) (0.349852 -1.37841 0.1) (0.349837 -1.28712 0.1) (0.435933 -1.28714 0.1) (0.435915 -1.19585 0.1) (0.349822 -1.19584 0.1) (0.349806 -1.10455 0.1) (0.435897 -1.10456 0.1) (0.4354539267 -1.014079278 0.1) (0.3924476706 -1.014001518 0.1) (0.3494478373 -1.013905866 0.1) (0.3461421088 -0.9292254387 0.1) (0.3890672126 -0.9295856073 0.1) (0.3864662915 -0.8899321752 0.1) (0.34356711 -0.8893724433 0.1) (0.3348270685 -0.7767185262 0.1) (0.3776943814 -0.7779451473 0.1) (0.3751467919 -0.7417517618 0.1) (0.3322764139 -0.7403110675 0.1) (0.3279011404 -0.6291892202 0.1) (0.3708079425 -0.6311252485 0.1) (0.3707149668 -0.5923488619 0.1) (0.3277899737 -0.5903214443 0.1) (0.3313421765 -0.4644057824 0.1) (0.3743219989 -0.4664369864 0.1) (0.3764715741 -0.4210779144 0.1) (0.3334858277 -0.4190817002 0.1) (0.3400325123 -0.2826717008 0.1) (0.3615128449 -0.2836807158 0.1) (0.3625940003 -0.2609964614 0.1) (0.3518529316 -0.260489908 0.1) (0.3411208525 -0.2599837886 0.1) (0.3593362097 0.09856394892 0.1) (0.3809411003 0.09745981668 0.1) (0.3820133145 0.1201455039 0.1) (0.3604155603 0.1212522951 0.1) (0.367953031 0.2803228008 0.1) (0.4110576064 0.2781093106 0.1) (0.4129669363 0.3249307806 0.1) (0.3698894525 0.3270080589 0.1) (0.3723529739 0.4780887606 0.1) (0.4153822599 0.4765001793 0.1) (0.4148446683 0.5300314448 0.1) (0.3718255625 0.5314280889 0.1) (0.3663820164 0.6959903425 0.1) (0.4093651146 0.6951880377 0.1) (0.4066128271 0.7504170705 0.1) (0.3636211484 0.7510363162 0.1) (0.3549483329 0.9113473234 0.1) (0.3979804148 0.9111361051 0.1) (0.3957090893 0.9619730259 0.1) (0.3526600595 0.9621086287 0.1) (0.350236 1.10409 0.1) (0.43642 1.10386 0.1) (0.4364 1.19541 0.1) (0.350224 1.19563 0.1) (0.350216 1.28715 0.1) (0.436392 1.287 0.1) (0.436371 1.37844 0.1) (0.350194 1.37844 0.1) (0.436339 1.46973 0.1) (0.52247 1.4697 0.1) (0.522403 1.65228 0.1) (0.522334 1.83485 0.1) (0.522278 2.01743 0.1) (0.522222 2.2 0.1) (0.694444 -2.2 0.1) (0.694421 -2.01743 0.1) (0.694395 -1.83486 0.1) (0.694367 -1.65229 0.1) (0.694266 -1.46972 0.1) (0.608164 -1.46973 0.1) (0.608143 -1.37844 0.1) (0.522052 -1.37842 0.1) (0.522033 -1.28714 0.1) (0.608122 -1.28715 0.1) (0.608101 -1.19587 0.1) (0.522015 -1.19585 0.1) (0.521997 -1.10456 0.1) (0.608086 -1.10458 0.1) (0.6074846827 -1.014420132 0.1) (0.5644873226 -1.014321154 0.1) (0.5214813339 -1.014229681 0.1) (0.5178822649 -0.9307716409 0.1) (0.5608139449 -0.93120751 0.1) (0.5581094858 -0.8923795857 0.1) (0.5152038402 -0.8917321624 0.1) (0.5063405113 -0.7817690796 0.1) (0.5492160818 -0.7830988744 0.1) (0.546684528 -0.7477564663 0.1) (0.5038046844 -0.7462149188 0.1) (0.499584583 -0.637023788 0.1) (0.5425084966 -0.6390259086 0.1) (0.5424923203 -0.6005725175 0.1) (0.4995483759 -0.5984971706 0.1) (0.5033343435 -0.4725011933 0.1) (0.546340521 -0.474510194 0.1) (0.5485166617 -0.4290216469 0.1) (0.5055050281 -0.4270432051 0.1) (0.5120416689 -0.2907168186 0.1) (0.5335426052 -0.2917138133 0.1) (0.5346228787 -0.2690685617 0.1) (0.5238725312 -0.2685675673 0.1) (0.5131242295 -0.2680656705 0.1) (0.5319194741 0.08957404683 0.1) (0.5534914099 0.0884094334 0.1) (0.5545395898 0.1110742554 0.1) (0.5329738882 0.1122435737 0.1) (0.5403225601 0.2715052202 0.1) (0.5833754948 0.2694066074 0.1) (0.5850608935 0.3174370479 0.1) (0.5420764004 0.3191190159 0.1) (0.5440162983 0.4733844941 0.1) (0.5867109957 0.4731099793 0.1) (0.5861062583 0.5273388784 0.1) (0.543337449 0.5278178144 0.1) (0.5375932676 0.6951724186 0.1) (0.5803013679 0.6951899662 0.1) (0.5775674761 0.7509910154 0.1) (0.5348376598 0.7508928985 0.1) (0.5265200025 0.9119589815 0.1) (0.5693645866 0.9120979531 0.1) (0.5673852933 0.96265352 0.1) (0.5244703748 0.9625674027 0.1) (0.522596 1.10359 0.1) (0.608805 1.10329 0.1) (0.608783 1.19489 0.1) (0.522553 1.19516 0.1) (0.522536 1.28678 0.1) (0.608754 1.28653 0.1) (0.608691 1.37816 0.1) (0.522505 1.3784 0.1) (0.608659 1.46969 0.1) (0.694922 1.46961 0.1) (0.694721 1.65224 0.1) (0.69458 1.83483 0.1) (0.694507 2.01742 0.1) (0.694444 2.2 0.1) (0.866667 -2.2 0.1) (0.866804 -2.01742 0.1) (0.866933 -1.83485 0.1) (0.867013 -1.65228 0.1) (0.866587 -1.46974 0.1) (0.780367 -1.46974 0.1) (0.780339 -1.37845 0.1) (0.694242 -1.37843 0.1) (0.69422 -1.28715 0.1) (0.780315 -1.28717 0.1) (0.780291 -1.19588 0.1) (0.694197 -1.19586 0.1) (0.694176 -1.10458 0.1) (0.780267 -1.1046 0.1) (0.7794874067 -1.014800074 0.1) (0.7364251847 -1.014846687 0.1) (0.6934473677 -1.014680442 0.1) (0.6895367311 -0.9326756826 0.1) (0.7324270431 -0.9332544725 0.1) (0.7296119564 -0.895326821 0.1) (0.6867515124 -0.894511006 0.1) (0.677770392 -0.7873162511 0.1) (0.7206005189 -0.7888506904 0.1) (0.7180931482 -0.7543438331 0.1) (0.6752557127 -0.7526027812 0.1) (0.6712204306 -0.6451845388 0.1) (0.7141164833 -0.6473285281 0.1) (0.7141923793 -0.6090959364 0.1) (0.6712701145 -0.6069118405 0.1) (0.6753224062 -0.480502007 0.1) (0.7183250478 -0.4824934259 0.1) (0.7205138465 -0.4368999935 0.1) (0.6775117673 -0.4349310234 0.1) (0.6840313177 -0.2986268386 0.1) (0.7055311725 -0.2996047589 0.1) (0.7066043783 -0.2770022162 0.1) (0.695850552 -0.2765110655 0.1) (0.6851047646 -0.2760193017 0.1) (0.7040684429 0.08011153786 0.1) (0.7255664232 0.07888742154 0.1) (0.7265962383 0.1015451208 0.1) (0.7050985955 0.102776229 0.1) (0.7122241514 0.2634784737 0.1) (0.7551065875 0.261735368 0.1) (0.756504898 0.3116760994 0.1) (0.7137074008 0.3128465083 0.1) (0.7146065042 0.4723914363 0.1) (0.7573401692 0.471871995 0.1) (0.7563411091 0.5280739742 0.1) (0.7138397647 0.5274972839 0.1) (0.7078637304 0.6972035865 0.1) (0.7501480947 0.6987537553 0.1) (0.7474475184 0.7547618763 0.1) (0.7051724297 0.7531780277 0.1) (0.6975893193 0.9136114289 0.1) (0.7403313464 0.9141078011 0.1) (0.7388213671 0.9637108627 0.1) (0.6959551482 0.9634994072 0.1) (0.694995 1.10296 0.1) (0.781109 1.10262 0.1) (0.781098 1.1943 0.1) (0.694983 1.1946 0.1) (0.694971 1.28624 0.1) (0.781097 1.28597 0.1) (0.781101 1.37767 0.1) (0.694945 1.37791 0.1) (0.781109 1.4694 0.1) (0.867247 1.46918 0.1) (0.867081 1.65219 0.1) (0.866868 1.8348 0.1) (0.866754 2.0174 0.1) (0.866667 2.2 0.1) (1.03889 -2.2 0.1) (1.03889 -2.01667 0.1) (1.03889 -1.83333 0.1) (1.03889 -1.65 0.1) (1.03889 -1.46667 0.1) (0.953286 -1.46972 0.1) (0.953361 -1.37843 0.1) (0.866525 -1.37846 0.1) (0.866505 -1.28717 0.1) (0.953429 -1.28714 0.1) (0.953488 -1.19585 0.1) (0.866488 -1.19589 0.1) (0.866462 -1.10461 0.1) (0.953452 -1.10458 0.1) (0.9512742268 -1.016388735 0.1) (0.9081417681 -1.016029648 0.1) (0.8652741616 -1.015551089 0.1) (0.8610361523 -0.9351860389 0.1) (0.903683668 -0.9364648426 0.1) (0.9007403115 -0.8995855331 0.1) (0.8581810974 -0.8978645599 0.1) (0.8489813273 -0.7938766633 0.1) (0.8916994135 -0.7958665543 0.1) (0.8892770137 -0.7620321792 0.1) (0.8465033817 -0.7599805227 0.1) (0.8427350302 -0.6540505668 0.1) (0.8856901655 -0.6560133164 0.1) (0.885803426 -0.618210912 0.1) (0.842903734 -0.6158752202 0.1) (0.847306625 -0.4884883102 0.1) (0.8903018637 -0.4905160188 0.1) (0.8924839592 -0.444862132 0.1) (0.8709936383 -0.4438526347 0.1) (0.8495010303 -0.442849034 0.1) (0.8560224823 -0.3064017745 0.1) (0.8667585707 -0.306887063 0.1) (0.8672913229 -0.2955826023 0.1) (0.8565581828 -0.2950984573 0.1) (0.8680397916 -0.1104087152 0.1) (0.8733875415 -0.1107917642 0.1) (0.8787380282 -0.1111388633 0.1) (0.8791464951 -0.1000654279 0.1) (0.8684570739 -0.09931858552 0.1) (0.875770378 0.06982963281 0.1) (0.8971704581 0.06844404966 0.1) (0.9185641111 0.06704976632 0.1) (0.9206451858 0.1124982857 0.1) (0.8778281142 0.1152302219 0.1) (0.8768016537 0.092538321 0.1) (0.883493442 0.2573005587 0.1) (0.9261944642 0.2564907209 0.1) (0.9272234911 0.3090065956 0.1) (0.8847019332 0.3088186083 0.1) (0.8847809566 0.4734995677 0.1) (0.9271383648 0.4745815467 0.1) (0.9258978028 0.5318256865 0.1) (0.8835673358 0.5306222588 0.1) (0.8771852261 0.7026702336 0.1) (0.9195827336 0.7038213416 0.1) (0.9170745289 0.7595213801 0.1) (0.8746020643 0.7585253263 0.1) (0.8683130236 0.9162258703 0.1) (0.911122448 0.9164696767 0.1) (0.9103280345 0.9643660917 0.1) (0.8673800732 0.9644394678 0.1) (0.867204 1.10226 0.1) (0.953252 1.10189 0.1) (0.953259 1.19361 0.1) (0.867204 1.19395 0.1) (0.867215 1.28567 0.1) (0.953283 1.2854 0.1) (0.953316 1.3772 0.1) (0.867233 1.37742 0.1) (0.953348 1.469 0.1) (1.03943 1.46885 0.1) (1.0394 1.65214 0.1) (1.0392 1.83477 0.1) (1.03904 2.01739 0.1) (1.03889 2.2 0.1) (1.21111 -2.2 0.1) (1.21111 -2.01667 0.1) (1.21111 -1.83333 0.1) (1.21111 -1.65 0.1) (1.21111 -1.46667 0.1) (1.125 -1.46667 0.1) (1.125 -1.375 0.1) (1.03889 -1.375 0.1) (1.03889 -1.28333 0.1) (1.125 -1.28333 0.1) (1.125 -1.19167 0.1) (1.03889 -1.19167 0.1) (1.03889 -1.1 0.1) (1.125 -1.1 0.1) (1.123705721 -1.01174935 0.1) (1.080477341 -1.012131918 0.1) (1.037327057 -1.012326251 0.1) (1.032584847 -0.934331568 0.1) (1.075837419 -0.9340472651 0.1) (1.072835275 -0.8980499118 0.1) (1.029542741 -0.8983210129 0.1) (1.020416542 -0.7971107085 0.1) (1.063762387 -0.7971054454 0.1) (1.061371663 -0.7641017549 0.1) (1.018033773 -0.7639487081 0.1) (1.014736786 -0.6589393339 0.1) (1.057974144 -0.6597538318 0.1) (1.058271995 -0.6216952373 0.1) (1.015090106 -0.6205964966 0.1) (1.019952951 -0.4915683778 0.1) (1.062952867 -0.4936443681 0.1) (1.06516311 -0.4478636912 0.1) (1.043668146 -0.4468259371 0.1) (1.022163194 -0.4457877009 0.1) (1.028793825 -0.3084476676 0.1) (1.050298777 -0.3094859039 0.1) (1.05140385 -0.2865965642 0.1) (1.04064638 -0.286077205 0.1) (1.029898898 -0.285558328 0.1) (1.029346361 -0.2970029978 0.1) (1.037634649 -0.1253279891 0.1) (1.048382131 -0.125846847 0.1) (1.059139602 -0.1263661966 0.1) (1.060244709 -0.1034761537 0.1) (1.038739757 -0.1024379174 0.1) (1.046475476 0.05779175513 0.1) (1.089475391 0.05571576483 0.1) (1.091652082 0.101985544 0.1) (1.048678703 0.1036719298 0.1) (1.054099751 0.2540058391 0.1) (1.096496523 0.2538737315 0.1) (1.097225919 0.3084129135 0.1) (1.054874467 0.3080604318 0.1) (1.053834146 0.4796471826 0.1) (1.096153244 0.4808348562 0.1) (1.094684281 0.5395659257 0.1) (1.05257953 0.5370408066 0.1) (1.046263002 0.7093434162 0.1) (1.088313166 0.7118426929 0.1) (1.086367374 0.7658166784 0.1) (1.043985915 0.7644188377 0.1) (1.039444068 0.9174543573 0.1) (1.082328625 0.9174268999 0.1) (1.08225 0.963502 0.1) (1.03926 0.963775 0.1) (1.03928 1.10146 0.1) (1.12532 1.10101 0.1) (1.12539 1.19295 0.1) (1.03931 1.19327 0.1) (1.03934 1.28514 0.1) (1.12544 1.28491 0.1) (1.12548 1.37679 0.1) (1.03939 1.377 0.1) (1.12552 1.46859 0.1) (1.2116 1.46826 0.1) (1.21159 1.65175 0.1) (1.21146 1.83473 0.1) (1.21128 2.01737 0.1) (1.21111 2.2 0.1) (1.38333 -2.2 0.1) (1.38333 -2.01667 0.1) (1.38333 -1.83333 0.1) (1.38333 -1.65 0.1) (1.38333 -1.46667 0.1) (1.29722 -1.46667 0.1) (1.29722 -1.375 0.1) (1.21111 -1.375 0.1) (1.21111 -1.28333 0.1) (1.29722 -1.28333 0.1) (1.29722 -1.19167 0.1) (1.21111 -1.19167 0.1) (1.21111 -1.1 0.1) (1.29722 -1.1 0.1) (1.296917704 -1.009180364 0.1) (1.253621478 -1.009849512 0.1) (1.210295063 -1.010552622 0.1) (1.20643386 -0.9306450235 0.1) (1.25017486 -0.9287999823 0.1) (1.247661658 -0.8915824125 0.1) (1.203747612 -0.8939340903 0.1) (1.195179935 -0.7919755381 0.1) (1.239401589 -0.7885806148 0.1) (1.237024976 -0.7555634188 0.1) (1.192784392 -0.7590912931 0.1) (1.188840061 -0.6567958256 0.1) (1.232878928 -0.6537142496 0.1) (1.232695646 -0.6174595791 0.1) (1.188799379 -0.6200722787 0.1) (1.192191108 -0.4984394363 0.1) (1.235533586 -0.4982915128 0.1) (1.237346257 -0.4550261947 0.1) (1.194193562 -0.4540135967 0.1) (1.200813465 -0.3167525933 0.1) (1.243823369 -0.3188290658 0.1) (1.246033564 -0.2730493877 0.1) (1.203023659 -0.2709729152 0.1) (1.201918538 -0.2938632536 0.1) (1.20965429 -0.1336328819 0.1) (1.252664195 -0.1357093544 0.1) (1.254874403 -0.08992937665 0.1) (1.211864499 -0.08785290412 0.1) (1.218439206 0.05068167502 0.1) (1.261354421 0.0507216582 0.1) (1.263257898 0.1005769719 0.1) (1.220436613 0.09950534561 0.1) (1.224439656 0.2580283817 0.1) (1.266924091 0.2611231237 0.1) (1.267209613 0.3178582169 0.1) (1.224823777 0.3144412569 0.1) (1.2227037 0.4895497523 0.1) (1.264941491 0.4930082393 0.1) (1.26331166 0.5514821996 0.1) (1.221058212 0.548272022 0.1) (1.215016112 0.7183689685 0.1) (1.257526185 0.7202821102 0.1) (1.255887333 0.772898248 0.1) (1.213442699 0.7707776659 0.1) (1.21111 0.916667 0.1) (1.25417 0.916667 0.1) (1.25417 0.9625 0.1) (1.21125 0.962818 0.1) (1.21135 1.10065 0.1) (1.29756 1.10048 0.1) (1.29749 1.1924 0.1) (1.21147 1.19275 0.1) (1.21153 1.28465 0.1) (1.29758 1.2844 0.1) (1.29764 1.37625 0.1) (1.21159 1.37654 0.1) (1.29764 1.46792 0.1) (1.38364 1.46759 0.1) (1.38374 1.65132 0.1) (1.38369 1.83462 0.1) (1.38351 2.01735 0.1) (1.38333 2.2 0.1) (1.55556 -2.2 0.1) (1.55556 -2.01667 0.1) (1.55556 -1.83333 0.1) (1.55556 -1.65 0.1) (1.55556 -1.46667 0.1) (1.46944 -1.46667 0.1) (1.46944 -1.375 0.1) (1.38333 -1.375 0.1) (1.38333 -1.28333 0.1) (1.46944 -1.28333 0.1) (1.46944 -1.19167 0.1) (1.38333 -1.19167 0.1) (1.38333 -1.1 0.1) (1.46944 -1.1 0.1) (1.46944 -1.00833 0.1) (1.42639 -1.00833 0.1) (1.383322575 -1.008351521 0.1) (1.381552718 -0.9223211255 0.1) (1.425274371 -0.9202700092 0.1) (1.423794844 -0.8796390587 0.1) (1.379765166 -0.8827453915 0.1) (1.372945281 -0.774108085 0.1) (1.417641419 -0.7682422236 0.1) (1.415563815 -0.7333656741 0.1) (1.370752152 -0.739922703 0.1) (1.366228275 -0.6374563321 0.1) (1.411044746 -0.6298032939 0.1) (1.410363357 -0.5944034932 0.1) (1.365647362 -0.6020632116 0.1) (1.366831306 -0.4886001762 0.1) (1.411055499 -0.481904626 0.1) (1.412096943 -0.4419141565 0.1) (1.368061802 -0.4480536655 0.1) (1.373315246 -0.3192545064 0.1) (1.416859411 -0.314758858 0.1) (1.418790438 -0.2703161585 0.1) (1.375366417 -0.2744902674 0.1) (1.381790522 -0.1362747595 0.1) (1.42493463 -0.1318082005 0.1) (1.426966902 -0.08382608541 0.1) (1.383920405 -0.08876573634 0.1) (1.389706097 0.06023958602 0.1) (1.432363025 0.06693670745 0.1) (1.433732069 0.1197369334 0.1) (1.391231865 0.1125536199 0.1) (1.393684918 0.2775307344 0.1) (1.435741885 0.2852729188 0.1) (1.435595774 0.3422042593 0.1) (1.393643462 0.3346362794 0.1) (1.390995583 0.5077681294 0.1) (1.432886788 0.5137589095 0.1) (1.431464816 0.5698512946 0.1) (1.389493012 0.5646818227 0.1) (1.38487613 0.7270565361 0.1) (1.427385815 0.7292340349 0.1) (1.426613171 0.7783037939 0.1) (1.383845895 0.7771997081 0.1) (1.38333 0.916667 0.1) (1.42639 0.916667 0.1) (1.42639 0.9625 0.1) (1.38333 0.9625 0.1) (1.38333 1.1 0.1) (1.46944 1.1 0.1) (1.46983 1.19203 0.1) (1.38358 1.19218 0.1) (1.38365 1.28424 0.1) (1.46966 1.28378 0.1) (1.46961 1.37544 0.1) (1.38362 1.37587 0.1) (1.46965 1.46727 0.1) (1.55574 1.46706 0.1) (1.55584 1.65071 0.1) (1.55579 1.834 0.1) (1.55576 2.01733 0.1) (1.55556 2.2 0.1) (1.72778 -2.2 0.1) (1.72778 -2.01667 0.1) (1.72778 -1.83333 0.1) (1.72778 -1.65 0.1) (1.72778 -1.46667 0.1) (1.64167 -1.46667 0.1) (1.64167 -1.375 0.1) (1.55556 -1.375 0.1) (1.55556 -1.28333 0.1) (1.64167 -1.28333 0.1) (1.64167 -1.19167 0.1) (1.55556 -1.19167 0.1) (1.55556 -1.1 0.1) (1.64167 -1.1 0.1) (1.64167 -1.00833 0.1) (1.59861 -1.00833 0.1) (1.55556 -1.00833 0.1) (1.555553481 -0.9166889842 0.1) (1.59861 -0.916667 0.1) (1.598542872 -0.8710744852 0.1) (1.555163271 -0.872240269 0.1) (1.551552927 -0.7501030253 0.1) (1.595939143 -0.7446844181 0.1) (1.594630935 -0.7054833726 0.1) (1.550007408 -0.7121991871 0.1) (1.546026688 -0.6022102388 0.1) (1.591011956 -0.5923416822 0.1) (1.590188129 -0.5550499754 0.1) (1.545196151 -0.5656712795 0.1) (1.544740376 -0.4525756944 0.1) (1.589479698 -0.4406025022 0.1) (1.589850054 -0.4009301074 0.1) (1.545261026 -0.4130987178 0.1) (1.548418883 -0.2880197215 0.1) (1.592461644 -0.2756902523 0.1) (1.593696922 -0.2316931159 0.1) (1.549850855 -0.2440207028 0.1) (1.5545813 -0.1050608973 0.1) (1.597823397 -0.09270685407 0.1) (1.599168915 -0.04405421025 0.1) (1.556131206 -0.05641210096 0.1) (1.559968185 0.09642031538 0.1) (1.602408068 0.1084805665 0.1) (1.603071925 0.1612609881 0.1) (1.560810455 0.1494944315 0.1) (1.561532011 0.3132285441 0.1) (1.603424419 0.3232405566 0.1) (1.602999262 0.3776518591 0.1) (1.561147323 0.3685398558 0.1) (1.558615487 0.5323423501 0.1) (1.600675137 0.5379277739 0.1) (1.599827675 0.5892853623 0.1) (1.55758473 0.5850770072 0.1) (1.555577019 0.7332600087 0.1) (1.59861 0.733333 0.1) (1.59861 0.779167 0.1) (1.55556 0.779167 0.1) (1.55556 0.916667 0.1) (1.59861 0.916667 0.1) (1.59861 0.9625 0.1) (1.55556 0.9625 0.1) (1.55556 1.1 0.1) (1.64167 1.1 0.1) (1.64167 1.19167 0.1) (1.55556 1.19167 0.1) (1.55556 1.28333 0.1) (1.64167 1.28333 0.1) (1.64167 1.375 0.1) (1.55556 1.375 0.1) (1.64167 1.46667 0.1) (1.72778 1.46667 0.1) (1.72778 1.65 0.1) (1.72778 1.83333 0.1) (1.72803 2.01725 0.1) (1.72778 2.2 0.1) (1.9 -2.2 0.1) (1.9 -2.01667 0.1) (1.9 -1.83333 0.1) (1.9 -1.65 0.1) (1.9 -1.46667 0.1) (1.81389 -1.46667 0.1) (1.81389 -1.375 0.1) (1.72778 -1.375 0.1) (1.72778 -1.28333 0.1) (1.81389 -1.28333 0.1) (1.81389 -1.19167 0.1) (1.72778 -1.19167 0.1) (1.72778 -1.1 0.1) (1.81389 -1.1 0.1) (1.81389 -1.00833 0.1) (1.77083 -1.00833 0.1) (1.72778 -1.00833 0.1) (1.72778 -0.916667 0.1) (1.77083 -0.916667 0.1) (1.77083 -0.870833 0.1) (1.72778 -0.870833 0.1) (1.727607753 -0.7340976313 0.1) (1.77083 -0.733333 0.1) (1.77070479 -0.6881002908 0.1) (1.727159201 -0.6904353788 0.1) (1.725130732 -0.5655317931 0.1) (1.769353034 -0.5587972141 0.1) (1.76883961 -0.5170566752 0.1) (1.724498696 -0.5250664112 0.1) (1.723475722 -0.4036847681 0.1) (1.767867983 -0.3926423893 0.1) (1.767822011 -0.3507530672 0.1) (1.723500763 -0.3625233904 0.1) (1.724619307 -0.2347723764 0.1) (1.768539095 -0.2216439707 0.1) (1.769002522 -0.1771263291 0.1) (1.72525994 -0.1904483598 0.1) (1.727487277 -0.0516851136 0.1) (1.77064732 -0.03851768597 0.1) (1.771164263 0.009330779545 0.1) (1.728196515 -0.003535789527 0.1) (1.729700841 0.1457082627 0.1) (1.772183291 0.1568610958 0.1) (1.772278057 0.2069480468 0.1) (1.729904551 0.1966509439 0.1) (1.729528788 0.3505160731 0.1) (1.771823443 0.3574124445 0.1) (1.771510507 0.4068927667 0.1) (1.729143776 0.4013732543 0.1) (1.727936673 0.5490511156 0.1) (1.77083044 0.5499973021 0.1) (1.77083 0.595833 0.1) (1.727781832 0.5958227738 0.1) (1.72778 0.733333 0.1) (1.77083 0.733333 0.1) (1.77083 0.779167 0.1) (1.72778 0.779167 0.1) (1.72778 0.916667 0.1) (1.77083 0.916667 0.1) (1.77083 0.9625 0.1) (1.72778 0.9625 0.1) (1.72778 1.1 0.1) (1.81389 1.1 0.1) (1.81389 1.19167 0.1) (1.72778 1.19167 0.1) (1.72778 1.28333 0.1) (1.81389 1.28333 0.1) (1.81389 1.375 0.1) (1.72778 1.375 0.1) (1.81389 1.46667 0.1) (1.9 1.46667 0.1) (1.9 1.65 0.1) (1.9 1.83333 0.1) (1.9 2.01667 0.1) (1.9 2.2 0.1) (2.07222 -2.2 0.1) (2.07222 -2.01667 0.1) (2.07222 -1.83333 0.1) (2.07222 -1.65 0.1) (2.07222 -1.46667 0.1) (1.98611 -1.46667 0.1) (1.98611 -1.375 0.1) (1.9 -1.375 0.1) (1.9 -1.28333 0.1) (1.98611 -1.28333 0.1) (1.98611 -1.19167 0.1) (1.9 -1.19167 0.1) (1.9 -1.1 0.1) (1.98611 -1.1 0.1) (1.98611 -1.00833 0.1) (1.94306 -1.00833 0.1) (1.9 -1.00833 0.1) (1.9 -0.916667 0.1) (1.94306 -0.916667 0.1) (1.94306 -0.870833 0.1) (1.9 -0.870833 0.1) (1.9 -0.733333 0.1) (1.94306 -0.733333 0.1) (1.94306 -0.6875 0.1) (1.9 -0.6875 0.1) (1.9 -0.55 0.1) (1.94306 -0.55 0.1) (1.94306 -0.504167 0.1) (1.899980637 -0.5042980395 0.1) (1.899653027 -0.3698726505 0.1) (1.943020939 -0.3670330527 0.1) (1.942974699 -0.3217437328 0.1) (1.899560697 -0.3254530008 0.1) (1.89954929 -0.191442229 0.1) (1.942914174 -0.1860073967 0.1) (1.942935061 -0.1405131861 0.1) (1.899631133 -0.1462055975 0.1) (1.899978781 -0.008197320908 0.1) (1.943054045 -0.00272368369 0.1) (1.943084382 0.0436031963 0.1) (1.900078296 0.03853060335 0.1) (1.900170917 0.1799643145 0.1) (1.943081172 0.1829122158 0.1) (1.943063902 0.2291054795 0.1) (1.900129753 0.2271420817 0.1) (1.9 0.366667 0.1) (1.94306 0.366667 0.1) (1.94306 0.4125 0.1) (1.9 0.4125 0.1) (1.9 0.55 0.1) (1.94306 0.55 0.1) (1.94306 0.595833 0.1) (1.9 0.595833 0.1) (1.9 0.733333 0.1) (1.94306 0.733333 0.1) (1.94306 0.779167 0.1) (1.9 0.779167 0.1) (1.9 0.916667 0.1) (1.94306 0.916667 0.1) (1.94306 0.9625 0.1) (1.9 0.9625 0.1) (1.9 1.1 0.1) (1.98611 1.1 0.1) (1.98611 1.19167 0.1) (1.9 1.19167 0.1) (1.9 1.28333 0.1) (1.98611 1.28333 0.1) (1.98611 1.375 0.1) (1.9 1.375 0.1) (1.98611 1.46667 0.1) (2.07222 1.46667 0.1) (2.07222 1.65 0.1) (2.07222 1.83333 0.1) (2.07222 2.01667 0.1) (2.07222 2.2 0.1) (2.24444 -2.2 0.1) (2.24444 -2.01667 0.1) (2.24444 -1.83333 0.1) (2.24444 -1.65 0.1) (2.24444 -1.46667 0.1) (2.15833 -1.46667 0.1) (2.15833 -1.375 0.1) (2.07222 -1.375 0.1) (2.07222 -1.28333 0.1) (2.15833 -1.28333 0.1) (2.15833 -1.19167 0.1) (2.07222 -1.19167 0.1) (2.07222 -1.1 0.1) (2.15833 -1.1 0.1) (2.15833 -1.00833 0.1) (2.11528 -1.00833 0.1) (2.07222 -1.00833 0.1) (2.07222 -0.916667 0.1) (2.11528 -0.916667 0.1) (2.11528 -0.870833 0.1) (2.07222 -0.870833 0.1) (2.07222 -0.733333 0.1) (2.11528 -0.733333 0.1) (2.11528 -0.6875 0.1) (2.07222 -0.6875 0.1) (2.07222 -0.55 0.1) (2.11528 -0.55 0.1) (2.11528 -0.504167 0.1) (2.07222 -0.504167 0.1) (2.07222 -0.366667 0.1) (2.11528 -0.366667 0.1) (2.11528 -0.320833 0.1) (2.07222 -0.320833 0.1) (2.07222 -0.183333 0.1) (2.11528 -0.183333 0.1) (2.11528 -0.1375 0.1) (2.07222 -0.1375 0.1) (2.07222 0 0.1) (2.11528 0 0.1) (2.11528 0.0458333 0.1) (2.07222 0.0458333 0.1) (2.07222 0.183333 0.1) (2.11528 0.183333 0.1) (2.11528 0.229167 0.1) (2.07222 0.229167 0.1) (2.07222 0.366667 0.1) (2.11528 0.366667 0.1) (2.11528 0.4125 0.1) (2.07222 0.4125 0.1) (2.07222 0.55 0.1) (2.11528 0.55 0.1) (2.11528 0.595833 0.1) (2.07222 0.595833 0.1) (2.07222 0.733333 0.1) (2.11528 0.733333 0.1) (2.11528 0.779167 0.1) (2.07222 0.779167 0.1) (2.07222 0.916667 0.1) (2.11528 0.916667 0.1) (2.11528 0.9625 0.1) (2.07222 0.9625 0.1) (2.07222 1.1 0.1) (2.15833 1.1 0.1) (2.15833 1.19167 0.1) (2.07222 1.19167 0.1) (2.07222 1.28333 0.1) (2.15833 1.28333 0.1) (2.15833 1.375 0.1) (2.07222 1.375 0.1) (2.15833 1.46667 0.1) (2.24444 1.46667 0.1) (2.24444 1.65 0.1) (2.24444 1.83333 0.1) (2.24444 2.01667 0.1) (2.24444 2.2 0.1) (2.41667 -2.2 0.1) (2.41667 -2.01667 0.1) (2.41667 -1.83333 0.1) (2.41667 -1.65 0.1) (2.41667 -1.46667 0.1) (2.33056 -1.46667 0.1) (2.33056 -1.375 0.1) (2.24444 -1.375 0.1) (2.24444 -1.28333 0.1) (2.33056 -1.28333 0.1) (2.33056 -1.19167 0.1) (2.24444 -1.19167 0.1) (2.24444 -1.1 0.1) (2.33056 -1.1 0.1) (2.33056 -1.00833 0.1) (2.2875 -1.00833 0.1) (2.24444 -1.00833 0.1) (2.24444 -0.916667 0.1) (2.2875 -0.916667 0.1) (2.2875 -0.870833 0.1) (2.24444 -0.870833 0.1) (2.24444 -0.733333 0.1) (2.2875 -0.733333 0.1) (2.2875 -0.6875 0.1) (2.24444 -0.6875 0.1) (2.24444 -0.55 0.1) (2.2875 -0.55 0.1) (2.2875 -0.504167 0.1) (2.24444 -0.504167 0.1) (2.24444 -0.366667 0.1) (2.2875 -0.366667 0.1) (2.2875 -0.320833 0.1) (2.24444 -0.320833 0.1) (2.24444 -0.183333 0.1) (2.2875 -0.183333 0.1) (2.2875 -0.1375 0.1) (2.24444 -0.1375 0.1) (2.24444 0 0.1) (2.2875 -4.62593e-18 0.1) (2.2875 0.0458333 0.1) (2.24444 0.0458333 0.1) (2.24444 0.183333 0.1) (2.2875 0.183333 0.1) (2.2875 0.229167 0.1) (2.24444 0.229167 0.1) (2.24444 0.366667 0.1) (2.2875 0.366667 0.1) (2.2875 0.4125 0.1) (2.24444 0.4125 0.1) (2.24444 0.55 0.1) (2.2875 0.55 0.1) (2.2875 0.595833 0.1) (2.24444 0.595833 0.1) (2.24444 0.733333 0.1) (2.2875 0.733333 0.1) (2.2875 0.779167 0.1) (2.24444 0.779167 0.1) (2.24444 0.916667 0.1) (2.2875 0.916667 0.1) (2.2875 0.9625 0.1) (2.24444 0.9625 0.1) (2.24444 1.1 0.1) (2.33056 1.1 0.1) (2.33056 1.19167 0.1) (2.24444 1.19167 0.1) (2.24444 1.28333 0.1) (2.33056 1.28333 0.1) (2.33056 1.375 0.1) (2.24444 1.375 0.1) (2.33056 1.46667 0.1) (2.41667 1.46667 0.1) (2.41667 1.65 0.1) (2.41667 1.83333 0.1) (2.41667 2.01667 0.1) (2.41667 2.2 0.1) (2.58889 -2.2 0.1) (2.58889 -2.01667 0.1) (2.58889 -1.83333 0.1) (2.58889 -1.65 0.1) (2.58889 -1.46667 0.1) (2.50278 -1.46667 0.1) (2.50278 -1.375 0.1) (2.41667 -1.375 0.1) (2.41667 -1.28333 0.1) (2.50278 -1.28333 0.1) (2.50278 -1.19167 0.1) (2.41667 -1.19167 0.1) (2.41667 -1.1 0.1) (2.50278 -1.1 0.1) (2.50278 -1.00833 0.1) (2.45972 -1.00833 0.1) (2.41667 -1.00833 0.1) (2.41667 -0.916667 0.1) (2.45972 -0.916667 0.1) (2.45972 -0.870833 0.1) (2.41667 -0.870833 0.1) (2.41667 -0.733333 0.1) (2.45972 -0.733333 0.1) (2.45972 -0.6875 0.1) (2.41667 -0.6875 0.1) (2.41667 -0.55 0.1) (2.45972 -0.55 0.1) (2.45972 -0.504167 0.1) (2.41667 -0.504167 0.1) (2.41667 -0.366667 0.1) (2.45972 -0.366667 0.1) (2.45972 -0.320833 0.1) (2.41667 -0.320833 0.1) (2.41667 -0.183333 0.1) (2.45972 -0.183333 0.1) (2.45972 -0.1375 0.1) (2.41667 -0.1375 0.1) (2.41667 -1.85037e-17 0.1) (2.45972 -1.85037e-17 0.1) (2.45972 0.0458333 0.1) (2.41667 0.0458333 0.1) (2.41667 0.183333 0.1) (2.45972 0.183333 0.1) (2.45972 0.229167 0.1) (2.41667 0.229167 0.1) (2.41667 0.366667 0.1) (2.45972 0.366667 0.1) (2.45972 0.4125 0.1) (2.41667 0.4125 0.1) (2.41667 0.55 0.1) (2.45972 0.55 0.1) (2.45972 0.595833 0.1) (2.41667 0.595833 0.1) (2.41667 0.733333 0.1) (2.45972 0.733333 0.1) (2.45972 0.779167 0.1) (2.41667 0.779167 0.1) (2.41667 0.916667 0.1) (2.45972 0.916667 0.1) (2.45972 0.9625 0.1) (2.41667 0.9625 0.1) (2.41667 1.1 0.1) (2.50278 1.1 0.1) (2.50278 1.19167 0.1) (2.41667 1.19167 0.1) (2.41667 1.28333 0.1) (2.50278 1.28333 0.1) (2.50278 1.375 0.1) (2.41667 1.375 0.1) (2.50278 1.46667 0.1) (2.58889 1.46667 0.1) (2.58889 1.65 0.1) (2.58889 1.83333 0.1) (2.58889 2.01667 0.1) (2.58889 2.2 0.1) (2.76111 -2.2 0.1) (2.76111 -2.01667 0.1) (2.76111 -1.83333 0.1) (2.76111 -1.65 0.1) (2.76111 -1.46667 0.1) (2.675 -1.46667 0.1) (2.675 -1.375 0.1) (2.58889 -1.375 0.1) (2.58889 -1.28333 0.1) (2.675 -1.28333 0.1) (2.675 -1.19167 0.1) (2.58889 -1.19167 0.1) (2.58889 -1.1 0.1) (2.675 -1.1 0.1) (2.675 -1.00833 0.1) (2.63194 -1.00833 0.1) (2.58889 -1.00833 0.1) (2.58889 -0.916667 0.1) (2.63194 -0.916667 0.1) (2.63194 -0.870833 0.1) (2.58889 -0.870833 0.1) (2.58889 -0.733333 0.1) (2.63194 -0.733333 0.1) (2.63194 -0.6875 0.1) (2.58889 -0.6875 0.1) (2.58889 -0.55 0.1) (2.63194 -0.55 0.1) (2.63194 -0.504167 0.1) (2.58889 -0.504167 0.1) (2.58889 -0.366667 0.1) (2.63194 -0.366667 0.1) (2.63194 -0.320833 0.1) (2.58889 -0.320833 0.1) (2.58889 -0.183333 0.1) (2.63194 -0.183333 0.1) (2.63194 -0.1375 0.1) (2.58889 -0.1375 0.1) (2.58889 -1.85037e-17 0.1) (2.63194 -9.25186e-18 0.1) (2.63194 0.0458333 0.1) (2.58889 0.0458333 0.1) (2.58889 0.183333 0.1) (2.63194 0.183333 0.1) (2.63194 0.229167 0.1) (2.58889 0.229167 0.1) (2.58889 0.366667 0.1) (2.63194 0.366667 0.1) (2.63194 0.4125 0.1) (2.58889 0.4125 0.1) (2.58889 0.55 0.1) (2.63194 0.55 0.1) (2.63194 0.595833 0.1) (2.58889 0.595833 0.1) (2.58889 0.733333 0.1) (2.63194 0.733333 0.1) (2.63194 0.779167 0.1) (2.58889 0.779167 0.1) (2.58889 0.916667 0.1) (2.63194 0.916667 0.1) (2.63194 0.9625 0.1) (2.58889 0.9625 0.1) (2.58889 1.1 0.1) (2.675 1.1 0.1) (2.675 1.19167 0.1) (2.58889 1.19167 0.1) (2.58889 1.28333 0.1) (2.675 1.28333 0.1) (2.675 1.375 0.1) (2.58889 1.375 0.1) (2.675 1.46667 0.1) (2.76111 1.46667 0.1) (2.76111 1.65 0.1) (2.76111 1.83333 0.1) (2.76111 2.01667 0.1) (2.76111 2.2 0.1) (2.93333 -2.2 0.1) (2.93333 -2.01667 0.1) (2.93333 -1.83333 0.1) (2.93333 -1.65 0.1) (2.93333 -1.46667 0.1) (2.84722 -1.46667 0.1) (2.84722 -1.375 0.1) (2.76111 -1.375 0.1) (2.76111 -1.28333 0.1) (2.84722 -1.28333 0.1) (2.84722 -1.19167 0.1) (2.76111 -1.19167 0.1) (2.76111 -1.1 0.1) (2.84722 -1.1 0.1) (2.84722 -1.00833 0.1) (2.80417 -1.00833 0.1) (2.76111 -1.00833 0.1) (2.76111 -0.916667 0.1) (2.80417 -0.916667 0.1) (2.80417 -0.870833 0.1) (2.76111 -0.870833 0.1) (2.76111 -0.733333 0.1) (2.80417 -0.733333 0.1) (2.80417 -0.6875 0.1) (2.76111 -0.6875 0.1) (2.76111 -0.55 0.1) (2.80417 -0.55 0.1) (2.80417 -0.504167 0.1) (2.76111 -0.504167 0.1) (2.76111 -0.366667 0.1) (2.80417 -0.366667 0.1) (2.80417 -0.320833 0.1) (2.76111 -0.320833 0.1) (2.76111 -0.183333 0.1) (2.80417 -0.183333 0.1) (2.80417 -0.1375 0.1) (2.76111 -0.1375 0.1) (2.76111 1.85037e-17 0.1) (2.80417 1.85037e-17 0.1) (2.80417 0.0458333 0.1) (2.76111 0.0458333 0.1) (2.76111 0.183333 0.1) (2.80417 0.183333 0.1) (2.80417 0.229167 0.1) (2.76111 0.229167 0.1) (2.76111 0.366667 0.1) (2.80417 0.366667 0.1) (2.80417 0.4125 0.1) (2.76111 0.4125 0.1) (2.76111 0.55 0.1) (2.80417 0.55 0.1) (2.80417 0.595833 0.1) (2.76111 0.595833 0.1) (2.76111 0.733333 0.1) (2.80417 0.733333 0.1) (2.80417 0.779167 0.1) (2.76111 0.779167 0.1) (2.76111 0.916667 0.1) (2.80417 0.916667 0.1) (2.80417 0.9625 0.1) (2.76111 0.9625 0.1) (2.76111 1.1 0.1) (2.84722 1.1 0.1) (2.84722 1.19167 0.1) (2.76111 1.19167 0.1) (2.76111 1.28333 0.1) (2.84722 1.28333 0.1) (2.84722 1.375 0.1) (2.76111 1.375 0.1) (2.84722 1.46667 0.1) (2.93333 1.46667 0.1) (2.93333 1.65 0.1) (2.93333 1.83333 0.1) (2.93333 2.01667 0.1) (2.93333 2.2 0.1) (3.10556 -2.2 0.1) (3.10556 -2.01667 0.1) (3.10556 -1.83333 0.1) (3.10556 -1.65 0.1) (3.10556 -1.46667 0.1) (3.01944 -1.46667 0.1) (3.01944 -1.375 0.1) (2.93333 -1.375 0.1) (2.93333 -1.28333 0.1) (3.01944 -1.28333 0.1) (3.01944 -1.19167 0.1) (2.93333 -1.19167 0.1) (2.93333 -1.1 0.1) (3.01944 -1.1 0.1) (3.01944 -1.00833 0.1) (2.97639 -1.00833 0.1) (2.93333 -1.00833 0.1) (2.93333 -0.916667 0.1) (2.97639 -0.916667 0.1) (2.97639 -0.870833 0.1) (2.93333 -0.870833 0.1) (2.93333 -0.733333 0.1) (2.97639 -0.733333 0.1) (2.97639 -0.6875 0.1) (2.93333 -0.6875 0.1) (2.93333 -0.55 0.1) (2.97639 -0.55 0.1) (2.97639 -0.504167 0.1) (2.93333 -0.504167 0.1) (2.93333 -0.366667 0.1) (2.97639 -0.366667 0.1) (2.97639 -0.320833 0.1) (2.93333 -0.320833 0.1) (2.93333 -0.183333 0.1) (2.97639 -0.183333 0.1) (2.97639 -0.1375 0.1) (2.93333 -0.1375 0.1) (2.93333 1.85037e-17 0.1) (2.97639 1.38778e-17 0.1) (2.97639 0.0458333 0.1) (2.93333 0.0458333 0.1) (2.93333 0.183333 0.1) (2.97639 0.183333 0.1) (2.97639 0.229167 0.1) (2.93333 0.229167 0.1) (2.93333 0.366667 0.1) (2.97639 0.366667 0.1) (2.97639 0.4125 0.1) (2.93333 0.4125 0.1) (2.93333 0.55 0.1) (2.97639 0.55 0.1) (2.97639 0.595833 0.1) (2.93333 0.595833 0.1) (2.93333 0.733333 0.1) (2.97639 0.733333 0.1) (2.97639 0.779167 0.1) (2.93333 0.779167 0.1) (2.93333 0.916667 0.1) (2.97639 0.916667 0.1) (2.97639 0.9625 0.1) (2.93333 0.9625 0.1) (2.93333 1.1 0.1) (3.01944 1.1 0.1) (3.01944 1.19167 0.1) (2.93333 1.19167 0.1) (2.93333 1.28333 0.1) (3.01944 1.28333 0.1) (3.01944 1.375 0.1) (2.93333 1.375 0.1) (3.01944 1.46667 0.1) (3.10556 1.46667 0.1) (3.10556 1.65 0.1) (3.10556 1.83333 0.1) (3.10556 2.01667 0.1) (3.10556 2.2 0.1) (3.27778 -2.2 0.1) (3.27778 -2.01667 0.1) (3.27778 -1.83333 0.1) (3.27778 -1.65 0.1) (3.27778 -1.46667 0.1) (3.19167 -1.46667 0.1) (3.19167 -1.375 0.1) (3.10556 -1.375 0.1) (3.10556 -1.28333 0.1) (3.19167 -1.28333 0.1) (3.19167 -1.19167 0.1) (3.10556 -1.19167 0.1) (3.10556 -1.1 0.1) (3.19167 -1.1 0.1) (3.19167 -1.00833 0.1) (3.14861 -1.00833 0.1) (3.10556 -1.00833 0.1) (3.10556 -0.916667 0.1) (3.14861 -0.916667 0.1) (3.14861 -0.870833 0.1) (3.10556 -0.870833 0.1) (3.10556 -0.733333 0.1) (3.14861 -0.733333 0.1) (3.14861 -0.6875 0.1) (3.10556 -0.6875 0.1) (3.10556 -0.55 0.1) (3.14861 -0.55 0.1) (3.14861 -0.504167 0.1) (3.10556 -0.504167 0.1) (3.10556 -0.366667 0.1) (3.14861 -0.366667 0.1) (3.14861 -0.320833 0.1) (3.10556 -0.320833 0.1) (3.10556 -0.183333 0.1) (3.14861 -0.183333 0.1) (3.14861 -0.1375 0.1) (3.10556 -0.1375 0.1) (3.10556 0 0.1) (3.14861 0 0.1) (3.14861 0.0458333 0.1) (3.10556 0.0458333 0.1) (3.10556 0.183333 0.1) (3.14861 0.183333 0.1) (3.14861 0.229167 0.1) (3.10556 0.229167 0.1) (3.10556 0.366667 0.1) (3.14861 0.366667 0.1) (3.14861 0.4125 0.1) (3.10556 0.4125 0.1) (3.10556 0.55 0.1) (3.14861 0.55 0.1) (3.14861 0.595833 0.1) (3.10556 0.595833 0.1) (3.10556 0.733333 0.1) (3.14861 0.733333 0.1) (3.14861 0.779167 0.1) (3.10556 0.779167 0.1) (3.10556 0.916667 0.1) (3.14861 0.916667 0.1) (3.14861 0.9625 0.1) (3.10556 0.9625 0.1) (3.10556 1.1 0.1) (3.19167 1.1 0.1) (3.19167 1.19167 0.1) (3.10556 1.19167 0.1) (3.10556 1.28333 0.1) (3.19167 1.28333 0.1) (3.19167 1.375 0.1) (3.10556 1.375 0.1) (3.19167 1.46667 0.1) (3.27778 1.46667 0.1) (3.27778 1.65 0.1) (3.27778 1.83333 0.1) (3.27778 2.01667 0.1) (3.27778 2.2 0.1) (3.45 -2.2 0.1) (3.45 -2.01667 0.1) (3.45 -1.83333 0.1) (3.45 -1.65 0.1) (3.45 -1.46667 0.1) (3.36389 -1.46667 0.1) (3.36389 -1.375 0.1) (3.27778 -1.375 0.1) (3.27778 -1.28333 0.1) (3.36389 -1.28333 0.1) (3.36389 -1.19167 0.1) (3.27778 -1.19167 0.1) (3.27778 -1.1 0.1) (3.36389 -1.1 0.1) (3.36389 -1.00833 0.1) (3.32083 -1.00833 0.1) (3.27778 -1.00833 0.1) (3.27778 -0.916667 0.1) (3.32083 -0.916667 0.1) (3.32083 -0.870833 0.1) (3.27778 -0.870833 0.1) (3.27778 -0.733333 0.1) (3.32083 -0.733333 0.1) (3.32083 -0.6875 0.1) (3.27778 -0.6875 0.1) (3.27778 -0.55 0.1) (3.32083 -0.55 0.1) (3.32083 -0.504167 0.1) (3.27778 -0.504167 0.1) (3.27778 -0.366667 0.1) (3.32083 -0.366667 0.1) (3.32083 -0.320833 0.1) (3.27778 -0.320833 0.1) (3.27778 -0.183333 0.1) (3.32083 -0.183333 0.1) (3.32083 -0.1375 0.1) (3.27778 -0.1375 0.1) (3.27778 0 0.1) (3.32083 0 0.1) (3.32083 0.0458333 0.1) (3.27778 0.0458333 0.1) (3.27778 0.183333 0.1) (3.32083 0.183333 0.1) (3.32083 0.229167 0.1) (3.27778 0.229167 0.1) (3.27778 0.366667 0.1) (3.32083 0.366667 0.1) (3.32083 0.4125 0.1) (3.27778 0.4125 0.1) (3.27778 0.55 0.1) (3.32083 0.55 0.1) (3.32083 0.595833 0.1) (3.27778 0.595833 0.1) (3.27778 0.733333 0.1) (3.32083 0.733333 0.1) (3.32083 0.779167 0.1) (3.27778 0.779167 0.1) (3.27778 0.916667 0.1) (3.32083 0.916667 0.1) (3.32083 0.9625 0.1) (3.27778 0.9625 0.1) (3.27778 1.1 0.1) (3.36389 1.1 0.1) (3.36389 1.19167 0.1) (3.27778 1.19167 0.1) (3.27778 1.28333 0.1) (3.36389 1.28333 0.1) (3.36389 1.375 0.1) (3.27778 1.375 0.1) (3.36389 1.46667 0.1) (3.45 1.46667 0.1) (3.45 1.65 0.1) (3.45 1.83333 0.1) (3.45 2.01667 0.1) (3.45 2.2 0.1) (3.62222 -2.2 0.1) (3.62222 -2.01667 0.1) (3.62222 -1.83333 0.1) (3.62222 -1.65 0.1) (3.62222 -1.46667 0.1) (3.53611 -1.46667 0.1) (3.53611 -1.375 0.1) (3.45 -1.375 0.1) (3.45 -1.28333 0.1) (3.53611 -1.28333 0.1) (3.53611 -1.19167 0.1) (3.45 -1.19167 0.1) (3.45 -1.1 0.1) (3.53611 -1.1 0.1) (3.53611 -1.00833 0.1) (3.49306 -1.00833 0.1) (3.45 -1.00833 0.1) (3.45 -0.916667 0.1) (3.49306 -0.916667 0.1) (3.49306 -0.870833 0.1) (3.45 -0.870833 0.1) (3.45 -0.733333 0.1) (3.49306 -0.733333 0.1) (3.49306 -0.6875 0.1) (3.45 -0.6875 0.1) (3.45 -0.55 0.1) (3.49306 -0.55 0.1) (3.49306 -0.504167 0.1) (3.45 -0.504167 0.1) (3.45 -0.366667 0.1) (3.49306 -0.366667 0.1) (3.49306 -0.320833 0.1) (3.45 -0.320833 0.1) (3.45 -0.183333 0.1) (3.49306 -0.183333 0.1) (3.49306 -0.1375 0.1) (3.45 -0.1375 0.1) (3.45 0 0.1) (3.49306 0 0.1) (3.49306 0.0458333 0.1) (3.45 0.0458333 0.1) (3.45 0.183333 0.1) (3.49306 0.183333 0.1) (3.49306 0.229167 0.1) (3.45 0.229167 0.1) (3.45 0.366667 0.1) (3.49306 0.366667 0.1) (3.49306 0.4125 0.1) (3.45 0.4125 0.1) (3.45 0.55 0.1) (3.49306 0.55 0.1) (3.49306 0.595833 0.1) (3.45 0.595833 0.1) (3.45 0.733333 0.1) (3.49306 0.733333 0.1) (3.49306 0.779167 0.1) (3.45 0.779167 0.1) (3.45 0.916667 0.1) (3.49306 0.916667 0.1) (3.49306 0.9625 0.1) (3.45 0.9625 0.1) (3.45 1.1 0.1) (3.53611 1.1 0.1) (3.53611 1.19167 0.1) (3.45 1.19167 0.1) (3.45 1.28333 0.1) (3.53611 1.28333 0.1) (3.53611 1.375 0.1) (3.45 1.375 0.1) (3.53611 1.46667 0.1) (3.62222 1.46667 0.1) (3.62222 1.65 0.1) (3.62222 1.83333 0.1) (3.62222 2.01667 0.1) (3.62222 2.2 0.1) (3.79444 -2.2 0.1) (3.79444 -2.01667 0.1) (3.79444 -1.83333 0.1) (3.79444 -1.65 0.1) (3.79444 -1.46667 0.1) (3.70833 -1.46667 0.1) (3.70833 -1.375 0.1) (3.62222 -1.375 0.1) (3.62222 -1.28333 0.1) (3.70833 -1.28333 0.1) (3.70833 -1.19167 0.1) (3.62222 -1.19167 0.1) (3.62222 -1.1 0.1) (3.70833 -1.1 0.1) (3.70833 -1.00833 0.1) (3.66528 -1.00833 0.1) (3.62222 -1.00833 0.1) (3.62222 -0.916667 0.1) (3.66528 -0.916667 0.1) (3.66528 -0.870833 0.1) (3.62222 -0.870833 0.1) (3.62222 -0.733333 0.1) (3.66528 -0.733333 0.1) (3.66528 -0.6875 0.1) (3.62222 -0.6875 0.1) (3.62222 -0.55 0.1) (3.66528 -0.55 0.1) (3.66528 -0.504167 0.1) (3.62222 -0.504167 0.1) (3.62222 -0.366667 0.1) (3.66528 -0.366667 0.1) (3.66528 -0.320833 0.1) (3.62222 -0.320833 0.1) (3.62222 -0.183333 0.1) (3.66528 -0.183333 0.1) (3.66528 -0.1375 0.1) (3.62222 -0.1375 0.1) (3.62222 0 0.1) (3.66528 -2.31296e-18 0.1) (3.66528 0.0458333 0.1) (3.62222 0.0458333 0.1) (3.62222 0.183333 0.1) (3.66528 0.183333 0.1) (3.66528 0.229167 0.1) (3.62222 0.229167 0.1) (3.62222 0.366667 0.1) (3.66528 0.366667 0.1) (3.66528 0.4125 0.1) (3.62222 0.4125 0.1) (3.62222 0.55 0.1) (3.66528 0.55 0.1) (3.66528 0.595833 0.1) (3.62222 0.595833 0.1) (3.62222 0.733333 0.1) (3.66528 0.733333 0.1) (3.66528 0.779167 0.1) (3.62222 0.779167 0.1) (3.62222 0.916667 0.1) (3.66528 0.916667 0.1) (3.66528 0.9625 0.1) (3.62222 0.9625 0.1) (3.62222 1.1 0.1) (3.70833 1.1 0.1) (3.70833 1.19167 0.1) (3.62222 1.19167 0.1) (3.62222 1.28333 0.1) (3.70833 1.28333 0.1) (3.70833 1.375 0.1) (3.62222 1.375 0.1) (3.70833 1.46667 0.1) (3.79444 1.46667 0.1) (3.79444 1.65 0.1) (3.79444 1.83333 0.1) (3.79444 2.01667 0.1) (3.79444 2.2 0.1) (3.96667 -2.2 0.1) (3.96667 -2.01667 0.1) (3.96667 -1.83333 0.1) (3.96667 -1.65 0.1) (3.96667 -1.46667 0.1) (3.88056 -1.46667 0.1) (3.88056 -1.375 0.1) (3.79444 -1.375 0.1) (3.79444 -1.28333 0.1) (3.88056 -1.28333 0.1) (3.88056 -1.19167 0.1) (3.79444 -1.19167 0.1) (3.79444 -1.1 0.1) (3.88056 -1.1 0.1) (3.88056 -1.00833 0.1) (3.8375 -1.00833 0.1) (3.79444 -1.00833 0.1) (3.79444 -0.916667 0.1) (3.8375 -0.916667 0.1) (3.8375 -0.870833 0.1) (3.79444 -0.870833 0.1) (3.79444 -0.733333 0.1) (3.8375 -0.733333 0.1) (3.8375 -0.6875 0.1) (3.79444 -0.6875 0.1) (3.79444 -0.55 0.1) (3.8375 -0.55 0.1) (3.8375 -0.504167 0.1) (3.79444 -0.504167 0.1) (3.79444 -0.366667 0.1) (3.8375 -0.366667 0.1) (3.8375 -0.320833 0.1) (3.79444 -0.320833 0.1) (3.79444 -0.183333 0.1) (3.8375 -0.183333 0.1) (3.8375 -0.1375 0.1) (3.79444 -0.1375 0.1) (3.79444 -9.25186e-18 0.1) (3.8375 -9.25186e-18 0.1) (3.8375 0.0458333 0.1) (3.79444 0.0458333 0.1) (3.79444 0.183333 0.1) (3.8375 0.183333 0.1) (3.8375 0.229167 0.1) (3.79444 0.229167 0.1) (3.79444 0.366667 0.1) (3.8375 0.366667 0.1) (3.8375 0.4125 0.1) (3.79444 0.4125 0.1) (3.79444 0.55 0.1) (3.8375 0.55 0.1) (3.8375 0.595833 0.1) (3.79444 0.595833 0.1) (3.79444 0.733333 0.1) (3.8375 0.733333 0.1) (3.8375 0.779167 0.1) (3.79444 0.779167 0.1) (3.79444 0.916667 0.1) (3.8375 0.916667 0.1) (3.8375 0.9625 0.1) (3.79444 0.9625 0.1) (3.79444 1.1 0.1) (3.88056 1.1 0.1) (3.88056 1.19167 0.1) (3.79444 1.19167 0.1) (3.79444 1.28333 0.1) (3.88056 1.28333 0.1) (3.88056 1.375 0.1) (3.79444 1.375 0.1) (3.88056 1.46667 0.1) (3.96667 1.46667 0.1) (3.96667 1.65 0.1) (3.96667 1.83333 0.1) (3.96667 2.01667 0.1) (3.96667 2.2 0.1) (4.13889 -2.2 0.1) (4.13889 -2.01667 0.1) (4.13889 -1.83333 0.1) (4.13889 -1.65 0.1) (4.13889 -1.46667 0.1) (4.05278 -1.46667 0.1) (4.05278 -1.375 0.1) (3.96667 -1.375 0.1) (3.96667 -1.28333 0.1) (4.05278 -1.28333 0.1) (4.05278 -1.19167 0.1) (3.96667 -1.19167 0.1) (3.96667 -1.1 0.1) (4.05278 -1.1 0.1) (4.05278 -1.00833 0.1) (4.00972 -1.00833 0.1) (3.96667 -1.00833 0.1) (3.96667 -0.916667 0.1) (4.00972 -0.916667 0.1) (4.00972 -0.870833 0.1) (3.96667 -0.870833 0.1) (3.96667 -0.733333 0.1) (4.00972 -0.733333 0.1) (4.00972 -0.6875 0.1) (3.96667 -0.6875 0.1) (3.96667 -0.55 0.1) (4.00972 -0.55 0.1) (4.00972 -0.504167 0.1) (3.96667 -0.504167 0.1) (3.96667 -0.366667 0.1) (4.00972 -0.366667 0.1) (4.00972 -0.320833 0.1) (3.96667 -0.320833 0.1) (3.96667 -0.183333 0.1) (4.00972 -0.183333 0.1) (4.00972 -0.1375 0.1) (3.96667 -0.1375 0.1) (3.96667 -9.25186e-18 0.1) (4.00972 -1.15648e-17 0.1) (4.00972 0.0458333 0.1) (3.96667 0.0458333 0.1) (3.96667 0.183333 0.1) (4.00972 0.183333 0.1) (4.00972 0.229167 0.1) (3.96667 0.229167 0.1) (3.96667 0.366667 0.1) (4.00972 0.366667 0.1) (4.00972 0.4125 0.1) (3.96667 0.4125 0.1) (3.96667 0.55 0.1) (4.00972 0.55 0.1) (4.00972 0.595833 0.1) (3.96667 0.595833 0.1) (3.96667 0.733333 0.1) (4.00972 0.733333 0.1) (4.00972 0.779167 0.1) (3.96667 0.779167 0.1) (3.96667 0.916667 0.1) (4.00972 0.916667 0.1) (4.00972 0.9625 0.1) (3.96667 0.9625 0.1) (3.96667 1.1 0.1) (4.05278 1.1 0.1) (4.05278 1.19167 0.1) (3.96667 1.19167 0.1) (3.96667 1.28333 0.1) (4.05278 1.28333 0.1) (4.05278 1.375 0.1) (3.96667 1.375 0.1) (4.05278 1.46667 0.1) (4.13889 1.46667 0.1) (4.13889 1.65 0.1) (4.13889 1.83333 0.1) (4.13889 2.01667 0.1) (4.13889 2.2 0.1) (4.31111 -2.2 0.1) (4.31111 -2.01667 0.1) (4.31111 -1.83333 0.1) (4.31111 -1.65 0.1) (4.31111 -1.46667 0.1) (4.225 -1.46667 0.1) (4.225 -1.375 0.1) (4.13889 -1.375 0.1) (4.13889 -1.28333 0.1) (4.225 -1.28333 0.1) (4.225 -1.19167 0.1) (4.13889 -1.19167 0.1) (4.13889 -1.1 0.1) (4.225 -1.1 0.1) (4.225 -1.00833 0.1) (4.18194 -1.00833 0.1) (4.13889 -1.00833 0.1) (4.13889 -0.916667 0.1) (4.18194 -0.916667 0.1) (4.18194 -0.870833 0.1) (4.13889 -0.870833 0.1) (4.13889 -0.733333 0.1) (4.18194 -0.733333 0.1) (4.18194 -0.6875 0.1) (4.13889 -0.6875 0.1) (4.13889 -0.55 0.1) (4.18194 -0.55 0.1) (4.18194 -0.504167 0.1) (4.13889 -0.504167 0.1) (4.13889 -0.366667 0.1) (4.18194 -0.366667 0.1) (4.18194 -0.320833 0.1) (4.13889 -0.320833 0.1) (4.13889 -0.183333 0.1) (4.18194 -0.183333 0.1) (4.18194 -0.1375 0.1) (4.13889 -0.1375 0.1) (4.13889 -1.85037e-17 0.1) (4.18194 -9.25186e-18 0.1) (4.18194 0.0458333 0.1) (4.13889 0.0458333 0.1) (4.13889 0.183333 0.1) (4.18194 0.183333 0.1) (4.18194 0.229167 0.1) (4.13889 0.229167 0.1) (4.13889 0.366667 0.1) (4.18194 0.366667 0.1) (4.18194 0.4125 0.1) (4.13889 0.4125 0.1) (4.13889 0.55 0.1) (4.18194 0.55 0.1) (4.18194 0.595833 0.1) (4.13889 0.595833 0.1) (4.13889 0.733333 0.1) (4.18194 0.733333 0.1) (4.18194 0.779167 0.1) (4.13889 0.779167 0.1) (4.13889 0.916667 0.1) (4.18194 0.916667 0.1) (4.18194 0.9625 0.1) (4.13889 0.9625 0.1) (4.13889 1.1 0.1) (4.225 1.1 0.1) (4.225 1.19167 0.1) (4.13889 1.19167 0.1) (4.13889 1.28333 0.1) (4.225 1.28333 0.1) (4.225 1.375 0.1) (4.13889 1.375 0.1) (4.225 1.46667 0.1) (4.31111 1.46667 0.1) (4.31111 1.65 0.1) (4.31111 1.83333 0.1) (4.31111 2.01667 0.1) (4.31111 2.2 0.1) (4.48333 -2.2 0.1) (4.48333 -2.01667 0.1) (4.48333 -1.83333 0.1) (4.48333 -1.65 0.1) (4.48333 -1.46667 0.1) (4.39722 -1.46667 0.1) (4.39722 -1.375 0.1) (4.31111 -1.375 0.1) (4.31111 -1.28333 0.1) (4.39722 -1.28333 0.1) (4.39722 -1.19167 0.1) (4.31111 -1.19167 0.1) (4.31111 -1.1 0.1) (4.39722 -1.1 0.1) (4.39722 -1.00833 0.1) (4.35417 -1.00833 0.1) (4.31111 -1.00833 0.1) (4.31111 -0.916667 0.1) (4.35417 -0.916667 0.1) (4.35417 -0.870833 0.1) (4.31111 -0.870833 0.1) (4.31111 -0.733333 0.1) (4.35417 -0.733333 0.1) (4.35417 -0.6875 0.1) (4.31111 -0.6875 0.1) (4.31111 -0.55 0.1) (4.35417 -0.55 0.1) (4.35417 -0.504167 0.1) (4.31111 -0.504167 0.1) (4.31111 -0.366667 0.1) (4.35417 -0.366667 0.1) (4.35417 -0.320833 0.1) (4.31111 -0.320833 0.1) (4.31111 -0.183333 0.1) (4.35417 -0.183333 0.1) (4.35417 -0.1375 0.1) (4.31111 -0.1375 0.1) (4.31111 1.85037e-17 0.1) (4.35417 8.09538e-18 0.1) (4.35417 0.0458333 0.1) (4.31111 0.0458333 0.1) (4.31111 0.183333 0.1) (4.35417 0.183333 0.1) (4.35417 0.229167 0.1) (4.31111 0.229167 0.1) (4.31111 0.366667 0.1) (4.35417 0.366667 0.1) (4.35417 0.4125 0.1) (4.31111 0.4125 0.1) (4.31111 0.55 0.1) (4.35417 0.55 0.1) (4.35417 0.595833 0.1) (4.31111 0.595833 0.1) (4.31111 0.733333 0.1) (4.35417 0.733333 0.1) (4.35417 0.779167 0.1) (4.31111 0.779167 0.1) (4.31111 0.916667 0.1) (4.35417 0.916667 0.1) (4.35417 0.9625 0.1) (4.31111 0.9625 0.1) (4.31111 1.1 0.1) (4.39722 1.1 0.1) (4.39722 1.19167 0.1) (4.31111 1.19167 0.1) (4.31111 1.28333 0.1) (4.39722 1.28333 0.1) (4.39722 1.375 0.1) (4.31111 1.375 0.1) (4.39722 1.46667 0.1) (4.48333 1.46667 0.1) (4.48333 1.65 0.1) (4.48333 1.83333 0.1) (4.48333 2.01667 0.1) (4.48333 2.2 0.1) (4.65556 -2.2 0.1) (4.65556 -2.01667 0.1) (4.65556 -1.83333 0.1) (4.65556 -1.65 0.1) (4.65556 -1.46667 0.1) (4.56944 -1.46667 0.1) (4.56944 -1.375 0.1) (4.48333 -1.375 0.1) (4.48333 -1.28333 0.1) (4.56944 -1.28333 0.1) (4.56944 -1.19167 0.1) (4.48333 -1.19167 0.1) (4.48333 -1.1 0.1) (4.56944 -1.1 0.1) (4.56944 -1.00833 0.1) (4.52639 -1.00833 0.1) (4.48333 -1.00833 0.1) (4.48333 -0.916667 0.1) (4.52639 -0.916667 0.1) (4.52639 -0.870833 0.1) (4.48333 -0.870833 0.1) (4.48333 -0.733333 0.1) (4.52639 -0.733333 0.1) (4.52639 -0.6875 0.1) (4.48333 -0.6875 0.1) (4.48333 -0.55 0.1) (4.52639 -0.55 0.1) (4.52639 -0.504167 0.1) (4.48333 -0.504167 0.1) (4.48333 -0.366667 0.1) (4.52639 -0.366667 0.1) (4.52639 -0.320833 0.1) (4.48333 -0.320833 0.1) (4.48333 -0.183333 0.1) (4.52639 -0.183333 0.1) (4.52639 -0.1375 0.1) (4.48333 -0.1375 0.1) (4.48333 -2.31296e-17 0.1) (4.52639 -1.50343e-17 0.1) (4.52639 0.0458333 0.1) (4.48333 0.0458333 0.1) (4.48333 0.183333 0.1) (4.52639 0.183333 0.1) (4.52639 0.229167 0.1) (4.48333 0.229167 0.1) (4.48333 0.366667 0.1) (4.52639 0.366667 0.1) (4.52639 0.4125 0.1) (4.48333 0.4125 0.1) (4.48333 0.55 0.1) (4.52639 0.55 0.1) (4.52639 0.595833 0.1) (4.48333 0.595833 0.1) (4.48333 0.733333 0.1) (4.52639 0.733333 0.1) (4.52639 0.779167 0.1) (4.48333 0.779167 0.1) (4.48333 0.916667 0.1) (4.52639 0.916667 0.1) (4.52639 0.9625 0.1) (4.48333 0.9625 0.1) (4.48333 1.1 0.1) (4.56944 1.1 0.1) (4.56944 1.19167 0.1) (4.48333 1.19167 0.1) (4.48333 1.28333 0.1) (4.56944 1.28333 0.1) (4.56944 1.375 0.1) (4.48333 1.375 0.1) (4.56944 1.46667 0.1) (4.65556 1.46667 0.1) (4.65556 1.65 0.1) (4.65556 1.83333 0.1) (4.65556 2.01667 0.1) (4.65556 2.2 0.1) (4.82778 -2.2 0.1) (4.82778 -2.01667 0.1) (4.82778 -1.83333 0.1) (4.82778 -1.65 0.1) (4.82778 -1.46667 0.1) (4.74167 -1.46667 0.1) (4.74167 -1.375 0.1) (4.65556 -1.375 0.1) (4.65556 -1.28333 0.1) (4.74167 -1.28333 0.1) (4.74167 -1.19167 0.1) (4.65556 -1.19167 0.1) (4.65556 -1.1 0.1) (4.74167 -1.1 0.1) (4.74167 -1.00833 0.1) (4.69861 -1.00833 0.1) (4.65556 -1.00833 0.1) (4.65556 -0.916667 0.1) (4.69861 -0.916667 0.1) (4.69861 -0.870833 0.1) (4.65556 -0.870833 0.1) (4.65556 -0.733333 0.1) (4.69861 -0.733333 0.1) (4.69861 -0.6875 0.1) (4.65556 -0.6875 0.1) (4.65556 -0.55 0.1) (4.69861 -0.55 0.1) (4.69861 -0.504167 0.1) (4.65556 -0.504167 0.1) (4.65556 -0.366667 0.1) (4.69861 -0.366667 0.1) (4.69861 -0.320833 0.1) (4.65556 -0.320833 0.1) (4.65556 -0.183333 0.1) (4.69861 -0.183333 0.1) (4.69861 -0.1375 0.1) (4.65556 -0.1375 0.1) (4.65556 9.25186e-18 0.1) (4.69861 -1.15648e-18 0.1) (4.69861 0.0458333 0.1) (4.65556 0.0458333 0.1) (4.65556 0.183333 0.1) (4.69861 0.183333 0.1) (4.69861 0.229167 0.1) (4.65556 0.229167 0.1) (4.65556 0.366667 0.1) (4.69861 0.366667 0.1) (4.69861 0.4125 0.1) (4.65556 0.4125 0.1) (4.65556 0.55 0.1) (4.69861 0.55 0.1) (4.69861 0.595833 0.1) (4.65556 0.595833 0.1) (4.65556 0.733333 0.1) (4.69861 0.733333 0.1) (4.69861 0.779167 0.1) (4.65556 0.779167 0.1) (4.65556 0.916667 0.1) (4.69861 0.916667 0.1) (4.69861 0.9625 0.1) (4.65556 0.9625 0.1) (4.65556 1.1 0.1) (4.74167 1.1 0.1) (4.74167 1.19167 0.1) (4.65556 1.19167 0.1) (4.65556 1.28333 0.1) (4.74167 1.28333 0.1) (4.74167 1.375 0.1) (4.65556 1.375 0.1) (4.74167 1.46667 0.1) (4.82778 1.46667 0.1) (4.82778 1.65 0.1) (4.82778 1.83333 0.1) (4.82778 2.01667 0.1) (4.82778 2.2 0.1) (5 -2.2 0.1) (5 -2.01667 0.1) (5 -1.83333 0.1) (5 -1.65 0.1) (5 -1.46667 0.1) (4.91389 -1.46667 0.1) (4.91389 -1.375 0.1) (4.82778 -1.375 0.1) (4.82778 -1.28333 0.1) (4.91389 -1.28333 0.1) (4.91389 -1.19167 0.1) (4.82778 -1.19167 0.1) (4.82778 -1.1 0.1) (4.91389 -1.1 0.1) (4.91389 -1.00833 0.1) (4.87083 -1.00833 0.1) (4.82778 -1.00833 0.1) (4.82778 -0.916667 0.1) (4.87083 -0.916667 0.1) (4.87083 -0.870833 0.1) (4.82778 -0.870833 0.1) (4.82778 -0.733333 0.1) (4.87083 -0.733333 0.1) (4.87083 -0.6875 0.1) (4.82778 -0.6875 0.1) (4.82778 -0.55 0.1) (4.87083 -0.55 0.1) (4.87083 -0.504167 0.1) (4.82778 -0.504167 0.1) (4.82778 -0.366667 0.1) (4.87083 -0.366667 0.1) (4.87083 -0.320833 0.1) (4.82778 -0.320833 0.1) (4.82778 -0.183333 0.1) (4.87083 -0.183333 0.1) (4.87083 -0.1375 0.1) (4.82778 -0.1375 0.1) (4.82778 -3.23815e-17 0.1) (4.87083 -2.42861e-17 0.1) (4.87083 0.0458333 0.1) (4.82778 0.0458333 0.1) (4.82778 0.183333 0.1) (4.87083 0.183333 0.1) (4.87083 0.229167 0.1) (4.82778 0.229167 0.1) (4.82778 0.366667 0.1) (4.87083 0.366667 0.1) (4.87083 0.4125 0.1) (4.82778 0.4125 0.1) (4.82778 0.55 0.1) (4.87083 0.55 0.1) (4.87083 0.595833 0.1) (4.82778 0.595833 0.1) (4.82778 0.733333 0.1) (4.87083 0.733333 0.1) (4.87083 0.779167 0.1) (4.82778 0.779167 0.1) (4.82778 0.916667 0.1) (4.87083 0.916667 0.1) (4.87083 0.9625 0.1) (4.82778 0.9625 0.1) (4.82778 1.1 0.1) (4.91389 1.1 0.1) (4.91389 1.19167 0.1) (4.82778 1.19167 0.1) (4.82778 1.28333 0.1) (4.91389 1.28333 0.1) (4.91389 1.375 0.1) (4.82778 1.375 0.1) (4.91389 1.46667 0.1) (5 1.46667 0.1) (5 1.65 0.1) (5 1.83333 0.1) (5 2.01667 0.1) (5 2.2 0.1) (0.1473840241 -0.2507855606 0.1) (0.1462970891 -0.2735065791 0.1) (0.1643620099 0.1081783305 0.1) (0.1632015467 0.08546887117 0.1) (0.1740171424 0.08495071034 0.1) (0.1848699843 0.0844367583 0.1) (0.01065278898 0.09219902484 0.1) (0.03255993425 0.09132658659 0.1) (0.3303887733 -0.2594776691 0.1) (0.3196447081 -0.2589709711 0.1) (0.3185511809 -0.2816626375 0.1) (0.3377051563 0.09966533961 0.1) (0.3366263843 0.07698897943 0.1) (0.3474485722 0.07644146657 0.1) (0.3582676189 0.07589110186 0.1) (0.1957317193 0.08392037458 0.1) (0.2065963544 0.08340184852 0.1) (0.5023789244 -0.2675639184 0.1) (0.491628625 -0.2670619251 0.1) (0.4905428268 -0.2897179228 0.1) (0.5103663095 0.09071272489 0.1) (0.5093282625 0.06805041719 0.1) (0.5201015418 0.06748524229 0.1) (0.5308665893 0.06691545898 0.1) (0.369087568 0.07533869126 0.1) (0.3798795979 0.07478862973 0.1) (0.6743609749 -0.2755276344 0.1) (0.6636152357 -0.2750348718 0.1) (0.6625375524 -0.29764721 0.1) (0.682579452 0.08133522017 0.1) (0.6815560639 0.05868622106 0.1) (0.7030584116 0.05744887875 0.1) (0.5524476593 0.06575340806 0.1) (0.8458120097 -0.2946146842 0.1) (0.8452763574 -0.3059170026 0.1) (0.8626815877 -0.1100555669 0.1) (0.8624687023 -0.115626332 0.1) (0.8678284466 -0.1159683116 0.1) (0.857752502 -0.09859523986 0.1) (0.8573235844 -0.1096982635 0.1) (0.8543458642 0.07116533619 0.1) (0.8533339937 0.04852679383 0.1) (0.8747560759 0.04718219736 0.1) (0.7245589339 0.05625667698 0.1) (1.018588891 -0.2964836385 0.1) (1.018036355 -0.3079283084 0.1) (1.026877176 -0.124808683 0.1) (1.02632461 -0.136253966 0.1) (1.03708209 -0.1367731255 0.1) (0.8731823509 -0.1163275696 0.1) (1.017234805 -0.1013996811 0.1) (1.017061686 -0.1120361072 0.1) (1.017053793 -0.1227755008 0.1) (1.003961701 0.0610616914 0.1) (1.002929419 0.03841512397 0.1) (1.001875597 0.0156334381 0.1) (1.023200799 0.01408627784 0.1) (1.044648148 0.01268439629 0.1) (0.8961530148 0.04579376237 0.1) (-0.02673187299 -0.2419148895 0.1) (-0.02774265205 -0.2646946487 0.1) (-0.1752642294 -0.09046475135 0.1) (-0.153916276 -0.09156138464 0.1) (-0.009914889559 0.1158874142 0.1) (-0.01123375135 0.09305945549 0.1) (-0.1648429902 0.0971046248 0.1) (-0.1430527754 0.09666633035 0.1) (0.0944542358 0.02027911561 0.1) (0.08897349526 0.02051418558 0.1) (0.08869348237 0.01478272063 0.1) (0.09417716633 0.01453189038 0.1) (0.006555858792 0.02371801974 0.1) (0.005841890316 0.01228404706 0.1) (0.01694624368 0.0119444693 0.1) (0.01762912556 0.02336412441 0.1) (0.1654909924 0.1308993213 0.1) (0.1517402956 0.291205074 0.1) (0.1494546004 0.2456431329 0.1) (0.19272 0.2435292962 0.1) (0.0193706455 0.2517722723 0.1) (0.06271290493 0.2497598472 0.1) (0.2904962307 -0.4170822965 0.1) (0.2883585722 -0.4623773491 0.1) (0.3174619245 -0.3043695276 0.1) (0.3389443994 -0.3053756426 0.1) (0.1668051944 -0.2972661786 0.1) (0.1883669012 -0.2982901351 0.1) (0.2682841155 0.01090485111 0.1) (0.2628696628 0.01119198508 0.1) (0.262565068 0.004737764678 0.1) (0.267975617 0.004452721392 0.1) (0.1815384893 0.01609520403 0.1) (0.1812737794 0.01015605951 0.1) (0.1866994018 0.01005880782 0.1) (0.1869683025 0.01591885823 0.1) (0.3387895976 0.1223554424 0.1) (0.3247602537 0.2825370774 0.1) (0.3225761288 0.2370397239 0.1) (0.3657853797 0.2348204722 0.1) (0.2360165427 0.2413969361 0.1) (0.4624906392 -0.4250596243 0.1) (0.4603258437 -0.4704872006 0.1) (0.4894569666 -0.3123959431 0.1) (0.5109569522 -0.3133918906 0.1) (0.3604259237 -0.3063807105 0.1) (0.426014014 -0.2867056601 0.1) (0.427096492 -0.2640354859 0.1) (0.4163414396 -0.2635282573 0.1) (0.4055903343 -0.2630222205 0.1) (0.4045065682 -0.2856983396 0.1) (0.4303412779 -0.1960590751 0.1) (0.424962553 -0.1958199198 0.1) (0.4195839783 -0.1955983923 0.1) (0.4190442589 -0.2069227402 0.1) (0.4297997453 -0.2074209792 0.1) (0.3443742656 -0.1919945789 0.1) (0.343832076 -0.203328619 0.1) (0.3545597258 -0.203843535 0.1) (0.3550975343 -0.1925172927 0.1) (0.3497320251 -0.1922532458 0.1) (0.4415293898 0.003537412641 0.1) (0.436123653 0.003776970953 0.1) (0.4358598819 -0.001935354965 0.1) (0.4412671571 -0.002143050389 0.1) (0.355022017 0.007773365976 0.1) (0.3547316862 0.001946387458 0.1) (0.3601279473 0.001510557753 0.1) (0.3604280807 0.007416155026 0.1) (0.5114181128 0.1133903871 0.1) (0.4972984375 0.2736840357 0.1) (0.4951905018 0.2280513234 0.1) (0.5382565744 0.2257488794 0.1) (0.4089079109 0.2325883874 0.1) (0.634515633 -0.4329633414 0.1) (0.6323280098 -0.4784973125 0.1) (0.6614569894 -0.3202984546 0.1) (0.6829518983 -0.3212751349 0.1) (0.5324580813 -0.3143848899 0.1) (0.5980569797 -0.2946933416 0.1) (0.5991424748 -0.2720643607 0.1) (0.5883909355 -0.2715673134 0.1) (0.5776364479 -0.2710691226 0.1) (0.5765547071 -0.2937032906 0.1) (0.602372174 -0.2043174894 0.1) (0.5969986736 -0.2040323326 0.1) (0.5967246339 -0.2097292454 0.1) (0.6020999385 -0.2099977699 0.1) (0.5163489443 -0.2003183583 0.1) (0.5158166537 -0.211571782 0.1) (0.5265644249 -0.212084666 0.1) (0.5270972803 -0.2008402801 0.1) (0.5217212041 -0.200587737 0.1) (0.6139737082 -0.005551704507 0.1) (0.6032149039 -0.004956292449 0.1) (0.602710456 -0.01623438745 0.1) (0.6134728259 -0.0168181579 0.1) (0.5277696027 -0.0009235192426 0.1) (0.527250839 -0.01222855524 0.1) (0.5326510573 -0.01252020804 0.1) (0.5380619246 -0.012798659 0.1) (0.5385577006 -0.001492813532 0.1) (0.8279980482 -0.4418529418 0.1) (0.8064952589 -0.4408528542 0.1) (0.8043066194 -0.4864763901 0.1) (0.8345211465 -0.3054337944 0.1) (0.8334450129 -0.3280762423 0.1) (0.8549487666 -0.3290563532 0.1) (0.7044528483 -0.3222511057 0.1) (0.7700244683 -0.3025231996 0.1) (0.7705611194 -0.2912209294 0.1) (0.7598040555 -0.2907346282 0.1) (0.759268355 -0.3020379455 0.1) (0.7743533265 -0.2117813806 0.1) (0.7689618562 -0.2116403249 0.1) (0.7686620471 -0.2175806782 0.1) (0.7740460108 -0.2177735323 0.1) (0.6883437269 -0.2080598298 0.1) (0.6880531218 -0.2139132258 0.1) (0.69341757 -0.2141992471 0.1) (0.6937043257 -0.20838411 0.1) (0.7821694449 -0.1051922103 0.1) (0.7824131366 -0.09956399392 0.1) (0.7770158884 -0.09935598165 0.1) (0.7767555728 -0.1050382092 0.1) (0.7859624693 -0.01538792259 0.1) (0.7752201997 -0.0147403472 0.1) (0.7747390626 -0.02601255947 0.1) (0.7854777612 -0.02665115221 0.1) (0.7000289486 -0.01033939666 0.1) (0.6995335523 -0.02159590303 0.1) (0.7102834738 -0.02220940779 0.1) (0.7107791064 -0.01094800711 0.1) (1.000658242 -0.4447494646 0.1) (0.9796153273 -0.4471224777 0.1) (0.9773514302 -0.4928324851 0.1) (1.007288873 -0.3074094314 0.1) (1.006183752 -0.3302997698 0.1) (1.027688704 -0.3313380061 0.1) (0.8764415331 -0.3300359336 0.1) (0.8775154417 -0.3073773596 0.1) (0.9420077936 -0.3103568258 0.1) (0.9425438317 -0.2990465167 0.1) (0.931798623 -0.2985427669 0.1) (0.9312615861 -0.3098530278 0.1) (0.946305489 -0.2197420518 0.1) (0.9409832285 -0.2191420997 0.1) (0.9406885992 -0.2249959021 0.1) (0.9460297567 -0.2254740238 0.1) (0.860391563 -0.2153037808 0.1) (0.860072737 -0.2213891858 0.1) (0.865414687 -0.221747206 0.1) (0.8657232668 -0.215749609 0.1) (1.180413586 -0.2928250174 0.1) (1.179308513 -0.315714357 0.1) (1.188149338 -0.1325946456 0.1) (1.187044232 -0.1554846845 0.1) (1.208549184 -0.1565229207 0.1) (1.047829576 -0.1372919026 0.1) (0.08571531442 -0.1794927829 0.1) (0.09654611646 -0.1800256942 0.1) (0.09707984635 -0.1686595088 0.1) (0.09166230266 -0.1683928496 0.1) (0.08625742557 -0.1681334096 0.1) (0.1722489278 -0.18370157 0.1) (0.1728007512 -0.1722924071 0.1) (0.1674128047 -0.1720368882 0.1) (0.162008429 -0.1718106109 0.1) (0.1614589643 -0.1831916549 0.1) (-0.002111392667 -0.1747271915 0.1) (0.008967936073 -0.1753949442 0.1) (0.009281812613 -0.1639457603 0.1) (-0.00177515252 -0.163278887 0.1) (0.07538791761 -0.1675893188 0.1) (0.0748541774 -0.1789494967 0.1) (0.176104453 0.01630849647 0.1) (0.1758434117 0.01032091869 0.1) (0.09964687349 0.01429224714 0.1) (0.09991926839 0.0200338913 0.1) (0.09917482592 0.1112153704 0.1) (0.09797596258 0.08847572775 0.1) (0.1088435013 0.08798209062 0.1) (0.1197505353 0.08749155252 0.1) (0.120925802 0.1102173169 0.1) (0.1053688831 0.0198073322 0.1) (0.1059534856 0.03119038403 0.1) (0.09505835139 0.03167233829 0.1) (0.1818089158 0.02192464526 0.1) (0.176372992 0.02216105561 0.1) (0.3390187448 -0.1917310142 0.1) (0.3336518993 -0.1914739109 0.1) (0.3331044262 -0.2028137029 0.1) (0.2583874737 -0.1879042989 0.1) (0.2578450568 -0.1992223093 0.1) (0.2685916845 -0.1997381416 0.1) (0.2691329579 -0.1884230794 0.1) (0.2540347537 -0.2786219391 0.1) (0.2755418138 -0.2796372503 0.1) (0.2766307326 -0.2569373521 0.1) (0.2551248161 -0.2559190925 0.1) (0.2696687313 -0.1771389881 0.1) (0.2643009063 -0.176881437 0.1) (0.2589308418 -0.1766080596 0.1) (0.3446482619 -0.186298565 0.1) (0.3392928906 -0.186031904 0.1) (0.1830244253 -0.1842207985 0.1) (0.1835711678 -0.1728131924 0.1) (0.1781853196 -0.1725349481 0.1) (0.2535553684 -0.176343031 0.1) (0.248173313 -0.1760691748 0.1) (0.2476312434 -0.1873799937 0.1) (0.3496251309 0.008134038384 0.1) (0.3493456594 0.002386829002 0.1) (0.2733973684 0.004233814842 0.1) (0.2737134573 0.01067726844 0.1) (0.2727315795 0.1029213336 0.1) (0.2721828664 0.09157659561 0.1) (0.2830286062 0.09103995966 0.1) (0.2835752251 0.1023827964 0.1) (0.2740186991 0.0169582561 0.1) (0.26858706 0.01720046658 0.1) (0.3553042578 0.0135364603 0.1) (0.3499010616 0.01384938144 0.1) (0.1872406169 0.02170445741 0.1) (0.2631691912 0.01747905533 0.1) (0.2619027717 0.1034561509 0.1) (0.2613540104 0.0921104141 0.1) (0.5109795362 -0.2000521208 0.1) (0.505612367 -0.1997809856 0.1) (0.5050751649 -0.2110531943 0.1) (0.4405637873 -0.2079286418 0.1) (0.4411099903 -0.1965529468 0.1) (0.4357255563 -0.1962868849 0.1) (0.4475294988 -0.2877123676 0.1) (0.4486167781 -0.2650464298 0.1) (0.4378586327 -0.2645410543 0.1) (0.4360074781 -0.1905096588 0.1) (0.4306217186 -0.1902917891 0.1) (0.5166130181 -0.1947241845 0.1) (0.5112453997 -0.1944416143 0.1) (0.3500046272 -0.1865653742 0.1) (0.4252389225 -0.1900954873 0.1) (0.5169952667 -0.0003594947203 0.1) (0.5164790945 -0.01167306561 0.1) (0.5218649861 -0.01195041089 0.1) (0.4466697341 -0.002406584218 0.1) (0.446933516 0.003264493186 0.1) (0.445722976 0.09411095906 0.1) (0.444686541 0.07144056422 0.1) (0.4554740933 0.07088070722 0.1) (0.466244569 0.07031967233 0.1) (0.4672847582 0.0929848801 0.1) (0.4523221678 0.00298210894 0.1) (0.4528405933 0.01430087722 0.1) (0.4420560375 0.01486058955 0.1) (0.5282868612 0.01037107719 0.1) (0.5175136784 0.01093824977 0.1) (0.3607165399 0.01322510282 0.1) (0.4312610593 0.01541179459 0.1) (0.4309899576 0.009734262652 0.1) (0.4307254819 0.004028077861 0.1) (0.4241505786 0.09522453538 0.1) (0.4230955996 0.0725640463 0.1) (0.4338932368 0.07200570474 0.1) (0.6829825735 -0.2077470362 0.1) (0.6826894313 -0.2136322469 0.1) (0.6074733418 -0.2102642002 0.1) (0.6077446805 -0.2046024981 0.1) (0.6195434156 -0.2956796245 0.1) (0.6206216777 -0.2730553002 0.1) (0.6098870222 -0.2725610704 0.1) (0.6080178178 -0.1989035394 0.1) (0.6026499475 -0.1985847149 0.1) (0.6886495512 -0.2020570939 0.1) (0.6832940659 -0.2016891094 0.1) (0.5219848729 -0.1950019533 0.1) (0.5972790758 -0.1982658456 0.1) (0.6892712679 -0.009720711705 0.1) (0.6887754569 -0.02098580808 0.1) (0.6242383128 -0.01739957594 0.1) (0.6247393832 -0.006129227076 0.1) (0.8550321414 -0.2149758531 0.1) (0.8547067595 -0.2211141035 0.1) (0.7794250352 -0.2180272189 0.1) (0.7797296685 -0.2120491543 0.1) (0.7807775851 -0.3030083091 0.1) (0.7813142362 -0.2917060389 0.1) (0.781959683 -0.1107190148 0.1) (0.7873149689 -0.1110496562 0.1) (0.7875436619 -0.1054625244 0.1) (0.7800465258 -0.2059630535 0.1) (0.7746753358 -0.2056507765 0.1) (0.8607006346 -0.2092959956 0.1) (0.8553545758 -0.2088571834 0.1) (0.6940031504 -0.2024434087 0.1) (0.7692783373 -0.205562015 0.1) (0.7765142361 -0.1106591206 0.1) (0.8716969296 -0.02082690354 0.1) (0.8502898039 -0.01942135742 0.1) (0.8493143569 -0.04196905052 0.1) (0.8600213701 -0.04268330333 0.1) (0.8707149066 -0.04340711737 0.1) (0.7962064673 -0.02731008675 0.1) (0.7966951514 -0.01604744956 0.1) (0.7877872495 -0.09983646553 0.1) (1.033153343 -0.2169048953 0.1) (1.02230496 -0.2164022715 0.1) (1.022061184 -0.222073714 0.1) (1.02183559 -0.2277832777 0.1) (1.032631905 -0.2283275391 0.1) (0.9513627994 -0.2259958049 0.1) (0.9516267465 -0.2203627798 0.1) (0.9527498129 -0.3108644263 0.1) (0.9532839015 -0.2995530219 0.1) (0.9532961723 -0.1169990914 0.1) (0.9529511119 -0.1279412016 0.1) (0.9635531653 -0.1288594603 0.1) (0.9638924927 -0.1179324111 0.1) (0.9518414778 -0.2154381054 0.1) (0.9465261397 -0.2147777167 0.1) (1.033704544 -0.2054878932 0.1) (1.022852732 -0.2050562867 0.1) (1.022547323 -0.2107600948 0.1) (0.8660191204 -0.209849712 0.1) (0.9412171075 -0.2140904009 0.1) (0.9426923332 -0.1160556072 0.1) (0.9423348361 -0.127027212 0.1) (0.1181846333 -0.4089975481 0.1) (0.116102675 -0.4541342501 0.1) (0.145210719 -0.2962366354 0.1) (-0.006740535989 -0.2887143734 0.1) (0.01524448006 -0.2898939241 0.1) (0.08148559207 -0.2703855581 0.1) (0.08254803152 -0.2476493407 0.1) (0.0608120038 -0.2465739181 0.1) (0.05974786977 -0.269312056 0.1) (0.07431797179 -0.1903047501 0.1) (0.08517760574 -0.1908480638 0.1) (-0.002589641036 -0.1861141765 0.1) (0.008521178589 -0.1867907582 0.1) (0.04820844123 -0.02417690391 0.1) (0.04279336994 -0.02432354477 0.1) (0.04283362952 -0.03007367587 0.1) (0.04731378577 -0.02848637476 0.1) (0.003356125248 -0.0225322876 0.1) (0.002942762501 -0.02850560342 0.1) (0.008718279455 -0.0287780318 0.1) (0.009051790562 -0.02276441842 0.1) (0.2336040134 -0.254898112 0.1) (0.2325157558 -0.2776050503 0.1) (0.2470884889 -0.198704996 0.1) (0.1717052433 -0.1950665741 0.1) (0.1824807408 -0.1955858025 0.1) (0.5685495815 -0.04956162814 0.1) (0.5631142475 -0.04952037328 0.1) (0.5624170625 -0.05550041023 0.1) (0.5668860531 -0.05660380102 0.1) (0.6836151637 0.1039906325 0.1) (0.6692761011 0.2653697218 0.1) (0.667315029 0.2187120821 0.1) (0.7103238428 0.2163575897 0.1) (0.5813236803 0.2234263622 0.1) (0.7374307241 -0.1051024608 0.1) (0.7390807632 -0.09813232119 0.1) (0.7336859749 -0.09789409239 0.1) (0.7330159753 -0.1037050436 0.1) (0.7410868426 -0.05778321797 0.1) (0.7303410804 -0.05716651006 0.1) (0.7298554844 -0.06842739413 0.1) (0.7352322086 -0.06872872524 0.1) (0.7406076007 -0.06901617596 0.1) (0.6980889752 -0.05531226696 0.1) (0.6978444158 -0.06093771824 0.1) (0.7032189736 -0.06124244884 0.1) (0.7034645511 -0.05561664624 0.1) (0.9536837853 -0.1059428604 0.1) (0.9430848517 -0.1050014552 0.1) (0.9571419026 -0.02678743138 0.1) (0.9358121032 -0.02525256368 0.1) (0.9347666859 -0.0480053212 0.1) (0.956049457 -0.04966406517 0.1) (0.8814080621 -0.04413882222 0.1) (0.892091987 -0.04487508726 0.1) (0.8930824871 -0.02226444682 0.1) (0.1609156656 -0.1945486682 0.1) (0.09600895542 -0.1913800003 0.1) (0.1030900765 -0.2714275986 0.1) (0.1041664101 -0.2486980589 0.1) (0.1311634945 -0.1363719536 0.1) (0.1365519302 -0.1370113427 0.1) (0.1367888401 -0.1319798135 0.1) (0.1313908102 -0.1312903034 0.1) (-0.0009620104434 -0.128798785 0.1) (0.004758841847 -0.1292556919 0.1) (0.004887257224 -0.1234999883 0.1) (-0.000910767474 -0.12300021 0.1) (0.0440991164 -0.1315192223 0.1) (0.044300093 -0.1258052664 0.1) (0.03877612307 -0.1254868148 0.1) (0.03858083751 -0.131284042 0.1) (0.01831781926 0.03477558973 0.1) (0.00733560453 0.03517564798 0.1) (0.0841386045 0.03215047501 0.1) (0.08351093221 0.02076079241 0.1) (0.07743420673 0.1122019111 0.1) (0.07627498689 0.08946636143 0.1) (0.0871197521 0.08897382379 0.1) (0.6927039227 -0.05501754192 0.1) (0.692455151 -0.06064729508 0.1) (0.6549885499 -0.05311999452 0.1) (0.6546841341 -0.05894839548 0.1) (0.6600899131 -0.05914560656 0.1) (0.660378658 -0.05337221391 0.1) (0.6180729873 0.08491406427 0.1) (0.6170372274 0.06225765314 0.1) (0.6385462709 0.06107605279 0.1) (0.6395758449 0.08372875791 0.1) (0.6252447141 0.005146422493 0.1) (0.6144824841 0.005733089574 0.1) (0.7005289285 0.0009291026363 0.1) (0.689773477 0.001552485558 0.1) (0.5390679865 0.009802519995 0.1) (0.6037233953 0.006322608497 0.1) (0.5965379259 0.08609591958 0.1) (0.5955009743 0.06343556132 0.1) (0.8251542884 -0.1077462899 0.1) (0.8248858704 -0.1134511831 0.1) (0.8302840213 -0.1137027095 0.1) (0.8305330031 -0.1080478673 0.1) (0.9089277484 -0.1584070368 0.1) (0.9092319225 -0.1525629059 0.1) (0.9039215511 -0.1521106989 0.1) (0.9036186061 -0.1579086354 0.1) (0.9107676476 -0.113495502 0.1) (0.9001086082 -0.112679264 0.1) (0.8997318176 -0.1236979632 0.1) (0.9050686248 -0.1241002969 0.1) (0.9103936827 -0.1244971476 0.1) (-0.08879492669 -0.07125588527 0.1) (-0.0892916496 -0.08370322107 0.1) (-0.07861215541 -0.08421190768 0.1) (-0.07811499842 -0.0717804653 0.1) (-0.09174365042 -0.1671440534 0.1) (-0.06886456479 -0.1699670306 0.1) (-0.06862226841 -0.1583145583 0.1) (-0.06867559073 -0.1462882957 0.1) (-0.08001531802 -0.1448623036 0.1) (-0.09118044599 -0.1434695699 0.1) (-0.01298214192 -0.1625064563 0.1) (-0.013094984 -0.1740808803 0.1) (-0.004494686177 0.02406601249 0.1) (-0.005224955041 0.01261210267 0.1) (-0.08235755846 0.02526447025 0.1) (-0.08422397118 0.001432547917 0.1) (-0.07341101527 0.001116849937 0.1) (-0.0621803172 0.001380881726 0.1) (-0.06087082471 0.01359023867 0.1) (-0.05994821424 0.02529916994 0.1) (-0.07739710268 -0.05878742219 0.1) (-0.08809151074 -0.05834709592 0.1) (0.05511799348 -0.02603466297 0.1) (0.05066853714 0.02213594356 0.1) (0.05004435525 0.01073768267 0.1) (0.05555784454 0.01050283371 0.1) (0.06106217348 0.01026902771 0.1) (0.06166286557 0.0216929512 0.1) (0.05416915152 -0.01887908242 0.1) (0.04860421013 -0.01851550254 0.1) (0.009362877494 -0.0168455339 0.1) (0.003707763158 -0.01665911173 0.1) (0.04305381384 -0.01838359359 0.1) (0.03971041001 0.02257808921 0.1) (0.0391186435 0.01119388151 0.1) (0.04457383106 0.01096455044 0.1) (0.2249810977 0.01462426979 0.1) (0.2247051232 0.009239813793 0.1) (0.2301290442 0.008920686023 0.1) (0.2304042223 0.01430938535 0.1) (0.2195514563 0.01486638382 0.1) (0.2192747881 0.009446820435 0.1) (0.3983264062 0.005782792503 0.1) (0.3980696823 0.0001542241918 0.1) (0.4034875475 -0.0001659127292 0.1) (0.4037457422 0.005493120098 0.1) (0.3928917223 0.00602414881 0.1) (0.3926278096 0.0003710986875 0.1) (0.6118561022 -0.05103109816 0.1) (0.6064847187 -0.0507020924 0.1) (0.6062178402 -0.05641657097 0.1) (0.611551596 -0.05690284518 0.1) (0.5738882478 -0.05463277317 0.1) (0.5740653345 -0.04930581543 0.1) (0.5708912816 -0.003214731685 0.1) (0.5703814634 -0.0145003765 0.1) (0.5811380283 -0.01507996215 0.1) (0.5816481359 -0.003788324321 0.1) (0.5743421856 -0.04355067045 0.1) (0.5689009268 -0.04352845202 0.1) (0.6121577385 -0.04519805777 0.1) (0.6067760352 -0.04491691003 0.1) (0.5254872148 -0.04662252214 0.1) (0.5304594558 -0.0477743374 0.1) (0.5311431316 -0.04184600916 0.1) (0.5258027094 -0.04126970873 0.1) (0.5634954384 -0.0433666962 0.1) (0.5601254909 -0.002639606324 0.1) (0.559614698 -0.01392470349 0.1) (0.5649999241 -0.01421583272 0.1) (0.7312865475 -0.2106963188 0.1) (0.7310304288 -0.2162294053 0.1) (0.7364041076 -0.2165108664 0.1) (0.7366565409 -0.2110126428 0.1) (0.7291841963 -0.255444998 0.1) (0.7399289849 -0.2559367136 0.1) (0.7404585544 -0.244698176 0.1) (0.7297149576 -0.2442025134 0.1) (0.7721594516 -0.2574096696 0.1) (0.7726888282 -0.2461751274 0.1) (0.7619330525 -0.2456828814 0.1) (0.7614045782 -0.2569194695 0.1) (0.7840576957 -0.06033676237 0.1) (0.7733226204 -0.05968532942 0.1) (0.77285698 -0.07088540505 0.1) (0.7835947522 -0.07152245132 0.1) (0.7459802476 -0.0693190122 0.1) (0.7513561032 -0.06961759823 0.1) (0.7518283731 -0.05840462728 0.1) (0.7443968983 -0.1035249938 0.1) (0.7445674989 -0.09810427416 0.1) (0.9031249839 -0.2193328922 0.1) (0.9029026542 -0.2246223245 0.1) (0.9082669577 -0.2249113424 0.1) (0.9084777144 -0.2197164619 0.1) (0.9011413107 -0.2632823646 0.1) (0.911883151 -0.2637729366 0.1) (0.9124032211 -0.252586001 0.1) (0.9016621386 -0.2521004714 0.1) (0.944130343 -0.2652727304 0.1) (0.9446505095 -0.2540837971 0.1) (0.9392808604 -0.2538225538 0.1) (0.9339116314 -0.2535733448 0.1) (0.9333862296 -0.2647670312 0.1) (0.8581502188 -0.2613139249 0.1) (0.8688811683 -0.2618019688 0.1) (0.8694034427 -0.2505901105 0.1) (0.8586759238 -0.2500932217 0.1) (0.8909226818 -0.2516020051 0.1) (0.8904005176 -0.2627908419 0.1) (0.8977916242 -0.2188591517 0.1) (0.897555338 -0.2242510302 0.1) (0.08787174878 -0.133636323 0.1) (0.09345418017 -0.1330963952 0.1) (0.09511866332 -0.1260634791 0.1) (0.08805262162 -0.1284611244 0.1) (0.1260311791 -0.1305727123 0.1) (0.1257986052 -0.1357010632 0.1) (0.1290225033 -0.1816306628 0.1) (0.1295591387 -0.170287244 0.1) (0.124144059 -0.1700130949 0.1) (0.1187448402 -0.1697422144 0.1) (0.1182036838 -0.1810963277 0.1) (0.1255249084 -0.1414116084 0.1) (0.1309028374 -0.1419783064 0.1) (0.08760772094 -0.1392979776 0.1) (0.09312535355 -0.139127655 0.1) (0.1747039292 -0.1361898822 0.1) (0.169631795 -0.1356762923 0.1) (0.1689701835 -0.1417075042 0.1) (0.1743788624 -0.1417409647 0.1) (0.1363012246 -0.1425152562 0.1) (0.1398505051 -0.1821614365 0.1) (0.1403987456 -0.1708264872 0.1) (0.1349852779 -0.1705604252 0.1) (0.04205995894 -0.1772524944 0.1) (0.04256785755 -0.1658842609 0.1) (0.03148743959 -0.1652627093 0.1) (0.03098726578 -0.1766306149 0.1) (0.03832982727 -0.1370555522 0.1) (0.04385409364 -0.1372994313 0.1) (-0.0008947646898 -0.1346564425 0.1) (0.00465302496 -0.1350181932 0.1) (0.08236004315 -0.1337771972 0.1) (0.08212003739 -0.1393062559 0.1) (0.04936606281 -0.1374807447 0.1) (0.04961215352 -0.1316244988 0.1) (0.05304336035 -0.1778347218 0.1) (0.05355871304 -0.1664655467 0.1) (0.04984889753 -0.1258768284 0.1) (0.08255124486 -0.1285332166 0.1) (0.1380725229 0.01832654932 0.1) (0.1377872182 0.0125622013 0.1) (0.1432277002 0.01237873273 0.1) (0.1435261502 0.01810430174 0.1) (0.132631605 0.01856320078 0.1) (0.1323455045 0.01278237195 0.1) (0.3014069738 -0.1899271718 0.1) (0.301682673 -0.1842166231 0.1) (0.2963087446 -0.1839818042 0.1) (0.2960348929 -0.1896748216 0.1) (0.2604507109 -0.1441109449 0.1) (0.2602144568 -0.14912889 0.1) (0.2655693171 -0.1495720317 0.1) (0.2658046357 -0.1445734641 0.1) (0.3067813416 -0.1901736254 0.1) (0.3070573061 -0.1844575832 0.1) (0.21535171 -0.1858035511 0.1) (0.215900027 -0.1744462795 0.1) (0.210508181 -0.1741678458 0.1) (0.2051177829 -0.1739008953 0.1) (0.2045736499 -0.1852751885 0.1) (0.2175620342 -0.140332238 0.1) (0.2121880163 -0.1398504274 0.1) (0.2119391344 -0.1450262471 0.1) (0.2173128478 -0.1454936262 0.1) (0.1797504448 -0.1421073235 0.1) (0.1800188729 -0.1367340165 0.1) (0.2550946679 -0.1436508264 0.1) (0.254855606 -0.1486854554 0.1) (0.2226818998 -0.1459538723 0.1) (0.2229292241 -0.1408103149 0.1) (0.2261158345 -0.1863302397 0.1) (0.2266624197 -0.1749881022 0.1) (0.221285373 -0.1747141875 0.1) (0.3117389156 0.01045371538 0.1) (0.3114948882 0.005108864888 0.1) (0.31691753 0.004804716229 0.1) (0.3171628738 0.01017683496 0.1) (0.306313483 0.01065858312 0.1) (0.306067878 0.00530179481 0.1) (0.311994428 0.01593276817 0.1) (0.306571248 0.01616355743 0.1) (0.3138786997 0.05541784008 0.1) (0.3030540319 0.05595546102 0.1) (0.302510134 0.04462751041 0.1) (0.3133370405 0.04409478721 0.1) (0.2705395446 0.05755926556 0.1) (0.2699920233 0.04621847474 0.1) (0.2808440454 0.04568754248 0.1) (0.2813904715 0.05702638385 0.1) (0.3571928079 0.05323457374 0.1) (0.3463707165 0.05378408428 0.1) (0.3458321021 0.04246188558 0.1) (0.3566551441 0.04191132798 0.1) (0.3241706014 0.04355473458 0.1) (0.3247111653 0.05487583801 0.1) (0.3174178696 0.01566592433 0.1) (0.2252569864 0.0201313726 0.1) (0.219829019 0.02038742212 0.1) (0.2271870533 0.05967330229 0.1) (0.2163386407 0.06019605098 0.1) (0.2157853674 0.04886054368 0.1) (0.2266348753 0.04833974445 0.1) (0.1837523403 0.06174325269 0.1) (0.1831945895 0.05039794992 0.1) (0.1940636539 0.04988822049 0.1) (0.1946202613 0.06123057498 0.1) (0.2597075474 0.05809023221 0.1) (0.259158979 0.04674849078 0.1) (0.2374790515 0.04781219447 0.1) (0.238030327 0.05914779822 0.1) (0.2306801249 0.01983751196 0.1) (0.4733530839 -0.1981583659 0.1) (0.4736281412 -0.1924403776 0.1) (0.4682567445 -0.1921531198 0.1) (0.4679802882 -0.1978793501 0.1) (0.478729561 -0.1984233427 0.1) (0.4790036007 -0.1927264299 0.1) (0.3873341177 -0.1940916617 0.1) (0.3876024797 -0.1884501396 0.1) (0.382230215 -0.1881808608 0.1) (0.3819605214 -0.1938292267 0.1) (0.3927086646 -0.1943551438 0.1) (0.3929767759 -0.1887188156 0.1) (0.4846615712 0.001318577944 0.1) (0.4843952853 -0.004362890799 0.1) (0.4897947307 -0.004629076702 0.1) (0.4900595019 0.001041752712 0.1) (0.5205297605 -0.0404156389 0.1) (0.5203059566 -0.04546602205 0.1) (0.4792649004 0.00158002453 0.1) (0.4789949139 -0.004115882559 0.1) (0.6453180793 -0.2065168187 0.1) (0.6455736628 -0.2009948193 0.1) (0.6401920723 -0.2007735467 0.1) (0.6399370434 -0.2062840594 0.1) (0.6507037074 -0.206695937 0.1) (0.6509665701 -0.2011061098 0.1) (0.5593758007 -0.2021059122 0.1) (0.559672025 -0.1961776 0.1) (0.5542872029 -0.1960025253 0.1) (0.5539951897 -0.2018850873 0.1) (0.5647531795 -0.2023522108 0.1) (0.5650498571 -0.1964145096 0.1) (0.6172331363 -0.05136748499 0.1) (0.6175467381 -0.04549397453 0.1) (0.65526765 -0.04738047618 0.1) (0.6498743664 -0.04711108369 0.1) (0.6495847143 -0.05288253033 0.1) (0.6570120033 -0.007911075247 0.1) (0.6462463373 -0.007312628771 0.1) (0.645744461 -0.01857893406 0.1) (0.656515208 -0.01917582375 0.1) (0.6492642755 -0.0587732311 0.1) (0.6168961111 -0.0573528961 0.1) (0.8171966424 -0.2148199391 0.1) (0.8169473021 -0.2203163097 0.1) (0.8223200166 -0.2206177475 0.1) (0.8225623717 -0.215183112 0.1) (0.8151339973 -0.2593683 0.1) (0.8258919154 -0.2598576459 0.1) (0.8264161394 -0.2486468829 0.1) (0.8156593166 -0.2481555875 0.1) (0.8479307977 -0.2496084981 0.1) (0.8474050927 -0.2608292012 0.1) (0.782912279 -0.2579007721 0.1) (0.7834414628 -0.2466702252 0.1) (0.8049096785 -0.2476606343 0.1) (0.804385117 -0.2588783892 0.1) (0.8118367506 -0.2144188036 0.1) (0.8115788862 -0.2199880479 0.1) (0.8197763247 -0.1074498948 0.1) (0.8194929061 -0.1131959125 0.1) (0.8174407921 -0.2093688709 0.1) (0.8120916384 -0.2088697392 0.1) (0.822794794 -0.209829792 0.1) (0.731537519 -0.2052076359 0.1) (0.726173058 -0.2048181936 0.1) (0.7259150194 -0.2103703096 0.1) (0.7369006622 -0.2055828981 0.1) (0.7449373279 -0.1074899075 0.1) (0.8253964868 -0.1021075293 0.1) (0.8200275839 -0.1017893558 0.1) (0.8269625232 -0.06301366635 0.1) (0.8162352783 -0.06232446706 0.1) (0.8157755772 -0.07350520661 0.1) (0.8265066728 -0.0741975953 0.1) (0.7943112262 -0.07218590125 0.1) (0.7947786329 -0.06099071648 0.1) (0.9548681741 -0.2657841333 0.1) (0.9553838148 -0.2546059944 0.1) (0.9500173551 -0.2543409004 0.1) (0.9884629761 -0.2649812337 0.1) (0.9885704579 -0.2537343322 0.1) (0.9825093339 -0.2548763766 0.1) (0.9769397223 -0.2553353285 0.1) (0.9765794179 -0.2665309786 0.1) (0.99015705 -0.2199173996 0.1) (0.9840264138 -0.2217319744 0.1) (0.98386099 -0.2270662031 0.1) (0.9901191001 -0.2253900364 0.1) (0.9888668894 -0.2170900952 0.1) (0.9839477732 -0.2182802665 0.1) (0.994594579 -0.163898918 0.1) (0.9892490103 -0.1635536381 0.1) (0.9891073194 -0.1689561907 0.1) (0.9944497228 -0.1693048218 0.1) (0.9519673086 -0.1606365174 0.1) (0.9517523942 -0.1662078353 0.1) (0.9571106578 -0.1665390109 0.1) (0.9573146194 -0.1609871875 0.1) (0.9033383405 -0.2141048986 0.1) (0.8980216052 -0.2135149245 0.1) (0.9029891679 -0.1635637613 0.1) (0.9073450562 -0.1652264486 0.1) (0.9466193951 -0.1602983328 0.1) (0.9463885295 -0.165909728 0.1) (0.9142055411 -0.1640339929 0.1) (0.9143597961 -0.1585993089 0.1) (0.9086713645 -0.2146478034 0.1) (0.9210513495 -0.1253210784 0.1) (0.9214243421 -0.1143188352 0.1) (0.9146241934 -0.1528532739 0.1) (0.9521574469 -0.155122171 0.1) (0.9468252579 -0.1547486035 0.1) (0.001145332189 -0.0462623845 0.1) (0.0008111519284 -0.05328644115 0.1) (0.007803453238 -0.04726041865 0.1) (0.7185115577 -0.07941243849 0.1) (0.7131342975 -0.07910147032 0.1) (0.7127920702 -0.08507021117 0.1) (0.7181667244 -0.08537294409 0.1) (0.6970750197 -0.07793178663 0.1) (0.6968503049 -0.08349872682 0.1) (0.7022083039 -0.08385612016 0.1) (0.7024465713 -0.07823657233 0.1) (1.151182918 -0.4520166362 0.1) (1.149024023 -0.497464158 0.1) (1.157813549 -0.314676603 0.1) (1.156708428 -0.3375669415 0.1) (1.155603307 -0.36045728 0.1) (1.198603223 -0.3625332703 0.1) (1.049193656 -0.3323762424 0.1) (1.114803645 -0.3126001305 0.1) (1.115908718 -0.2897107908 0.1) (1.094403766 -0.2886725545 0.1) (1.093298693 -0.3115618942 0.1) (1.119224048 -0.2210404745 0.1) (1.097719096 -0.2200022383 0.1) (1.096614008 -0.2428918776 0.1) (1.118118961 -0.2439301138 0.1) (1.04339917 -0.228851376 0.1) (1.043941371 -0.2174134155 0.1) (1.168864583 -0.08577691382 0.1) (1.167759481 -0.1086668528 0.1) (1.166654375 -0.1315568916 0.1) (1.175484901 0.05177637875 0.1) (1.173285006 0.005783141635 0.1) (1.216283945 0.003739401238 0.1) (1.065770233 0.01097384073 0.1) (1.087265197 0.009936086695 0.1) (-0.001331129746 -0.1052819257 0.1) (0.004890172136 -0.1060971825 0.1) (0.006067032528 -0.09893850564 0.1) (-0.001868936705 -0.09912622961 0.1) (0.6916647679 -0.07774427115 0.1) (0.6913897885 -0.0834813854 0.1) (0.6754726187 -0.07698345571 0.1) (0.67531588 -0.08230368687 0.1) (0.6806747332 -0.08266412495 0.1) (0.6808868217 -0.0771513389 0.1) (0.8697744591 -0.06585197861 0.1) (0.8590850771 -0.0651250613 0.1) (0.8586325222 -0.07630294213 0.1) (0.8693240176 -0.07702755869 0.1) (0.8372228968 -0.07488696332 0.1) (0.8376776326 -0.06370538335 0.1) (0.8307641064 -0.1024315478 0.1) (1.042055073 -0.03376790079 0.1) (1.020953314 -0.03184367689 0.1) (1.019952518 -0.05464684481 0.1) (1.040949966 -0.05665793962 0.1) (0.977298733 -0.0513944773 0.1) (0.9784645269 -0.02832575709 0.1) (0.9642738505 -0.1069020586 0.1) (-0.04608627845 -0.07362901253 0.1) (-0.04638707512 -0.08690171967 0.1) (-0.03562353863 -0.08780141393 0.1) (-0.03563899421 -0.08066241314 0.1) (-0.03541533683 -0.07387936917 0.1) (-0.04663288371 -0.1240526873 0.1) (-0.03514779975 -0.1255618857 0.1) (-0.03517092966 -0.1135385825 0.1) (-0.04672507198 -0.1116369974 0.1) (-0.006723333335 -0.1224426634 0.1) (-0.006772406132 -0.1282603652 0.1) (-0.002373595004 -0.02238251036 0.1) (-0.002835203914 -0.02831314997 0.1) (-0.04193686512 -0.0223941734 0.1) (-0.04303257322 -0.03451984226 0.1) (-0.03194635714 -0.03445517509 0.1) (-0.03060475079 -0.02216957807 0.1) (-0.03496949037 -0.06660629566 0.1) (-0.03445018642 -0.05994969368 0.1) (-0.0452654363 -0.05988888162 0.1) (0.2466542586 0.0126531367 0.1) (0.2463652036 0.006603737898 0.1) (0.2517717217 0.005737512849 0.1) (0.2520682723 0.01204585144 0.1) (0.1804944614 -0.007126466016 0.1) (0.1859068038 -0.006876673557 0.1) (0.1861599993 -0.001694454382 0.1) (0.1807469835 -0.001854509967 0.1) (0.2021847618 -0.006378562302 0.1) (0.2024361274 -0.00131719548 0.1) (0.1970065201 -0.00140616828 0.1) (0.1967509958 -0.006491462396 0.1) (0.2032728437 0.01543304288 0.1) (0.1978384903 0.01559829471 0.1) (0.1975628724 0.009910168232 0.1) (0.2029949797 0.009822815339 0.1) (0.4199237246 0.004563291193 0.1) (0.4196453021 -0.001245139996 0.1) (0.4250441206 -0.001524310775 0.1) (0.4253274506 0.004282081395 0.1) (0.4186660223 -0.01926858479 0.1) (0.4240428358 -0.01965101456 0.1) (0.4243965614 -0.01350632348 0.1) (0.4190061765 -0.01319762505 0.1) (0.4405349823 -0.01894679227 0.1) (0.440758257 -0.01347188973 0.1) (0.4353142951 -0.01342270958 0.1) (0.4350644992 -0.01901146566 0.1) (0.353903725 -0.01487135162 0.1) (0.3592785303 -0.01554422244 0.1) (0.3595231944 -0.01035208032 0.1) (0.3541527233 -0.009713858811 0.1) (0.3749797544 -0.01774323731 0.1) (0.3756471094 -0.01175895693 0.1) (0.3702440659 -0.0115465601 0.1) (0.369919248 -0.01703027621 0.1) (0.3766367841 0.006542009454 0.1) (0.3712358534 0.006777431189 0.1) (0.3709186271 0.0007666357926 0.1) (0.3763229106 0.0005591849204 0.1) (0.5590938162 -0.2078844368 0.1) (0.5644709394 -0.2081360293 0.1) (0.5572062032 -0.2474594523 0.1) (0.5679604014 -0.2479636361 0.1) (0.5684975209 -0.2366724013 0.1) (0.557744418 -0.236166268 0.1) (0.6002202407 -0.2494710486 0.1) (0.6007569263 -0.2381888034 0.1) (0.5900047739 -0.2376837172 0.1) (0.5894679437 -0.2489689589 0.1) (0.5142034422 -0.2454423933 0.1) (0.5249515992 -0.2459472866 0.1) (0.5254901033 -0.2346481094 0.1) (0.5147420428 -0.2341412184 0.1) (0.5469912668 -0.2356611336 0.1) (0.5464529556 -0.2469563155 0.1) (0.5537163554 -0.2076398362 0.1) (0.6861739474 -0.2534586137 0.1) (0.6969194936 -0.2539553716 0.1) (0.6974520735 -0.242695955 0.1) (0.6867077672 -0.242194251 0.1) (0.7189596158 -0.2437012778 0.1) (0.7184285652 -0.2549497555 0.1) (0.7256550416 -0.2159418547 0.1) (0.9247777526 -0.2188854281 0.1) (0.9244950386 -0.2246375869 0.1) (0.9299319693 -0.2245006114 0.1) (0.9302380257 -0.2185138053 0.1) (0.9236608744 -0.24185339 0.1) (0.9290569068 -0.2420658488 0.1) (0.9293338502 -0.2363295302 0.1) (0.9239307844 -0.2361798052 0.1) (0.9451773237 -0.2428401207 0.1) (0.9454522555 -0.2371247295 0.1) (0.940090301 -0.2368077924 0.1) (0.9398106366 -0.2425589972 0.1) (1.04449357 -0.2059757376 0.1) (1.120329155 -0.1981504357 0.1) (1.098824203 -0.1971121994 0.1) (1.12364447 -0.1294804192 0.1) (1.102139518 -0.1284421832 0.1) (1.101034411 -0.1513322216 0.1) (1.122539364 -0.1523704579 0.1) (0.1597954487 0.01726177088 0.1) (0.159510675 0.01148768592 0.1) (0.1649485599 0.01102231463 0.1) (0.1652167891 0.0169099295 0.1) (0.158621524 -0.005000719274 0.1) (0.1653914738 -0.00802680555 0.1) (0.1644289415 -0.000901800382 0.1) (0.1589455272 0.0001343304792 0.1) (0.1753361751 -0.001927370555 0.1) (0.1751337795 -0.007405283452 0.1) (0.1383514501 0.02404174771 0.1) (0.1329138662 0.02428524636 0.1) (0.1403339668 0.06377837463 0.1) (0.1294876828 0.06428299959 0.1) (0.1289196542 0.05293218602 0.1) (0.1397710772 0.05243031646 0.1) (0.09680228721 0.06575389117 0.1) (0.0962332185 0.054398122 0.1) (0.1071306534 0.05391405432 0.1) (0.1077018231 0.06526771973 0.1) (0.1728933607 0.06225449756 0.1) (0.1723335157 0.05090729356 0.1) (0.1506535605 0.05192894967 0.1) (0.1512154031 0.06327605723 0.1) (0.1438093483 0.02380427646 0.1) (0.3334054444 0.009195431438 0.1) (0.3331483268 0.003662393253 0.1) (0.3385436656 0.00324893405 0.1) (0.3388070009 0.008848549852 0.1) (0.332424741 -0.01234133208 0.1) (0.3377883637 -0.01293477124 0.1) (0.3380265371 -0.007877072516 0.1) (0.3326485889 -0.007310774122 0.1) (0.3487910005 -0.009081065493 0.1) (0.3485567762 -0.01420212836 0.1) (0.2900182188 0.01056928202 0.1) (0.2845800126 0.0104888338 0.1) (0.2842703318 0.004198849735 0.1) (0.2897229965 0.004537300887 0.1) (0.4728141271 -0.2094876563 0.1) (0.4835704539 -0.2100099638 0.1) (0.4841094692 -0.1987001989 0.1) (0.4711951222 -0.2434160555 0.1) (0.481952124 -0.2439243793 0.1) (0.482492061 -0.2326162608 0.1) (0.4717351556 -0.2321059393 0.1) (0.5039990246 -0.2336335697 0.1) (0.5034593288 -0.2449366941 0.1) (0.5173751728 -0.1782533756 0.1) (0.5120215868 -0.1778253129 0.1) (0.5117669244 -0.1833282344 0.1) (0.5171256377 -0.1836915691 0.1) (0.4959558203 -0.1765411831 0.1) (0.4956822339 -0.1822287069 0.1) (0.5010477895 -0.1825954755 0.1) (0.5013144342 -0.1769687878 0.1) (0.4948678955 -0.1992412295 0.1) (0.500242153 -0.1995107046 0.1) (0.5005103897 -0.1938717794 0.1) (0.4951379025 -0.1935863711 0.1) (0.4458995789 -0.01935416192 0.1) (0.4461473772 -0.0137653094 0.1) (0.4618585417 -0.02125375731 0.1) (0.4622083793 -0.01514812419 0.1) (0.4568465898 -0.01470334639 0.1) (0.4565291399 -0.02065656401 0.1) (0.4630935754 0.002398903317 0.1) (0.4577040068 0.002683033808 0.1) (0.4574303968 -0.003025713488 0.1) (0.4628167671 -0.003334618566 0.1) (0.485175524 0.01262765063 0.1) (0.4743997166 0.01318193478 0.1) (0.4738785604 0.001848080628 0.1) (0.4867363553 0.04655385258 0.1) (0.4759708256 0.04711364752 0.1) (0.4754467254 0.03580176089 0.1) (0.4862182963 0.03524267546 0.1) (0.4436334289 0.04879800597 0.1) (0.4431062357 0.03748426635 0.1) (0.4538918386 0.03692550463 0.1) (0.4544190318 0.04823924425 0.1) (0.3985742797 0.01143541559 0.1) (0.3931524499 0.01169417228 0.1) (0.4003991244 0.05103748935 0.1) (0.3895862154 0.05159056123 0.1) (0.3890495987 0.04026826608 0.1) (0.3998607994 0.03972128367 0.1) (0.3674810863 0.04135862804 0.1) (0.3680168488 0.05268396792 0.1) (0.4328340352 0.04936143816 0.1) (0.4323076962 0.0380446538 0.1) (0.4106854533 0.03916263893 0.1) (0.4112128876 0.05048137274 0.1) (0.4039892002 0.01115797033 0.1) (0.6450556988 -0.2120966575 0.1) (0.6504373134 -0.2123174307 0.1) (0.6431898611 -0.2514694878 0.1) (0.6539405462 -0.2519634903 0.1) (0.654477459 -0.2406972747 0.1) (0.6437259679 -0.2401992286 0.1) (0.6759664092 -0.2416936906 0.1) (0.6754323965 -0.2529620486 0.1) (0.6109645953 -0.2499717537 0.1) (0.6115011361 -0.238692505 0.1) (0.6329736709 -0.2396971389 0.1) (0.6324384183 -0.2509704428 0.1) (0.6396771909 -0.2118530075 0.1) (0.6238242054 -0.2054564909 0.1) (0.6240882888 -0.1998621173 0.1) (0.6187355071 -0.1995418187 0.1) (0.6184687081 -0.2051717027 0.1) (0.6248660908 -0.1831916307 0.1) (0.6195334876 -0.1826814843 0.1) (0.6192691051 -0.1882820507 0.1) (0.6246087514 -0.1887292635 0.1) (0.6034990651 -0.1812043415 0.1) (0.6032187835 -0.1869683313 0.1) (0.6085759742 -0.1874046776 0.1) (0.6088516107 -0.1816954274 0.1) (0.6895238985 -0.1847762529 0.1) (0.6841846059 -0.184218028 0.1) (0.6839287533 -0.1894552831 0.1) (0.6892707807 -0.1899775981 0.1) (0.6684833504 -0.1825795638 0.1) (0.6678299544 -0.1885442945 0.1) (0.6732210744 -0.1885889212 0.1) (0.6735368015 -0.1831068686 0.1) (0.6668631429 -0.2070352845 0.1) (0.6722407561 -0.2072145164 0.1) (0.672556339 -0.2011133367 0.1) (0.6671727057 -0.2009965871 0.1) (0.5378516702 -0.2012990202 0.1) (0.5381185319 -0.1956678378 0.1) (0.5327367111 -0.1954928078 0.1) (0.5324727434 -0.2010847842 0.1) (0.5388667217 -0.1793411231 0.1) (0.5334693634 -0.1793220253 0.1) (0.5332390176 -0.184570123 0.1) (0.5386349335 -0.1845983619 0.1) (0.522490995 -0.1840417089 0.1) (0.5227333135 -0.1786700448 0.1) (0.5981455207 -0.1807132074 0.1) (0.5978595758 -0.1865322882 0.1) (0.5820829572 -0.1792383102 0.1) (0.5817808913 -0.1852254091 0.1) (0.5871401616 -0.1856601537 0.1) (0.5874364727 -0.1797300436 0.1) (0.5808761215 -0.2031778644 0.1) (0.5862506642 -0.2034621705 0.1) (0.5865373035 -0.1976287064 0.1) (0.5811663547 -0.1973114352 0.1) (0.6672703696 -0.01978447555 0.1) (0.6677665133 -0.008512487202 0.1) (0.6606485764 -0.04765698105 0.1) (0.6985662291 -0.04407901275 0.1) (0.6878045585 -0.04348075917 0.1) (0.6873150051 -0.05471992713 0.1) (0.8035974125 -0.1270897818 0.1) (0.8030343096 -0.1231175461 0.1) (0.7961180275 -0.1244910818 0.1) (0.8036562102 -0.1064619889 0.1) (0.7982666019 -0.1061579433 0.1) (0.7979976102 -0.1118954568 0.1) (0.8033972644 -0.1121573177 0.1) (0.7957978913 -0.2131787226 0.1) (0.7960865234 -0.2073454549 0.1) (0.7907528641 -0.206857183 0.1) (0.7904539712 -0.2127785585 0.1) (0.8387643471 -0.2153671302 0.1) (0.844208607 -0.2150576074 0.1) (0.8445034672 -0.2091782864 0.1) (0.8390088247 -0.2099092699 0.1) (0.7098061669 -0.2093772408 0.1) (0.7100855902 -0.2036310302 0.1) (0.7047225042 -0.2032338453 0.1) (0.7044369355 -0.2090451352 0.1) (0.7108788366 -0.1870761229 0.1) (0.7055353503 -0.1865010761 0.1) (0.7052947659 -0.1916087167 0.1) (0.7106406542 -0.1921547455 0.1) (0.6946079592 -0.1905173996 0.1) (0.6948534106 -0.1853504247 0.1) (0.7535044916 -0.1916576802 0.1) (0.7533975281 -0.1960920811 0.1) (0.7588402652 -0.1956896768 0.1) (0.7584153611 -0.1922143436 0.1) (0.7527499372 -0.2116622668 0.1) (0.7581465764 -0.2116755231 0.1) (0.758410529 -0.2060631222 0.1) (0.7529925051 -0.2062439604 0.1) (0.7603555566 -0.104974681 0.1) (0.7586979805 -0.111976512 0.1) (0.7656831031 -0.1103383602 0.1) (0.7658678502 -0.1048734714 0.1) (0.9962505527 -0.2210493621 0.1) (0.997707872 -0.2136747585 0.1) (0.9987520674 -0.2611008878 0.1) (0.9993055684 -0.2496362413 0.1) (0.9943335152 -0.2503883501 0.1) (1.031004067 -0.2626669906 0.1) (1.03154676 -0.2512188421 0.1) (1.020799568 -0.250693972 0.1) (1.020246742 -0.2621446349 0.1) (0.9505394366 -0.2431330375 0.1) (0.9508081549 -0.2374633998 0.1) (0.9666499888 -0.2440079508 0.1) (0.9669040617 -0.2384757668 0.1) (0.9615320224 -0.2381603452 0.1) (0.9612751182 -0.2437304368 0.1) (0.9676097724 -0.2222409106 0.1) (0.9622739001 -0.2216533164 0.1) (0.9620382806 -0.2270728593 0.1) (0.9673893783 -0.227552462 0.1) (0.9574879909 -0.1555090748 0.1) (0.9948746642 -0.1532243057 0.1) (0.984255969 -0.1522152689 0.1) (0.984018864 -0.1629328037 0.1) (0.9955906762 -0.1209536803 0.1) (0.9850220463 -0.1199444976 0.1) (0.9847327793 -0.1307885543 0.1) (0.9953466696 -0.1316897439 0.1) (0.9678048943 -0.2174942977 0.1) (0.9624741445 -0.2168420754 0.1) (0.9725372797 -0.1844211293 0.1) (0.9672511402 -0.1839439619 0.1) (0.9668192441 -0.1892608203 0.1) (0.9710366787 -0.1910332587 0.1) (1.035414096 -0.1711148432 0.1) (1.024656134 -0.1706056721 0.1) (1.024082189 -0.1820790429 0.1) (1.034851017 -0.1825705174 0.1) (0.9996197186 -0.1701346988 0.1) (0.9997811975 -0.164716282 0.1) (0.8817525432 -0.2173126035 0.1) (0.8820141944 -0.2117063988 0.1) (0.8766688394 -0.2110871105 0.1) (0.876395866 -0.2167826732 0.1) (0.9308627336 -0.2128114964 0.1) (0.9263735456 -0.212230139 0.1) (0.0260469365 -0.02358843011 0.1) (0.02572921241 -0.02952451458 0.1) (0.03136078625 -0.02976045918 0.1) (0.03173749175 -0.02390291032 0.1) (0.007752319144 -0.04081625572 0.1) (0.001907488743 -0.04044206647 0.1) (0.02038293717 -0.02328794678 0.1) (0.02011287059 -0.02925716798 0.1) (0.5473387801 -0.04711724073 0.1) (0.5472556853 -0.05180378597 0.1) (0.552372446 -0.05303125838 0.1) (0.5525891078 -0.04796290993 0.1) (0.5419546361 -0.04686590999 0.1) (0.5424704823 -0.05065569454 0.1) (0.740073611 -0.08040847924 0.1) (0.7346890324 -0.08014541389 0.1) (0.7343712899 -0.08600100383 0.1) (0.7397616247 -0.08624852868 0.1) (0.7235860126 -0.08551844646 0.1) (0.723906722 -0.07964287635 0.1) (0.7236349212 -0.1007425466 0.1) (0.7231015795 -0.09677598271 0.1) (0.7161407417 -0.09840881145 0.1) (0.1526799309 -0.1383750662 0.1) (0.1527985205 -0.1338450147 0.1) (0.1475012737 -0.133224645 0.1) (0.147290073 -0.1380969287 0.1) (0.1581605171 -0.1379559677 0.1) (0.1577458261 -0.1344142497 0.1) (0.02170364715 -0.1303976459 0.1) (0.02192076357 -0.124689475 0.1) (0.01623347715 -0.1243010664 0.1) (0.01603106288 -0.1300240636 0.1) (0.02259918261 -0.1078026442 0.1) (0.01807726551 -0.105746693 0.1) (0.01653523838 -0.1127731066 0.1) (0.02213975032 -0.1133373281 0.1) (-0.001013582903 -0.1112951344 0.1) (0.004937025227 -0.1119094038 0.1) (0.02773589207 -0.1138779185 0.1) (0.02723081721 -0.1097157201 0.1) (0.02739460806 -0.1307389769 0.1) (0.02758385081 -0.1250026291 0.1) (0.6538718598 -0.0760840609 0.1) (0.659246432 -0.07638849185 0.1) (0.6594928251 -0.07076653305 0.1) (0.6540627969 -0.07065685444 0.1) (0.6757279422 -0.07132168124 0.1) (0.6702929493 -0.07123188635 0.1) (0.6699800564 -0.07709071392 0.1) (0.6765518926 -0.05415153876 0.1) (0.6711637816 -0.05387869169 0.1) (0.6708887195 -0.05959677982 0.1) (0.6762874886 -0.05983550116 0.1) (0.6683464947 -0.08403061289 0.1) (0.6543887237 -0.08001866301 0.1) (0.6590778944 -0.08135173871 0.1) (0.8241614672 -0.1303842703 0.1) (0.8295373469 -0.1306823569 0.1) (0.8297603421 -0.1250888228 0.1) (0.8243287273 -0.1249497936 0.1) (0.8456558886 -0.1315162077 0.1) (0.8459022545 -0.1258740741 0.1) (0.8405522411 -0.1255379106 0.1) (0.8403348302 -0.1310987258 0.1) (0.8466213606 -0.109009231 0.1) (0.8412678235 -0.10868384 0.1) (0.841041188 -0.1142698297 0.1) (0.8463935873 -0.1145980491 0.1) (0.8402283739 -0.136352104 0.1) (0.8454553183 -0.1370392611 0.1) (0.8246558168 -0.1344948914 0.1) (0.8290555018 -0.1360799004 0.1) (0.867102841 -0.1328848314 0.1) (0.8616959468 -0.1326692452 0.1) (0.8614252327 -0.1384009589 0.1) (0.8668420562 -0.1385767777 0.1) (0.8506285626 -0.1379055371 0.1) (0.8509332773 -0.1320709434 0.1) (0.8865430399 -0.1572181009 0.1) (0.8880395642 -0.1506282008 0.1) (0.8826756783 -0.1502683207 0.1) (0.8822247079 -0.1555862605 0.1) (0.8886391694 -0.1339989691 0.1) (0.8832675256 -0.133675357 0.1) (0.8830516895 -0.1392450285 0.1) (0.8884301172 -0.139552549 0.1) (0.872237071 -0.1388103119 0.1) (0.8724942517 -0.1331308064 0.1) (0.9100033681 -0.1355263869 0.1) (0.9046802355 -0.1351311309 0.1) (0.9044548216 -0.1407125542 0.1) (0.9097810375 -0.141106157 0.1) (0.8937997737 -0.139896589 0.1) (0.8940043387 -0.1343530043 0.1) (0.8933500785 -0.1561372978 0.1) (0.8934188461 -0.150938766 0.1) (0.07205895315 -0.0214901159 0.1) (0.06510696455 -0.01926918792 0.1) (0.06424357856 -0.02345562354 0.1) (0.07150917599 -0.002027060906 0.1) (0.065999154 -0.001691361825 0.1) (0.06574757068 -0.00767589215 0.1) (0.07126802026 -0.008096292619 0.1) (0.04942475652 -0.0008082710638 0.1) (0.0491683874 -0.006678337437 0.1) (0.05468931403 -0.006981023963 0.1) (0.05493599935 -0.001081356172 0.1) (0.09341315905 -0.00335838052 0.1) (0.08792820058 -0.002926578266 0.1) (0.08764242623 -0.008847886252 0.1) (0.09318521118 -0.009494126535 0.1) (0.07675552587 -0.008379945347 0.1) (0.07698956022 -0.002319280187 0.1) (0.04393392573 -0.000554092276 0.1) (0.04363682818 -0.006421691742 0.1) (0.02734221256 0.0001092778737 0.1) (0.0270462078 -0.00567347558 0.1) (0.03255215889 -0.005935893095 0.1) (0.03283220987 -0.0001393542676 0.1) (0.03204441772 -0.01785247209 0.1) (0.0264263484 -0.0175358849 0.1) (0.2239022984 -0.006186318446 0.1) (0.2293493677 -0.006233345934 0.1) (0.2295906463 -0.001422384011 0.1) (0.2241545804 -0.001271866736 0.1) (0.2470472489 -0.006517617533 0.1) (0.2404116429 -0.002948477904 0.1) (0.239709488 -0.006377106899 0.1) (0.2412311963 0.01330110564 0.1) (0.240949741 0.007575016491 0.1) (0.2084183344 0.00972006661 0.1) (0.2086967265 0.0152582849 0.1) (0.2076035603 -0.006285363356 0.1) (0.2078584637 -0.001254402513 0.1) (0.2187216443 -0.001222417973 0.1) (0.2184707922 -0.006190200681 0.1) (0.3973758305 -0.01618752826 0.1) (0.402726782 -0.01693974109 0.1) (0.4029701377 -0.01140143313 0.1) (0.3975859318 -0.01086106314 0.1) (0.4136497597 -0.01266230099 0.1) (0.4133442119 -0.01855562289 0.1) (0.4145319455 0.00486384739 0.1) (0.414255447 -0.0009047302194 0.1) (0.4130908875 -0.02378198721 0.1) (0.4183402429 -0.02471000532 0.1) (0.3971863438 -0.02106626658 0.1) (0.4025156731 -0.02197602001 0.1) (0.4348976846 -0.02414639535 0.1) (0.4403596629 -0.02415419615 0.1) (0.4233659747 -0.02562482434 0.1) (0.3919642378 -0.01569599441 0.1) (0.3918497358 -0.02024506517 0.1) (0.3817506554 0.0004851579009 0.1) (0.3820495543 0.006365184957 0.1) (0.3794826242 -0.01839373495 0.1) (0.3811298742 -0.01141915572 0.1) (0.3921500406 -0.01058250533 0.1) (0.5902413591 -0.0502761971 0.1) (0.5898841565 -0.05632701128 0.1) (0.5953128381 -0.05642310915 0.1) (0.5956517748 -0.05046031654 0.1) (0.5848743688 -0.04985619732 0.1) (0.5845790148 -0.05568353403 0.1) (0.5905691296 -0.04429584559 0.1) (0.5851661071 -0.04397932864 0.1) (0.5914322949 -0.02695629707 0.1) (0.5860214372 -0.02667764634 0.1) (0.5857526183 -0.03237010573 0.1) (0.5911673363 -0.03265174609 0.1) (0.5698487565 -0.02586611072 0.1) (0.5695588633 -0.03164255155 0.1) (0.5749481841 -0.03186960369 0.1) (0.5752267201 -0.02614177173 0.1) (0.547526168 -0.04176354864 0.1) (0.5421132254 -0.04163176823 0.1) (0.5483214935 -0.02470936069 0.1) (0.5429311009 -0.02446303444 0.1) (0.5426520351 -0.03022257774 0.1) (0.5480451625 -0.03043299409 0.1) (0.526705873 -0.02366157658 0.1) (0.5264258055 -0.02948334396 0.1) (0.5318225077 -0.02982708781 0.1) (0.5321064536 -0.02396646225 0.1) (0.5644659 -0.02558811105 0.1) (0.5641720844 -0.03138358486 0.1) (0.5534189867 -0.03073218286 0.1) (0.5536991774 -0.02499081495 0.1) (0.5528500331 -0.04228879123 0.1) (0.7607059516 -0.09900266025 0.1) (0.7553062078 -0.09876339128 0.1) (0.7549593793 -0.1047237505 0.1) (0.7616260269 -0.08152119099 0.1) (0.7562459204 -0.0812277059 0.1) (0.7559642728 -0.08697851453 0.1) (0.7613516165 -0.08724651897 0.1) (0.7451656863 -0.0864605742 0.1) (0.7454645009 -0.08066524161 0.1) (0.9021738389 -0.2409832132 0.1) (0.9075432607 -0.2412284269 0.1) (0.9077945643 -0.2357121278 0.1) (0.9024240954 -0.2354678648 0.1) (0.9185458768 -0.2360479766 0.1) (0.9182869129 -0.2416399944 0.1) (0.9192961359 -0.2195332431 0.1) (0.9190634049 -0.2248929556 0.1) (0.8814798978 -0.2230013741 0.1) (0.8868476314 -0.2234267159 0.1) (0.8871084724 -0.2178372917 0.1) (0.8806807902 -0.2399265295 0.1) (0.8860661796 -0.2401935385 0.1) (0.8863252743 -0.2346195481 0.1) (0.880942234 -0.2343246198 0.1) (0.8970639662 -0.2351960683 0.1) (0.8968098934 -0.2407282523 0.1) (0.1097592922 -0.1336616305 0.1) (0.1100244267 -0.1283565441 0.1) (0.1047221565 -0.1275706396 0.1) (0.1043902413 -0.1330769397 0.1) (0.1151140581 -0.1343348353 0.1) (0.115370138 -0.1291136098 0.1) (0.1094354907 -0.1397256707 0.1) (0.1148107456 -0.1402648076 0.1) (0.1084879506 -0.157713805 0.1) (0.1138997161 -0.1580151259 0.1) (0.1141912676 -0.1521836009 0.1) (0.1087866181 -0.1518385724 0.1) (0.1300976898 -0.1589456196 0.1) (0.1303673442 -0.1532773286 0.1) (0.1249636447 -0.152912623 0.1) (0.1246863921 -0.15863461 0.1) (0.08679350807 -0.1567122737 0.1) (0.09221081699 -0.1569381741 0.1) (0.09249393279 -0.1511030382 0.1) (0.08704905303 -0.1509380791 0.1) (0.1033670693 -0.1515325707 0.1) (0.1030653481 -0.1574295814 0.1) (0.1040403972 -0.1392863933 0.1) (0.1524783529 -0.1434420404 0.1) (0.1579604635 -0.1430121028 0.1) (0.1517251944 -0.1599753558 0.1) (0.1571438165 -0.160113918 0.1) (0.1574248794 -0.154333747 0.1) (0.1519919638 -0.154325347 0.1) (0.1733855015 -0.1605330246 0.1) (0.1737056428 -0.154378903 0.1) (0.1683040497 -0.154260886 0.1) (0.1679910672 -0.1603496767 0.1) (0.1355223292 -0.1592498647 0.1) (0.135787734 -0.153628123 0.1) (0.1465871952 -0.1541901568 0.1) (0.1463262529 -0.1597816786 0.1) (0.1470696866 -0.1433461079 0.1) (0.06609908479 -0.132216533 0.1) (0.06578647598 -0.1382001194 0.1) (0.07123552107 -0.1386417012 0.1) (0.07151434732 -0.1328269822 0.1) (0.06499573568 -0.1556445826 0.1) (0.07046478899 -0.1559309486 0.1) (0.07073526328 -0.1502166436 0.1) (0.06526549087 -0.1499099192 0.1) (0.08161364508 -0.1507490488 0.1) (0.0813575368 -0.1564685525 0.1) (0.06643875251 -0.1262054195 0.1) (0.06103332117 -0.1256318873 0.1) (0.06066034008 -0.1317855603 0.1) (0.07179596603 -0.127062256 0.1) (0.136970406 -0.005144409535 0.1) (0.14234841 -0.004838596006 0.1) (0.1426284758 0.0008794507855 0.1) (0.1372210015 0.0008134373857 0.1) (0.153496582 0.0007853511136 0.1) (0.1531796255 -0.0044111099 0.1) (0.1543850334 0.01759105919 0.1) (0.1540867709 0.01189010979 0.1) (0.152845526 -0.009008747562 0.1) (0.1578013288 -0.008613970825 0.1) (0.1367712269 -0.01055570003 0.1) (0.1420796616 -0.00999042983 0.1) (0.115064379 -0.003413726737 0.1) (0.10967276 -0.003462384536 0.1) (0.1093748874 -0.009134519224 0.1) (0.1147170609 -0.008741376255 0.1) (0.09866953614 -0.009847807354 0.1) (0.09887980621 -0.003636520983 0.1) (0.1315614819 -0.00513676733 0.1) (0.1316734985 -0.01113214407 0.1) (0.1201676586 -0.008984902497 0.1) (0.120527676 -0.003788217738 0.1) (0.1162686981 0.01933316127 0.1) (0.1159869769 0.01362230266 0.1) (0.1214551492 0.01334879404 0.1) (0.1217405179 0.01907299227 0.1) (0.1208489481 0.001829425167 0.1) (0.1153992738 0.002175025634 0.1) (0.1317996246 0.0009364142752 0.1) (0.2818599305 -0.1459915447 0.1) (0.2816475362 -0.1508056031 0.1) (0.2870535737 -0.1509352481 0.1) (0.2871937628 -0.1464554967 0.1) (0.2809469872 -0.1665188014 0.1) (0.2863518414 -0.1666107454 0.1) (0.2866057088 -0.1611450288 0.1) (0.2811935662 -0.1611418366 0.1) (0.302564407 -0.1664302502 0.1) (0.3028860702 -0.160182393 0.1) (0.2974681074 -0.1604656534 0.1) (0.2971668432 -0.1664776199 0.1) (0.2594583534 -0.1654536207 0.1) (0.2648259676 -0.1657570149 0.1) (0.2650762845 -0.1603233644 0.1) (0.2597136295 -0.1599794622 0.1) (0.2758048012 -0.1609447461 0.1) (0.2755595586 -0.1663147673 0.1) (0.2764947961 -0.1455123656 0.1) (0.2762739127 -0.1504400468 0.1) (0.3240726942 -0.1673371946 0.1) (0.3294404495 -0.1676791404 0.1) (0.3297569661 -0.1614964108 0.1) (0.3243927173 -0.1611025737 0.1) (0.3455133312 -0.1687329453 0.1) (0.3458172007 -0.1627084899 0.1) (0.340472682 -0.1622999872 0.1) (0.3401652 -0.1683785313 0.1) (0.3079526378 -0.1665139831 0.1) (0.3082816086 -0.1601769745 0.1) (0.3190276487 -0.1607257167 0.1) (0.3187031686 -0.1670111819 0.1) (0.1961038533 -0.1383252301 0.1) (0.195847639 -0.1435699764 0.1) (0.2012084695 -0.1440553552 0.1) (0.2014628314 -0.1388282401 0.1) (0.1949286254 -0.1616930433 0.1) (0.2003055045 -0.1620119023 0.1) (0.2006058145 -0.1560404369 0.1) (0.1952333924 -0.1556707337 0.1) (0.2164563165 -0.1629653484 0.1) (0.2167425459 -0.1571403745 0.1) (0.2113578001 -0.1567770845 0.1) (0.2110673066 -0.1626489073 0.1) (0.1787689746 -0.1607775151 0.1) (0.1790891255 -0.1546231937 0.1) (0.1898528976 -0.1553023427 0.1) (0.1895426891 -0.1613751487 0.1) (0.1907424574 -0.1378100894 0.1) (0.1904831171 -0.1430781121 0.1) (0.2389842538 -0.1422338891 0.1) (0.2387474904 -0.1473245942 0.1) (0.2441134109 -0.1477874923 0.1) (0.244349982 -0.1427215067 0.1) (0.2379441114 -0.1642138019 0.1) (0.243323321 -0.1645258653 0.1) (0.243588736 -0.158924648 0.1) (0.2382136844 -0.1585679331 0.1) (0.2543451985 -0.1596307759 0.1) (0.2540869175 -0.1651464378 0.1) (0.2218384406 -0.1632792546 0.1) (0.2221194793 -0.157499583 0.1) (0.2328506238 -0.158211697 0.1) (0.2325778819 -0.1639024652 0.1) (0.2336373492 -0.1417503841 0.1) (0.2333945163 -0.1468631221 0.1) (0.3107954756 -0.01020752651 0.1) (0.3162315956 -0.01070945522 0.1) (0.316449424 -0.005762103786 0.1) (0.3110256826 -0.005314835594 0.1) (0.3272499502 -0.006758294054 0.1) (0.3270190418 -0.01174846454 0.1) (0.3279916124 0.009536898678 0.1) (0.327740433 0.004064644858 0.1) (0.295185014 0.004986529895 0.1) (0.2954574708 0.01069212914 0.1) (0.2950652706 -0.008961322602 0.1) (0.2946997807 -0.005499570281 0.1) (0.287777802 -0.008442697302 0.1) (0.3056078842 -0.004972576161 0.1) (0.3053842899 -0.009769774857 0.1) (0.4530778225 -0.1731011852 0.1) (0.4584357848 -0.17352155 0.1) (0.4587409955 -0.1674900511 0.1) (0.4533877217 -0.1670140476 0.1) (0.474501127 -0.1748144695 0.1) (0.4747913987 -0.1689472413 0.1) (0.4694387614 -0.1684580532 0.1) (0.4691438157 -0.1743806204 0.1) (0.4315530383 -0.1720589879 0.1) (0.4369560087 -0.1720862659 0.1) (0.4372899502 -0.165770722 0.1) (0.4318851227 -0.1657611751 0.1) (0.4480300475 -0.1665462415 0.1) (0.4477140704 -0.17269706 0.1) (0.5015798781 -0.1713669711 0.1) (0.496225755 -0.170887823 0.1) (0.5176236753 -0.1728158331 0.1) (0.512275931 -0.1723289836 0.1) (0.4798624143 -0.1752489111 0.1) (0.4801470179 -0.1694368737 0.1) (0.4908676655 -0.1704078828 0.1) (0.49059324 -0.1761127862 0.1) (0.3669419406 -0.1701911888 0.1) (0.3723053828 -0.1705602582 0.1) (0.3725804787 -0.1648414709 0.1) (0.3672240553 -0.1644099673 0.1) (0.3883946432 -0.1716688166 0.1) (0.3886525716 -0.1661397221 0.1) (0.3832952121 -0.1657068718 0.1) (0.383031201 -0.1712997472 0.1) (0.3508612068 -0.1690926532 0.1) (0.3511602238 -0.1631272325 0.1) (0.3618675645 -0.1639798621 0.1) (0.3615794538 -0.1698230665 0.1) (0.4098716679 -0.1729122448 0.1) (0.4152686646 -0.1729388339 0.1) (0.4155027585 -0.1676545749 0.1) (0.4101043049 -0.1676374266 0.1) (0.4264316005 -0.1663040227 0.1) (0.4261274748 -0.1723130478 0.1) (0.3937592869 -0.1720337391 0.1) (0.3940110987 -0.1665691247 0.1) (0.4047312295 -0.1673642041 0.1) (0.4044928666 -0.1726954119 0.1) (0.5051097702 -0.02274869061 0.1) (0.499697458 -0.02256237716 0.1) (0.4993635698 -0.02856576045 0.1) (0.5047982203 -0.02866264707 0.1) (0.483565099 -0.02164145871 0.1) (0.4833082842 -0.02729264895 0.1) (0.4886692809 -0.02769163525 0.1) (0.4889554199 -0.02191000735 0.1) (0.5213259877 -0.02334277271 0.1) (0.5210537588 -0.0290851257 0.1) (0.5102572545 -0.02864848035 0.1) (0.5105294635 -0.02288580275 0.1) (0.5103554794 -0.04324509865 0.1) (0.5098491013 -0.03948730791 0.1) (0.5028325161 -0.04156977145 0.1) (0.4562141161 -0.0265802643 0.1) (0.4614981474 -0.02739141862 0.1) (0.4456738092 -0.0248185319 0.1) (0.4781254556 -0.02158577925 0.1) (0.4778485459 -0.02732139869 0.1) (0.4668458573 -0.02785824312 0.1) (0.4672283049 -0.02161632398 0.1) (0.6462687888 -0.1851451008 0.1) (0.6409083171 -0.184714503 0.1) (0.6406743395 -0.190017089 0.1) (0.6460493651 -0.1903121308 0.1) (0.6299563209 -0.1891782605 0.1) (0.630206434 -0.1837073568 0.1) (0.62918972 -0.2057411621 0.1) (0.6294491384 -0.2001812035 0.1) (0.6304358801 -0.1787060028 0.1) (0.6250959847 -0.1781602634 0.1) (0.6464795382 -0.1803443786 0.1) (0.641128617 -0.1797989077 0.1) (0.6090937878 -0.1765962735 0.1) (0.6037423224 -0.1760828137 0.1) (0.6197718056 -0.1776207891 0.1) (0.6516521642 -0.1853501406 0.1) (0.6517757885 -0.1808817035 0.1) (0.66177545 -0.20101684 0.1) (0.6614806049 -0.2069165855 0.1) (0.6640161502 -0.1821234123 0.1) (0.6623808995 -0.1890568223 0.1) (0.651448712 -0.190352249 0.1) (0.5606490212 -0.1774756557 0.1) (0.5552482999 -0.1774640044 0.1) (0.5549197322 -0.1837304503 0.1) (0.5603185722 -0.1837603321 0.1) (0.5440578194 -0.1843582892 0.1) (0.5443141847 -0.1788408329 0.1) (0.5432329798 -0.2014846378 0.1) (0.5435069954 -0.1957882245 0.1) (0.5445217142 -0.1738372193 0.1) (0.5390729342 -0.1743440537 0.1) (0.5609670684 -0.1719662833 0.1) (0.5559007687 -0.171477003 0.1) (0.5229755982 -0.1732990798 0.1) (0.5336912436 -0.1741663269 0.1) (0.587685996 -0.1745409393 0.1) (0.5823346319 -0.1740253819 0.1) (0.598390857 -0.1755693538 0.1) (0.5660168584 -0.1778159035 0.1) (0.5662805394 -0.1724787097 0.1) (0.5769832677 -0.1735098245 0.1) (0.5767293404 -0.1787486743 0.1) (0.5757962214 -0.1969980079 0.1) (0.5755024909 -0.2028954044 0.1) (0.5764213702 -0.1847958584 0.1) (0.5656945616 -0.1840146731 0.1) (0.646887832 -0.07788616829 0.1) (0.6334191881 -0.05202648795 0.1) (0.6331195247 -0.05783940006 0.1) (0.6384822569 -0.0581817041 0.1) (0.6387945367 -0.05231483762 0.1) (0.6325269662 -0.07388719516 0.1) (0.6375527214 -0.0752577455 0.1) (0.6378529556 -0.06997217442 0.1) (0.6326216871 -0.06910499929 0.1) (0.6485540332 -0.07083010815 0.1) (0.6272705926 -0.06872901726 0.1) (0.6277956816 -0.07259693843 0.1) (0.6280306539 -0.05180387891 0.1) (0.6277224459 -0.05764861601 0.1) (0.8172150187 -0.131864215 0.1) (0.8087705588 -0.1124882178 0.1) (0.8090367867 -0.1067872136 0.1) (0.808165201 -0.1286766994 0.1) (0.8082991008 -0.1237465807 0.1) (0.8188513309 -0.1249295548 0.1) (0.8011363301 -0.213588734 0.1) (0.8014145038 -0.2078476691 0.1) (0.8335556501 -0.210299757 0.1) (0.8333356206 -0.2155415449 0.1) (0.7322563905 -0.1893637692 0.1) (0.726909657 -0.1887937718 0.1) (0.7266816196 -0.1937866839 0.1) (0.7320308035 -0.1943266646 0.1) (0.7159876089 -0.1926994241 0.1) (0.7162224434 -0.1876486725 0.1) (0.7151754177 -0.2097089468 0.1) (0.7154476967 -0.2040277674 0.1) (0.7476158071 -0.2061701953 0.1) (0.7473789072 -0.2115333108 0.1) (0.7482451241 -0.1910614653 0.1) (0.7480438411 -0.1958320089 0.1) (0.7373773235 -0.1948596086 0.1) (0.7376022553 -0.1899310215 0.1) (0.7542871958 -0.1105384607 0.1) (0.9727597436 -0.2278818191 0.1) (0.9729604294 -0.2226674303 0.1) (0.9720301363 -0.2442176404 0.1) (0.9722843399 -0.2387034836 0.1) (0.9890807535 -0.2424387989 0.1) (0.9894052758 -0.2367538344 0.1) (0.9833081517 -0.2381023831 0.1) (0.9830244098 -0.2436891999 0.1) (0.9934744366 -0.1867893322 0.1) (0.9883909935 -0.1858463975 0.1) (0.987831588 -0.1922490702 0.1) (0.9922547827 -0.1948194593 0.1) (0.9777649927 -0.1901107434 0.1) (0.9778982396 -0.1847171941 0.1) (0.973122277 -0.2181123357 0.1) (0.950891653 -0.1826469531 0.1) (0.9551732193 -0.1843767346 0.1) (0.9566713163 -0.1777749965 0.1) (0.9513338564 -0.1773447088 0.1) (0.9727775779 -0.1787802546 0.1) (0.9674490895 -0.1783922487 0.1) (0.9733630162 -0.1621541433 0.1) (0.9680166638 -0.1617421481 0.1) (0.967853262 -0.1672418667 0.1) (0.9732075653 -0.1676135985 0.1) (0.8873599978 -0.2123163979 0.1) (0.8939540974 -0.1600915256 0.1) (0.9305051797 -0.1593956104 0.1) (0.9302662764 -0.165049067 0.1) (0.9356525345 -0.1653188212 0.1) (0.9358909748 -0.1596749534 0.1) (0.9460516001 -0.1768285833 0.1) (0.9465894777 -0.1809085679 0.1) (0.9251102806 -0.1591596789 0.1) (0.9248447337 -0.1648673138 0.1) (0.9194649129 -0.2146687226 0.1) (-0.008713804536 0.1386710009 0.1) (-0.02179611973 0.3001189377 0.1) (-0.02422776229 0.2536722448 0.1) (-0.1541965798 0.2602977875 0.1) (-0.1110300842 0.2577635011 0.1) (0.7071989389 -0.09028816542 0.1) (0.7020297387 -0.08927591461 0.1) (0.7019596981 -0.09402386079 0.1) (0.7069106076 -0.09553456492 0.1) (0.6967268292 -0.08873136009 0.1) (0.6972764889 -0.09260877717 0.1) (0.8553724211 0.09385923472 0.1) (0.840747305 0.2585195955 0.1) (0.8390355634 0.2097536818 0.1) (0.8818395614 0.2078963689 0.1) (0.7532760636 0.2140714425 0.1) (0.6897809879 -0.09034388838 0.1) (0.8517453356 -0.1149397528 0.1) (0.8519653802 -0.1093658593 0.1) (0.8512308217 -0.126281186 0.1) (0.8673643739 -0.1271981274 0.1) (0.8619784823 -0.1269207821 0.1) (0.7112783045 0.0003250351695 0.1) (0.7869550888 0.007183670207 0.1) (0.7654872116 0.008471408891 0.1) (0.7644840726 -0.01408996475 0.1) (0.7899925188 0.07511622928 0.1) (0.7685249653 0.07638993603 0.1) (0.767514383 0.05375733847 0.1) (0.7889789883 0.05248477523 0.1) (-0.02474085034 -0.07451251709 0.1) (-0.0249470049 -0.0815240329 0.1) (-0.01949943285 -0.08259335397 0.1) (-0.01941924394 -0.07507832295 0.1) (-0.02440155177 -0.1021197271 0.1) (-0.01880118302 -0.1028216089 0.1) (-0.01929911651 -0.09595460818 0.1) (-0.02483509311 -0.09517564181 0.1) (-0.007712198283 -0.09821499121 0.1) (-0.007365695915 -0.1043722639 0.1) (-0.004691999395 -0.04637111869 0.1) (-0.005618156541 -0.05273055536 0.1) (-0.02223707994 -0.04708237376 0.1) (-0.0228911641 -0.05349268973 0.1) (-0.01737359091 -0.0536076962 0.1) (-0.01662391769 -0.04707134316 0.1) (-0.01884863679 -0.06731760543 0.1) (-0.02423622531 -0.06707540921 0.1) (-0.07519056822 0.1185202514 0.1) (-0.07677575495 0.09549290359 0.1) (-0.05487992271 0.09473514431 0.1) (-0.05347864975 0.117642221 0.1) (-0.05819385005 0.04855422444 0.1) (-0.08041866249 0.04889936803 0.1) (-0.003734684679 0.03552589548 0.1) (0.07260974715 0.02124183741 0.1) (0.07231585392 0.01552355714 0.1) (0.07774942316 0.01527985185 0.1) (0.07805029034 0.02099949741 0.1) (0.07721833971 0.003649131049 0.1) (0.07174640215 0.003925524597 0.1) (0.09367176763 0.002734336892 0.1) (0.08818330671 0.003062487456 0.1) (0.3867954689 -0.2053938355 0.1) (0.3975440943 -0.2059097642 0.1) (0.3980824537 -0.1946135835 0.1) (0.3851742113 -0.2393481562 0.1) (0.3959231742 -0.2398570931 0.1) (0.3964637863 -0.2285349908 0.1) (0.3857149198 -0.2280240563 0.1) (0.4281780537 -0.2413842895 0.1) (0.4287185212 -0.2300651838 0.1) (0.4179636134 -0.2295549587 0.1) (0.4174230978 -0.2408750633 0.1) (0.3422064716 -0.2373107624 0.1) (0.3529364085 -0.2378197819 0.1) (0.3534783569 -0.226490736 0.1) (0.3427484683 -0.2259807177 0.1) (0.3749670522 -0.22751317 0.1) (0.3744252966 -0.2388382205 0.1) (0.3765869252 -0.1935667917 0.1) (0.3760478906 -0.2048769561 0.1) (0.7831371211 -0.08270178906 0.1) (0.7777684454 -0.08239964513 0.1) (0.7775290538 -0.08802174172 0.1) (0.7829026556 -0.088304801 0.1) (0.7667457055 -0.08749923089 0.1) (0.7670067031 -0.08182361394 0.1) (0.7661531186 -0.09908913835 0.1) (0.7088390124 -0.0559233745 0.1) (0.7093167251 -0.04470135549 0.1) (0.7415655058 -0.04656224602 0.1) (0.730823232 -0.04593549465 0.1) (0.7430152983 -0.01282080442 0.1) (0.7322800357 -0.01219399108 0.1) (0.7317901357 -0.02346107481 0.1) (0.7425266673 -0.02408234289 0.1) (0.8592067194 -0.238870762 0.1) (0.8645632046 -0.23911435 0.1) (0.8648326324 -0.2334507535 0.1) (0.8594793022 -0.23318329 0.1) (0.8755572442 -0.2340285963 0.1) (0.8752938853 -0.2396494357 0.1) (0.8761103111 -0.2225729393 0.1) (0.09914046904 0.002484229982 0.1) (0.1099794068 0.002308541969 0.1) (0.1108097529 0.0195696819 0.1) (0.1105318872 0.01385573378 0.1) (0.4389410004 -0.2418939015 0.1) (0.4394814196 -0.2305757946 0.1) (0.4609872397 -0.2315960518 0.1) (0.4604470616 -0.2429091645 0.1) (0.4626106439 -0.197618007 0.1) (0.4620677888 -0.208965831 0.1) (0.4518700712 -0.1970804414 0.1) (0.4521520509 -0.1913020166 0.1) (0.4467762538 -0.1910229562 0.1) (0.4464943079 -0.1968006817 0.1) (0.4473883684 -0.1789456233 0.1) (0.4527580442 -0.1792892637 0.1) (0.4312264099 -0.1783060048 0.1) (0.4366227188 -0.1784090496 0.1) (0.4258216414 -0.1783367076 0.1) (0.4096237152 -0.1783384006 0.1) (0.4150129599 -0.1784426062 0.1) (0.4088314167 -0.1951225204 0.1) (0.4142079751 -0.1953650751 0.1) (0.4144780304 -0.1897092179 0.1) (0.4090994797 -0.189487191 0.1) (0.8384980503 -0.2210073504 0.1) (0.8439105677 -0.2209613034 0.1) (0.8376967521 -0.2379364048 0.1) (0.8430784632 -0.2381551803 0.1) (0.843345783 -0.2325145089 0.1) (0.8379606758 -0.2323246032 0.1) (0.8541101696 -0.2329320833 0.1) (0.8538389715 -0.2386116129 0.1) (0.781850585 -0.1159441627 0.1) (0.7871270788 -0.1165174368 0.1) (0.7923487604 -0.1172928629 0.1) (0.7926265308 -0.1115394142 0.1) (0.7928934807 -0.1058234574 0.1) (0.8609544432 -0.2041218154 0.1) (0.8556611917 -0.2035016386 0.1) (0.8506040279 -0.2029060753 0.1) (0.8499617215 -0.2087447942 0.1) (0.8496377241 -0.2148751021 0.1) (0.7713295952 -0.1049068407 0.1) (0.7710959881 -0.1105128074 0.1) (0.7705991124 -0.1159313606 0.1) (0.7749490568 -0.1173853686 0.1) (0.8039096214 -0.10079835 0.1) (0.7985247515 -0.1004791053 0.1) (0.8045877433 -0.08399440133 0.1) (0.7992184877 -0.08366279515 0.1) (0.7989939038 -0.08924776262 0.1) (0.8043649738 -0.08958326081 0.1) (0.7882651116 -0.08861135012 0.1) (0.788499336 -0.08301333237 0.1) (0.9569447671 -0.2210090814 0.1) (0.9571489615 -0.2161367598 0.1) (0.871051117 -0.2162545201 0.1) (0.8713368889 -0.2104597592 0.1) (0.8715646012 -0.2054113669 0.1) (0.8662546576 -0.204742929 0.1) (0.9356362757 -0.2186595935 0.1) (0.9359302577 -0.2134205751 0.1) (0.0373643402 -0.02431553259 0.1) (0.03838833883 -0.03167497457 0.1) (0.5578183033 -0.04889375917 0.1) (0.5574939459 -0.05428498989 0.1) (0.7394241973 -0.0921800577 0.1) (0.7340303453 -0.09194317562 0.1) (0.7286817065 -0.0915578011 0.1) (0.728428236 -0.09722266852 0.1) (0.7282679338 -0.1022019712 0.1) (0.702708886 -0.07255441127 0.1) (0.6973318724 -0.07225907318 0.1) (0.7188247068 -0.07356904123 0.1) (0.713444373 -0.07325952653 0.1) (0.7195948595 -0.05653856696 0.1) (0.714216504 -0.05622954825 0.1) (0.7139776532 -0.06186118201 0.1) (0.7193538711 -0.0621730009 0.1) (0.1419302745 -0.1375901748 0.1) (0.1421661772 -0.1326002454 0.1) (0.08590710138 0.06623684909 0.1) (0.08533294204 0.05487932336 0.1) (0.05320366118 0.06765955478 0.1) (0.05260081108 0.05628839674 0.1) (0.06349762608 0.05581637297 0.1) (0.06411485943 0.0671868366 0.1) (0.06226301127 0.03307445169 0.1) (0.05130326947 0.03352047972 0.1) (0.6816764773 -0.06009016941 0.1) (0.6819302522 -0.05443973345 0.1) (0.6811391921 -0.07148852081 0.1) (0.6919315831 -0.07201036692 0.1) (0.8666134438 -0.1441829756 0.1) (0.8612610569 -0.1438337624 0.1) (0.8617630644 -0.1479516613 0.1) (0.8661341317 -0.1495695285 0.1) (0.854349391 -0.14521537 0.1) (0.877856226 -0.1539355798 0.1) (0.8773361249 -0.1498606583 0.1) (0.8704440088 -0.1511691237 0.1) (0.8774433666 -0.144570275 0.1) (0.871994211 -0.1444627766 0.1) (-0.0375372879 0.02504936234 0.1) (-0.03850532187 0.01339288254 0.1) (-0.02736220251 0.013199105 0.1) (-0.02658096939 0.02470661956 0.1) (-0.02953725829 -0.01032557627 0.1) (-0.04077865003 -0.01033830001 0.1) (-0.001939011008 -0.01651083613 0.1) (0.05964867068 -0.02474053921 0.1) (0.05964724624 -0.01909430172 0.1) (0.05995092847 -0.01324584205 0.1) (0.05444502368 -0.01293477016 0.1) (0.04889280114 -0.01261465418 0.1) (0.09418783568 -0.0167571256 0.1) (0.08729423338 -0.01436991973 0.1) (0.0863890437 -0.01832316816 0.1) (0.08188746141 -0.01428659326 0.1) (0.08157807169 -0.01934706095 0.1) (0.6010818259 -0.05052804745 0.1) (0.6008099244 -0.05624288421 0.1) (0.6006413974 -0.06155844147 0.1) (0.6060083708 -0.06189584433 0.1) (0.611250114 -0.0627326893 0.1) (0.5743953903 -0.05845767886 0.1) (0.5792037268 -0.05964503153 0.1) (0.5792970686 -0.05489140238 0.1) (0.5795065429 -0.04941202914 0.1) (0.6129718133 -0.02808730816 0.1) (0.6075901727 -0.02780486194 0.1) (0.607331095 -0.03346144933 0.1) (0.6127138212 -0.03374214587 0.1) (0.5965683502 -0.03292691809 0.1) (0.5968315963 -0.02724620363 0.1) (0.5959772161 -0.04452820884 0.1) (0.5349635932 -0.04885479638 0.1) (0.5366052407 -0.04187183724 0.1) (0.5369281731 -0.03595022076 0.1) (0.5314975258 -0.03579115484 0.1) (0.5261188435 -0.03536448349 0.1) (0.7497142922 -0.1040183772 0.1) (0.749960589 -0.09835693786 0.1) (0.7502627853 -0.09253303511 0.1) (0.7448519151 -0.09231685645 0.1) (0.09897071303 -0.1328119868 0.1) (0.09965199261 -0.1267881319 0.1) (0.0875889212 -0.1247939972 0.1) (0.1204564474 -0.1350155521 0.1) (0.1207034426 -0.1298373385 0.1) (0.1201675012 -0.1408345881 0.1) (0.1198710339 -0.1467057221 0.1) (0.1252441584 -0.1471645629 0.1) (0.1306365839 -0.1476176276 0.1) (0.1651459014 -0.1352133315 0.1) (0.1634910526 -0.1422208826 0.1) (0.163182488 -0.1482389041 0.1) (0.1686338193 -0.1480110173 0.1) (0.1740427641 -0.1480597083 0.1) (0.1360471373 -0.1480477399 0.1) (0.1414472568 -0.1484243868 0.1) (0.1416906349 -0.1429893 0.1) (0.04304381133 -0.1545016703 0.1) (0.0485504705 -0.1547867483 0.1) (0.04882095443 -0.1490722436 0.1) (0.04330499917 -0.148797229 0.1) (0.05977737292 -0.1496099179 0.1) (0.0595058522 -0.1553458977 0.1) (0.06032677544 -0.1378465262 0.1) (0.05515662809 -0.1316405874 0.1) (0.05549048809 -0.1256294938 0.1) (0.05717357032 -0.1185804559 0.1) (0.05001359664 -0.1205306509 0.1) (0.04450481089 -0.1202751047 0.1) (0.08265166555 -0.1239149864 0.1) (0.077375839 -0.1229380348 0.1) (0.07716220217 -0.1279126201 0.1) (0.07692658379 -0.1334171618 0.1) (0.2921295024 -0.1468702943 0.1) (0.2925105933 -0.1503614331 0.1) (0.2994084379 -0.1474827172 0.1) (0.292295319 -0.1553595668 0.1) (0.2977675047 -0.1544716177 0.1) (0.3032111386 -0.153884742 0.1) (0.3038621975 -0.1478647343 0.1) (0.2599633002 -0.1545591961 0.1) (0.2653224295 -0.1549553891 0.1) (0.270678118 -0.1553399026 0.1) (0.2709203509 -0.1500114846 0.1) (0.2711515782 -0.145035446 0.1) (0.3354213783 -0.1558596066 0.1) (0.3407730589 -0.1563063993 0.1) (0.3410289549 -0.1510682453 0.1) (0.3356780363 -0.150605671 0.1) (0.3461154606 -0.156758751 0.1) (0.3463717767 -0.1515326312 0.1) (0.3086102467 -0.1538468579 0.1) (0.3089281336 -0.1482993334 0.1) (0.3139824976 -0.1541371605 0.1) (0.3142493089 -0.1487558663 0.1) (0.206816497 -0.1393376012 0.1) (0.2065692469 -0.1445418327 0.1) (0.2062764766 -0.1504400765 0.1) (0.211651043 -0.1508690521 0.1) (0.217030029 -0.1512894307 0.1) (0.1794228458 -0.1483329686 0.1) (0.184796552 -0.148717551 0.1) (0.1851137938 -0.1425820113 0.1) (0.1853719074 -0.1372771866 0.1) (0.2497285787 -0.1431914242 0.1) (0.2494878235 -0.1482403883 0.1) (0.2492285244 -0.1537564015 0.1) (0.2546003492 -0.1541592144 0.1) (0.2224022981 -0.1517037785 0.1) (0.2277667453 -0.1521142445 0.1) (0.2280421986 -0.14640879 0.1) (0.2282887561 -0.1412811141 0.1) (0.4688410746 -0.180381703 0.1) (0.4742044687 -0.1807517712 0.1) (0.4581219783 -0.179648145 0.1) (0.4572439279 -0.1973374827 0.1) (0.4575227526 -0.1915829336 0.1) (0.4897624526 -0.193300119 0.1) (0.489490815 -0.1989680139 0.1) (0.4903137058 -0.1818612941 0.1) (0.4795708399 -0.1811223837 0.1) (0.3827652748 -0.1769115522 0.1) (0.3881341922 -0.1772294261 0.1) (0.3666616059 -0.1759562773 0.1) (0.3720295052 -0.1762745025 0.1) (0.3658407315 -0.1930419699 0.1) (0.3712143759 -0.1933034061 0.1) (0.3714847158 -0.1876416557 0.1) (0.366111457 -0.1873722289 0.1) (0.3782056746 -0.1596436863 0.1) (0.3835574094 -0.1601308285 0.1) (0.3837961373 -0.1550616432 0.1) (0.3784464477 -0.1545528745 0.1) (0.3889100948 -0.1606190178 0.1) (0.3891457208 -0.1555726094 0.1) (0.3514529072 -0.1572307866 0.1) (0.3516999162 -0.1520315493 0.1) (0.3567990831 -0.1577086499 0.1) (0.3570469951 -0.1525321827 0.1) (0.4211591929 -0.1621208059 0.1) (0.4280725529 -0.1593147227 0.1) (0.4207611741 -0.1586070244 0.1) (0.3942618297 -0.1611061601 0.1) (0.3944962982 -0.1560837237 0.1) (0.3996148044 -0.1615883563 0.1) (0.3998458865 -0.15659459 0.1) (0.4037229985 -0.1892430381 0.1) (0.4034561947 -0.194873022 0.1) (0.4042448077 -0.1781237651 0.1) (0.3935032688 -0.1775440038 0.1) (0.4936711021 -0.03416156401 0.1) (0.4884021745 -0.03336936007 0.1) (0.4881821737 -0.0384446556 0.1) (0.4933480425 -0.03954665016 0.1) (0.4831060156 -0.03266424429 0.1) (0.4830172942 -0.03734290903 0.1) (0.520783102 -0.03479491662 0.1) (0.5154400873 -0.03433452602 0.1) (0.515254503 -0.03965086163 0.1) (0.5151692699 -0.0443194829 0.1) (0.4776675151 -0.0325848924 0.1) (0.4781559375 -0.03632059158 0.1) (0.4706449068 -0.03479211063 0.1) (0.4682122564 -0.003620536649 0.1) (0.4684878537 0.002108638575 0.1) (0.4675904889 -0.01546232998 0.1) (0.4838411918 -0.01586054719 0.1) (0.4784236504 -0.01572033521 0.1) (0.8161789526 -0.2369776414 0.1) (0.8215570265 -0.237230281 0.1) (0.821814833 -0.2316622353 0.1) (0.8164369521 -0.2314056004 0.1) (0.8325760026 -0.2321257079 0.1) (0.8323164739 -0.2377086879 0.1) (0.8330913745 -0.2209946107 0.1) (0.795513041 -0.2189751299 0.1) (0.8008600956 -0.2193103697 0.1) (0.7947060459 -0.2359599744 0.1) (0.8000631442 -0.2362116013 0.1) (0.800325635 -0.230608741 0.1) (0.7949701143 -0.2303451763 0.1) (0.8110604075 -0.2311420219 0.1) (0.8108009753 -0.2367230042 0.1) (0.817680079 -0.2039563131 0.1) (0.8123424357 -0.2033639279 0.1) (0.8070090867 -0.2027655429 0.1) (0.8067480769 -0.2083584631 0.1) (0.80648151 -0.2140042768 0.1) (0.8279385787 -0.2154536823 0.1) (0.8281607403 -0.2101884701 0.1) (0.8283681545 -0.2050420849 0.1) (0.8230206266 -0.2045300165 0.1) (0.7495580557 -0.1089964145 0.1) (0.9783984482 -0.2226116017 0.1) (0.9782085567 -0.2278305163 0.1) (0.9779751362 -0.2332045121 0.1) (0.9835965364 -0.232543823 0.1) (0.9897637724 -0.2310494857 0.1) (0.9919467785 -0.2007014496 0.1) (0.9865060099 -0.198699051 0.1) (0.992456021 -0.2039229545 0.1) (0.9785263105 -0.2185115976 0.1) (0.9785388084 -0.1679860191 0.1) (0.9786952781 -0.1625469367 0.1) (0.9781261424 -0.179104955 0.1) (0.9937922044 -0.1809746911 0.1) (0.9886828368 -0.1800917761 0.1) (0.9035343104 -0.2093199821 0.1) (0.8982325992 -0.20866766 0.1) (0.8929149651 -0.2080340918 0.1) (0.8926971348 -0.2129192708 0.1) (0.8924557495 -0.218354554 0.1) (0.8985098201 -0.156951462 0.1) (0.898402247 -0.1618132307 0.1) (0.9147212768 -0.1681578608 0.1) (0.9190357944 -0.1698687092 0.1) (0.9195052249 -0.1645002008 0.1) (0.919747487 -0.1588601217 0.1) (0.9138618023 -0.2198652707 0.1) (0.914034603 -0.2149796197 0.1) (0.914129762 -0.2106445651 0.1) (0.9088521917 -0.2099899045 0.1) (0.9307537428 -0.153728704 0.1) (0.9253824329 -0.1534396482 0.1) (0.9313593362 -0.1370998615 0.1) (0.9260280008 -0.1367086145 0.1) (0.9258443426 -0.142213162 0.1) (0.9311771543 -0.1425945686 0.1) (0.915137266 -0.1414794835 0.1) (0.9153398478 -0.1359355027 0.1) (0.7178033539 -0.09138561647 0.1) (0.712417815 -0.09112170382 0.1) (0.7117229392 -0.09703317236 0.1) (0.7074905447 -0.08449699004 0.1) (0.7077855225 -0.07867744426 0.1) (0.01070827626 -0.1066926404 0.1) (0.01042846365 -0.1017092494 0.1) (-0.001536438733 -0.09233986836 0.1) (0.6862592143 -0.07750091726 0.1) (0.6859747686 -0.08326821013 0.1) (0.6853326181 -0.0890000122 0.1) (0.675844604 -0.08622074048 0.1) (0.6805201829 -0.08758649877 0.1) (-0.01927037749 -0.02209726883 0.1) (-0.01988142497 -0.02808897315 0.1) (-0.01420210808 -0.02809084773 0.1) (-0.01366993793 -0.02217142382 0.1) (-0.01567363851 -0.04044846323 0.1) (-0.0213571803 -0.04049884571 0.1) (-0.003884659813 -0.04026134276 0.1) (0.2568708466 -0.001267630829 0.1) (0.2514765425 -0.0006046312096 0.1) (0.2515441975 -0.006668648565 0.1) (0.2566518548 -0.006840453832 0.1) (0.2460797858 0.0005882030951 0.1) (0.2676747679 -0.001882441125 0.1) (0.2622639157 -0.00162441465 0.1) (0.2619992769 -0.007043657751 0.1) (0.2674210186 -0.007262764069 0.1) (0.1913180039 -0.006671277666 0.1) (0.1915768031 -0.001538886685 0.1) (0.1918547936 0.004198382554 0.1) (0.186431424 0.004155662765 0.1) (0.1810121022 0.004134572945 0.1) (0.2027164972 0.004241250974 0.1) (0.1972857439 0.004232226449 0.1) (0.364625047 -0.01628460766 0.1) (0.3648832239 -0.01099920866 0.1) (0.365202428 -0.004968185103 0.1) (0.359820042 -0.004452331395 0.1) (0.3544388472 -0.003911806423 0.1) (0.3759902419 -0.005564096669 0.1) (0.3705828758 -0.005379023174 0.1) (0.1700064926 -0.007702276989 0.1) (0.1699056361 -0.001683110745 0.1) (0.1701480025 0.004498293087 0.1) (0.1646877543 0.005060355288 0.1) (0.1592328347 0.005732788935 0.1) (0.1755893901 0.00420915792 0.1) (0.3431788682 -0.01353131031 0.1) (0.3434137889 -0.008458036618 0.1) (0.3436772152 -0.002835798886 0.1) (0.3382836202 -0.002324009376 0.1) (0.3328972637 -0.0018281875 0.1) (0.3490647358 -0.003369721222 0.1) (0.278512667 -0.002270426031 0.1) (0.2730819521 -0.002112758479 0.1) (0.2728091339 -0.00751478712 0.1) (0.2782010872 -0.007832471645 0.1) (0.2894252641 -0.001463723191 0.1) (0.2839581477 -0.002122249814 0.1) (0.2833194799 -0.00813444604 0.1) (0.6141981199 -0.1821871229 0.1) (0.613928108 -0.1878420812 0.1) (0.6136542612 -0.1935349986 0.1) (0.6190024605 -0.1939087384 0.1) (0.6243495066 -0.1942856263 0.1) (0.6788432723 -0.1836606056 0.1) (0.6785811392 -0.1889657368 0.1) (0.678259594 -0.1951282003 0.1) (0.6836167063 -0.1955246964 0.1) (0.6889654772 -0.1959695465 0.1) (0.6674991185 -0.1947955133 0.1) (0.6728898864 -0.1948474315 0.1) (0.7869927129 -0.121415736 0.1) (0.7917139701 -0.1229966373 0.1) (0.7824103675 -0.1198814876 0.1) (0.8031642161 -0.1177931862 0.1) (0.7977207561 -0.1176506617 0.1) (0.7857032121 -0.2004655388 0.1) (0.791041665 -0.2010204193 0.1) (0.7912851929 -0.1959140222 0.1) (0.7859497208 -0.1953181377 0.1) (0.7963666025 -0.2015856602 0.1) (0.7966037378 -0.1965079881 0.1) (0.7749972342 -0.1995224697 0.1) (0.7803573581 -0.1999395349 0.1) (0.7806103595 -0.1947198628 0.1) (0.7753069997 -0.1941224251 0.1) (0.8391935179 -0.204963923 0.1) (0.8461232906 -0.2023777871 0.1) (0.838761637 -0.2015086767 0.1) (0.7001928871 -0.1859255782 0.1) (0.6999498956 -0.1910623366 0.1) (0.6996595799 -0.1969097396 0.1) (0.7050128103 -0.197386642 0.1) (0.710366031 -0.1978637442 0.1) (0.6943102195 -0.196435627 0.1) (0.7641429423 -0.1998887718 0.1) (0.7696012683 -0.1994330572 0.1) (0.770246599 -0.1935524354 0.1) (0.7657677201 -0.1930478644 0.1) (0.75320966 -0.2010409791 0.1) (0.758653772 -0.2006308321 0.1) (0.7661585226 -0.1144470763 0.1) (0.9949289467 -0.2388846801 0.1) (0.9952611847 -0.2330399018 0.1) (1.010567466 -0.2386705638 0.1) (1.010805758 -0.2329053476 0.1) (1.005426079 -0.2325615246 0.1) (1.005196281 -0.2383581869 0.1) (1.011228942 -0.215845107 0.1) (1.005636242 -0.2153514371 0.1) (1.005676687 -0.2209421918 0.1) (1.01113009 -0.2214179235 0.1) (0.9566938788 -0.2265375146 0.1) (0.9564290389 -0.2321682941 0.1) (0.9617876383 -0.2325961984 0.1) (0.9671524514 -0.2329783492 0.1) (0.9619965691 -0.1833520833 0.1) (0.9625503895 -0.1874336385 0.1) (1.011325022 -0.2105370649 0.1) (1.005352624 -0.2106500908 0.1) (1.012589147 -0.1932702364 0.1) (1.00709534 -0.1932166474 0.1) (1.006565931 -0.1992053851 0.1) (1.012155883 -0.1991338649 0.1) (0.9979274454 -0.1952328918 0.1) (0.9981151078 -0.1890647654 0.1) (0.8822355449 -0.2067483047 0.1) (0.8768920658 -0.2060901617 0.1) (0.02658168905 -0.03655470225 0.1) (0.03078476963 -0.03465537678 0.1) (0.01512889127 -0.04256791234 0.1) (0.01422946985 -0.035137295 0.1) (0.008318021121 -0.03483497685 0.1) (0.002444720838 -0.03452919429 0.1) (0.0197329915 -0.03513068238 0.1) (0.01914545235 -0.04027463406 0.1) (0.7232862335 -0.09133375578 0.1) (0.01077471237 -0.1124044893 0.1) (0.01069454253 -0.1181606199 0.1) (0.01641981224 -0.1185668809 0.1) (0.02206953401 -0.1189951244 0.1) (0.03341648011 -0.119419299 0.1) (0.03903398746 -0.1196936099 0.1) (0.03969827636 -0.1139304389 0.1) (0.03507603633 -0.1124718448 0.1) (0.04468229386 -0.1153360173 0.1) (0.02768839276 -0.1193119499 0.1) (0.664554886 -0.07694262488 0.1) (0.663896008 -0.08273058564 0.1) (0.8349223837 -0.1309359333 0.1) (0.8333735179 -0.1376353367 0.1) (0.8408011636 -0.1403103305 0.1) (0.8453278517 -0.1419398156 0.1) (0.8562831609 -0.1324512721 0.1) (0.8559657518 -0.1383206942 0.1) (0.8499942768 -0.1436195978 0.1) (0.8882217841 -0.1451119704 0.1) (0.8828478822 -0.1447936556 0.1) (0.8986974935 -0.151467432 0.1) (0.8989170447 -0.1458830225 0.1) (0.8935949338 -0.145445867 0.1) (0.07103861209 -0.01421044309 0.1) (0.06545485671 -0.01363310726 0.1) (0.08245184286 -0.002579989902 0.1) (0.08219038427 -0.008522294889 0.1) (0.07652561837 -0.01446503793 0.1) (0.07665704008 -0.0204338195 0.1) (0.2347148272 -0.006291050392 0.1) (0.2350075924 -0.001823771132 0.1) (0.2352707729 0.003150524643 0.1) (0.2298580878 0.003702381342 0.1) (0.2244308485 0.003973513294 0.1) (0.2406737372 0.002044792328 0.1) (0.2130262439 -0.006215378766 0.1) (0.2132845067 -0.001218519598 0.1) (0.2135655857 0.004188716747 0.1) (0.2081391496 0.004227639817 0.1) (0.2189982186 0.004112251173 0.1) (0.4080368313 -0.01775115037 0.1) (0.4083118885 -0.01203316211 0.1) (0.4085937869 -0.006277159531 0.1) (0.4032252557 -0.005806126082 0.1) (0.3978179797 -0.00541181351 0.1) (0.4077993066 -0.02287836124 0.1) (0.4295202684 -0.01946313295 0.1) (0.4278677012 -0.02644416328 0.1) (0.4353755231 -0.02781100142 0.1) (0.44027948 -0.02875968751 0.1) (0.3864811166 -0.01589801815 0.1) (0.3869295337 -0.01950844241 0.1) (0.3866624232 -0.01081544822 0.1) (0.3869136484 -0.005259298998 0.1) (0.3814411768 -0.00546884504 0.1) (0.3923747947 -0.005201383229 0.1) (0.5891997182 -0.062250397 0.1) (0.593660122 -0.06342796001 0.1) (0.6011623361 -0.06540864188 0.1) (0.6059153527 -0.06666350541 0.1) (0.6109535659 -0.06800412168 0.1) (0.5842875381 -0.06095360939 0.1) (0.5477709546 -0.03615412696 0.1) (0.5423686171 -0.03598931953 0.1) (0.1522468179 -0.1487769818 0.1) (0.157702522 -0.1485829452 0.1) (0.1468363571 -0.1486974819 0.1) (0.06676632422 -0.1207870121 0.1) (0.06173439901 -0.1196272094 0.1) (0.04950873307 -0.1166543954 0.1) (0.07203390616 -0.1219036286 0.1) (0.1477520255 -0.004499979378 0.1) (0.1480550101 0.0009462459748 0.1) (0.1483499568 0.006516303 0.1) (0.1429150549 0.006628719816 0.1) (0.137488371 0.006724721241 0.1) (0.1537945042 0.00625114335 0.1) (0.1474745032 -0.009439543145 0.1) (0.1042936227 -0.003625777718 0.1) (0.1040466911 -0.009632157783 0.1) (0.1038560337 -0.015053571 0.1) (0.1091042263 -0.01422228628 0.1) (0.1143359704 -0.01342064284 0.1) (0.09880802449 -0.01591284167 0.1) (0.1260724506 -0.004569511089 0.1) (0.1270539313 -0.01167530765 0.1) (0.1192878449 -0.01269248883 0.1) (0.2814241062 -0.1559311918 0.1) (0.2868403399 -0.1559118551 0.1) (0.2760405463 -0.1556884993 0.1) (0.3247046659 -0.1549729856 0.1) (0.3300635987 -0.1554147221 0.1) (0.3303211343 -0.1501426076 0.1) (0.3249631949 -0.1496802951 0.1) (0.3193443147 -0.1545398907 0.1) (0.3196052555 -0.1492179825 0.1) (0.1955456654 -0.1495759017 0.1) (0.2009110541 -0.1500083387 0.1) (0.1901723197 -0.1491423797 0.1) (0.2384825824 -0.152936048 0.1) (0.2438519369 -0.153348553 0.1) (0.2331242247 -0.1525238736 0.1) (0.3216158538 -0.01122800235 0.1) (0.321847197 -0.006249566467 0.1) (0.3220876534 -0.0008957333219 0.1) (0.3166826927 -0.000474200733 0.1) (0.3112609225 -0.0001105248504 0.1) (0.3274951386 -0.001347923318 0.1) (0.3000449047 -0.009337892454 0.1) (0.3001822088 -0.004876423192 0.1) (0.3003991975 7.427262336e-05 0.1) (0.2949240259 -0.0005229942836 0.1) (0.305834775 0.0001210083875 0.1) (0.4637894141 -0.1739487138 0.1) (0.4640910364 -0.1679708042 0.1) (0.4643442403 -0.162746937 0.1) (0.4589961916 -0.1622456561 0.1) (0.4536460295 -0.1617466759 0.1) (0.4750383263 -0.1637704262 0.1) (0.4696887959 -0.1632583612 0.1) (0.4423402009 -0.1723365978 0.1) (0.4426640216 -0.166106265 0.1) (0.4429287635 -0.1607470967 0.1) (0.4376101247 -0.160238025 0.1) (0.4325398924 -0.1597472534 0.1) (0.4482918816 -0.1612473031 0.1) (0.5066700371 -0.1773965475 0.1) (0.506929977 -0.1718465256 0.1) (0.507168773 -0.1667966661 0.1) (0.501819629 -0.1662973346 0.1) (0.4964664993 -0.1657976105 0.1) (0.5178541877 -0.1678131289 0.1) (0.5125107082 -0.1673001547 0.1) (0.485226756 -0.1756822987 0.1) (0.4855066952 -0.1699254006 0.1) (0.4857513564 -0.1647955308 0.1) (0.4803918521 -0.164282684 0.1) (0.4911113815 -0.1652975901 0.1) (0.3675010421 -0.1586727497 0.1) (0.3728538722 -0.1591579425 0.1) (0.3730956677 -0.1540459553 0.1) (0.3677458913 -0.1535389844 0.1) (0.3776687962 -0.1709299269 0.1) (0.3779378622 -0.1652738217 0.1) (0.3621501421 -0.1581890517 0.1) (0.3623960668 -0.1530330124 0.1) (0.4103284185 -0.1624562061 0.1) (0.4157111802 -0.1626324829 0.1) (0.4158422875 -0.1581334711 0.1) (0.4105437074 -0.1576236658 0.1) (0.4206907108 -0.1726954168 0.1) (0.4209504481 -0.1671495901 0.1) (0.3991236261 -0.1723842302 0.1) (0.3993692394 -0.1669857938 0.1) (0.4049675905 -0.1620537239 0.1) (0.4051933084 -0.1571088558 0.1) (0.5044798384 -0.03459369396 0.1) (0.4990083662 -0.03465811936 0.1) (0.498319692 -0.04060703051 0.1) (0.5100084201 -0.034279532 0.1) (0.4512155963 -0.01997974281 0.1) (0.450943207 -0.02568394368 0.1) (0.450707636 -0.03079142581 0.1) (0.4559594022 -0.03181467097 0.1) (0.461162921 -0.03286261824 0.1) (0.4454737187 -0.02977174552 0.1) (0.4726580661 -0.02166932377 0.1) (0.4723110212 -0.0277378484 0.1) (0.4661527653 -0.03387792356 0.1) (0.6355549366 -0.1842199728 0.1) (0.6353124018 -0.1896168558 0.1) (0.6350683232 -0.1950249775 0.1) (0.6404379164 -0.1953495918 0.1) (0.6458190585 -0.1955801536 0.1) (0.629704611 -0.1946615015 0.1) (0.635781754 -0.1792523313 0.1) (0.6144412675 -0.1771093407 0.1) (0.657102523 -0.1848728167 0.1) (0.6566964419 -0.1813808718 0.1) (0.6568990564 -0.1898752247 0.1) (0.6566436079 -0.1953944273 0.1) (0.6620785244 -0.1950295896 0.1) (0.6512183572 -0.1956212706 0.1) (0.5497959935 -0.1780024055 0.1) (0.5514343799 -0.1710455194 0.1) (0.5441219299 -0.1703392711 0.1) (0.5392011228 -0.1698640233 0.1) (0.5280963024 -0.1790485032 0.1) (0.5283313952 -0.1737642924 0.1) (0.5285551016 -0.1688403517 0.1) (0.5232046495 -0.1683266404 0.1) (0.5339055633 -0.1693538632 0.1) (0.5927909774 -0.180222025 0.1) (0.5930383975 -0.1750557459 0.1) (0.5713743198 -0.1782673804 0.1) (0.5716329024 -0.1729943153 0.1) (0.6424287765 -0.07661846544 0.1) (0.64312811 -0.07067687683 0.1) (0.6435082068 -0.06456659748 0.1) (0.6381644681 -0.0641004653 0.1) (0.6328397928 -0.06359200316 0.1) (0.6543625422 -0.0648422443 0.1) (0.6489192072 -0.06478007928 0.1) (0.6219516196 -0.0635402851 0.1) (0.6165324959 -0.06341211082 0.1) (0.6158439513 -0.06933760098 0.1) (0.6202965683 -0.07055203137 0.1) (0.6274423276 -0.06338848566 0.1) (0.8128434133 -0.1303197072 0.1) (0.8134946008 -0.1245666162 0.1) (0.8138129427 -0.1186986107 0.1) (0.8085117118 -0.118181499 0.1) (0.8245995648 -0.1192155229 0.1) (0.8191787118 -0.1190402204 0.1) (0.8125640081 -0.1984012392 0.1) (0.8072335386 -0.1977639478 0.1) (0.8178976139 -0.1990357787 0.1) (0.8016856392 -0.202169438 0.1) (0.8019160106 -0.1971281822 0.1) (0.8337422584 -0.2053354804 0.1) (0.8338469404 -0.2009276003 0.1) (0.8285649172 -0.2003029598 0.1) (0.8232312631 -0.1996694192 0.1) (0.7215660502 -0.1882212221 0.1) (0.7213345926 -0.1932435035 0.1) (0.721074581 -0.1988157477 0.1) (0.7264289549 -0.1992897019 0.1) (0.7317845591 -0.1997589098 0.1) (0.7157202891 -0.1983400956 0.1) (0.7429391548 -0.1904973405 0.1) (0.7427166968 -0.1953746872 0.1) (0.7424888219 -0.2006338169 0.1) (0.7478355479 -0.2009551247 0.1) (0.7371398058 -0.200214785 0.1) (0.9725309454 -0.233243023 0.1) (0.9830948283 -0.1854109952 0.1) (0.9828895496 -0.1909693626 0.1) (0.9825057115 -0.1962239661 0.1) (0.9783175972 -0.1941967451 0.1) (0.9620832741 -0.1780515979 0.1) (0.9622782883 -0.1724569933 0.1) (0.956883503 -0.1721564922 0.1) (0.9515292293 -0.1718048852 0.1) (0.8875796075 -0.2073943619 0.1) (0.9407640487 -0.1713000711 0.1) (0.9354403947 -0.1708948783 0.1) (0.9349938253 -0.176225345 0.1) (0.9392479402 -0.1779430886 0.1) (0.9301482953 -0.1703959983 0.1) (0.9306816857 -0.1744859781 0.1) (0.9461609208 -0.1715158743 0.1) (0.9233078003 -0.1715476705 0.1) (0.9190124531 -0.2112457214 0.1) (-0.900345 -0.871003 0.1) (-0.900294 -0.916832 0.1) (-0.900437 -0.733512 0.1) (-0.900417 -0.779343 0.1) (-0.8576 -0.779366 0.1) (-1.02885 -0.779272 0.1) (-0.986042 -0.779296 0.1) (-0.90049 -0.687683 0.1) (-0.90058 -0.550192 0.1) (-0.900562 -0.596024 0.1) (-0.857768 -0.596049 0.1) (-1.02893 -0.595946 0.1) (-0.986143 -0.595973 0.1) (-0.900632 -0.504364 0.1) (-0.9007768296 -0.366990551 0.1) (-0.9007055321 -0.4127173933 0.1) (-0.8581593617 -0.4131196161 0.1) (-1.029 -0.41262 0.1) (-0.986235 -0.412648 0.1) (-0.9009053317 -0.3213471084 0.1) (-0.9010974327 -0.1845763839 0.1) (-0.9010824382 -0.2301663936 0.1) (-0.8587474791 -0.2314930003 0.1) (-1.02906 -0.229292 0.1) (-0.986305 -0.229321 0.1) (-0.9011047914 -0.138958562 0.1) (-0.9008487865 -0.001765504838 0.1) (-0.9009697213 -0.04756346588 0.1) (-0.8583448083 -0.04934291686 0.1) (-1.02908 -0.0459608 0.1) (-0.9863400436 -0.04601311403 0.1) (-0.9007592477 0.04410135409 0.1) (-0.9005228737 0.182084863 0.1) (-0.9005854422 0.1360365293 0.1) (-0.8575527358 0.1344077486 0.1) (-1.02908 0.137373 0.1) (-0.986326434 0.1373405112 0.1) (-0.9005331967 0.2281605217 0.1) (-0.9006418763 0.3663390093 0.1) (-0.9006077582 0.3203149539 0.1) (-0.8574596981 0.3194006515 0.1) (-1.02904 0.32071 0.1) (-0.986274 0.320682 0.1) (-0.9006889694 0.412281321 0.1) (-0.90058 0.549808 0.1) (-0.900633 0.503969 0.1) (-0.8578476574 0.5039382804 0.1) (-1.02897 0.50405 0.1) (-0.986191 0.504023 0.1) (-0.900563 0.595643 0.1) (-0.900437 0.733155 0.1) (-0.90049 0.687316 0.1) (-0.857685 0.687292 0.1) (-1.02889 0.687391 0.1) (-0.986093 0.687366 0.1) (-0.900417 0.77899 0.1) (-0.900295 0.916502 0.1) (-0.900346 0.870664 0.1) (-0.857517 0.870642 0.1) (-1.02881 0.870732 0.1) (-0.985992 0.870709 0.1) (-0.729005 -0.871089 0.1) (-0.72894 -0.916916 0.1) (-0.729173 -0.733605 0.1) (-0.729122 -0.779433 0.1) (-0.686286 -0.779455 0.1) (-0.814778 -0.779389 0.1) (-0.729242 -0.687778 0.1) (-0.730406093 -0.5517711852 0.1) (-0.7298520597 -0.5967946397 0.1) (-0.6877373294 -0.5978621343 0.1) (-0.814971 -0.596074 0.1) (-0.7310321117 -0.5069830417 0.1) (-0.7324965028 -0.3733627372 0.1) (-0.732130809 -0.4178430757 0.1) (-0.6905426294 -0.4206394681 0.1) (-0.8159003199 -0.4140847859 0.1) (-0.7327176166 -0.3288657729 0.1) (-0.732284915 -0.1947692349 0.1) (-0.7326071125 -0.2396109655 0.1) (-0.6907492291 -0.2436419403 0.1) (-0.8165742056 -0.2335035604 0.1) (-0.7318343032 -0.1497407905 0.1) (-0.7298778063 -0.01333277459 0.1) (-0.7305948441 -0.05903646387 0.1) (-0.6880230054 -0.0636028218 0.1) (-0.815747055 -0.0518528107 0.1) (-0.7291737275 0.03261242796 0.1) (-0.7273659271 0.1718394028 0.1) (-0.7278819052 0.1252111046 0.1) (-0.6845148846 0.1207994351 0.1) (-0.814416607 0.1320596629 0.1) (-0.7270033835 0.2186575877 0.1) (-0.7268336277 0.3599111354 0.1) (-0.7267317195 0.3127369905 0.1) (-0.6828188581 0.3092026933 0.1) (-0.8140830228 0.3178497729 0.1) (-0.7271066841 0.4071048844 0.1) (-0.7284334601 0.548201181 0.1) (-0.7279567501 0.501314692 0.1) (-0.684113911 0.4993269548 0.1) (-0.8148543283 0.5035989864 0.1) (-0.7288775253 0.5948542722 0.1) (-0.729175 0.733074 0.1) (-0.729243 0.687221 0.1) (-0.6862839043 0.6870457597 0.1) (-0.814875 0.687268 0.1) (-0.729129 0.778979 0.1) (-0.72839 0.918285 0.1) (-0.728927 0.871522 0.1) (-0.685475 0.872713 0.1) (-0.814686 0.87063 0.1) (-0.557431 -0.871881 0.1) (-0.55714 -0.918199 0.1) (-0.5589032747 -0.7351740537 0.1) (-0.5580532611 -0.7800217084 0.1) (-0.5155160499 -0.7813861332 0.1) (-0.643444 -0.779476 0.1) (-0.5600568921 -0.6909653994 0.1) (-0.5639628734 -0.5608399047 0.1) (-0.5627087439 -0.6039074529 0.1) (-0.5213037904 -0.606755239 0.1) (-0.6458743918 -0.5994178586 0.1) (-0.5650491756 -0.5179320058 0.1) (-0.5666050943 -0.3891427564 0.1) (-0.5664085612 -0.4321765804 0.1) (-0.5250835177 -0.4367940397 0.1) (-0.6490907336 -0.4240071443 0.1) (-0.5664812804 -0.3459034546 0.1) (-0.5642930267 -0.214433869 0.1) (-0.5652923175 -0.2585849641 0.1) (-0.5234123267 -0.2640712615 0.1) (-0.6489314502 -0.2482261023 0.1) (-0.5630967339 -0.1699260619 0.1) (-0.5587230231 -0.03419544231 0.1) (-0.5602607305 -0.0798098936 0.1) (-0.5176513032 -0.08549082624 0.1) (-0.645446222 -0.06868600662 0.1) (-0.5571880835 0.01179252934 0.1) (-0.5530249756 0.1520092949 0.1) (-0.55428787 0.10489512 0.1) (-0.5109269361 0.09922372117 0.1) (-0.6411093254 0.1158514177 0.1) (-0.5519681114 0.1994932184 0.1) (-0.5503549304 0.3439239662 0.1) (-0.5506005454 0.295487589 0.1) (-0.5065165003 0.2902777381 0.1) (-0.6387973865 0.3050883116 0.1) (-0.5504366739 0.3925777607 0.1) (-0.5524279326 0.5393047125 0.1) (-0.551501758 0.490251503 0.1) (-0.5071209573 0.4867430391 0.1) (-0.6400583126 0.4967858513 0.1) (-0.5534983112 0.5885748177 0.1) (-0.5549296579 0.734711184 0.1) (-0.5547063616 0.6866208312 0.1) (-0.50975679 0.6855952005 0.1) (-0.643042772 0.6867110764 0.1) (-0.5554422888 0.7817631007 0.1) (-0.555747 0.919642 0.1) (-0.555785 0.873881 0.1) (-0.512818 0.874046 0.1) (-0.641892 0.873428 0.1) (-0.3840406974 -0.8755502801 0.1) (-0.3834109585 -0.9204954051 0.1) (-0.3889194222 -0.7458154335 0.1) (-0.3869306664 -0.7883329965 0.1) (-0.34492553 -0.7902379232 0.1) (-0.4723461723 -0.7843227822 0.1) (-0.3910720881 -0.7038289963 0.1) (-0.3981703888 -0.5773499709 0.1) (-0.3958873213 -0.620224111 0.1) (-0.3532119126 -0.6250619726 0.1) (-0.4799366171 -0.6100161284 0.1) (-0.3995945501 -0.5355351625 0.1) (-0.4003740944 -0.4096520771 0.1) (-0.4006339072 -0.4518413456 0.1) (-0.3585945842 -0.4583108431 0.1) (-0.4837126254 -0.4416212291 0.1) (-0.3996896794 -0.366965561 0.1) (-0.3956028332 -0.2356328002 0.1) (-0.397247165 -0.279865593 0.1) (-0.3549327337 -0.2846896202 0.1) (-0.4814584074 -0.2695469647 0.1) (-0.3937758256 -0.1909786872 0.1) (-0.3876446481 -0.05493501909 0.1) (-0.389757092 -0.100580408 0.1) (-0.3470990575 -0.1042940267 0.1) (-0.4750310382 -0.09098394852 0.1) (-0.3855167027 -0.009022432668 0.1) (-0.379365741 0.131214183 0.1) (-0.3813330259 0.08385434694 0.1) (-0.3383444344 0.08024799447 0.1) (-0.4676318438 0.09367347379 0.1) (-0.3775365197 0.1792050753 0.1) (-0.3735949986 0.3251589522 0.1) (-0.3745792464 0.275815969 0.1) (-0.3307995283 0.2714946962 0.1) (-0.4625055802 0.2851884692 0.1) (-0.372732762 0.3756897323 0.1) (-0.3718712949 0.5278676969 0.1) (-0.3712814765 0.4774857821 0.1) (-0.3265330854 0.4731197093 0.1) (-0.4625406265 0.4839812772 0.1) (-0.3731148265 0.578223886 0.1) (-0.3784167675 0.7282358621 0.1) (-0.3765211941 0.6785669775 0.1) (-0.3321382925 0.6757484592 0.1) (-0.4652757774 0.6836203138 0.1) (-0.380256451 0.7773639486 0.1) (-0.3837290426 0.9201420432 0.1) (-0.3830886215 0.8734199865 0.1) (-0.3395185173 0.8728086729 0.1) (-0.4697520003 0.8740866306 0.1) (-0.2138843472 -0.8793372196 0.1) (-0.2122388049 -0.9225710767 0.1) (-0.2213378124 -0.7559295861 0.1) (-0.2187550259 -0.796334173 0.1) (-0.1763122359 -0.7980640821 0.1) (-0.3029398597 -0.792243871 0.1) (-0.2238172039 -0.7160353496 0.1) (-0.2290371264 -0.5970725036 0.1) (-0.2277727361 -0.6368448253 0.1) (-0.1857120404 -0.6403517337 0.1) (-0.311355384 -0.6291922414 0.1) (-0.2297426553 -0.5568955621 0.1) (-0.2294997422 -0.4318978295 0.1) (-0.2298018223 -0.4744295045 0.1) (-0.1871068918 -0.4784810514 0.1) (-0.3157547905 -0.4647420183 0.1) (-0.2287884719 -0.3881379796 0.1) (-0.2248314312 -0.2507943101 0.1) (-0.226398991 -0.2974084885 0.1) (-0.1826163215 -0.3009573991 0.1) (-0.3123668826 -0.2894843731 0.1) (-0.2230352558 -0.204237763 0.1) (-0.1955137619 -0.0665128793 0.1) (-0.1966092814 -0.08941170869 0.1) (-0.3044220814 -0.1070604294 0.1) (-0.1944050122 -0.04348517398 0.1) (-0.2068626765 0.1212259932 0.1) (-0.2096039308 0.07458692443 0.1) (-0.166366791 0.07369186843 0.1) (-0.2954158454 0.07764272852 0.1) (-0.2038696124 0.1679812618 0.1) (-0.195815846 0.3112441263 0.1) (-0.1976634863 0.2631681559 0.1) (-0.286762651 0.2683363653 0.1) (-0.1946648589 0.3601162409 0.1) (-0.1945691744 0.5116163617 0.1) (-0.1940356548 0.4604073288 0.1) (-0.1501420166 0.456725392 0.1) (-0.2821833646 0.468697157 0.1) (-0.1956537195 0.5633091944 0.1) (-0.201222589 0.7194927547 0.1) (-0.1990212641 0.667307282 0.1) (-0.1545073643 0.6649061433 0.1) (-0.2878014125 0.6728478691 0.1) (-0.2034248828 0.770553316 0.1) (-0.209358331 0.9190185173 0.1) (-0.2076832576 0.8704898937 0.1) (-0.1639013272 0.8693002599 0.1) (-0.2956506199 0.8721545975 0.1) (-0.0432221247 -0.8839356521 0.1) (-0.04097224732 -0.9256155599 0.1) (-0.05149712123 -0.7649877729 0.1) (-0.04870285511 -0.8038623375 0.1) (-0.005859423181 -0.8052665306 0.1) (-0.1340820265 -0.8001474563 0.1) (-0.05406115315 -0.726521457 0.1) (-0.05891638314 -0.6105823951 0.1) (-0.05786904245 -0.6496127553 0.1) (-0.01504919528 -0.6521039166 0.1) (-0.1431963478 -0.6432017968 0.1) (-0.05942122455 -0.5707878362 0.1) (-0.05732633719 -0.444818836 0.1) (-0.05874180466 -0.4879906022 0.1) (-0.01524158867 -0.4908260425 0.1) (-0.1444821288 -0.4820160507 0.1) (-0.05548799638 -0.4003376648 0.1) (-0.02877170981 -0.2874735255 0.1) (-0.138574278 -0.3041549485 0.1) (-0.09339091736 -0.2608974899 0.1) (-0.09272602774 -0.2378437321 0.1) (-0.1144886375 -0.2364977128 0.1) (-0.1153083741 -0.2594699085 0.1) (-0.1137229617 -0.1649592083 0.1) (-0.1142488804 -0.1887717504 0.1) (-0.09181506949 -0.191216415 0.1) (-0.1782176317 -0.1606383697 0.1) (-0.1790692865 -0.1841265266 0.1) (-0.1576462533 -0.1853270012 0.1) (-0.1566849647 -0.1622638256 0.1) (-0.08731836579 -0.04605527888 0.1) (-0.1089135539 -0.04603587649 0.1) (-0.1101487725 -0.07035595567 0.1) (-0.1043280125 0.0254491613 0.1) (-0.1059577831 0.001770005152 0.1) (-0.1692554086 0.02669629117 0.1) (-0.1705601905 0.00332011566 0.1) (-0.149139414 0.002549850333 0.1) (-0.1477397482 0.02610796195 0.1) (-0.0738206002 0.1414238336 0.1) (-0.0954956341 0.1422840646 0.1) (-0.09707288179 0.1192573347 0.1) (-0.07018149342 0.2098930025 0.1) (-0.1133277086 0.2117257648 0.1) (-0.09417766421 0.1651661293 0.1) (-0.07260645096 0.1642478373 0.1) (-0.156669179 0.213540297 0.1) (-0.01995006773 0.3478499447 0.1) (-0.01813826214 0.4984746293 0.1) (-0.01803184802 0.4471533054 0.1) (0.0254451295 0.4441550687 0.1) (-0.1061057977 0.4535226115 0.1) (-0.01894034197 0.5506537422 0.1) (-0.02480740089 0.7096376081 0.1) (-0.02237518926 0.6565392742 0.1) (0.02125300647 0.6541990278 0.1) (-0.110143933 0.6619094793 0.1) (-0.02751709104 0.7624220019 0.1) (-0.03540939361 0.9161827343 0.1) (-0.03302186594 0.8659470036 0.1) (0.01054038367 0.8650406378 0.1) (-0.1201941746 0.868104066 0.1) (0.1287591074 -0.8868078945 0.1) (0.1312038847 -0.9276096204 0.1) (0.120177841 -0.7708610199 0.1) (0.1230243738 -0.8087150748 0.1) (0.1659669808 -0.8097732997 0.1) (0.03711080182 -0.8063155412 0.1) (0.117611946 -0.7333709112 0.1) (0.1130465283 -0.6196677076 0.1) (0.1139417309 -0.6581073887 0.1) (0.1569242051 -0.6599902191 0.1) (0.02791472642 -0.6540189803 0.1) (0.1128419268 -0.580283292 0.1) (0.1144374567 -0.4976947377 0.1) (0.1575367527 -0.499843147 0.1) (0.02804250412 -0.4931879678 0.1) (0.07295222837 -0.4520215125 0.1) (0.07500592899 -0.4069439621 0.1) (0.0771547492 -0.3613965946 0.1) (0.05543237451 -0.360332844 0.1) (0.03372228208 -0.359267684 0.1) (-0.009762738492 -0.357081172 0.1) (0.0120306578 -0.3581974086 0.1) (0.03801642639 -0.2682308477 0.1) (0.03905152531 -0.2454802952 0.1) (0.04003323125 -0.2227241614 0.1) (0.02910214267 -0.2221553723 0.1) (0.01807435304 -0.2215448715 0.1) (-0.003846771513 -0.2203543891 0.1) (0.1003218117 0.1339505095 0.1) (0.07857888834 0.1349411661 0.1) (0.1037517235 0.2021904997 0.1) (0.08209013997 0.2032152735 0.1) (0.08089182762 0.1804455693 0.1) (0.1025907333 0.1794390169 0.1) (0.01694724943 0.2061891039 0.1) (0.01573372234 0.1834041157 0.1) (0.03755355388 0.182451795 0.1) (0.03875305107 0.2052294513 0.1) (0.1537640555 0.3379274859 0.1) (0.1561777621 0.4876733817 0.1) (0.156035363 0.4362997445 0.1) (0.199218099 0.4341049889 0.1) (0.06887423181 0.4415878786 0.1) (0.1556170957 0.5402083246 0.1) (0.1501123622 0.7016782296 0.1) (0.1525008953 0.6475479269 0.1) (0.1957472821 0.6460169782 0.1) (0.06480228286 0.6522993525 0.1) (0.1473527724 0.7556496842 0.1) (0.1387740754 0.9131755121 0.1) (0.1414759392 0.8617072586 0.1) (0.1846847147 0.8610849453 0.1) (0.05452192672 0.8637599892 0.1) (0.3006396746 -0.8888809934 0.1) (0.3031929852 -0.9289186703 0.1) (0.2919276396 -0.7755827318 0.1) (0.2947862366 -0.8125347418 0.1) (0.3376891957 -0.8134505437 0.1) (0.2089257207 -0.8107253198 0.1) (0.2893763842 -0.738960952 0.1) (0.2849739092 -0.6273241386 0.1) (0.2857991708 -0.6651969496 0.1) (0.3287154183 -0.6669197509 0.1) (0.1999079569 -0.6617611014 0.1) (0.2848489203 -0.588350946 0.1) (0.2866127963 -0.5060613573 0.1) (0.3295827994 -0.508114813 0.1) (0.2006012565 -0.5019372875 0.1) (0.2453528047 -0.4603421594 0.1) (0.2474819038 -0.4150766932 0.1) (0.2496697646 -0.369552235 0.1) (0.2281513316 -0.368544384 0.1) (0.2066309491 -0.3675354377 0.1) (0.1635326855 -0.3655057587 0.1) (0.1850927322 -0.3665226269 0.1) (0.2109968062 -0.2765871627 0.1) (0.2120862554 -0.2538762773 0.1) (0.2131771237 -0.2311774743 0.1) (0.2024014333 -0.2306622412 0.1) (0.1916297383 -0.230147201 0.1) (0.1700754574 -0.2291145925 0.1) (0.1808520984 -0.2296308727 0.1) (0.273828489 0.125620846 0.1) (0.2521729675 0.1266923819 0.1) (0.2510739156 0.1039899694 0.1) (0.2771194382 0.1937654264 0.1) (0.2554733884 0.1948465166 0.1) (0.2543733239 0.1721231285 0.1) (0.2760225148 0.1710448901 0.1) (0.1904767968 0.1980405483 0.1) (0.1893632652 0.1753077987 0.1) (0.2110346854 0.1742545174 0.1) (0.2121430782 0.1969845116 0.1) (0.3267262843 0.3290966737 0.1) (0.3292734737 0.4795819243 0.1) (0.3290703475 0.4277736824 0.1) (0.3721763408 0.4260478393 0.1) (0.2425610055 0.4318039616 0.1) (0.3287736627 0.5327024735 0.1) (0.3233856814 0.6965756484 0.1) (0.3257503499 0.6415648925 0.1) (0.3687575401 0.6407671775 0.1) (0.2392203121 0.6441920551 0.1) (0.3206287054 0.7514266758 0.1) (0.3119106504 0.9113847268 0.1) (0.314676506 0.8591778816 0.1) (0.3576897664 0.8590624823 0.1) (0.2281514748 0.8601900615 0.1) (0.4722883011 -0.8911199713 0.1) (0.4749415049 -0.9303645172 0.1) (0.4634536622 -0.7804809684 0.1) (0.4663259285 -0.8165365926 0.1) (0.50921444 -0.8175996914 0.1) (0.3805607655 -0.8144520811 0.1) (0.4609141842 -0.7447144212 0.1) (0.456655276 -0.6350512493 0.1) (0.4574187829 -0.6723959499 0.1) (0.5003325302 -0.6742455215 0.1) (0.3716061448 -0.6687228925 0.1) (0.4565993635 -0.5964439647 0.1) (0.4585100744 -0.5143487449 0.1) (0.5014996854 -0.5164233846 0.1) (0.37254429 -0.5101913187 0.1) (0.4173182957 -0.4684655861 0.1) (0.4194754925 -0.4230710012 0.1) (0.4216606324 -0.3775614291 0.1) (0.4001537513 -0.3765631463 0.1) (0.3786519127 -0.3755641058 0.1) (0.335672304 -0.3735651844 0.1) (0.3571570659 -0.3745654028 0.1) (0.3830062106 -0.2846893589 0.1) (0.3840911685 -0.2620092927 0.1) (0.3733420609 -0.2615033524 0.1) (0.3738842987 -0.2501683135 0.1) (0.384632311 -0.2506762033 0.1) (0.3416632832 -0.2486447543 0.1) (0.3523943153 -0.2491518243 0.1) (0.4467821088 0.1167952756 0.1) (0.425217702 0.1179084661 0.1) (0.4499859248 0.1848769846 0.1) (0.4284247557 0.1859950246 0.1) (0.4273585689 0.163289023 0.1) (0.4489187875 0.1621720301 0.1) (0.3636557822 0.1893622814 0.1) (0.3625773201 0.1666508655 0.1) (0.384168792 0.1655383707 0.1) (0.3852451599 0.1882478853 0.1) (0.4991118212 0.3209785389 0.1) (0.5012214664 0.4742669219 0.1) (0.5011603165 0.4214663925 0.1) (0.544013477 0.4202803036 0.1) (0.4152170791 0.4242860119 0.1) (0.5005876395 0.5283950182 0.1) (0.4949194193 0.6950454961 0.1) (0.4973306092 0.6392140864 0.1) (0.5400234503 0.6391459644 0.1) (0.411736333 0.6397870236 0.1) (0.4921592074 0.7506129984 0.1) (0.4837198511 0.9116398022 0.1) (0.486342058 0.8592559717 0.1) (0.5290795647 0.8596167151 0.1) (0.4007054335 0.858741784 0.1) (0.6437957111 -0.8939668298 0.1) (0.6465613954 -0.9323268752 0.1) (0.6348523833 -0.7860770056 0.1) (0.637724185 -0.8212397589 0.1) (0.6806519995 -0.8222400375 0.1) (0.5520924456 -0.818704193 0.1) (0.6323436986 -0.7511294161 0.1) (0.6283001382 -0.6431657051 0.1) (0.6289774456 -0.6800956526 0.1) (0.6718907436 -0.6819698776 0.1) (0.5432376559 -0.6761307315 0.1) (0.6283379346 -0.6047983005 0.1) (0.6304321736 -0.52264162 0.1) (0.6734016931 -0.5247567249 0.1) (0.5444858777 -0.5185016185 0.1) (0.5893417286 -0.4765120216 0.1) (0.591524541 -0.4309949017 0.1) (0.5937108243 -0.3854823814 0.1) (0.5722082624 -0.3844983234 0.1) (0.5507008027 -0.3835120266 0.1) (0.5076911186 -0.38153468 0.1) (0.5291944383 -0.3825237804 0.1) (0.555047585 -0.2927100019 0.1) (0.5561286163 -0.2700697928 0.1) (0.545375224 -0.2695696525 0.1) (0.5459142586 -0.2582594881 0.1) (0.5566676026 -0.2587606272 0.1) (0.5136635052 -0.2567505119 0.1) (0.5244127575 -0.2572534557 0.1) (0.6191156427 0.1075681402 0.1) (0.5975816765 0.1087519449 0.1) (0.6222356872 0.1756358726 0.1) (0.600725018 0.1768045363 0.1) (0.599679242 0.1541065598 0.1) (0.6212032198 0.1529232373 0.1) (0.5361277967 0.1803076689 0.1) (0.5350699865 0.1576092722 0.1) (0.5566042558 0.1564524843 0.1) (0.5576552189 0.179154215 0.1) (0.67085135 0.314157237 0.1) (0.6721603603 0.4718258993 0.1) (0.6723698481 0.417624796 0.1) (0.714963183 0.4175679016 0.1) (0.5868097159 0.4195370994 0.1) (0.6713024531 0.5272646264 0.1) (0.6653176271 0.6966486542 0.1) (0.6677800183 0.6401076501 0.1) (0.710301513 0.6406017706 0.1) (0.5827329367 0.6390333857 0.1) (0.6625864616 0.7526354562 0.1) (0.6547669855 0.9133210737 0.1) (0.6570815258 0.8613136218 0.1) (0.6998206128 0.861726469 0.1) (0.5718710339 0.8597799541 0.1) (0.8151302859 -0.8975052497 0.1) (0.8180232072 -0.9348756252 0.1) (0.806066793 -0.7925340177 0.1) (0.8089378597 -0.8267751427 0.1) (0.8521012329 -0.8271539867 0.1) (0.7234828412 -0.8235440379 0.1) (0.8035944132 -0.7584050975 0.1) (0.799815419 -0.6519512303 0.1) (0.8003860478 -0.6885618593 0.1) (0.8432967007 -0.6905266878 0.1) (0.7147620996 -0.6840229196 0.1) (0.799971072 -0.6136968342 0.1) (0.8023041605 -0.5311270292 0.1) (0.8452792885 -0.5332628706 0.1) (0.7163791223 -0.5268640814 0.1) (0.7613147353 -0.4844828831 0.1) (0.763502748 -0.438872332 0.1) (0.7420043742 -0.4378844716 0.1) (0.765688012 -0.3933187147 0.1) (0.7441872548 -0.3923387485 0.1) (0.7430962485 -0.4151026205 0.1) (0.764595814 -0.4160865338 0.1) (0.6796937317 -0.3894042782 0.1) (0.7216055279 -0.4141221377 0.1) (0.7226983872 -0.3913613587 0.1) (0.7011955359 -0.3903832937 0.1) (0.727035119 -0.3005808744 0.1) (0.7281150756 -0.2779836634 0.1) (0.7173602022 -0.2774934633 0.1) (0.7178947454 -0.2662141181 0.1) (0.7286505694 -0.2667053653 0.1) (0.6856396453 -0.2647329647 0.1) (0.6963853363 -0.2652267261 0.1) (0.7910258609 0.09778477112 0.1) (0.7695561168 0.09905457897 0.1) (0.7941288909 0.1658733483 0.1) (0.751194996 0.1683836602 0.1) (0.7491121442 0.1229812802 0.1) (0.7705925036 0.121723975 0.1) (0.7920593477 0.1204563095 0.1) (0.708223586 0.1708427215 0.1) (0.7061390259 0.125446431 0.1) (0.7276334311 0.1242104733 0.1) (0.8420244027 0.3095469013 0.1) (0.8422414358 0.473233986 0.1) (0.8427944087 0.4171301978 0.1) (0.8853559953 0.4171181706 0.1) (0.7577065888 0.4168052718 0.1) (0.841248504 0.529400002 0.1) (0.8349797063 0.7008750781 0.1) (0.8374388225 0.6439869125 0.1) (0.8796537751 0.6457542426 0.1) (0.7526278243 0.641925011 0.1) (0.8323601387 0.7568087859 0.1) (0.8256709305 0.9155150149 0.1) (0.8274923892 0.8644820094 0.1) (0.8699575801 0.8656629236 0.1) (0.7422324768 0.8630296465 0.1) (0.9871459483 -0.9003814864 0.1) (0.9901774544 -0.9366200374 0.1) (0.9779897948 -0.7985356201 0.1) (0.9808409725 -0.8318258157 0.1) (1.023248553 -0.830208079 0.1) (0.8945379681 -0.8297428768 0.1) (0.9755820943 -0.7652098126 0.1) (0.9721939438 -0.6599484861 0.1) (0.9726078249 -0.6963897165 0.1) (1.015120775 -0.6953412176 0.1) (0.8861963558 -0.6925514475 0.1) (0.9725193585 -0.6216134148 0.1) (0.975205095 -0.5381120101 0.1) (1.017814158 -0.5369453775 0.1) (0.8882484201 -0.535425467 0.1) (0.9334255044 -0.4925799614 0.1) (0.9354894618 -0.4469053536 0.1) (0.9139738944 -0.44587962 0.1) (0.9376717226 -0.401289519 0.1) (0.9161609083 -0.4002690207 0.1) (0.9150672636 -0.4230668049 0.1) (0.9365779332 -0.4240902998 0.1) (0.8516889327 -0.3972615044 0.1) (0.8505959149 -0.4200463038 0.1) (0.8720876687 -0.4210468598 0.1) (0.8731809276 -0.3982570662 0.1) (0.8990181001 -0.3083594199 0.1) (0.8995539935 -0.2970521073 0.1) (0.8888111062 -0.2965624858 0.1) (0.8882743104 -0.3078677525 0.1) (0.889874475 -0.2740185369 0.1) (0.9006163635 -0.2745081101 0.1) (0.8576226469 -0.2725525589 0.1) (0.8683537411 -0.2730376063 0.1) (0.9111753829 -0.1024164848 0.1) (0.9005120115 -0.1016070258 0.1) (0.9124977471 -0.06892969456 0.1) (0.9018319055 -0.06812992767 0.1) (0.9013785453 -0.07932448908 0.1) (0.9120499694 -0.08011231127 0.1) (0.8800155811 -0.07777150101 0.1) (0.8804670745 -0.06659487044 0.1) (1.00611928 0.1066847245 0.1) (1.011502874 0.2549132692 0.1) (1.010045753 0.2030166035 0.1) (1.052841831 0.2019682534 0.1) (0.9246261977 0.2060847906 0.1) (1.012394091 0.3080740473 0.1) (1.01174717 0.4772815663 0.1) (1.012614036 0.4197976291 0.1) (1.054826587 0.4216434039 0.1) (0.9277597982 0.4179633071 0.1) (1.010336211 0.5353754418 0.1) (1.003874748 0.7080577924 0.1) (1.006278921 0.6514017975 0.1) (1.048596486 0.6528861562 0.1) (0.9220094056 0.6470477966 0.1) (1.00149083 0.7633757479 0.1) (0.9966694325 0.9171121921 0.1) (0.997844828 0.8678607248 0.1) (1.040395563 0.8688464566 0.1) (0.9126430125 0.8662235001 0.1) (1.159964308 -0.8958307745 0.1) (1.162789251 -0.9321726516 0.1) (1.151163909 -0.7945414687 0.1) (1.153948272 -0.8275019822 0.1) (1.197921216 -0.8250729775 0.1) (1.066589043 -0.83007802 0.1) (1.148762862 -0.7616916644 0.1) (1.145024323 -0.6587719327 0.1) (1.145616418 -0.6942725044 0.1) (1.189535903 -0.6919560554 0.1) (1.058403564 -0.6959046309 0.1) (1.145117349 -0.6215609413 0.1) (1.147201899 -0.5410075562 0.1) (1.190551459 -0.5409826371 0.1) (1.060862093 -0.5387423438 0.1) (1.105963611 -0.4957154523 0.1) (1.108173014 -0.4499401637 0.1) (1.110383208 -0.4041604856 0.1) (1.088878256 -0.4031222493 0.1) (1.067373304 -0.402084013 0.1) (1.066268183 -0.4249743515 0.1) (1.024373388 -0.4000080227 0.1) (1.023268267 -0.4228983612 0.1) (1.044773219 -0.4239365975 0.1) (1.04587834 -0.401046259 0.1) (1.071793741 -0.3105236579 0.1) (1.072898814 -0.2876343183 0.1) (1.062151332 -0.2871154413 0.1) (1.074003935 -0.2647439798 0.1) (1.063256453 -0.2642251028 0.1) (1.062703917 -0.2756697726 0.1) (1.073451399 -0.2761886496 0.1) (1.030451483 -0.2741126593 0.1) (1.041198965 -0.2746315363 0.1) (1.041751501 -0.2631868665 0.1) (1.124749577 -0.1065903802 0.1) (1.103244625 -0.105552144 0.1) (1.128064893 -0.03792036362 0.1) (1.106559941 -0.03688212736 0.1) (1.105454834 -0.05977216619 0.1) (1.126959786 -0.06081040246 0.1) (1.062454918 -0.05769617589 0.1) (1.063560025 -0.03480613705 0.1) (1.177560911 0.0995658205 0.1) (1.18185357 0.2560528017 0.1) (1.180850465 0.2017840899 0.1) (1.223533105 0.2032481732 0.1) (1.09526056 0.2012293234 0.1) (1.182323854 0.3121064324 0.1) (1.18034066 0.4869372018 0.1) (1.181546968 0.4280223212 0.1) (1.223930675 0.430663957 0.1) (1.097173801 0.4226875527 0.1) (1.178909046 0.5447300907 0.1) (1.172909034 0.715029684 0.1) (1.174995405 0.6594716231 0.1) (1.217044335 0.6631615706 0.1) (1.09061099 0.6555626773 0.1) (1.171122797 0.7692722662 0.1) (1.16818 0.91701 0.1) (1.168497614 0.8702198187 0.1) (1.211253592 0.8703723943 0.1) (1.083103718 0.8693147659 0.1) (1.335709905 -0.885869372 0.1) (1.337773273 -0.9245207624 0.1) (1.328318461 -0.7795471598 0.1) (1.330799202 -0.813793764 0.1) (1.375284827 -0.809023168 0.1) (1.24208028 -0.8219290452 0.1) (1.326038985 -0.7458949451 0.1) (1.321585049 -0.644039674 0.1) (1.322586318 -0.6785578754 0.1) (1.367305149 -0.6720005708 0.1) (1.233682832 -0.6885725509 0.1) (1.321124381 -0.6084877836 0.1) (1.322839263 -0.4935350459 0.1) (1.321794948 -0.5333484689 0.1) (1.365980689 -0.5277686063 0.1) (1.234089472 -0.5398358485 0.1) (1.324262823 -0.4522454476 0.1) (1.329975477 -0.3212852487 0.1) (1.327910326 -0.3658804547 0.1) (1.371374343 -0.3632203562 0.1) (1.241613127 -0.3646097428 0.1) (1.332118718 -0.2760943966 0.1) (1.338706864 -0.1382554681 0.1) (1.336502635 -0.1845723519 0.1) (1.379634833 -0.1829963969 0.1) (1.207444082 -0.1794128597 0.1) (1.250453986 -0.1814893322 0.1) (1.340896662 -0.09136457606 0.1) (1.346992116 0.05533313697 0.1) (1.345094624 0.005178630895 0.1) (1.38793441 0.009321912443 0.1) (1.259266888 0.002589940229 0.1) (1.348659866 0.1069772369 0.1) (1.3515429 0.2708776699 0.1) (1.351000492 0.2148507654 0.1) (1.393276052 0.2213233529 0.1) (1.266129029 0.2058484169 0.1) (1.351611227 0.3279921128 0.1) (1.349065836 0.5022179655 0.1) (1.350329226 0.4440843002 0.1) (1.392248766 0.4501634288 0.1) (1.266187604 0.4342497974 0.1) (1.347503914 0.5597983338 0.1) (1.342425809 0.724743852 0.1) (1.344021241 0.6714762962 0.1) (1.386274541 0.6747135807 0.1) (1.25943579 0.6655808751 0.1) (1.341164673 0.7758415008 0.1) (1.34028 0.916667 0.1) (1.34028 0.870833 0.1) (1.38333 0.870833 0.1) (1.254183764 0.8707881686 0.1) (1.511539262 -0.8741919775 0.1) (1.512316594 -0.917276888 0.1) (1.506995846 -0.7560094409 0.1) (1.50872594 -0.7938490906 0.1) (1.553019151 -0.7892038017 0.1) (1.419809036 -0.8039802053 0.1) (1.505242079 -0.7192681103 0.1) (1.500990671 -0.6119452381 0.1) (1.502145729 -0.6475971524 0.1) (1.547150042 -0.6385969607 0.1) (1.412174718 -0.6645366809 0.1) (1.500182296 -0.5759765991 0.1) (1.500047587 -0.4636694422 0.1) (1.499711939 -0.5020335706 0.1) (1.544545966 -0.491063815 0.1) (1.410389447 -0.5206094884 0.1) (1.500731836 -0.4242107082 0.1) (1.50443789 -0.2988876565 0.1) (1.502976841 -0.3418234283 0.1) (1.547144057 -0.3308593857 0.1) (1.415061886 -0.3582468445 0.1) (1.506055066 -0.2548188228 0.1) (1.511336488 -0.1159444268 0.1) (1.50955418 -0.1633479499 0.1) (1.552983325 -0.1525426775 0.1) (1.422867971 -0.1788390318 0.1) (1.513073551 -0.06740241765 0.1) (1.5174817 0.085254162 0.1) (1.516200516 0.03319424398 0.1) (1.558876217 0.04436145365 0.1) (1.430737664 0.01544415053 0.1) (1.518504669 0.1384346912 0.1) (1.51963528 0.3033595133 0.1) (1.519606837 0.247677904 0.1) (1.561608825 0.2581048933 0.1) (1.435466093 0.2290531287 0.1) (1.519313233 0.3593960543 0.1) (1.516652628 0.526277593 0.1) (1.51775504 0.4712190869 0.1) (1.55961833 0.4784432855 0.1) (1.434111928 0.4568417829 0.1) (1.515465136 0.5802715114 0.1) (1.51269345 0.7325145923 0.1) (1.513344236 0.6836839034 0.1) (1.555932052 0.6857958902 0.1) (1.428560399 0.6779468159 0.1) (1.5125 0.779167 0.1) (1.5125 0.916667 0.1) (1.5125 0.870833 0.1) (1.55556 0.870833 0.1) (1.42639 0.870833 0.1) (1.68472 -0.870833 0.1) (1.68472 -0.916667 0.1) (1.684017134 -0.7364098861 0.1) (1.684541253 -0.7799044544 0.1) (1.72778 -0.779167 0.1) (1.597114281 -0.7851642861 0.1) (1.683260735 -0.694300443 0.1) (1.680623755 -0.5736220289 0.1) (1.681473227 -0.6131868225 0.1) (1.725832708 -0.606406908 0.1) (1.5920734 -0.6296371653 0.1) (1.679899777 -0.534343222 0.1) (1.678905006 -0.4156874883 0.1) (1.679014877 -0.4556036018 0.1) (1.723641354 -0.4443670834 0.1) (1.589407814 -0.4794008363 0.1) (1.679024891 -0.3751535309 0.1) (1.680602623 -0.2485332128 0.1) (1.679899731 -0.2916776454 0.1) (1.724092705 -0.2781778761 0.1) (1.591378852 -0.3185399728 0.1) (1.681435483 -0.2043658802 0.1) (1.684286423 -0.06548366069 0.1) (1.683322427 -0.112843061 0.1) (1.726734264 -0.09890663565 0.1) (1.596428568 -0.140203171 0.1) (1.685203279 -0.01709184512 0.1) (1.687253631 0.1335972458 0.1) (1.686724052 0.08254531221 0.1) (1.729334219 0.09526729982 0.1) (1.601508935 0.05660023727 0.1) (1.687592123 0.1852909915 0.1) (1.687383443 0.3422664395 0.1) (1.687650304 0.2898508638 0.1) (1.729805535 0.2992767812 0.1) (1.603588183 0.2688585372 0.1) (1.68695613 0.3944253085 0.1) (1.685295604 0.546555834 0.1) (1.685837135 0.4968521468 0.1) (1.72827374 0.5008972881 0.1) (1.601551183 0.4853226309 0.1) (1.6848889 0.5949020776 0.1) (1.68472 0.733333 0.1) (1.68472 0.6875 0.1) (1.72778 0.6875 0.1) (1.598689818 0.6871295271 0.1) (1.68472 0.779167 0.1) (1.68472 0.916667 0.1) (1.68472 0.870833 0.1) (1.72778 0.870833 0.1) (1.59861 0.870833 0.1) (1.85694 -0.870833 0.1) (1.85694 -0.916667 0.1) (1.85694 -0.733333 0.1) (1.85694 -0.779167 0.1) (1.9 -0.779167 0.1) (1.77083 -0.779167 0.1) (1.85694 -0.6875 0.1) (1.856814694 -0.5507683215 0.1) (1.856931004 -0.595883984 0.1) (1.9 -0.595833 0.1) (1.769882223 -0.6010578991 0.1) (1.856613246 -0.5063486132 0.1) (1.855988842 -0.3753152022 0.1) (1.856162269 -0.4188108767 0.1) (1.899771766 -0.4143801222 0.1) (1.768063754 -0.4341955545 0.1) (1.855882118 -0.3317700294 0.1) (1.856022613 -0.1994758137 0.1) (1.855901915 -0.2439639244 0.1) (1.899506351 -0.2363457145 0.1) (1.768171868 -0.2653693583 0.1) (1.856201302 -0.1544934005 0.1) (1.856888441 -0.01627030909 0.1) (1.856656151 -0.06289222363 0.1) (1.899861069 -0.05458459606 0.1) (1.770091385 -0.08556499878 0.1) (1.857094815 0.03085388609 0.1) (1.857394971 0.174411178 0.1) (1.857358984 0.1263045559 0.1) (1.900178884 0.1327158927 0.1) (1.771956561 0.1071316157 0.1) (1.85736495 0.2225859162 0.1) (1.857034764 0.3657662958 0.1) (1.857158445 0.3184506357 0.1) (1.900016506 0.3206510167 0.1) (1.772079743 0.3074378859 0.1) (1.856950962 0.4124076353 0.1) (1.85694 0.55 0.1) (1.85694 0.504167 0.1) (1.9 0.504167 0.1) (1.770942336 0.5034142293 0.1) (1.85694 0.595833 0.1) (1.85694 0.733333 0.1) (1.85694 0.6875 0.1) (1.9 0.6875 0.1) (1.77083 0.6875 0.1) (1.85694 0.779167 0.1) (1.85694 0.916667 0.1) (1.85694 0.870833 0.1) (1.9 0.870833 0.1) (1.77083 0.870833 0.1) (2.02917 -0.870833 0.1) (2.02917 -0.916667 0.1) (2.02917 -0.733333 0.1) (2.02917 -0.779167 0.1) (2.07222 -0.779167 0.1) (1.94306 -0.779167 0.1) (2.02917 -0.6875 0.1) (2.02917 -0.55 0.1) (2.02917 -0.595833 0.1) (2.07222 -0.595833 0.1) (1.94306 -0.595833 0.1) (2.02917 -0.504167 0.1) (2.02917 -0.366667 0.1) (2.02917 -0.4125 0.1) (2.07222 -0.4125 0.1) (1.943055315 -0.4125391145 0.1) (2.02917 -0.320833 0.1) (2.02917 -0.183333 0.1) (2.02917 -0.229167 0.1) (2.07222 -0.229167 0.1) (1.942913782 -0.2313307053 0.1) (2.02917 -0.1375 0.1) (2.02917 0 0.1) (2.02917 -0.0458333 0.1) (2.07222 -0.0458333 0.1) (1.943013516 -0.04887265481 0.1) (2.02917 0.0458333 0.1) (2.02917 0.183333 0.1) (2.02917 0.1375 0.1) (2.07222 0.1375 0.1) (1.94309653 0.1365177426 0.1) (2.02917 0.229167 0.1) (2.02917 0.366667 0.1) (2.02917 0.320833 0.1) (2.07222 0.320833 0.1) (1.94306 0.320833 0.1) (2.02917 0.4125 0.1) (2.02917 0.55 0.1) (2.02917 0.504167 0.1) (2.07222 0.504167 0.1) (1.94306 0.504167 0.1) (2.02917 0.595833 0.1) (2.02917 0.733333 0.1) (2.02917 0.6875 0.1) (2.07222 0.6875 0.1) (1.94306 0.6875 0.1) (2.02917 0.779167 0.1) (2.02917 0.916667 0.1) (2.02917 0.870833 0.1) (2.07222 0.870833 0.1) (1.94306 0.870833 0.1) (2.20139 -0.870833 0.1) (2.20139 -0.916667 0.1) (2.20139 -0.733333 0.1) (2.20139 -0.779167 0.1) (2.24444 -0.779167 0.1) (2.11528 -0.779167 0.1) (2.20139 -0.6875 0.1) (2.20139 -0.55 0.1) (2.20139 -0.595833 0.1) (2.24444 -0.595833 0.1) (2.11528 -0.595833 0.1) (2.20139 -0.504167 0.1) (2.20139 -0.366667 0.1) (2.20139 -0.4125 0.1) (2.24444 -0.4125 0.1) (2.11528 -0.4125 0.1) (2.20139 -0.320833 0.1) (2.20139 -0.183333 0.1) (2.20139 -0.229167 0.1) (2.24444 -0.229167 0.1) (2.11528 -0.229167 0.1) (2.20139 -0.1375 0.1) (2.20139 0 0.1) (2.20139 -0.0458333 0.1) (2.24444 -0.0458333 0.1) (2.11528 -0.0458333 0.1) (2.20139 0.0458333 0.1) (2.20139 0.183333 0.1) (2.20139 0.1375 0.1) (2.24444 0.1375 0.1) (2.11528 0.1375 0.1) (2.20139 0.229167 0.1) (2.20139 0.366667 0.1) (2.20139 0.320833 0.1) (2.24444 0.320833 0.1) (2.11528 0.320833 0.1) (2.20139 0.4125 0.1) (2.20139 0.55 0.1) (2.20139 0.504167 0.1) (2.24444 0.504167 0.1) (2.11528 0.504167 0.1) (2.20139 0.595833 0.1) (2.20139 0.733333 0.1) (2.20139 0.6875 0.1) (2.24444 0.6875 0.1) (2.11528 0.6875 0.1) (2.20139 0.779167 0.1) (2.20139 0.916667 0.1) (2.20139 0.870833 0.1) (2.24444 0.870833 0.1) (2.11528 0.870833 0.1) (2.37361 -0.870833 0.1) (2.37361 -0.916667 0.1) (2.37361 -0.733333 0.1) (2.37361 -0.779167 0.1) (2.41667 -0.779167 0.1) (2.2875 -0.779167 0.1) (2.37361 -0.6875 0.1) (2.37361 -0.55 0.1) (2.37361 -0.595833 0.1) (2.41667 -0.595833 0.1) (2.2875 -0.595833 0.1) (2.37361 -0.504167 0.1) (2.37361 -0.366667 0.1) (2.37361 -0.4125 0.1) (2.41667 -0.4125 0.1) (2.2875 -0.4125 0.1) (2.37361 -0.320833 0.1) (2.37361 -0.183333 0.1) (2.37361 -0.229167 0.1) (2.41667 -0.229167 0.1) (2.2875 -0.229167 0.1) (2.37361 -0.1375 0.1) (2.37361 -1.38778e-17 0.1) (2.37361 -0.0458333 0.1) (2.41667 -0.0458333 0.1) (2.2875 -0.0458333 0.1) (2.37361 0.0458333 0.1) (2.37361 0.183333 0.1) (2.37361 0.1375 0.1) (2.41667 0.1375 0.1) (2.2875 0.1375 0.1) (2.37361 0.229167 0.1) (2.37361 0.366667 0.1) (2.37361 0.320833 0.1) (2.41667 0.320833 0.1) (2.2875 0.320833 0.1) (2.37361 0.4125 0.1) (2.37361 0.55 0.1) (2.37361 0.504167 0.1) (2.41667 0.504167 0.1) (2.2875 0.504167 0.1) (2.37361 0.595833 0.1) (2.37361 0.733333 0.1) (2.37361 0.6875 0.1) (2.41667 0.6875 0.1) (2.2875 0.6875 0.1) (2.37361 0.779167 0.1) (2.37361 0.916667 0.1) (2.37361 0.870833 0.1) (2.41667 0.870833 0.1) (2.2875 0.870833 0.1) (2.54583 -0.870833 0.1) (2.54583 -0.916667 0.1) (2.54583 -0.733333 0.1) (2.54583 -0.779167 0.1) (2.58889 -0.779167 0.1) (2.45972 -0.779167 0.1) (2.54583 -0.6875 0.1) (2.54583 -0.55 0.1) (2.54583 -0.595833 0.1) (2.58889 -0.595833 0.1) (2.45972 -0.595833 0.1) (2.54583 -0.504167 0.1) (2.54583 -0.366667 0.1) (2.54583 -0.4125 0.1) (2.58889 -0.4125 0.1) (2.45972 -0.4125 0.1) (2.54583 -0.320833 0.1) (2.54583 -0.183333 0.1) (2.54583 -0.229167 0.1) (2.58889 -0.229167 0.1) (2.45972 -0.229167 0.1) (2.54583 -0.1375 0.1) (2.54583 -1.85037e-17 0.1) (2.54583 -0.0458333 0.1) (2.58889 -0.0458333 0.1) (2.45972 -0.0458333 0.1) (2.54583 0.0458333 0.1) (2.54583 0.183333 0.1) (2.54583 0.1375 0.1) (2.58889 0.1375 0.1) (2.45972 0.1375 0.1) (2.54583 0.229167 0.1) (2.54583 0.366667 0.1) (2.54583 0.320833 0.1) (2.58889 0.320833 0.1) (2.45972 0.320833 0.1) (2.54583 0.4125 0.1) (2.54583 0.55 0.1) (2.54583 0.504167 0.1) (2.58889 0.504167 0.1) (2.45972 0.504167 0.1) (2.54583 0.595833 0.1) (2.54583 0.733333 0.1) (2.54583 0.6875 0.1) (2.58889 0.6875 0.1) (2.45972 0.6875 0.1) (2.54583 0.779167 0.1) (2.54583 0.916667 0.1) (2.54583 0.870833 0.1) (2.58889 0.870833 0.1) (2.45972 0.870833 0.1) (2.71806 -0.870833 0.1) (2.71806 -0.916667 0.1) (2.71806 -0.733333 0.1) (2.71806 -0.779167 0.1) (2.76111 -0.779167 0.1) (2.63194 -0.779167 0.1) (2.71806 -0.6875 0.1) (2.71806 -0.55 0.1) (2.71806 -0.595833 0.1) (2.76111 -0.595833 0.1) (2.63194 -0.595833 0.1) (2.71806 -0.504167 0.1) (2.71806 -0.366667 0.1) (2.71806 -0.4125 0.1) (2.76111 -0.4125 0.1) (2.63194 -0.4125 0.1) (2.71806 -0.320833 0.1) (2.71806 -0.183333 0.1) (2.71806 -0.229167 0.1) (2.76111 -0.229167 0.1) (2.63194 -0.229167 0.1) (2.71806 -0.1375 0.1) (2.71806 9.25186e-18 0.1) (2.71806 -0.0458333 0.1) (2.76111 -0.0458333 0.1) (2.63194 -0.0458333 0.1) (2.71806 0.0458333 0.1) (2.71806 0.183333 0.1) (2.71806 0.1375 0.1) (2.76111 0.1375 0.1) (2.63194 0.1375 0.1) (2.71806 0.229167 0.1) (2.71806 0.366667 0.1) (2.71806 0.320833 0.1) (2.76111 0.320833 0.1) (2.63194 0.320833 0.1) (2.71806 0.4125 0.1) (2.71806 0.55 0.1) (2.71806 0.504167 0.1) (2.76111 0.504167 0.1) (2.63194 0.504167 0.1) (2.71806 0.595833 0.1) (2.71806 0.733333 0.1) (2.71806 0.6875 0.1) (2.76111 0.6875 0.1) (2.63194 0.6875 0.1) (2.71806 0.779167 0.1) (2.71806 0.916667 0.1) (2.71806 0.870833 0.1) (2.76111 0.870833 0.1) (2.63194 0.870833 0.1) (2.89028 -0.870833 0.1) (2.89028 -0.916667 0.1) (2.89028 -0.733333 0.1) (2.89028 -0.779167 0.1) (2.93333 -0.779167 0.1) (2.80417 -0.779167 0.1) (2.89028 -0.6875 0.1) (2.89028 -0.55 0.1) (2.89028 -0.595833 0.1) (2.93333 -0.595833 0.1) (2.80417 -0.595833 0.1) (2.89028 -0.504167 0.1) (2.89028 -0.366667 0.1) (2.89028 -0.4125 0.1) (2.93333 -0.4125 0.1) (2.80417 -0.4125 0.1) (2.89028 -0.320833 0.1) (2.89028 -0.183333 0.1) (2.89028 -0.229167 0.1) (2.93333 -0.229167 0.1) (2.80417 -0.229167 0.1) (2.89028 -0.1375 0.1) (2.89028 1.85037e-17 0.1) (2.89028 -0.0458333 0.1) (2.93333 -0.0458333 0.1) (2.80417 -0.0458333 0.1) (2.89028 0.0458333 0.1) (2.89028 0.183333 0.1) (2.89028 0.1375 0.1) (2.93333 0.1375 0.1) (2.80417 0.1375 0.1) (2.89028 0.229167 0.1) (2.89028 0.366667 0.1) (2.89028 0.320833 0.1) (2.93333 0.320833 0.1) (2.80417 0.320833 0.1) (2.89028 0.4125 0.1) (2.89028 0.55 0.1) (2.89028 0.504167 0.1) (2.93333 0.504167 0.1) (2.80417 0.504167 0.1) (2.89028 0.595833 0.1) (2.89028 0.733333 0.1) (2.89028 0.6875 0.1) (2.93333 0.6875 0.1) (2.80417 0.6875 0.1) (2.89028 0.779167 0.1) (2.89028 0.916667 0.1) (2.89028 0.870833 0.1) (2.93333 0.870833 0.1) (2.80417 0.870833 0.1) (3.0625 -0.870833 0.1) (3.0625 -0.916667 0.1) (3.0625 -0.733333 0.1) (3.0625 -0.779167 0.1) (3.10556 -0.779167 0.1) (2.97639 -0.779167 0.1) (3.0625 -0.6875 0.1) (3.0625 -0.55 0.1) (3.0625 -0.595833 0.1) (3.10556 -0.595833 0.1) (2.97639 -0.595833 0.1) (3.0625 -0.504167 0.1) (3.0625 -0.366667 0.1) (3.0625 -0.4125 0.1) (3.10556 -0.4125 0.1) (2.97639 -0.4125 0.1) (3.0625 -0.320833 0.1) (3.0625 -0.183333 0.1) (3.0625 -0.229167 0.1) (3.10556 -0.229167 0.1) (2.97639 -0.229167 0.1) (3.0625 -0.1375 0.1) (3.0625 4.62593e-18 0.1) (3.0625 -0.0458333 0.1) (3.10556 -0.0458333 0.1) (2.97639 -0.0458333 0.1) (3.0625 0.0458333 0.1) (3.0625 0.183333 0.1) (3.0625 0.1375 0.1) (3.10556 0.1375 0.1) (2.97639 0.1375 0.1) (3.0625 0.229167 0.1) (3.0625 0.366667 0.1) (3.0625 0.320833 0.1) (3.10556 0.320833 0.1) (2.97639 0.320833 0.1) (3.0625 0.4125 0.1) (3.0625 0.55 0.1) (3.0625 0.504167 0.1) (3.10556 0.504167 0.1) (2.97639 0.504167 0.1) (3.0625 0.595833 0.1) (3.0625 0.733333 0.1) (3.0625 0.6875 0.1) (3.10556 0.6875 0.1) (2.97639 0.6875 0.1) (3.0625 0.779167 0.1) (3.0625 0.916667 0.1) (3.0625 0.870833 0.1) (3.10556 0.870833 0.1) (2.97639 0.870833 0.1) (3.23472 -0.870833 0.1) (3.23472 -0.916667 0.1) (3.23472 -0.733333 0.1) (3.23472 -0.779167 0.1) (3.27778 -0.779167 0.1) (3.14861 -0.779167 0.1) (3.23472 -0.6875 0.1) (3.23472 -0.55 0.1) (3.23472 -0.595833 0.1) (3.27778 -0.595833 0.1) (3.14861 -0.595833 0.1) (3.23472 -0.504167 0.1) (3.23472 -0.366667 0.1) (3.23472 -0.4125 0.1) (3.27778 -0.4125 0.1) (3.14861 -0.4125 0.1) (3.23472 -0.320833 0.1) (3.23472 -0.183333 0.1) (3.23472 -0.229167 0.1) (3.27778 -0.229167 0.1) (3.14861 -0.229167 0.1) (3.23472 -0.1375 0.1) (3.23472 0 0.1) (3.23472 -0.0458333 0.1) (3.27778 -0.0458333 0.1) (3.14861 -0.0458333 0.1) (3.23472 0.0458333 0.1) (3.23472 0.183333 0.1) (3.23472 0.1375 0.1) (3.27778 0.1375 0.1) (3.14861 0.1375 0.1) (3.23472 0.229167 0.1) (3.23472 0.366667 0.1) (3.23472 0.320833 0.1) (3.27778 0.320833 0.1) (3.14861 0.320833 0.1) (3.23472 0.4125 0.1) (3.23472 0.55 0.1) (3.23472 0.504167 0.1) (3.27778 0.504167 0.1) (3.14861 0.504167 0.1) (3.23472 0.595833 0.1) (3.23472 0.733333 0.1) (3.23472 0.6875 0.1) (3.27778 0.6875 0.1) (3.14861 0.6875 0.1) (3.23472 0.779167 0.1) (3.23472 0.916667 0.1) (3.23472 0.870833 0.1) (3.27778 0.870833 0.1) (3.14861 0.870833 0.1) (3.40694 -0.870833 0.1) (3.40694 -0.916667 0.1) (3.40694 -0.733333 0.1) (3.40694 -0.779167 0.1) (3.45 -0.779167 0.1) (3.32083 -0.779167 0.1) (3.40694 -0.6875 0.1) (3.40694 -0.55 0.1) (3.40694 -0.595833 0.1) (3.45 -0.595833 0.1) (3.32083 -0.595833 0.1) (3.40694 -0.504167 0.1) (3.40694 -0.366667 0.1) (3.40694 -0.4125 0.1) (3.45 -0.4125 0.1) (3.32083 -0.4125 0.1) (3.40694 -0.320833 0.1) (3.40694 -0.183333 0.1) (3.40694 -0.229167 0.1) (3.45 -0.229167 0.1) (3.32083 -0.229167 0.1) (3.40694 -0.1375 0.1) (3.40694 0 0.1) (3.40694 -0.0458333 0.1) (3.45 -0.0458333 0.1) (3.32083 -0.0458333 0.1) (3.40694 0.0458333 0.1) (3.40694 0.183333 0.1) (3.40694 0.1375 0.1) (3.45 0.1375 0.1) (3.32083 0.1375 0.1) (3.40694 0.229167 0.1) (3.40694 0.366667 0.1) (3.40694 0.320833 0.1) (3.45 0.320833 0.1) (3.32083 0.320833 0.1) (3.40694 0.4125 0.1) (3.40694 0.55 0.1) (3.40694 0.504167 0.1) (3.45 0.504167 0.1) (3.32083 0.504167 0.1) (3.40694 0.595833 0.1) (3.40694 0.733333 0.1) (3.40694 0.6875 0.1) (3.45 0.6875 0.1) (3.32083 0.6875 0.1) (3.40694 0.779167 0.1) (3.40694 0.916667 0.1) (3.40694 0.870833 0.1) (3.45 0.870833 0.1) (3.32083 0.870833 0.1) (3.57917 -0.870833 0.1) (3.57917 -0.916667 0.1) (3.57917 -0.733333 0.1) (3.57917 -0.779167 0.1) (3.62222 -0.779167 0.1) (3.49306 -0.779167 0.1) (3.57917 -0.6875 0.1) (3.57917 -0.55 0.1) (3.57917 -0.595833 0.1) (3.62222 -0.595833 0.1) (3.49306 -0.595833 0.1) (3.57917 -0.504167 0.1) (3.57917 -0.366667 0.1) (3.57917 -0.4125 0.1) (3.62222 -0.4125 0.1) (3.49306 -0.4125 0.1) (3.57917 -0.320833 0.1) (3.57917 -0.183333 0.1) (3.57917 -0.229167 0.1) (3.62222 -0.229167 0.1) (3.49306 -0.229167 0.1) (3.57917 -0.1375 0.1) (3.57917 0 0.1) (3.57917 -0.0458333 0.1) (3.62222 -0.0458333 0.1) (3.49306 -0.0458333 0.1) (3.57917 0.0458333 0.1) (3.57917 0.183333 0.1) (3.57917 0.1375 0.1) (3.62222 0.1375 0.1) (3.49306 0.1375 0.1) (3.57917 0.229167 0.1) (3.57917 0.366667 0.1) (3.57917 0.320833 0.1) (3.62222 0.320833 0.1) (3.49306 0.320833 0.1) (3.57917 0.4125 0.1) (3.57917 0.55 0.1) (3.57917 0.504167 0.1) (3.62222 0.504167 0.1) (3.49306 0.504167 0.1) (3.57917 0.595833 0.1) (3.57917 0.733333 0.1) (3.57917 0.6875 0.1) (3.62222 0.6875 0.1) (3.49306 0.6875 0.1) (3.57917 0.779167 0.1) (3.57917 0.916667 0.1) (3.57917 0.870833 0.1) (3.62222 0.870833 0.1) (3.49306 0.870833 0.1) (3.75139 -0.870833 0.1) (3.75139 -0.916667 0.1) (3.75139 -0.733333 0.1) (3.75139 -0.779167 0.1) (3.79444 -0.779167 0.1) (3.66528 -0.779167 0.1) (3.75139 -0.6875 0.1) (3.75139 -0.55 0.1) (3.75139 -0.595833 0.1) (3.79444 -0.595833 0.1) (3.66528 -0.595833 0.1) (3.75139 -0.504167 0.1) (3.75139 -0.366667 0.1) (3.75139 -0.4125 0.1) (3.79444 -0.4125 0.1) (3.66528 -0.4125 0.1) (3.75139 -0.320833 0.1) (3.75139 -0.183333 0.1) (3.75139 -0.229167 0.1) (3.79444 -0.229167 0.1) (3.66528 -0.229167 0.1) (3.75139 -0.1375 0.1) (3.75139 -6.93889e-18 0.1) (3.75139 -0.0458333 0.1) (3.79444 -0.0458333 0.1) (3.66528 -0.0458333 0.1) (3.75139 0.0458333 0.1) (3.75139 0.183333 0.1) (3.75139 0.1375 0.1) (3.79444 0.1375 0.1) (3.66528 0.1375 0.1) (3.75139 0.229167 0.1) (3.75139 0.366667 0.1) (3.75139 0.320833 0.1) (3.79444 0.320833 0.1) (3.66528 0.320833 0.1) (3.75139 0.4125 0.1) (3.75139 0.55 0.1) (3.75139 0.504167 0.1) (3.79444 0.504167 0.1) (3.66528 0.504167 0.1) (3.75139 0.595833 0.1) (3.75139 0.733333 0.1) (3.75139 0.6875 0.1) (3.79444 0.6875 0.1) (3.66528 0.6875 0.1) (3.75139 0.779167 0.1) (3.75139 0.916667 0.1) (3.75139 0.870833 0.1) (3.79444 0.870833 0.1) (3.66528 0.870833 0.1) (3.92361 -0.870833 0.1) (3.92361 -0.916667 0.1) (3.92361 -0.733333 0.1) (3.92361 -0.779167 0.1) (3.96667 -0.779167 0.1) (3.8375 -0.779167 0.1) (3.92361 -0.6875 0.1) (3.92361 -0.55 0.1) (3.92361 -0.595833 0.1) (3.96667 -0.595833 0.1) (3.8375 -0.595833 0.1) (3.92361 -0.504167 0.1) (3.92361 -0.366667 0.1) (3.92361 -0.4125 0.1) (3.96667 -0.4125 0.1) (3.8375 -0.4125 0.1) (3.92361 -0.320833 0.1) (3.92361 -0.183333 0.1) (3.92361 -0.229167 0.1) (3.96667 -0.229167 0.1) (3.8375 -0.229167 0.1) (3.92361 -0.1375 0.1) (3.92361 -9.25186e-18 0.1) (3.92361 -0.0458333 0.1) (3.96667 -0.0458333 0.1) (3.8375 -0.0458333 0.1) (3.92361 0.0458333 0.1) (3.92361 0.183333 0.1) (3.92361 0.1375 0.1) (3.96667 0.1375 0.1) (3.8375 0.1375 0.1) (3.92361 0.229167 0.1) (3.92361 0.366667 0.1) (3.92361 0.320833 0.1) (3.96667 0.320833 0.1) (3.8375 0.320833 0.1) (3.92361 0.4125 0.1) (3.92361 0.55 0.1) (3.92361 0.504167 0.1) (3.96667 0.504167 0.1) (3.8375 0.504167 0.1) (3.92361 0.595833 0.1) (3.92361 0.733333 0.1) (3.92361 0.6875 0.1) (3.96667 0.6875 0.1) (3.8375 0.6875 0.1) (3.92361 0.779167 0.1) (3.92361 0.916667 0.1) (3.92361 0.870833 0.1) (3.96667 0.870833 0.1) (3.8375 0.870833 0.1) (4.09583 -0.870833 0.1) (4.09583 -0.916667 0.1) (4.09583 -0.733333 0.1) (4.09583 -0.779167 0.1) (4.13889 -0.779167 0.1) (4.00972 -0.779167 0.1) (4.09583 -0.6875 0.1) (4.09583 -0.55 0.1) (4.09583 -0.595833 0.1) (4.13889 -0.595833 0.1) (4.00972 -0.595833 0.1) (4.09583 -0.504167 0.1) (4.09583 -0.366667 0.1) (4.09583 -0.4125 0.1) (4.13889 -0.4125 0.1) (4.00972 -0.4125 0.1) (4.09583 -0.320833 0.1) (4.09583 -0.183333 0.1) (4.09583 -0.229167 0.1) (4.13889 -0.229167 0.1) (4.00972 -0.229167 0.1) (4.09583 -0.1375 0.1) (4.09583 -1.61908e-17 0.1) (4.09583 -0.0458333 0.1) (4.13889 -0.0458333 0.1) (4.00972 -0.0458333 0.1) (4.09583 0.0458333 0.1) (4.09583 0.183333 0.1) (4.09583 0.1375 0.1) (4.13889 0.1375 0.1) (4.00972 0.1375 0.1) (4.09583 0.229167 0.1) (4.09583 0.366667 0.1) (4.09583 0.320833 0.1) (4.13889 0.320833 0.1) (4.00972 0.320833 0.1) (4.09583 0.4125 0.1) (4.09583 0.55 0.1) (4.09583 0.504167 0.1) (4.13889 0.504167 0.1) (4.00972 0.504167 0.1) (4.09583 0.595833 0.1) (4.09583 0.733333 0.1) (4.09583 0.6875 0.1) (4.13889 0.6875 0.1) (4.00972 0.6875 0.1) (4.09583 0.779167 0.1) (4.09583 0.916667 0.1) (4.09583 0.870833 0.1) (4.13889 0.870833 0.1) (4.00972 0.870833 0.1) (4.26806 -0.870833 0.1) (4.26806 -0.916667 0.1) (4.26806 -0.733333 0.1) (4.26806 -0.779167 0.1) (4.31111 -0.779167 0.1) (4.18194 -0.779167 0.1) (4.26806 -0.6875 0.1) (4.26806 -0.55 0.1) (4.26806 -0.595833 0.1) (4.31111 -0.595833 0.1) (4.18194 -0.595833 0.1) (4.26806 -0.504167 0.1) (4.26806 -0.366667 0.1) (4.26806 -0.4125 0.1) (4.31111 -0.4125 0.1) (4.18194 -0.4125 0.1) (4.26806 -0.320833 0.1) (4.26806 -0.183333 0.1) (4.26806 -0.229167 0.1) (4.31111 -0.229167 0.1) (4.18194 -0.229167 0.1) (4.26806 -0.1375 0.1) (4.26806 9.25186e-18 0.1) (4.26806 -0.0458333 0.1) (4.31111 -0.0458333 0.1) (4.18194 -0.0458333 0.1) (4.26806 0.0458333 0.1) (4.26806 0.183333 0.1) (4.26806 0.1375 0.1) (4.31111 0.1375 0.1) (4.18194 0.1375 0.1) (4.26806 0.229167 0.1) (4.26806 0.366667 0.1) (4.26806 0.320833 0.1) (4.31111 0.320833 0.1) (4.18194 0.320833 0.1) (4.26806 0.4125 0.1) (4.26806 0.55 0.1) (4.26806 0.504167 0.1) (4.31111 0.504167 0.1) (4.18194 0.504167 0.1) (4.26806 0.595833 0.1) (4.26806 0.733333 0.1) (4.26806 0.6875 0.1) (4.31111 0.6875 0.1) (4.18194 0.6875 0.1) (4.26806 0.779167 0.1) (4.26806 0.916667 0.1) (4.26806 0.870833 0.1) (4.31111 0.870833 0.1) (4.18194 0.870833 0.1) (4.44028 -0.870833 0.1) (4.44028 -0.916667 0.1) (4.44028 -0.733333 0.1) (4.44028 -0.779167 0.1) (4.48333 -0.779167 0.1) (4.35417 -0.779167 0.1) (4.44028 -0.6875 0.1) (4.44028 -0.55 0.1) (4.44028 -0.595833 0.1) (4.48333 -0.595833 0.1) (4.35417 -0.595833 0.1) (4.44028 -0.504167 0.1) (4.44028 -0.366667 0.1) (4.44028 -0.4125 0.1) (4.48333 -0.4125 0.1) (4.35417 -0.4125 0.1) (4.44028 -0.320833 0.1) (4.44028 -0.183333 0.1) (4.44028 -0.229167 0.1) (4.48333 -0.229167 0.1) (4.35417 -0.229167 0.1) (4.44028 -0.1375 0.1) (4.44028 -1.27213e-17 0.1) (4.44028 -0.0458333 0.1) (4.48333 -0.0458333 0.1) (4.35417 -0.0458333 0.1) (4.44028 0.0458333 0.1) (4.44028 0.183333 0.1) (4.44028 0.1375 0.1) (4.48333 0.1375 0.1) (4.35417 0.1375 0.1) (4.44028 0.229167 0.1) (4.44028 0.366667 0.1) (4.44028 0.320833 0.1) (4.48333 0.320833 0.1) (4.35417 0.320833 0.1) (4.44028 0.4125 0.1) (4.44028 0.55 0.1) (4.44028 0.504167 0.1) (4.48333 0.504167 0.1) (4.35417 0.504167 0.1) (4.44028 0.595833 0.1) (4.44028 0.733333 0.1) (4.44028 0.6875 0.1) (4.48333 0.6875 0.1) (4.35417 0.6875 0.1) (4.44028 0.779167 0.1) (4.44028 0.916667 0.1) (4.44028 0.870833 0.1) (4.48333 0.870833 0.1) (4.35417 0.870833 0.1) (4.6125 -0.870833 0.1) (4.6125 -0.916667 0.1) (4.6125 -0.733333 0.1) (4.6125 -0.779167 0.1) (4.65556 -0.779167 0.1) (4.52639 -0.779167 0.1) (4.6125 -0.6875 0.1) (4.6125 -0.55 0.1) (4.6125 -0.595833 0.1) (4.65556 -0.595833 0.1) (4.52639 -0.595833 0.1) (4.6125 -0.504167 0.1) (4.6125 -0.366667 0.1) (4.6125 -0.4125 0.1) (4.65556 -0.4125 0.1) (4.52639 -0.4125 0.1) (4.6125 -0.320833 0.1) (4.6125 -0.183333 0.1) (4.6125 -0.229167 0.1) (4.65556 -0.229167 0.1) (4.52639 -0.229167 0.1) (4.6125 -0.1375 0.1) (4.6125 1.15648e-18 0.1) (4.6125 -0.0458333 0.1) (4.65556 -0.0458333 0.1) (4.52639 -0.0458333 0.1) (4.6125 0.0458333 0.1) (4.6125 0.183333 0.1) (4.6125 0.1375 0.1) (4.65556 0.1375 0.1) (4.52639 0.1375 0.1) (4.6125 0.229167 0.1) (4.6125 0.366667 0.1) (4.6125 0.320833 0.1) (4.65556 0.320833 0.1) (4.52639 0.320833 0.1) (4.6125 0.4125 0.1) (4.6125 0.55 0.1) (4.6125 0.504167 0.1) (4.65556 0.504167 0.1) (4.52639 0.504167 0.1) (4.6125 0.595833 0.1) (4.6125 0.733333 0.1) (4.6125 0.6875 0.1) (4.65556 0.6875 0.1) (4.52639 0.6875 0.1) (4.6125 0.779167 0.1) (4.6125 0.916667 0.1) (4.6125 0.870833 0.1) (4.65556 0.870833 0.1) (4.52639 0.870833 0.1) (4.78472 -0.870833 0.1) (4.78472 -0.916667 0.1) (4.78472 -0.733333 0.1) (4.78472 -0.779167 0.1) (4.82778 -0.779167 0.1) (4.69861 -0.779167 0.1) (4.78472 -0.6875 0.1) (4.78472 -0.55 0.1) (4.78472 -0.595833 0.1) (4.82778 -0.595833 0.1) (4.69861 -0.595833 0.1) (4.78472 -0.504167 0.1) (4.78472 -0.366667 0.1) (4.78472 -0.4125 0.1) (4.82778 -0.4125 0.1) (4.69861 -0.4125 0.1) (4.78472 -0.320833 0.1) (4.78472 -0.183333 0.1) (4.78472 -0.229167 0.1) (4.82778 -0.229167 0.1) (4.69861 -0.229167 0.1) (4.78472 -0.1375 0.1) (4.78472 -2.19732e-17 0.1) (4.78472 -0.0458333 0.1) (4.82778 -0.0458333 0.1) (4.69861 -0.0458333 0.1) (4.78472 0.0458333 0.1) (4.78472 0.183333 0.1) (4.78472 0.1375 0.1) (4.82778 0.1375 0.1) (4.69861 0.1375 0.1) (4.78472 0.229167 0.1) (4.78472 0.366667 0.1) (4.78472 0.320833 0.1) (4.82778 0.320833 0.1) (4.69861 0.320833 0.1) (4.78472 0.4125 0.1) (4.78472 0.55 0.1) (4.78472 0.504167 0.1) (4.82778 0.504167 0.1) (4.69861 0.504167 0.1) (4.78472 0.595833 0.1) (4.78472 0.733333 0.1) (4.78472 0.6875 0.1) (4.82778 0.6875 0.1) (4.69861 0.6875 0.1) (4.78472 0.779167 0.1) (4.78472 0.916667 0.1) (4.78472 0.870833 0.1) (4.82778 0.870833 0.1) (4.69861 0.870833 0.1) (5 -0.916667 0.1) (5 -0.870833 0.1) (4.95694 -0.870833 0.1) (4.95694 -0.916667 0.1) (5 -0.733333 0.1) (4.95694 -0.733333 0.1) (4.95694 -0.779167 0.1) (5 -0.779167 0.1) (4.87083 -0.779167 0.1) (5 -0.6875 0.1) (4.95694 -0.6875 0.1) (5 -0.55 0.1) (4.95694 -0.55 0.1) (4.95694 -0.595833 0.1) (5 -0.595833 0.1) (4.87083 -0.595833 0.1) (5 -0.504167 0.1) (4.95694 -0.504167 0.1) (5 -0.366667 0.1) (4.95694 -0.366667 0.1) (4.95694 -0.4125 0.1) (5 -0.4125 0.1) (4.87083 -0.4125 0.1) (5 -0.320833 0.1) (4.95694 -0.320833 0.1) (5 -0.183333 0.1) (4.95694 -0.183333 0.1) (4.95694 -0.229167 0.1) (5 -0.229167 0.1) (4.87083 -0.229167 0.1) (5 -0.1375 0.1) (4.95694 -0.1375 0.1) (5 0 0.1) (4.95694 -8.09538e-18 0.1) (4.95694 -0.0458333 0.1) (5 -0.0458333 0.1) (4.87083 -0.0458333 0.1) (5 0.0458333 0.1) (4.95694 0.0458333 0.1) (5 0.183333 0.1) (4.95694 0.183333 0.1) (4.95694 0.1375 0.1) (5 0.1375 0.1) (4.87083 0.1375 0.1) (5 0.229167 0.1) (4.95694 0.229167 0.1) (5 0.366667 0.1) (4.95694 0.366667 0.1) (4.95694 0.320833 0.1) (5 0.320833 0.1) (4.87083 0.320833 0.1) (5 0.4125 0.1) (4.95694 0.4125 0.1) (5 0.55 0.1) (4.95694 0.55 0.1) (4.95694 0.504167 0.1) (5 0.504167 0.1) (4.87083 0.504167 0.1) (5 0.595833 0.1) (4.95694 0.595833 0.1) (5 0.733333 0.1) (4.95694 0.733333 0.1) (4.95694 0.6875 0.1) (5 0.6875 0.1) (4.87083 0.6875 0.1) (5 0.779167 0.1) (4.95694 0.779167 0.1) (5 0.916667 0.1) (4.95694 0.916667 0.1) (4.95694 0.870833 0.1) (5 0.870833 0.1) (4.87083 0.870833 0.1) (0.1592868785 -0.2285967349 0.1) (0.148482463 -0.2280751092 0.1) (0.1268607434 -0.2270292332 0.1) (0.1257730989 -0.2497442104 0.1) (0.1376839922 -0.2275547716 0.1) (0.1246880169 -0.2724683219 0.1) (0.1426138444 0.1091972727 0.1) (0.1414691697 0.0864830465 0.1) (0.1523515084 0.08597868319 0.1) (0.1517813857 0.0746259684 0.1) (0.1408989989 0.07512933287 0.1) (0.1843100911 0.07308855546 0.1) (0.1734522068 0.07360174978 0.1) (0.009365626592 0.06940657877 0.1) (0.02040721872 0.06900565617 0.1) (0.03138585237 0.06857974052 0.1) (0.05389321727 0.07905155586 0.1) (0.05446701155 0.0904181097 0.1) (0.04225834398 0.06810989222 0.1) (0.05569820625 0.1131742124 0.1) (0.3314764866 -0.2368027418 0.1) (0.3309332017 -0.2481387313 0.1) (0.299232739 -0.2352730793 0.1) (0.2986893094 -0.2466120654 0.1) (0.3094392712 -0.2471210505 0.1) (0.3099826525 -0.2357830633 0.1) (0.2970529174 -0.2806517556 0.1) (0.308895697 -0.258463033 0.1) (0.2981446881 -0.2579549985 0.1) (0.3160467004 0.1007590428 0.1) (0.3154862424 0.0894198777 0.1) (0.3149618389 0.07808097427 0.1) (0.3257941599 0.07753597569 0.1) (0.3252520667 0.06620393328 0.1) (0.314421647 0.06674683775 0.1) (0.3577306164 0.06456081602 0.1) (0.3469095238 0.06511027833 0.1) (0.195175918 0.07257397652 0.1) (0.2277395206 0.07101285316 0.1) (0.2168921068 0.07153555362 0.1) (0.2294027847 0.1050492437 0.1) (0.2174457659 0.08287905161 0.1) (0.2282951291 0.08235525587 0.1) (0.2288699083 0.09370073769 0.1) (0.5029192954 -0.2562468103 0.1) (0.4706547994 -0.2547321647 0.1) (0.4814118977 -0.2552384909 0.1) (0.4690331422 -0.2887155 0.1) (0.4808713821 -0.2665585955 0.1) (0.4701151862 -0.2660543152 0.1) (0.4888322192 0.09185248439 0.1) (0.4877862298 0.06919156131 0.1) (0.4985554173 0.06862458162 0.1) (0.4975073476 0.0459827811 0.1) (0.49802779 0.05730185247 0.1) (0.4872606967 0.05787073338 0.1) (0.529834501 0.04427288689 0.1) (0.5303351596 0.05559691806 0.1) (0.5195781028 0.05616631559 0.1) (0.5190618486 0.04485104667 0.1) (0.3685526114 0.06400930781 0.1) (0.4009493873 0.06235211753 0.1) (0.3901288734 0.06291356588 0.1) (0.4025277226 0.09635055942 0.1) (0.3906687278 0.07424071054 0.1) (0.4014832005 0.07367855269 0.1) (0.6748969509 -0.2642393479 0.1) (0.6426531274 -0.2627527319 0.1) (0.6534038125 -0.2632467344 0.1) (0.6410399364 -0.296664392 0.1) (0.6528665965 -0.2745399668 0.1) (0.6421169102 -0.2740460125 0.1) (0.6610792191 0.08253341497 0.1) (0.6600468414 0.05988484986 0.1) (0.659023226 0.03725188036 0.1) (0.6805310639 0.03604530909 0.1) (0.702038454 0.0348087245 0.1) (0.5406235205 0.04370194624 0.1) (0.5514121061 0.04312201606 0.1) (0.5729422836 0.04196342334 0.1) (0.5739777403 0.06459281766 0.1) (0.5621778148 0.04254519268 0.1) (0.5750149331 0.08725817009 0.1) (0.8468764737 -0.2720687858 0.1) (0.8146063291 -0.2706089316 0.1) (0.8253633447 -0.2710962317 0.1) (0.8130071151 -0.3044591943 0.1) (0.8237631801 -0.3049454473 0.1) (0.8242988324 -0.2936431289 0.1) (0.8135417203 -0.2931578265 0.1) (0.8571049502 -0.1152844192 0.1) (0.856864078 -0.120916446 0.1) (0.862237801 -0.1212384664 0.1) (0.8676043707 -0.1215634954 0.1) (0.8688827826 -0.088199078 0.1) (0.8581853617 -0.08747277374 0.1) (0.8474895913 -0.08675375755 0.1) (0.8470562927 -0.09788531308 0.1) (0.8104346384 0.05119262103 0.1) (0.8114512137 0.07382492926 0.1) (0.8074169187 -0.01670494782 0.1) (0.8084052626 0.005881768761 0.1) (0.8727148792 0.001833871527 0.1) (0.8513001403 0.00320614608 0.1) (0.7235311646 0.03359988007 0.1) (0.7450228006 0.03234803744 0.1) (0.746040485 0.05500331891 0.1) (0.74704546 0.0776441965 0.1) (1.019694061 -0.2735923012 0.1) (0.9879427404 -0.2762752859 0.1) (0.9981991451 -0.2725535484 0.1) (0.9863145941 -0.310289344 0.1) (0.9965413909 -0.3068905543 0.1) (0.9970939274 -0.2954458845 0.1) (0.9868215007 -0.2989395842 0.1) (1.006004413 -0.1326572554 0.1) (1.006170385 -0.1219614857 0.1) (1.005364927 -0.1651883942 0.1) (1.005926789 -0.1541726731 0.1) (1.035976877 -0.1596653618 0.1) (1.025219262 -0.159148999 0.1) (0.8727418311 -0.1274842762 0.1) (0.8888396764 -0.12845649 0.1) (0.8834766694 -0.1281198793 0.1) (0.8894226694 -0.1119017638 0.1) (0.8785318758 -0.1166738524 0.1) (0.8783271242 -0.1222213016 0.1) (0.8836781887 -0.1225771688 0.1) (0.8890333108 -0.1229319403 0.1) (1.039844859 -0.07954797846 0.1) (1.018339907 -0.07850974219 0.1) (0.9973717271 -0.07626568774 0.1) (0.9963269686 -0.09894258877 0.1) (1.006813876 -0.1001306787 0.1) (1.006421339 -0.1111644862 0.1) (0.9958991953 -0.1100841224 0.1) (0.961302343 0.06413642097 0.1) (0.9602827435 0.04146220983 0.1) (0.9816127255 0.03995186186 0.1) (0.9826342744 0.06262497772 0.1) (0.9795030011 -0.005592387319 0.1) (0.9582074689 -0.003990594223 0.1) (1.04316016 -0.01087826149 0.1) (1.022014475 -0.00903441282 0.1) (0.8941090145 0.0004495765542 0.1) (0.9368773217 -0.002442194012 0.1) (0.9399458813 0.06559598679 0.1) (0.9389276664 0.04292971812 0.1) (-0.01351660359 -0.1854995331 0.1) (-0.0694227157 -0.1931614993 0.1) (-0.07137198554 -0.2622678981 0.1) (-0.07082661875 -0.2392013617 0.1) (-0.0141594371 -0.07539793124 0.1) (-0.01413513019 -0.08333238529 0.1) (-0.007443161004 -0.08275913367 0.1) (-0.008943765305 -0.07535658329 0.1) (-0.0138850999 -0.09043816927 0.1) (-0.008142334292 -0.09183492633 0.1) (-0.155823688 -0.1387837422 0.1) (-0.1773285915 -0.1369564903 0.1) (-0.1128537984 -0.1417097735 0.1) (-0.111156537 -0.09434031074 0.1) (-0.08959312506 -0.0963865388 0.1) (-0.01241204225 -0.06011963177 0.1) (-0.01341921307 -0.06731745712 0.1) (-0.008035649314 -0.06762580621 0.1) (-0.005450191834 -0.06126678609 0.1) (-0.03181939078 0.1167206794 0.1) (-0.03312235388 0.09388194144 0.1) (-0.03464493743 0.07092365509 0.1) (-0.01267461605 0.07017631586 0.1) (-0.001685108746 0.06978691834 0.1) (-0.1462071631 0.04976487878 0.1) (-0.1677236959 0.05048029793 0.1) (-0.102587606 0.04907662214 0.1) (-0.09878516576 0.09608795065 0.1) (0.08321542565 0.01503398002 0.1) (0.08293760659 0.009246343918 0.1) (0.08842970413 0.008972781493 0.1) (0.09391917437 0.008696642767 0.1) (0.005014116219 0.0007759761895 0.1) (0.01614081603 0.0004542415856 0.1) (0.02802971333 0.01157276124 0.1) (0.02178444918 0.00030011064 0.1) (0.02865713973 0.02297186665 0.1) (0.1688305886 0.1990976182 0.1) (0.1677209076 0.1763616793 0.1) (0.1243089268 0.1784255263 0.1) (0.1254369726 0.201168588 0.1) (0.1220622104 0.1329469597 0.1) (0.1083564524 0.2933533501 0.1) (0.1060486091 0.2477086931 0.1) (0.1471158187 0.2001239587 0.1) (0.06044280533 0.2042303489 0.1) (0.314186495 -0.3725659166 0.1) (0.2926868469 -0.3715629772 0.1) (0.2711772587 -0.3705585567 0.1) (0.2529450151 -0.3013388175 0.1) (0.274452268 -0.3023501334 0.1) (0.2722694429 -0.3478117614 0.1) (0.250761997 -0.3468044408 0.1) (0.336764247 -0.3508233833 0.1) (0.3152795333 -0.349822166 0.1) (0.1861862527 -0.3437688879 0.1) (0.1646252555 -0.3427509726 0.1) (0.2292426616 -0.3457945439 0.1) (0.2314259207 -0.3003239265 0.1) (0.2574691044 0.01155954258 0.1) (0.2571678431 0.00513289351 0.1) (0.1921281502 0.009984832462 0.1) (0.1924008511 0.01575769819 0.1) (0.3420431902 0.1904727925 0.1) (0.3409586386 0.1677596682 0.1) (0.2976792624 0.1699572764 0.1) (0.2987720458 0.192675009 0.1) (0.2944088342 0.1018437426 0.1) (0.2954945637 0.1245397902 0.1) (0.2815032019 0.2847355342 0.1) (0.279306548 0.2392328544 0.1) (0.3204093332 0.1915783232 0.1) (0.2338139198 0.1959192442 0.1) (0.4861898448 -0.3805446773 0.1) (0.4646817238 -0.3795513404 0.1) (0.4431756487 -0.3785571012 0.1) (0.4249275751 -0.3093956665 0.1) (0.4464432527 -0.3103983786 0.1) (0.4442672542 -0.3558222919 0.1) (0.4227513354 -0.3548245739 0.1) (0.5087815806 -0.358802819 0.1) (0.4872813538 -0.3578118656 0.1) (0.3582469631 -0.3518245041 0.1) (0.4012435038 -0.3538252441 0.1) (0.4034209834 -0.3083913907 0.1) (0.4168823892 -0.2521991632 0.1) (0.4276373934 -0.2527073906 0.1) (0.395382321 -0.2511841895 0.1) (0.3948402279 -0.2625162319 0.1) (0.4082929608 -0.2064206988 0.1) (0.4077539744 -0.2177298644 0.1) (0.4185039362 -0.2182388495 0.1) (0.4292588921 -0.2187480757 0.1) (0.3432902722 -0.2146546683 0.1) (0.3540190655 -0.2151666361 0.1) (0.3647598448 -0.2156791825 0.1) (0.3653013111 -0.204360125 0.1) (0.3604682305 -0.1927775854 0.1) (0.430447999 -0.001740151875 0.1) (0.4301493791 -0.007593661538 0.1) (0.4355862974 -0.007685051124 0.1) (0.4410055856 -0.007830553498 0.1) (0.3655264947 0.001101348763 0.1) (0.3658379607 0.007075779631 0.1) (0.5145984251 0.181462218 0.1) (0.5135325278 0.1587622095 0.1) (0.4704761886 0.1610381533 0.1) (0.4715431812 0.1837401113 0.1) (0.468344697 0.115665153 0.1) (0.4542218595 0.2758851574 0.1) (0.4520852196 0.2303296301 0.1) (0.4930760316 0.1825954058 0.1) (0.4068067149 0.187137836 0.1) (0.6581979687 -0.3884245531 0.1) (0.6366992092 -0.3874446834 0.1) (0.6152015449 -0.3864628642 0.1) (0.5969739851 -0.3173534792 0.1) (0.6184616128 -0.318335815 0.1) (0.616289961 -0.3637319055 0.1) (0.5948002392 -0.362751471 0.1) (0.6807823406 -0.3666693242 0.1) (0.6592864812 -0.3656915968 0.1) (0.5302838532 -0.35979287 0.1) (0.5732976773 -0.361767413 0.1) (0.5754715679 -0.3163664248 0.1) (0.5889296325 -0.2602641408 0.1) (0.5996820742 -0.260763234 0.1) (0.5674218973 -0.2592628133 0.1) (0.5668820086 -0.270569933 0.1) (0.5805975283 -0.2089276191 0.1) (0.5859729294 -0.2091941459 0.1) (0.5797884047 -0.2258943399 0.1) (0.5905413148 -0.2264044685 0.1) (0.5910788062 -0.2151262668 0.1) (0.5857022617 -0.2148626883 0.1) (0.5803253795 -0.2146061016 0.1) (0.601293226 -0.2269145488 0.1) (0.601831234 -0.2156463838 0.1) (0.5964556401 -0.2153838523 0.1) (0.5152801611 -0.2228500319 0.1) (0.5260281252 -0.2233589205 0.1) (0.5367782317 -0.2238649091 0.1) (0.5373150136 -0.2125806662 0.1) (0.592425686 -0.004368722887 0.1) (0.5919229079 -0.01565370642 0.1) (0.6022147035 -0.02751900936 0.1) (0.532383488 -0.01820752169 0.1) (0.5269822419 -0.01791641997 0.1) (0.5485902497 -0.01901819979 0.1) (0.5432038711 -0.01875094276 0.1) (0.5493526456 -0.002065441891 0.1) (0.5434655686 -0.01308156682 0.1) (0.5488505626 -0.01335676632 0.1) (0.830184566 -0.3962733547 0.1) (0.8290926917 -0.4190552058 0.1) (0.7860933335 -0.4170713495 0.1) (0.7871857244 -0.3942995351 0.1) (0.7850001228 -0.4398601443 0.1) (0.7689442912 -0.3251664535 0.1) (0.7904425341 -0.3261362867 0.1) (0.7915198111 -0.3034908904 0.1) (0.7882741061 -0.3715485515 0.1) (0.7667761525 -0.3705727253 0.1) (0.8527789884 -0.3744965854 0.1) (0.8312744287 -0.373512431 0.1) (0.7022842413 -0.3676463421 0.1) (0.7452762495 -0.3695958038 0.1) (0.7485173323 -0.3015509348 0.1) (0.7474440988 -0.3241955251 0.1) (0.7608732383 -0.2681739402 0.1) (0.7716282081 -0.2686621426 0.1) (0.739396405 -0.2671961302 0.1) (0.7490510834 -0.2902465223 0.1) (0.7495931006 -0.2789575263 0.1) (0.7388610559 -0.2784714318 0.1) (0.7524947594 -0.2171966 0.1) (0.757877573 -0.2173303298 0.1) (0.7517148713 -0.2339725086 0.1) (0.7624598528 -0.2344602288 0.1) (0.7627257879 -0.2288274999 0.1) (0.7629938793 -0.2231708471 0.1) (0.7576114931 -0.2229660552 0.1) (0.7522354236 -0.2227755847 0.1) (0.7732167238 -0.2349505254 0.1) (0.7734830448 -0.2293098057 0.1) (0.7681045369 -0.2290661557 0.1) (0.7678385535 -0.2346998835 0.1) (0.6872416353 -0.2309288896 0.1) (0.6979833652 -0.2314424831 0.1) (0.6985141885 -0.2201779758 0.1) (0.6931444568 -0.2198977064 0.1) (0.6877766124 -0.2196405549 0.1) (0.7087350836 -0.2319565588 0.1) (0.7092646531 -0.2207180213 0.1) (0.7038897343 -0.2204415061 0.1) (0.7041591138 -0.2147789085 0.1) (0.7095332611 -0.215071405 0.1) (0.7826613579 -0.09392490335 0.1) (0.7772782369 -0.09367312141 0.1) (0.7718776057 -0.09345223103 0.1) (0.7715975694 -0.09919040266 0.1) (0.7532627407 -0.02471309992 0.1) (0.753752279 -0.01345350747 0.1) (0.7523007589 -0.04718925913 0.1) (0.7845244555 -0.04913423786 0.1) (0.7737896455 -0.04847731131 0.1) (0.699046682 -0.03284170811 0.1) (0.7097942635 -0.03346220815 0.1) (0.7205579854 -0.03408018361 0.1) (0.7210446918 -0.02283777458 0.1) (0.7215350601 -0.01158172627 0.1) (1.002868436 -0.3989697865 0.1) (1.001763315 -0.4218601249 0.1) (0.9582241071 -0.4251273448 0.1) (0.9593169458 -0.402325517 0.1) (0.9571704503 -0.4479470829 0.1) (0.9409352076 -0.33302948 0.1) (0.9625857143 -0.334059726 0.1) (0.9635170443 -0.3113682381 0.1) (0.9604118648 -0.3795428117 0.1) (0.9387625498 -0.3785086186 0.1) (1.025478509 -0.3771176842 0.1) (1.003973557 -0.376079448 0.1) (0.8742712244 -0.375487153 0.1) (0.9172515908 -0.3774911168 0.1) (0.9205022008 -0.3093525982 0.1) (0.919422864 -0.3320199206 0.1) (0.9328601388 -0.275995725 0.1) (0.9436053957 -0.276498476 0.1) (0.9113581555 -0.274999681 0.1) (0.9097597957 -0.3088529884 0.1) (0.9102957373 -0.297544677 0.1) (0.9353308124 -0.2246341139 0.1) (0.9350208721 -0.230639154 0.1) (0.9403846935 -0.2309381602 0.1) (0.9457386157 -0.2313177828 0.1) (0.8597671435 -0.2273664031 0.1) (0.8651158858 -0.2276666836 0.1) (0.8704622791 -0.2279948834 0.1) (0.8707535165 -0.2221491267 0.1) (1.205233868 -0.2251929374 0.1) (1.183728916 -0.2241547011 0.1) (1.182623828 -0.2470443404 0.1) (1.204128781 -0.2480825767 0.1) (1.139623913 -0.2449683501 0.1) (1.140729 -0.2220787108 0.1) (1.136308597 -0.3136383667 0.1) (1.13741367 -0.2907490271 0.1) (1.144044316 -0.1534086942 0.1) (1.145149422 -0.1305186554 0.1) (1.141834107 -0.199188672 0.1) (1.206338975 -0.2023028985 0.1) (1.184834023 -0.2012646623 0.1) (1.046171798 -0.171629408 0.1) (1.046724436 -0.1601826406 0.1) (1.078424353 -0.1731840242 0.1) (1.078976908 -0.1617389549 0.1) (1.068229422 -0.1612201777 0.1) (1.067676866 -0.1726652471 0.1) (1.080634566 -0.1274039476 0.1) (1.058587047 -0.1378112619 0.1) (1.058034496 -0.1492562313 0.1) (1.068781977 -0.1497751084 0.1) (1.079529459 -0.1502939854 0.1) (0.107382915 -0.1805608973 0.1) (0.1079284766 -0.1691984868 0.1) (0.1025054062 -0.168923952 0.1) (0.1027802224 -0.1632109579 0.1) (0.1082042578 -0.1634862402 0.1) (0.08654057401 -0.1624365361 0.1) (0.09193523336 -0.1626898762 0.1) (0.1676955566 -0.1662632062 0.1) (0.1730859245 -0.1664893077 0.1) (0.15145403 -0.1656541862 0.1) (0.1568662607 -0.1658629218 0.1) (0.1506480735 -0.1826797282 0.1) (0.1565927472 -0.1715696714 0.1) (0.1511848632 -0.1713331131 0.1) (0.01997342749 -0.176019386 0.1) (0.02041146822 -0.1646278567 0.1) (0.02089787808 -0.1532505765 0.1) (0.009668376818 -0.1525276177 0.1) (-0.00153044872 -0.1517808105 0.1) (0.07591572615 -0.1562151385 0.1) (0.06450426684 -0.1670333322 0.1) (0.06398349771 -0.1784006439 0.1) (0.1706592394 0.01658059631 0.1) (0.1703988492 0.01060650283 0.1) (0.09938977911 0.00845485375 0.1) (0.1048306662 0.008265258523 0.1) (0.105093976 0.01407171619 0.1) (0.1082690939 0.0766235757 0.1) (0.09737829268 0.07711232893 0.1) (0.1300508135 0.07563605194 0.1) (0.1306149914 0.08699005491 0.1) (0.1168539136 0.03070817418 0.1) (0.1174453976 0.04206786699 0.1) (0.106546306 0.04255702047 0.1) (0.09565676183 0.04304070718 0.1) (0.1826375 0.03904560707 0.1) (0.1717723344 0.03955314593 0.1) (0.1712058557 0.0281722226 0.1) (0.1766474211 0.02790750726 0.1) (0.1820832484 0.02766909924 0.1) (0.1609367138 0.04007127237 0.1) (0.1603692501 0.02871142105 0.1) (0.1657751329 0.02843341097 0.1) (0.1654947728 0.02270927127 0.1) (0.1600857627 0.0230054533 0.1) (0.3008633031 -0.201271152 0.1) (0.3116111225 -0.2017830372 0.1) (0.3121550343 -0.1904340628 0.1) (0.3105258409 -0.2244490714 0.1) (0.2997759756 -0.2239380886 0.1) (0.3320185315 -0.2254716982 0.1) (0.2562152986 -0.2332282802 0.1) (0.2669631662 -0.2337391666 0.1) (0.2675065958 -0.2224001805 0.1) (0.2567597752 -0.2218883436 0.1) (0.2890233549 -0.223421967 0.1) (0.2884789747 -0.234759906 0.1) (0.2906584792 -0.1894292703 0.1) (0.2901113437 -0.2007620705 0.1) (0.2873907792 -0.2574448217 0.1) (0.2879354487 -0.2461008897 0.1) (0.2771744515 -0.245592373 0.1) (0.2777160281 -0.234250294 0.1) (0.2798879138 -0.1889323057 0.1) (0.2804242708 -0.1776361284 0.1) (0.275039307 -0.1774017778 0.1) (0.2753042446 -0.1718104489 0.1) (0.2806886725 -0.1720351624 0.1) (0.259197545 -0.1710008974 0.1) (0.2645663068 -0.1712805193 0.1) (0.3398641866 -0.1743853038 0.1) (0.3452154866 -0.1746948184 0.1) (0.3237606684 -0.1734683808 0.1) (0.3291323455 -0.1737705695 0.1) (0.3229045621 -0.1909520374 0.1) (0.3282794465 -0.1912085276 0.1) (0.3285551409 -0.1854980789 0.1) (0.3231806953 -0.1852324992 0.1) (0.1938035324 -0.1847482105 0.1) (0.1943545264 -0.1733562276 0.1) (0.1889649481 -0.1730722968 0.1) (0.1892469278 -0.1672938721 0.1) (0.1946362795 -0.1675824973 0.1) (0.1784691517 -0.1667388922 0.1) (0.2538228431 -0.1707198875 0.1) (0.2376741284 -0.1698681608 0.1) (0.2430556726 -0.1701526047 0.1) (0.2368660718 -0.1868542556 0.1) (0.242786032 -0.1757998719 0.1) (0.2374048984 -0.175527662 0.1) (0.3442172094 0.008494242405 0.1) (0.3439464501 0.002823802211 0.1) (0.2788289121 0.00411405142 0.1) (0.2791454507 0.01052534591 0.1) (0.2819367047 0.06836122987 0.1) (0.2710879201 0.06889701165 0.1) (0.3035970757 0.06728645636 0.1) (0.3052293138 0.1013023192 0.1) (0.3046827431 0.08996048131 0.1) (0.2903076242 0.01652225175 0.1) (0.2848798353 0.01661610395 0.1) (0.2911385097 0.03381530279 0.1) (0.2857233824 0.0340677289 0.1) (0.2854474517 0.02835238584 0.1) (0.2908568753 0.02810624209 0.1) (0.2694384469 0.03485595064 0.1) (0.2691612624 0.02911463783 0.1) (0.2745939347 0.02885235417 0.1) (0.2748707816 0.03458667513 0.1) (0.3561182863 0.03058403865 0.1) (0.3452945829 0.03114163632 0.1) (0.3447572567 0.01982538242 0.1) (0.3501723563 0.01953090872 0.1) (0.3555788038 0.01924386088 0.1) (0.3344687373 0.03169633394 0.1) (0.3339323755 0.02040005676 0.1) (0.339341916 0.02011486193 0.1) (0.3390735492 0.01447323989 0.1) (0.3336669707 0.01477831501 0.1) (0.2035498626 0.02106723905 0.1) (0.1981148756 0.02128157855 0.1) (0.2043784463 0.03804303199 0.1) (0.1935079972 0.03854481895 0.1) (0.1929519065 0.02719242787 0.1) (0.1983918256 0.02695582464 0.1) (0.2038267023 0.02671846367 0.1) (0.1875167405 0.02742379581 0.1) (0.264018663 0.03511560972 0.1) (0.2637417678 0.02938028993 0.1) (0.2477831665 0.0359324807 0.1) (0.2475173206 0.03021865309 0.1) (0.2529260552 0.02993750182 0.1) (0.2532010835 0.03565489078 0.1) (0.2523597131 0.01818614094 0.1) (0.2469403293 0.01861998337 0.1) (0.2396870194 0.09317249206 0.1) (0.2402358772 0.1045202265 0.1) (0.2385817473 0.07048639847 0.1) (0.2602569218 0.06942793007 0.1) (0.4943267806 -0.2105322714 0.1) (0.4937885176 -0.2218264544 0.1) (0.5045373359 -0.2223383878 0.1) (0.4400217906 -0.2192586865 0.1) (0.450780549 -0.219772101 0.1) (0.451322401 -0.2084450527 0.1) (0.4593659821 -0.2655503725 0.1) (0.4599066424 -0.2542272714 0.1) (0.4383994377 -0.2532149567 0.1) (0.4413937645 -0.1907580895 0.1) (0.4416924584 -0.184799361 0.1) (0.4363046042 -0.1845626683 0.1) (0.4309157192 -0.1843887991 0.1) (0.5168727747 -0.1891779582 0.1) (0.5115076356 -0.188864772 0.1) (0.5061446292 -0.1885488854 0.1) (0.50587989 -0.1941568432 0.1) (0.3607402008 -0.1871027986 0.1) (0.3612946765 -0.1756386996 0.1) (0.3505666565 -0.1750070299 0.1) (0.4255250121 -0.18427341 0.1) (0.4201342525 -0.1841798438 0.1) (0.4198576853 -0.1899083715 0.1) (0.5062091328 0.0002090039381 0.1) (0.5059395555 -0.005457688899 0.1) (0.5056785296 -0.01115462929 0.1) (0.511075987 -0.01142051898 0.1) (0.5108075111 -0.01712661077 0.1) (0.5054045978 -0.01691151708 0.1) (0.5215989508 -0.01762668568 0.1) (0.4464031781 -0.008093646445 0.1) (0.4517777082 -0.00844042462 0.1) (0.4520534598 -0.002708053119 0.1) (0.4549464661 0.05955797806 0.1) (0.444160815 0.06011574095 0.1) (0.4764961176 0.05842948126 0.1) (0.4770218918 0.06975530337 0.1) (0.4636149679 0.01373765177 0.1) (0.4641393575 0.02505553141 0.1) (0.4533657888 0.02561471329 0.1) (0.4425821836 0.02617337856 0.1) (0.5185449331 0.03354281784 0.1) (0.5293196314 0.03296556045 0.1) (0.4969973757 0.03467321587 0.1) (0.4954474972 0.0007665084285 0.1) (0.4959621257 0.01206884069 0.1) (0.3769299035 0.01238527245 0.1) (0.371530854 0.01263892467 0.1) (0.3777393512 0.02948313019 0.1) (0.3669440355 0.03002734336 0.1) (0.3664095816 0.01866689953 0.1) (0.3718100844 0.01838113987 0.1) (0.3772080868 0.01812653703 0.1) (0.3609928081 0.01894743774 0.1) (0.4317863513 0.02672762833 0.1) (0.4209848153 0.02728816045 0.1) (0.4204574292 0.01597042548 0.1) (0.4258621202 0.01568846827 0.1) (0.4255959644 0.01000969639 0.1) (0.4201901781 0.01028970415 0.1) (0.4122882152 0.07312786427 0.1) (0.4117524044 0.06180152555 0.1) (0.4333625166 0.06068112258 0.1) (0.6665721279 -0.2128971707 0.1) (0.6719458483 -0.2131155604 0.1) (0.6657581133 -0.2299237252 0.1) (0.6765006148 -0.2304213373 0.1) (0.6770394083 -0.2191161671 0.1) (0.6716678579 -0.2188528297 0.1) (0.6662954739 -0.2186274963 0.1) (0.6824117784 -0.2193625243 0.1) (0.6120361959 -0.2274231964 0.1) (0.6125747688 -0.216164069 0.1) (0.6072050714 -0.2159038246 0.1) (0.6227651821 -0.2279311688 0.1) (0.6232953303 -0.2166806452 0.1) (0.6179355249 -0.2164228807 0.1) (0.6182020731 -0.2107981906 0.1) (0.6235604939 -0.2110638976 0.1) (0.6313652745 -0.2735509629 0.1) (0.6319015881 -0.2622556846 0.1) (0.6104265734 -0.2612609426 0.1) (0.6131111843 -0.2048874173 0.1) (0.6133816735 -0.1992225706 0.1) (0.6082959915 -0.1931624746 0.1) (0.6029326843 -0.1927906085 0.1) (0.6779296598 -0.2013607409 0.1) (0.677614236 -0.2074586245 0.1) (0.5273595307 -0.1952631381 0.1) (0.527615351 -0.1897569686 0.1) (0.5222413925 -0.1894813007 0.1) (0.5975673601 -0.1924190454 0.1) (0.5922020311 -0.1920475822 0.1) (0.5919081945 -0.1979471761 0.1) (0.5916251683 -0.2037472756 0.1) (0.6785228715 -0.009117091995 0.1) (0.6780273209 -0.02037679465 0.1) (0.6775391962 -0.03162784533 0.1) (0.6882880658 -0.03224240058 0.1) (0.6183598816 -0.02838177833 0.1) (0.6237431052 -0.02867291099 0.1) (0.6344901646 -0.02926275019 0.1) (0.6349914134 -0.01798870564 0.1) (0.6354954417 -0.006719300516 0.1) (0.8493174845 -0.220969049 0.1) (0.8490141919 -0.2269193459 0.1) (0.854398252 -0.2271102022 0.1) (0.7785951352 -0.235196173 0.1) (0.7788622139 -0.2295604958 0.1) (0.7896095993 -0.2300813705 0.1) (0.7893441946 -0.2357031123 0.1) (0.79016175 -0.2186446914 0.1) (0.8027916 -0.2926728617 0.1) (0.8022569466 -0.3039752283 0.1) (0.8038563052 -0.2701219692 0.1) (0.7823821791 -0.2691502968 0.1) (0.7850972357 -0.2123949956 0.1) (0.785405294 -0.2063874619 0.1) (0.6990686691 -0.208713777 0.1) (0.6993613917 -0.2028372562 0.1) (0.7638508948 -0.2057513089 0.1) (0.7635569804 -0.2116317769 0.1) (0.8288601162 -0.01804766034 0.1) (0.8283650003 -0.0293190976 0.1) (0.8278896579 -0.0405749703 0.1) (0.838607624 -0.0412697286 0.1) (0.8381375404 -0.05249962466 0.1) (0.8274222043 -0.05181260219 0.1) (0.8702384249 -0.05464511433 0.1) (0.8595470549 -0.0539179008 0.1) (0.7952507003 -0.04978194065 0.1) (0.8167019609 -0.05112354069 0.1) (0.8181414853 -0.01738741012 0.1) (0.8176516433 -0.02865329525 0.1) (0.7931501112 -0.1001553486 0.1) (0.793393773 -0.0945277515 0.1) (0.7880295652 -0.09421601186 0.1) (1.016619091 -0.2217784377 0.1) (1.016800845 -0.2161474513 0.1) (1.015949845 -0.2389584519 0.1) (1.016196871 -0.2332196878 0.1) (1.032099393 -0.2397721746 0.1) (1.021589335 -0.2335060605 0.1) (1.021332561 -0.2392393482 0.1) (0.9510847125 -0.2317350719 0.1) (0.9749911844 -0.3003196992 0.1) (0.9744996599 -0.3116411678 0.1) (0.9760593201 -0.2777599617 0.1) (0.9543443703 -0.2770069306 0.1) (0.9526335632 -0.1388111545 0.1) (0.9632489495 -0.1397020944 0.1) (0.9738722928 -0.1405941192 0.1) (0.9741470401 -0.1298019628 0.1) (0.9744611263 -0.1189207798 0.1) (1.034287643 -0.1940322845 0.1) (1.023487437 -0.1935686292 0.1) (1.023159014 -0.1993343996 0.1) (1.017700052 -0.1991811751 0.1) (1.018039004 -0.1934047 0.1) (1.017018959 -0.2105928071 0.1) (0.932062615 -0.1151712038 0.1) (0.9316979623 -0.1261666012 0.1) (0.9366806357 -0.1375123491 0.1) (0.9419979887 -0.1379443693 0.1) (0.1419439138 -0.3644824978 0.1) (0.1203452983 -0.3634557582 0.1) (0.09875291692 -0.3624243138 0.1) (0.08040613449 -0.2931279621 0.1) (0.1020063653 -0.2941647913 0.1) (0.09983678666 -0.3396631007 0.1) (0.07823901504 -0.3386333984 0.1) (0.1430335836 -0.3417255694 0.1) (0.01312140576 -0.3354285183 0.1) (-0.008659341823 -0.3343148947 0.1) (0.05651189072 -0.3375664149 0.1) (0.05867101261 -0.2920565879 0.1) (0.08357307657 -0.2249183261 0.1) (0.07271010168 -0.2243778546 0.1) (0.06184442993 -0.2238372528 0.1) (0.05092529636 -0.2232800537 0.1) (0.04154800988 -0.1886175288 0.1) (0.05251332065 -0.1891949783 0.1) (0.05145605109 -0.211917429 0.1) (0.04055498958 -0.2113570977 0.1) (0.08410358675 -0.213558693 0.1) (0.07324510663 -0.2130184385 0.1) (0.01857882118 -0.210170966 0.1) (0.01902033511 -0.1987780025 0.1) (0.008009267399 -0.1981633032 0.1) (-0.003062080664 -0.1975046458 0.1) (0.02963239111 -0.2107887185 0.1) (0.03051252921 -0.1880066566 0.1) (0.01447118702 -0.02906058166 0.1) (0.01472021552 -0.02303357872 0.1) (0.2454584896 -0.2327159611 0.1) (0.2346946888 -0.2322033043 0.1) (0.2239418752 -0.2316911781 0.1) (0.2148079911 -0.1971485301 0.1) (0.2255724532 -0.1976682269 0.1) (0.2244865447 -0.2203472461 0.1) (0.2137218415 -0.2198325435 0.1) (0.2460030144 -0.2213750256 0.1) (0.1813949631 -0.2182828489 0.1) (0.1706193692 -0.2177656181 0.1) (0.2029442016 -0.2193162151 0.1) (0.2040295935 -0.1966271594 0.1) (0.6652319306 0.1732557055 0.1) (0.6641904254 0.1505425054 0.1) (0.6631579719 0.1278508939 0.1) (0.6846563519 0.126655792 0.1) (0.6427066078 0.1517489181 0.1) (0.6437434907 0.1744493263 0.1) (0.6406157931 0.1063889715 0.1) (0.6263475902 0.2673426661 0.1) (0.6243309385 0.2210877122 0.1) (0.5792018944 0.1779848141 0.1) (0.719102432 -0.06783726559 0.1) (0.7244757932 -0.06814604319 0.1) (0.7242067621 -0.07384289745 0.1) (0.7403534737 -0.07467390342 0.1) (0.7349748007 -0.07439220117 0.1) (0.6975917507 -0.0665859051 0.1) (0.7029696907 -0.06688278967 0.1) (0.7083435638 -0.06720170374 0.1) (0.7085975171 -0.06154757209 0.1) (0.955043421 -0.07232691717 0.1) (0.9444280347 -0.07143597731 0.1) (0.9439717269 -0.08265011935 0.1) (0.954585265 -0.08353786637 0.1) (0.9226997338 -0.08093402841 0.1) (0.9231521482 -0.06973832006 0.1) (0.921822856 -0.1032649226 0.1) (0.9144530061 -0.02376463778 0.1) (0.9134480799 -0.04642524068 0.1) (0.9337928128 -0.07058262465 0.1) (0.8809302633 -0.05538336328 0.1) (0.8916075876 -0.05613192432 0.1) (0.8911453982 -0.06736420384 0.1) (0.1284827797 -0.1929758347 0.1) (0.1393098792 -0.1935045626 0.1) (0.138227098 -0.2162017537 0.1) (0.1274018516 -0.2156761188 0.1) (0.1598308385 -0.2172467617 0.1) (0.0943963288 -0.2254458671 0.1) (0.09493263567 -0.2140885162 0.1) (0.1165846923 -0.215148872 0.1) (0.1160445347 -0.2265030334 0.1) (0.1176647662 -0.1924455432 0.1) (0.1052263283 -0.2259767373 0.1) (0.01037208211 -0.1296362206 0.1) (0.01055170777 -0.1239062164 0.1) (0.004914762334 -0.1176970636 0.1) (-0.000877074046 -0.1171949811 0.1) (0.03319912232 -0.1252195654 0.1) (0.0330146855 -0.1310181174 0.1) (0.04035606135 0.0339669038 0.1) (0.04165963733 0.05673953531 0.1) (0.008640665421 0.05797924391 0.1) (0.01966633609 0.05757908998 0.1) (0.08475309277 0.04352007001 0.1) (0.07386720987 0.04399456948 0.1) (0.07322571166 0.03262127267 0.1) (0.06540611524 0.08995105243 0.1) (0.06480182198 0.07857696057 0.1) (0.08650387233 0.07760029131 0.1) (0.6870626534 -0.06036162155 0.1) (0.6867996291 -0.06603774136 0.1) (0.6921978154 -0.06630927276 0.1) (0.6597855214 -0.0649735081 0.1) (0.665186789 -0.06518121384 0.1) (0.6654878804 -0.0593594603 0.1) (0.6657703581 -0.05361219582 0.1) (0.6160195568 0.03962339547 0.1) (0.6267751669 0.03902403285 0.1) (0.6375246532 0.03844298684 0.1) (0.657514169 0.003361223062 0.1) (0.6467515188 0.003959924405 0.1) (0.6370126354 0.02713251922 0.1) (0.6365084293 0.01583869427 0.1) (0.6472591416 0.01524157043 0.1) (0.6580177964 0.01464306198 0.1) (0.6155058307 0.02831901731 0.1) (0.626264582 0.02772250653 0.1) (0.6795255379 0.01343449304 0.1) (0.6902791985 0.0128362257 0.1) (0.7010305583 0.012211038 0.1) (0.6687746465 0.01404864532 0.1) (0.6682678779 0.002763954561 0.1) (0.5714010227 0.008069314988 0.1) (0.5606362645 0.008645091312 0.1) (0.5616579028 0.03123710851 0.1) (0.5724256092 0.03066018869 0.1) (0.5401027061 0.03239590797 0.1) (0.6052590834 0.04020497192 0.1) (0.6047464526 0.02890254321 0.1) (0.5831872262 0.03008156052 0.1) (0.5837048512 0.04138374811 0.1) (0.5821599324 0.007496824511 0.1) (0.5944760707 0.04079664702 0.1) (0.8300189735 -0.1194000064 0.1) (0.8354179475 -0.1196344827 0.1) (0.8356721603 -0.1139749773 0.1) (0.8359093917 -0.1083561503 0.1) (0.9095252993 -0.1467765215 0.1) (0.9042049408 -0.1463652806 0.1) (0.8943851765 -0.1233126851 0.1) (0.8941959194 -0.1288295168 0.1) (0.9102011782 -0.1299982945 0.1) (0.904879112 -0.1296016883 0.1) (-0.09043137708 -0.1199413195 0.1) (-0.07966353957 -0.1206731258 0.1) (-0.07922358444 -0.109032499 0.1) (-0.08993387629 -0.108435925 0.1) (-0.05775518372 -0.1103487962 0.1) (-0.0579082898 -0.1225490066 0.1) (-0.05676252276 -0.07287881967 0.1) (-0.05721065084 -0.08561568068 0.1) (-0.04676200289 -0.1715959724 0.1) (-0.04639284161 -0.1600965961 0.1) (-0.05747099395 -0.159255999 0.1) (-0.05769536633 -0.1708918162 0.1) (-0.05764604095 -0.1351873564 0.1) (-0.04638082759 -0.1363941001 0.1) (-0.09084595917 -0.1316370339 0.1) (-0.07989083264 -0.1327427068 0.1) (-0.01245034175 -0.1277715908 0.1) (-0.01275634524 -0.1392835274 0.1) (-0.001151162532 -0.1403439952 0.1) (-0.03502845696 -0.13755199 0.1) (-0.0357474238 -0.1723390905 0.1) (-0.03546326133 -0.1607961646 0.1) (-0.01559905793 0.02436103931 0.1) (-0.01634812771 0.01288931539 0.1) (-0.01724090079 0.001317304563 0.1) (-0.006121153714 0.001063284017 0.1) (-0.08559873665 -0.02178606949 0.1) (-0.07481925905 -0.02211917331 0.1) (-0.0741434574 -0.01053718792 0.1) (-0.08489967844 -0.01014333492 0.1) (-0.05206073006 -0.0105115484 0.1) (-0.05310345066 -0.02255788016 0.1) (-0.04878387459 0.02516543896 0.1) (-0.04976493147 0.01345902907 0.1) (-0.05597048932 -0.05948448382 0.1) (-0.05397934371 -0.03445628471 0.1) (-0.08631085501 -0.03349194773 0.1) (-0.07558046186 -0.03390027207 0.1) (0.05523597826 0.004748460391 0.1) (0.04972179531 0.004991752619 0.1) (0.06625042915 0.004207984258 0.1) (0.06653610942 0.01000084735 0.1) (0.07200743884 0.009761626374 0.1) (0.0207018766 -0.01728314097 0.1) (0.02145506884 -0.005466814937 0.1) (0.004112812308 -0.01082135271 0.1) (0.009685343278 -0.01102731521 0.1) (0.01536144386 -0.01115988674 0.1) (0.01581504325 -0.005302245814 0.1) (0.04330595584 -0.01239578639 0.1) (0.03777801445 -0.01214922689 0.1) (0.03757406719 -0.01819222238 0.1) (0.03837025755 -0.0003445530013 0.1) (0.03881390425 0.005466613805 0.1) (0.0442656441 0.005238450357 0.1) (0.2355418636 0.008392350207 0.1) (0.2358174684 0.01387283575 0.1) (0.2141230754 0.01507239506 0.1) (0.2138447827 0.009598446745 0.1) (0.4088741125 -0.0005329948815 0.1) (0.4091428971 0.005179489457 0.1) (0.3874682735 0.006207896311 0.1) (0.3871888213 0.0004610864641 0.1) (0.5806178608 -0.02639334015 0.1) (0.5701180191 -0.02016446204 0.1) (0.5797651793 -0.0436816346 0.1) (0.5800565771 -0.03787403007 0.1) (0.5746492833 -0.03768745832 0.1) (0.5692424585 -0.03753264614 0.1) (0.6124448432 -0.03943790142 0.1) (0.6070608722 -0.03916225072 0.1) (0.6016765352 -0.03891491533 0.1) (0.6013830138 -0.04470429624 0.1) (0.5638481145 -0.03730595219 0.1) (0.558480214 -0.03694627871 0.1) (0.5581542188 -0.04291059717 0.1) (0.5542301525 -0.01364021482 0.1) (0.5539690192 -0.01929790437 0.1) (0.5647395678 -0.01987816514 0.1) (0.7302436109 -0.2329829537 0.1) (0.7409868219 -0.2334866071 0.1) (0.7415140629 -0.2223170375 0.1) (0.7361450268 -0.2220638331 0.1) (0.7307706728 -0.2217963557 0.1) (0.746872594 -0.222559723 0.1) (0.7471304349 -0.2170117023 0.1) (0.7506588391 -0.2564267069 0.1) (0.7511883604 -0.2451891682 0.1) (0.7625761722 -0.05904135671 0.1) (0.7621124427 -0.0702433267 0.1) (0.772392315 -0.08210675247 0.1) (0.7618708895 -0.07586872289 0.1) (0.7457340143 -0.07495839898 0.1) (0.7564978272 -0.0755537525 0.1) (0.7567352983 -0.06992996132 0.1) (0.9026678008 -0.2300052617 0.1) (0.9080368851 -0.2302574673 0.1) (0.9134198294 -0.2304092243 0.1) (0.9136546346 -0.225027286 0.1) (0.9226227042 -0.2642694052 0.1) (0.9231390201 -0.2530772825 0.1) (0.9129168847 -0.2414488143 0.1) (0.923397612 -0.2474722317 0.1) (0.939542497 -0.2482166488 0.1) (0.9449109545 -0.2484818392 0.1) (0.928789153 -0.2477155097 0.1) (0.9285285634 -0.2533204642 0.1) (0.8796398441 -0.2622963571 0.1) (0.8801625387 -0.2510965331 0.1) (0.8699182432 -0.239387903 0.1) (0.8914433854 -0.2404641572 0.1) (0.8922066166 -0.2238466295 0.1) (0.8919549272 -0.2293709193 0.1) (0.8973123077 -0.2296996495 0.1) (0.1244133319 -0.1643319706 0.1) (0.1298279245 -0.1646162079 0.1) (0.1136190384 -0.163766582 0.1) (0.1133447721 -0.1694681894 0.1) (0.0873215391 -0.1451157455 0.1) (0.09280006488 -0.145160287 0.1) (0.09826094553 -0.1452530337 0.1) (0.09860965154 -0.1390671526 0.1) (0.1457905572 -0.1710848959 0.1) (0.1460598934 -0.1654231973 0.1) (0.1352556418 -0.1648981755 0.1) (0.03752028634 -0.1542009607 0.1) (0.032000207 -0.153897314 0.1) (0.02152973277 -0.1361296278 0.1) (0.02716002228 -0.1364668283 0.1) (0.03229305376 -0.1482152253 0.1) (0.0325118627 -0.142501029 0.1) (0.02694070289 -0.1421833026 0.1) (0.02137804422 -0.141863684 0.1) (0.03778935668 -0.1485095147 0.1) (0.01007724951 -0.1411160585 0.1) (0.004431813679 -0.1407205599 0.1) (0.01574648936 -0.1415049975 0.1) (0.01591956056 -0.1357821856 0.1) (0.07667097725 -0.1390536933 0.1) (0.07642163352 -0.1447720219 0.1) (0.08186164081 -0.1450047249 0.1) (0.0435784342 -0.1430651461 0.1) (0.04909481597 -0.143306442 0.1) (0.05457007603 -0.1435285326 0.1) (0.05485020448 -0.1376287774 0.1) (0.0540356595 -0.1550706896 0.1) (0.1486552221 0.01217566633 0.1) (0.1489660694 0.0178676985 0.1) (0.1271925057 0.01881678424 0.1) (0.1268962185 0.01305306655 0.1) (0.1266108047 0.00722424878 0.1) (0.1320580847 0.006912002579 0.1) (0.2968723851 -0.1724108229 0.1) (0.3022564717 -0.1725181834 0.1) (0.2860856783 -0.1722067206 0.1) (0.290933938 -0.18374444 0.1) (0.2912057823 -0.178051526 0.1) (0.2858160426 -0.1778538879 0.1) (0.3178061918 -0.1849681182 0.1) (0.3175301117 -0.1906865576 0.1) (0.3183884899 -0.17317658 0.1) (0.3076388085 -0.1726825258 0.1) (0.2107845023 -0.1684444121 0.1) (0.2161759046 -0.1687320351 0.1) (0.2000167284 -0.1678688907 0.1) (0.1997370784 -0.1736197958 0.1) (0.2320327108 -0.1752567851 0.1) (0.2323045558 -0.1695845952 0.1) (0.221560426 -0.1690170232 0.1) (0.3223276372 0.004448311225 0.1) (0.3225751559 0.009865477487 0.1) (0.300889159 0.01074125523 0.1) (0.3006358462 0.005287025256 0.1) (0.3127960565 0.03278571805 0.1) (0.3019673795 0.03330250809 0.1) (0.3014236263 0.02197755399 0.1) (0.3068375412 0.0217622295 0.1) (0.3122577109 0.02151056111 0.1) (0.2905894863 0.0223604517 0.1) (0.2960083128 0.02216391222 0.1) (0.2957330916 0.01644252792 0.1) (0.2922282688 0.05649113252 0.1) (0.2916840816 0.04515718889 0.1) (0.2803007467 0.03433052916 0.1) (0.3355464827 0.05433069475 0.1) (0.3350079165 0.04300949489 0.1) (0.3236306644 0.03224661604 0.1) (0.3282503075 0.01508187468 0.1) (0.3230951224 0.02096731908 0.1) (0.3285150854 0.02069063156 0.1) (0.3176804913 0.02125075736 0.1) (0.2260832278 0.0370171738 0.1) (0.2152316258 0.03753607181 0.1) (0.2146769474 0.02623367078 0.1) (0.2201055417 0.02599060614 0.1) (0.225533027 0.02572456825 0.1) (0.2092515907 0.02648158494 0.1) (0.2089746201 0.0208483876 0.1) (0.2054870387 0.06071494898 0.1) (0.2049326219 0.04937649339 0.1) (0.248875502 0.05862020002 0.1) (0.2483260794 0.04728150332 0.1) (0.2586105897 0.0353897209 0.1) (0.2369287747 0.03647654251 0.1) (0.2415115841 0.01906729291 0.1) (0.2363724085 0.0251391822 0.1) (0.2417912346 0.02479747385 0.1) (0.2472246231 0.02446707642 0.1) (0.2309560828 0.02544973373 0.1) (0.4739120842 -0.1866420243 0.1) (0.4685432054 -0.1863233514 0.1) (0.4631792628 -0.1860061181 0.1) (0.4628892178 -0.1918686518 0.1) (0.4843819941 -0.1930139254 0.1) (0.4846598254 -0.1872799524 0.1) (0.4792839547 -0.1869609419 0.1) (0.3878700075 -0.1828258973 0.1) (0.3824985337 -0.1825402376 0.1) (0.3771270888 -0.1822539786 0.1) (0.3768569612 -0.1879113341 0.1) (0.3983492286 -0.1889841989 0.1) (0.3986134278 -0.1833874281 0.1) (0.3932415682 -0.1831097591 0.1) (0.4892407572 -0.01610351186 0.1) (0.5000057853 -0.0166736947 0.1) (0.5008272221 0.0004858566747 0.1) (0.5005616113 -0.005181628356 0.1) (0.4736041789 -0.003876648054 0.1) (0.4733125593 -0.009688847229 0.1) (0.4787136383 -0.009879724289 0.1) (0.4841199146 -0.01008737149 0.1) (0.6348174428 -0.2004910385 0.1) (0.6345614976 -0.2060205291 0.1) (0.6560919973 -0.2068199195 0.1) (0.6563694862 -0.2010930381 0.1) (0.5599868158 -0.1900513528 0.1) (0.5545955975 -0.1899465514 0.1) (0.5491919484 -0.1899748054 0.1) (0.5488975958 -0.1958850868 0.1) (0.548614589 -0.2016847868 0.1) (0.5701285998 -0.2026183381 0.1) (0.5704245975 -0.1966947204 0.1) (0.570737155 -0.1905939953 0.1) (0.5653658878 -0.1902833165 0.1) (0.6337076437 -0.04625908831 0.1) (0.6283275336 -0.04600715139 0.1) (0.6234872651 -0.03432464887 0.1) (0.6232237876 -0.04001015775 0.1) (0.6286002797 -0.04029555913 0.1) (0.6339778279 -0.04055908599 0.1) (0.6181040849 -0.03403261726 0.1) (0.6560203862 -0.03044116811 0.1) (0.6452455185 -0.02984668251 0.1) (0.6447437247 -0.04113201391 0.1) (0.6501386547 -0.0414295185 0.1) (0.6555284837 -0.04170825528 0.1) (0.6393540597 -0.0408498811 0.1) (0.6390863939 -0.04653919243 0.1) (0.6441813554 -0.05261445352 0.1) (0.6438579064 -0.05852603341 0.1) (0.6222973836 -0.05756050195 0.1) (0.6226295364 -0.05161380092 0.1) (0.8166942281 -0.2258485419 0.1) (0.8220694363 -0.2261190641 0.1) (0.8274501347 -0.2263588152 0.1) (0.8276996197 -0.2208594481 0.1) (0.8366503158 -0.2603370034 0.1) (0.8371744432 -0.2491282381 0.1) (0.8269365332 -0.2374739792 0.1) (0.8484585003 -0.2383878914 0.1) (0.7936521698 -0.2583902488 0.1) (0.7941791148 -0.2471645997 0.1) (0.7839720173 -0.2354527597 0.1) (0.805427992 -0.2364686081 0.1) (0.8062139491 -0.2196499424 0.1) (0.8059504938 -0.2252727794 0.1) (0.8113197433 -0.2255630372 0.1) (0.8144055885 -0.1071282188 0.1) (0.8141212391 -0.1128727799 0.1) (0.7208098417 -0.2044237055 0.1) (0.7205446878 -0.2100402533 0.1) (0.7420208445 -0.2113016606 0.1) (0.7422596064 -0.2059207142 0.1) (0.8260589234 -0.08535888857 0.1) (0.8153230512 -0.08468248814 0.1) (0.8148879492 -0.09585140017 0.1) (0.820258247 -0.09618215561 0.1) (0.8256224409 -0.09651491904 0.1) (0.8041449212 -0.09517805822 0.1) (0.8095167055 -0.09551949778 0.1) (0.8092868291 -0.1011311411 0.1) (0.8055030205 -0.06165615033 0.1) (0.8050425858 -0.07283134806 0.1) (0.7938535319 -0.08334581334 0.1) (0.9656303148 -0.2662897018 0.1) (0.9661384814 -0.2551212136 0.1) (0.9607614064 -0.2548686223 0.1) (0.9610183105 -0.2492985307 0.1) (0.966395048 -0.2495581139 0.1) (0.9502772213 -0.2487509285 0.1) (0.982751414 -0.2492815414 0.1) (0.988787643 -0.248095245 0.1) (0.9717745824 -0.2497597645 0.1) (0.9715181122 -0.2553208666 0.1) (0.983866949 -0.1683604925 0.1) (0.98367298 -0.1738919741 0.1) (0.9889226961 -0.1744599908 0.1) (0.9940505485 -0.1753125619 0.1) (0.9624848159 -0.166872756 0.1) (0.9626663071 -0.1613508839 0.1) (0.9412580778 -0.1599889352 0.1) (0.9410099583 -0.1656466524 0.1) (0.9206901268 -0.1363076409 0.1) (0.9200145391 -0.1531420473 0.1) (0.9202708801 -0.1474591974 0.1) (0.9148959449 -0.1471208094 0.1) (0.9418332058 -0.1434104822 0.1) (0.9416693977 -0.1488771428 0.1) (0.9470016886 -0.1492693369 0.1) (0.9523292216 -0.1496563956 0.1) (0.9365108249 -0.1429789202 0.1) (0.9361193599 -0.1540527259 0.1) (1.196393028 -0.4083129484 0.1) (1.153393112 -0.4062369581 0.1) (1.113698524 -0.3354904689 0.1) (1.135203476 -0.3365287052 0.1) (1.134098355 -0.3594190437 0.1) (1.112593403 -0.3583808074 0.1) (1.111488329 -0.3812701471 0.1) (1.046983461 -0.3781559205 0.1) (1.089983377 -0.3802319108 0.1) (1.092193572 -0.3344522327 0.1) (1.117013839 -0.2668204523 0.1) (1.095508887 -0.2657822161 0.1) (1.076214139 -0.2189641019 0.1) (1.075661593 -0.2304089715 0.1) (1.075109056 -0.2418536413 0.1) (1.074556472 -0.25329931 0.1) (1.042304086 -0.2517411978 0.1) (1.06380899 -0.2527804329 0.1) (1.065466633 -0.2184457243 0.1) (1.064914111 -0.2298900945 0.1) (1.214074713 -0.04207282645 0.1) (1.171074797 -0.03999683615 0.1) (1.125854679 -0.08370044129 0.1) (1.147359631 -0.08473867756 0.1) (1.146254529 -0.1076286165 0.1) (1.132485296 0.0536392923 0.1) (1.130275101 0.007859614165 0.1) (1.064665112 -0.01191649775 0.1) (1.086160076 -0.01295425179 0.1) (1.085054988 -0.03584389109 0.1) (0.8483822672 -0.06442743053 0.1) (0.8479340548 -0.07559831263 0.1) (0.8367724746 -0.08606214386 0.1) (0.8363478424 -0.0972008256 0.1) (0.8361299846 -0.1027709001 0.1) (0.830987624 -0.09684793046 0.1) (0.9997342847 -0.03000519761 0.1) (0.9985482598 -0.05311969548 0.1) (0.976234277 -0.0742097895 0.1) (0.9853744214 -0.1089752986 0.1) (0.9752687605 -0.09675916343 0.1) (0.9858134031 -0.09780897667 0.1) (0.9541172906 -0.0947862857 0.1) (0.9647061014 -0.09575072953 0.1) (-0.0466142108 -0.09931020252 0.1) (-0.03567460361 -0.1004718922 0.1) (-0.03568327817 -0.0941339003 0.1) (-0.03031235639 -0.09451394318 0.1) (-0.03017617791 -0.1010747429 0.1) (-0.030076754 -0.07414123808 0.1) (-0.03030857341 -0.08093366638 0.1) (-0.02374413728 -0.1267668037 0.1) (-0.02393571819 -0.1206733761 0.1) (-0.02414873664 -0.1144931137 0.1) (-0.02968066159 -0.113997272 0.1) (-0.02969460953 -0.1079530676 0.1) (-0.02412505005 -0.1085341232 0.1) (-0.03516645422 -0.107492264 0.1) (-0.00697078691 -0.110559806 0.1) (-0.01861651578 -0.1090271336 0.1) (-0.01806544063 -0.1273061737 0.1) (-0.01816367131 -0.1213300842 0.1) (-0.008074963839 -0.02228205769 0.1) (-0.008513326531 -0.02815174739 0.1) (-0.009073339663 -0.03414811815 0.1) (-0.003307271747 -0.03426591096 0.1) (-0.04407764275 -0.04677450312 0.1) (-0.03319179254 -0.04690129649 0.1) (-0.03265525372 -0.04076903564 0.1) (-0.02713400311 -0.04077469223 0.1) (-0.02777228873 -0.04705892337 0.1) (-0.02636089151 -0.03441437425 0.1) (-0.02060267283 -0.03422733391 0.1) (-0.02960650233 -0.06681058147 0.1) (-0.028311991 -0.05327122478 0.1) (-0.03370435044 -0.05307185833 0.1) (0.4193375016 -0.007164383423 0.1) (0.4247330247 -0.00744960232 0.1) (0.4298370867 -0.01352300009 0.1) (0.5582825363 -0.2248750815 0.1) (0.5690354946 -0.2253842113 0.1) (0.5695738541 -0.2140880305 0.1) (0.5641982602 -0.2138254991 0.1) (0.5588209923 -0.2135769031 0.1) (0.5749498338 -0.2143425713 0.1) (0.5752221755 -0.2086600934 0.1) (0.5787136491 -0.2484667728 0.1) (0.579251671 -0.2371775839 0.1) (0.5357018021 -0.2464512775 0.1) (0.5362402098 -0.235154098 0.1) (0.5475293852 -0.2243699471 0.1) (0.5480666011 -0.2130767146 0.1) (0.5483387981 -0.2073972332 0.1) (0.5534440619 -0.2133213153 0.1) (0.7076720318 -0.2544524671 0.1) (0.7082043223 -0.2431990435 0.1) (0.7194897984 -0.2324707792 0.1) (0.7149075048 -0.2153619039 0.1) (0.7200171153 -0.2212581632 0.1) (0.7146410047 -0.2209855951 0.1) (0.7253933223 -0.2215287336 0.1) (0.9242092571 -0.2304325476 0.1) (0.9296267133 -0.2304708369 0.1) (0.9344429369 -0.2422988492 0.1) (0.9347241306 -0.2365367054 0.1) (1.076766685 -0.2075192323 0.1) (1.066019165 -0.2070011543 0.1) (1.067124296 -0.1841106161 0.1) (1.077871797 -0.1846290936 0.1) (1.045619064 -0.1830781731 0.1) (1.121434262 -0.1752603969 0.1) (1.099929309 -0.1742221606 0.1) (1.077319241 -0.1960741629 0.1) (0.1392041921 0.04108245119 0.1) (0.128339495 0.04157895462 0.1) (0.127761237 0.0302236291 0.1) (0.1331925385 0.02997442677 0.1) (0.13863212 0.02973083168 0.1) (0.1274945508 0.02453387002 0.1) (0.1186140443 0.06478093586 0.1) (0.118038831 0.05342646451 0.1) (0.1620645873 0.06276928993 0.1) (0.1615027447 0.05142218238 0.1) (0.1500907673 0.04058288918 0.1) (0.1546762704 0.02329164697 0.1) (0.1495370118 0.02923739351 0.1) (0.1549577463 0.02897668737 0.1) (0.1440886336 0.02948541796 0.1) (0.4722740937 -0.2207977725 0.1) (0.4830308062 -0.2213120894 0.1) (0.4927102212 -0.2444307537 0.1) (0.4932500135 -0.2331256317 0.1) (0.506408351 -0.1829620031 0.1) (0.49540968 -0.1879155796 0.1) (0.5007796445 -0.1882325029 0.1) (0.4514990915 -0.01421140288 0.1) (0.4625229816 -0.009170941363 0.1) (0.4571438286 -0.008816231032 0.1) (0.4856963866 0.02393468774 0.1) (0.474922818 0.02449386962 0.1) (0.4651915533 0.04767911176 0.1) (0.4646654072 0.03636632274 0.1) (0.3993365062 0.0284054017 0.1) (0.3885219232 0.02894453809 0.1) (0.3880050421 0.0176162843 0.1) (0.393406041 0.0173615368 0.1) (0.3988164977 0.01709531986 0.1) (0.3826077492 0.01786484589 0.1) (0.382335008 0.01215335352 0.1) (0.3788079763 0.05213595229 0.1) (0.378273309 0.04081256186 0.1) (0.4220314039 0.04992002083 0.1) (0.421504066 0.0386032847 0.1) (0.4101721956 0.02784722535 0.1) (0.4147947177 0.01057622153 0.1) (0.4096570366 0.01653390589 0.1) (0.4150585865 0.01624909684 0.1) (0.4042394089 0.01681748883 0.1) (0.6442594502 -0.2289418578 0.1) (0.6550122294 -0.2294339591 0.1) (0.6555489011 -0.2181727377 0.1) (0.6501708134 -0.2179411219 0.1) (0.6447920644 -0.2177024661 0.1) (0.6609245709 -0.2183922227 0.1) (0.6611972502 -0.212702753 0.1) (0.6646868502 -0.2524652907 0.1) (0.665222957 -0.2411950315 0.1) (0.6216950143 -0.2504707848 0.1) (0.6222314105 -0.2391945326 0.1) (0.6335072496 -0.2284377704 0.1) (0.6289268572 -0.2113309893 0.1) (0.6340358685 -0.2171981858 0.1) (0.6286620312 -0.216940745 0.1) (0.6394127507 -0.2174547725 0.1) (0.5383824899 -0.1900760611 0.1) (0.5329932645 -0.189971456 0.1) (0.5278602356 -0.1843528905 0.1) (0.5925003681 -0.1860962451 0.1) (0.581470273 -0.1913067051 0.1) (0.5868356888 -0.1916763704 0.1) (0.6667791856 -0.03103668005 0.1) (0.6768034914 -0.04850470206 0.1) (0.6714222559 -0.04821386561 0.1) (0.6662872102 -0.04228454133 0.1) (0.6716722 -0.04258056486 0.1) (0.677053262 -0.04287499712 0.1) (0.6609057046 -0.04199929837 0.1) (0.9956680188 -0.2271016119 0.1) (1.00032218 -0.2262981137 0.1) (1.000408933 -0.2203537815 0.1) (0.9984933469 -0.21254332 0.1) (1.009499453 -0.2616217625 0.1) (1.010042821 -0.2501596303 0.1) (0.9998435773 -0.2380777385 0.1) (0.9995837656 -0.2438739529 0.1) (0.9946200611 -0.2446605044 0.1) (0.9559002615 -0.243431899 0.1) (0.9561635239 -0.2378130573 0.1) (0.9734876786 -0.1567517698 0.1) (0.9681632946 -0.1562994871 0.1) (0.9629709567 -0.1504785261 0.1) (0.9682944956 -0.1509068402 0.1) (0.973615463 -0.151346944 0.1) (0.9576383669 -0.1500925247 0.1) (0.9951545805 -0.1423872963 0.1) (0.9844889733 -0.1415204627 0.1) (1.013897902 -0.1701020945 0.1) (1.013302143 -0.1816125565 0.1) (1.012960804 -0.187438474 0.1) (0.9984318104 -0.1831270298 0.1) (1.00753254 -0.1872715138 0.1) (1.003566826 -0.1738152212 0.1) (1.003427675 -0.1796006416 0.1) (1.007895095 -0.1814208907 0.1) (1.000171231 -0.2053696865 0.1) (0.996316638 -0.2037129799 0.1) (0.9955158979 -0.208271169 0.1) (0.9968963021 -0.2116140249 0.1) (0.7293026393 -0.07987845651 0.1) (0.7289895143 -0.08572135435 0.1) (0.6648750643 -0.07105731784 0.1) (0.6760097586 -0.06556737668 0.1) (0.6705962644 -0.06538481059 0.1) (0.8351599372 -0.1253104341 0.1) (0.8461542902 -0.120218188 0.1) (0.8407984927 -0.1198981442 0.1) (0.8778853249 -0.1333837732 0.1) (0.8776521434 -0.1390016643 0.1) (0.8993464925 -0.1347482776 0.1) (0.8991386369 -0.1402978105 0.1) (0.06045552007 -0.001373762941 0.1) (0.06021360978 -0.00730309551 0.1) (0.03805843651 -0.006193620901 0.1) (0.02671459176 -0.01156343648 0.1) (0.03227356585 -0.0118515408 0.1) (0.4139581491 -0.0067515959 0.1) (0.590878736 -0.03842214224 0.1) (0.5854651712 -0.03813735382 0.1) (0.580344246 -0.03210218733 0.1) (0.5375231349 -0.0242281741 0.1) (0.5372398827 -0.03005369227 0.1) (0.5590809054 -0.02529218741 0.1) (0.5587909447 -0.0310700266 0.1) (0.5531297258 -0.03651626306 0.1) (0.7610433066 -0.09307262948 0.1) (0.7556478861 -0.0928267613 0.1) (0.750859546 -0.08093962485 0.1) (0.7505723448 -0.08670177887 0.1) (0.9131714397 -0.235906642 0.1) (0.9188073688 -0.2304450681 0.1) (0.8812085067 -0.228684899 0.1) (0.8865861394 -0.2290296244 0.1) (0.8917004204 -0.2349120928 0.1) (0.1091046744 -0.1458313211 0.1) (0.1144975478 -0.1462543726 0.1) (0.1192941156 -0.1583236177 0.1) (0.1195780834 -0.1525454891 0.1) (0.09763747224 -0.1571716341 0.1) (0.09793653996 -0.1512881111 0.1) (0.1036933417 -0.1454795624 0.1) (0.162575881 -0.160222894 0.1) (0.1628741457 -0.1542730551 0.1) (0.1409339301 -0.1595338575 0.1) (0.1411948435 -0.153942935 0.1) (0.06553454089 -0.14410484 0.1) (0.07099342241 -0.1444525869 0.1) (0.0761770745 -0.1505052987 0.1) (0.1157052129 0.00788982096 0.1) (0.1211649033 0.007585785848 0.1) (0.1263334076 0.001333372224 0.1) (0.2917607306 -0.1665776385 0.1) (0.2920360585 -0.1608747809 0.1) (0.2701901072 -0.1660494287 0.1) (0.2704376121 -0.1606532863 0.1) (0.3348059033 -0.1680272825 0.1) (0.3351179146 -0.1618963959 0.1) (0.3133318009 -0.1667233248 0.1) (0.3136593726 -0.1603945583 0.1) (0.2056813849 -0.162330713 0.1) (0.2059772619 -0.1564095925 0.1) (0.1841543502 -0.1610655479 0.1) (0.1844698554 -0.1549452421 0.1) (0.2487075778 -0.1648370712 0.1) (0.2489698962 -0.159279255 0.1) (0.2272116427 -0.1635913283 0.1) (0.227489527 -0.1578562565 0.1) (0.3562178886 -0.1694565906 0.1) (0.3565119664 -0.1635520025 0.1) (0.4943196144 -0.02226349492 0.1) (0.4939988442 -0.02820253594 0.1) (0.515941954 -0.0230684205 0.1) (0.5156789497 -0.02876486492 0.1) (0.5494943471 -0.1839808145 0.1) (0.543783688 -0.1900570998 0.1) (0.5761045871 -0.1909426333 0.1) (0.5710600642 -0.1843825405 0.1) (0.9774547567 -0.2442112231 0.1) (0.9777177226 -0.2386814708 0.1) (0.9730099921 -0.1731575208 0.1) (0.9676580826 -0.1727984191 0.1) (-0.00484952551 0.2071383091 0.1) (-0.006065820444 0.1843424417 0.1) (-0.05106343612 0.1632618263 0.1) (-0.02933207833 0.1623468155 0.1) (-0.02788536175 0.1852537006 0.1) (-0.0266850482 0.2080503396 0.1) (-0.05225874173 0.1404569362 0.1) (-0.06569091876 0.3024108582 0.1) (-0.06784176591 0.2555972841 0.1) (0.879909868 0.1607317927 0.1) (0.8370330823 0.1633284285 0.1) (0.8349533922 0.1178878516 0.1) (0.8563945144 0.1165643616 0.1) (0.8135164789 0.1191740954 0.1) (0.8124847969 0.09649846528 0.1) (0.7979472475 0.2600141935 0.1) (0.7961624279 0.2119297683 0.1) (0.8515024329 -0.1205723623 0.1) (0.8565910512 -0.1266338515 0.1) (0.7435075576 -0.001546325863 0.1) (0.7327732263 -0.0009209591095 0.1) (0.7225186468 0.01098940158 0.1) (0.7332700548 0.01036521271 0.1) (0.7440123286 0.009738461343 0.1) (0.7117750848 0.01161020816 0.1) (0.7879665735 0.02981422187 0.1) (0.7664990682 0.03108892746 0.1) (-0.02491179943 -0.08859819064 0.1) (-0.01946261065 -0.08935614743 0.1) (-0.01314243756 -0.1035668564 0.1) (-0.01349750714 -0.09716648776 0.1) (-0.01067933476 -0.04669046431 0.1) (-0.01154554266 -0.05324131459 0.1) (-0.02367078987 -0.06042756201 0.1) (-0.01815482152 -0.06048041878 0.1) (-0.03674096748 0.0365707655 0.1) (-0.03610728418 0.04798748969 0.1) (-0.05652523605 0.07167966326 0.1) (-0.07851413271 0.07230976185 0.1) (-0.002418748829 0.05834198152 0.1) (-0.02514907828 0.047621629 0.1) (-0.01406921734 0.04730996481 0.1) (-0.01333541949 0.05876190216 0.1) (-0.02584493753 0.03617787165 0.1) (0.07746753302 0.00950742977 0.1) (0.08268850347 0.00337332372 0.1) (0.386255339 -0.2167059494 0.1) (0.3970041091 -0.2172188816 0.1) (0.406673136 -0.2403660782 0.1) (0.4072136517 -0.2290459736 0.1) (0.3636783795 -0.2383283812 0.1) (0.3642192327 -0.2270012848 0.1) (0.3755075678 -0.2161930654 0.1) (0.7721436451 -0.08775513222 0.1) (0.7664585188 -0.09326108526 0.1) (0.7200758001 -0.04531189821 0.1) (0.7420455006 -0.03533443032 0.1) (0.7313073958 -0.03470427603 0.1) (0.8701850946 -0.2337361962 0.1) (0.8758289728 -0.2283380795 0.1) (0.10457079 0.002364025009 0.1) (0.1102599193 0.008098050362 0.1) (0.4496990011 -0.2424022735 0.1) (0.4502403227 -0.2310862125 0.1) (0.4615273214 -0.2202849367 0.1) (0.452446987 -0.1853796492 0.1) (0.4470732738 -0.1850781631 0.1) (0.4420099069 -0.178638802 0.1) (0.4204142304 -0.1784221466 0.1) (0.4093641563 -0.1838805317 0.1) (0.4147468746 -0.1840577074 0.1) (0.8382272379 -0.2266788893 0.1) (0.8436221959 -0.2267891775 0.1) (0.8487295538 -0.2327113583 0.1) (0.798765465 -0.0948503647 0.1) (0.7936260431 -0.08892873835 0.1) (0.7080731191 -0.07290709978 0.1) (0.7137232128 -0.06752540191 0.1) (0.07504950971 0.06672500016 0.1) (0.07446212782 0.05536110465 0.1) (0.06289990795 0.04445197532 0.1) (0.05198757651 0.04491573772 0.1) (0.6814097814 -0.06578012826 0.1) (0.6865297108 -0.07175297422 0.1) (-0.03963515272 0.001578621465 0.1) (-0.02838600612 0.001507273436 0.1) (-0.01830000611 -0.01039444783 0.1) (-0.00709631997 -0.0105634172 0.1) (-0.001505788349 -0.01069265849 0.1) (-0.007587045768 -0.01641656256 0.1) (0.6019528855 -0.03319088239 0.1) (0.5962845989 -0.03867982771 0.1) (0.05429975507 -0.1493350523 0.1) (0.06005212738 -0.1437882945 0.1) (0.4634806096 -0.1800131778 0.1) (0.4578152335 -0.1856906828 0.1) (0.4900367335 -0.187598212 0.1) (0.4849422343 -0.181492638 0.1) (0.37739739 -0.1765930274 0.1) (0.3663851882 -0.1816817086 0.1) (0.3717556439 -0.1819677196 0.1) (0.4039870192 -0.183649963 0.1) (0.3988728661 -0.1778477941 0.1) (0.4679160007 -0.009466551599 0.1) (0.4729980039 -0.01562358294 0.1) (0.8271943879 -0.2319049347 0.1) (0.8328353866 -0.2265457244 0.1) (0.7952380127 -0.2246925188 0.1) (0.800590282 -0.2249819568 0.1) (0.805688003 -0.2308756397 0.1) (0.9783494906 -0.1735041094 0.1) (0.9833373604 -0.1797653226 0.1) (0.9309782489 -0.1481246105 0.1) (0.9256281786 -0.1477896256 0.1) (0.9204932004 -0.1418589029 0.1) (-0.01491001966 -0.03420181974 0.1) (-0.009809164423 -0.04031260637 0.1) (1.000106282 -0.2322215938 0.1) (1.010994156 -0.2271367215 0.1) (1.005597442 -0.226731005 0.1) (1.011705578 -0.2049356998 0.1) (1.005951251 -0.2050939943 0.1) (1.002852999 -0.1915038773 0.1) (1.000992131 -0.1993570775 0.1) (-1.02877 -0.962597 0.1) (-1.0288 -0.8251 0.1) (-1.02888 -0.641775 0.1) (-1.02895 -0.458448 0.1) (-1.02901 -0.275121 0.1) (-1.02904 -0.0917902 0.1) (-1.02904 0.0915431 0.1) (-1.02901 0.274879 0.1) (-1.02895 0.458218 0.1) (-1.02888 0.641559 0.1) (-1.0288 0.8249 0.1) (-1.02872 1.00824 0.1) (-0.900226 -1.00849 0.1) (-0.900275 -0.962663 0.1) (-0.857436 -0.962684 0.1) (-0.985942 -0.96262 0.1) (-0.943121 -0.916809 0.1) (-0.94317 -0.870981 0.1) (-0.943181 -0.825148 0.1) (-0.985993 -0.825125 0.1) (-0.943242 -0.733488 0.1) (-0.943293 -0.687659 0.1) (-0.943302 -0.641827 0.1) (-0.986092 -0.641801 0.1) (-0.943362 -0.550166 0.1) (-0.943412 -0.504337 0.1) (-0.943418 -0.458504 0.1) (-0.986186 -0.458477 0.1) (-0.943469 -0.366843 0.1) (-0.9435148665 -0.3210156273 0.1) (-0.9435320731 -0.2752238257 0.1) (-0.986262 -0.27515 0.1) (-0.9436142112 -0.1837410126 0.1) (-0.9436552693 -0.138008093 0.1) (-0.9436293158 -0.09225431882 0.1) (-0.9863071339 -0.09183347913 0.1) (-0.9435771802 -0.0006603500727 0.1) (-0.9435650641 0.04518922673 0.1) (-0.9435093564 0.09107755735 0.1) (-0.986303141 0.09149959299 0.1) (-0.9434802291 0.1829237757 0.1) (-0.9435071854 0.2288559389 0.1) (-0.9434923243 0.2747747513 0.1) (-0.986262 0.27485 0.1) (-0.943469 0.366491 0.1) (-0.943467 0.412324 0.1) (-0.943418 0.458162 0.1) (-0.986187 0.45819 0.1) (-0.943362 0.549834 0.1) (-0.943354 0.595668 0.1) (-0.943303 0.641507 0.1) (-0.986093 0.641532 0.1) (-0.943242 0.733179 0.1) (-0.943231 0.779013 0.1) (-0.943181 0.824852 0.1) (-0.985993 0.824875 0.1) (-0.900276 0.962338 0.1) (-0.943063 1.0082 0.1) (-0.900227 1.00818 0.1) (-0.857392 1.00825 0.1) (-0.985895 1.00822 0.1) (-0.728831 -1.00857 0.1) (-0.728893 -0.962745 0.1) (-0.686035 -0.962769 0.1) (-0.814593 -0.962705 0.1) (-0.771786 -0.916895 0.1) (-0.771847 -0.871068 0.1) (-0.771889 -0.825239 0.1) (-0.814719 -0.825217 0.1) (-0.857544 -0.825194 0.1) (-0.771996 -0.733582 0.1) (-0.772061 -0.687755 0.1) (-0.772105 -0.641926 0.1) (-0.814911 -0.641902 0.1) (-0.857712 -0.641877 0.1) (-0.772572002 -0.5507773759 0.1) (-0.7730132361 -0.5055773537 0.1) (-0.7734633206 -0.4605541961 0.1) (-0.8155665063 -0.459336712 0.1) (-0.8579571629 -0.4586853531 0.1) (-0.7742398033 -0.3708193103 0.1) (-0.7744835875 -0.3259996079 0.1) (-0.7745706597 -0.2811447386 0.1) (-0.8165343881 -0.2786687988 0.1) (-0.8586641018 -0.2768764875 0.1) (-0.7743449485 -0.1911709257 0.1) (-0.7740507131 -0.1459844939 0.1) (-0.7736335021 -0.1006314663 0.1) (-0.8160500255 -0.09745696959 0.1) (-0.8585121435 -0.09501125285 0.1) (-0.7726374023 -0.009366222199 0.1) (-0.7721240705 0.0365598432 0.1) (-0.7716152273 0.08268043227 0.1) (-0.81469139 0.08586379105 0.1) (-0.8577015969 0.08831504917 0.1) (-0.7708265659 0.1754598215 0.1) (-0.7705976166 0.2220789955 0.1) (-0.7704715354 0.268814831 0.1) (-0.8140133802 0.2713078641 0.1) (-0.8573764435 0.273111048 0.1) (-0.770625824 0.3624791658 0.1) (-0.7708824814 0.4093157288 0.1) (-0.7711902683 0.45608724 0.1) (-0.8146352306 0.4573169786 0.1) (-0.8577913471 0.4579769105 0.1) (-0.7718547711 0.5492090977 0.1) (-0.7720813825 0.5954471251 0.1) (-0.772106 0.641407 0.1) (-0.814911 0.641431 0.1) (-0.857712 0.641456 0.1) (-0.771997 0.733084 0.1) (-0.771954 0.778925 0.1) (-0.771892 0.82478 0.1) (-0.81472 0.824783 0.1) (-0.857545 0.824806 0.1) (-0.728055 0.964401 0.1) (-0.771406 1.00946 0.1) (-0.727837 1.01033 0.1) (-0.68461 1.01067 0.1) (-0.814541 1.00851 0.1) (-0.556084 -1.01091 0.1) (-0.556399 -0.964912 0.1) (-0.512556 -0.965648 0.1) (-0.643164 -0.962856 0.1) (-0.600338 -0.917186 0.1) (-0.600435 -0.871234 0.1) (-0.600512 -0.825335 0.1) (-0.643366 -0.825301 0.1) (-0.686213 -0.825281 0.1) (-0.6011444028 -0.7342868096 0.1) (-0.6020005797 -0.6895658282 0.1) (-0.6030573408 -0.6453141585 0.1) (-0.644934532 -0.6438000326 0.1) (-0.6870403269 -0.6427307033 0.1) (-0.6053365772 -0.5578640211 0.1) (-0.6063513279 -0.5144725651 0.1) (-0.607158498 -0.4711748618 0.1) (-0.6485100793 -0.467710648 0.1) (-0.6899800208 -0.4647561598 0.1) (-0.6080050283 -0.3845062215 0.1) (-0.6079990196 -0.3409814615 0.1) (-0.6076898595 -0.2972454734 0.1) (-0.6493392564 -0.2924330864 0.1) (-0.6910109093 -0.288083193 0.1) (-0.606304801 -0.2089675269 0.1) (-0.605299414 -0.1643636682 0.1) (-0.6041262372 -0.1194265859 0.1) (-0.6465052607 -0.114021092 0.1) (-0.6888751422 -0.1090006628 0.1) (-0.6015209772 -0.02851338923 0.1) (-0.6001888668 0.01747139404 0.1) (-0.5988866756 0.0638090018 0.1) (-0.6421009951 0.06923950046 0.1) (-0.6853057395 0.07428135617 0.1) (-0.5966240464 0.1575274163 0.1) (-0.5957551859 0.2048859266 0.1) (-0.595098324 0.2525480008 0.1) (-0.6390512409 0.2574179121 0.1) (-0.6829559814 0.2618146764 0.1) (-0.5945831056 0.3486294222 0.1) (-0.5947488055 0.3969393846 0.1) (-0.5951688242 0.4453349165 0.1) (-0.6394278039 0.4488480752 0.1) (-0.6835476873 0.4518405036 0.1) (-0.5966767008 0.5420494308 0.1) (-0.5976488575 0.5902532899 0.1) (-0.5986325133 0.6383038225 0.1) (-0.6423846653 0.6395256418 0.1) (-0.6859130936 0.6405814338 0.1) (-0.5992800418 0.7348792695 0.1) (-0.5989973055 0.7819038491 0.1) (-0.598865 0.827889 0.1) (-0.642315 0.827359 0.1) (-0.686094 0.82587 0.1) (-0.555714 0.965414 0.1) (-0.598649 1.01102 0.1) (-0.555678 1.01118 0.1) (-0.512702 1.01133 0.1) (-0.641617 1.01086 0.1) (-0.383309 -1.01194 0.1) (-0.383341 -0.966197 0.1) (-0.340336 -0.966337 0.1) (-0.469354 -0.965893 0.1) (-0.426375 -0.920295 0.1) (-0.4266859343 -0.8748865321 0.1) (-0.4276768537 -0.830308285 0.1) (-0.4707469482 -0.8290190857 0.1) (-0.5145306517 -0.8268645627 0.1) (-0.4314087819 -0.7431454311 0.1) (-0.4337889499 -0.7002184185 0.1) (-0.4363389811 -0.6565556569 0.1) (-0.4782647823 -0.6524449832 0.1) (-0.519793741 -0.649567508 0.1) (-0.4400361102 -0.5720130602 0.1) (-0.4412104015 -0.530276187 0.1) (-0.4419508126 -0.4885184706 0.1) (-0.4833152657 -0.4838287983 0.1) (-0.5246075096 -0.4793279299 0.1) (-0.4421147253 -0.4043088123 0.1) (-0.4415690767 -0.3616252543 0.1) (-0.4406471967 -0.3184620033 0.1) (-0.4825332951 -0.3131537203 0.1) (-0.5243178074 -0.3077513683 0.1) (-0.4379050635 -0.2307773803 0.1) (-0.4362047139 -0.18626844 0.1) (-0.4343490962 -0.1413581452 0.1) (-0.4768452556 -0.1362179347 0.1) (-0.5193036276 -0.1307159569 0.1) (-0.430385898 -0.05046458807 0.1) (-0.4283618524 -0.004516353604 0.1) (-0.4263548081 0.04177484998 0.1) (-0.4694010841 0.04693702173 0.1) (-0.5125164958 0.05246481803 0.1) (-0.4226222232 0.1356275823 0.1) (-0.4210102313 0.1833999445 0.1) (-0.4196332312 0.2316674603 0.1) (-0.463373147 0.2365363223 0.1) (-0.5072169878 0.2419107996 0.1) (-0.4177222404 0.3295235125 0.1) (-0.417357554 0.3792275547 0.1) (-0.4171590316 0.4299734925 0.1) (-0.4620689812 0.4331742399 0.1) (-0.5064350345 0.4371247077 0.1) (-0.4167777178 0.5318299432 0.1) (-0.4177326383 0.5818965033 0.1) (-0.4192264358 0.6316910091 0.1) (-0.4638334227 0.6346014181 0.1) (-0.5089251513 0.6368144171 0.1) (-0.4226273984 0.7303247551 0.1) (-0.4242377974 0.7788866809 0.1) (-0.4255790251 0.8267634776 0.1) (-0.4691654718 0.8274909649 0.1) (-0.5125832744 0.8279367158 0.1) (-0.383744 0.966037 0.1) (-0.426704 1.01164 0.1) (-0.383585 1.01184 0.1) (-0.340202 1.01213 0.1) (-0.469724 1.01148 0.1) (-0.211093 -1.01252 0.1) (-0.2112890117 -0.9669767168 0.1) (-0.1684347444 -0.9673335168 0.1) (-0.2973033034 -0.9664806899 0.1) (-0.2549215661 -0.921850298 0.1) (-0.2565578606 -0.8784170602 0.1) (-0.2585713546 -0.8359001366 0.1) (-0.3008156525 -0.8343514971 0.1) (-0.343024637 -0.8328776762 0.1) (-0.2633450684 -0.7534182273 0.1) (-0.2657171415 -0.7130761679 0.1) (-0.2678570615 -0.6730426234 0.1) (-0.3095746693 -0.6695344782 0.1) (-0.3512861059 -0.6659276612 0.1) (-0.2709476808 -0.5930455599 0.1) (-0.2717979282 -0.5526432061 0.1) (-0.2723817882 -0.5115991305 0.1) (-0.3152761976 -0.5067993384 0.1) (-0.3582141362 -0.5004057355 0.1) (-0.2728105677 -0.4271247711 0.1) (-0.2723677502 -0.382990253 0.1) (-0.2711357213 -0.3387290394 0.1) (-0.3139544415 -0.3340848428 0.1) (-0.3564240385 -0.3288084463 0.1) (-0.2678296838 -0.2478007715 0.1) (-0.265911837 -0.2013697988 0.1) (-0.263863837 -0.1550510721 0.1) (-0.3065673261 -0.1527821116 0.1) (-0.3492159676 -0.1497957196 0.1) (-0.2595430608 -0.06337758749 0.1) (-0.2573169036 -0.01745390359 0.1) (-0.2550222194 0.02899748167 0.1) (-0.2977479362 0.03074905195 0.1) (-0.3405256744 0.03343568074 0.1) (-0.2500318758 0.1223686965 0.1) (-0.2474779394 0.1694011948 0.1) (-0.2448042985 0.2173189869 0.1) (-0.2888268691 0.2193295086 0.1) (-0.3323359412 0.222872927 0.1) (-0.2396570175 0.3149028211 0.1) (-0.2384014878 0.3641092954 0.1) (-0.2379220984 0.4139365879 0.1) (-0.2819872041 0.4182941939 0.1) (-0.3264761614 0.4227501967 0.1) (-0.2386835106 0.5154581294 0.1) (-0.2398704723 0.5668626911 0.1) (-0.2415012885 0.6184402889 0.1) (-0.2858237123 0.6217815841 0.1) (-0.3302292397 0.6251691672 0.1) (-0.2456042613 0.7212843503 0.1) (-0.2477982648 0.7720936132 0.1) (-0.2499198912 0.8225351629 0.1) (-0.2940471798 0.8234298227 0.1) (-0.3380540891 0.8246439953 0.1) (-0.2104472394 0.9664248064 0.1) (-0.253793 1.01252 0.1) (-0.210761 1.01264 0.1) (-0.1677153246 1.012745227 0.1) (-0.296897 1.01235 0.1) (-0.03852093207 -1.013146691 0.1) (-0.03934151287 -0.9686443548 0.1) (0.003754439028 -0.9689815947 0.1) (-0.1255777062 -0.9677342473 0.1) (-0.08411796381 -0.9248662656 0.1) (-0.08627096784 -0.8828681739 0.1) (-0.08883819173 -0.8420098521 0.1) (-0.1314103458 -0.8404777143 0.1) (-0.1737428521 -0.8388543276 0.1) (-0.09435486409 -0.7628546921 0.1) (-0.09690197519 -0.7240452217 0.1) (-0.09907323292 -0.6853759457 0.1) (-0.1414749118 -0.6822974408 0.1) (-0.1839450533 -0.6796038765 0.1) (-0.1018612409 -0.607343856 0.1) (-0.102377999 -0.5674531746 0.1) (-0.1024885937 -0.5268869545 0.1) (-0.1451569536 -0.5236684436 0.1) (-0.1875964901 -0.5200851283 0.1) (-0.1004518535 -0.4421999583 0.1) (-0.09870457575 -0.3979665615 0.1) (-0.09668260344 -0.3525503841 0.1) (-0.1400828317 -0.3501045338 0.1) (-0.1838097515 -0.3471948574 0.1) (-0.1314882902 -0.06952007153 0.1) (-0.130358303 -0.04588657757 0.1) (-0.1290408782 -0.02173010393 0.1) (-0.1504500827 -0.02098973141 0.1) (-0.171851865 -0.02028225509 0.1) (-0.06394529062 0.3505905072 0.1) (-0.06251839575 0.4001055907 0.1) (-0.1065712311 0.4028809563 0.1) (-0.1503459233 0.406139362 0.1) (-0.06189870141 0.5017669114 0.1) (-0.06271067252 0.5537901531 0.1) (-0.06415374193 0.6063190471 0.1) (-0.1081929917 0.6094610906 0.1) (-0.1527115681 0.6127909549 0.1) (-0.06855739118 0.7118184483 0.1) (-0.07122129787 0.7642218334 0.1) (-0.07395659006 0.8160184781 0.1) (-0.117715534 0.8175913547 0.1) (-0.1615877268 0.8192623537 0.1) (-0.03725881412 0.9651432011 0.1) (-0.0814650592 1.012757377 0.1) (-0.03834865532 1.012698054 0.1) (0.004944018058 1.012650117 0.1) (-0.1246259432 1.012770067 0.1) (0.1341599757 -1.013542158 0.1) (0.1330736606 -0.9697686359 0.1) (0.1761343703 -0.9700077312 0.1) (0.04684689251 -0.9691994684 0.1) (0.08808153852 -0.9273586161 0.1) (0.08565112027 -0.8864418596 0.1) (0.08286460382 -0.8466920476 0.1) (0.04000924579 -0.8453279077 0.1) (-0.002983961455 -0.8445240256 0.1) (0.0771061234 -0.7698427863 0.1) (0.0745454355 -0.7321189075 0.1) (0.07242591184 -0.6944222371 0.1) (0.02952487077 -0.6921476388 0.1) (-0.0134305838 -0.690444275 0.1) (0.06997052449 -0.6178050595 0.1) (0.06975474201 -0.578279788 0.1) (0.07021738478 -0.5375976846 0.1) (0.02702032158 -0.5351379492 0.1) (-0.01618125601 -0.5327940714 0.1) (0.0568761664 0.1359308829 0.1) (0.05804039082 0.1586892177 0.1) (0.03622573015 0.159637284 0.1) (0.01443055818 0.1605894153 0.1) (0.1104169001 0.3403632175 0.1) (0.1118535615 0.3889057343 0.1) (0.06820597945 0.3914128313 0.1) (0.02483109737 0.3939719388 0.1) (0.1127165479 0.49023925 0.1) (0.1121159582 0.5426474078 0.1) (0.1108411296 0.5958678699 0.1) (0.06677018397 0.5986947124 0.1) (0.02323169026 0.6008389041 0.1) (0.1065718768 0.7034312321 0.1) (0.1038506834 0.7571217745 0.1) (0.1010126673 0.8102816371 0.1) (0.05697864196 0.8123363482 0.1) (0.01330265205 0.8133476265 0.1) (0.1365347302 0.9632852233 0.1) (0.09180641286 1.012089996 0.1) (0.1349767692 1.011853239 0.1) (0.1781272959 1.011693645 0.1) (0.04848636152 1.012352944 0.1) (0.3064369804 -1.013838011 0.1) (0.3051963801 -0.9705448232 0.1) (0.3481733192 -0.9706958355 0.1) (0.2191818331 -0.9702117415 0.1) (0.2602259449 -0.9286180587 0.1) (0.2576949926 -0.8883965581 0.1) (0.2548335528 -0.8494971518 0.1) (0.2118824832 -0.8488124561 0.1) (0.1689131353 -0.848084447 0.1) (0.2490118611 -0.7744538147 0.1) (0.2464580459 -0.7376180181 0.1) (0.2443693295 -0.700747835 0.1) (0.2014210199 -0.6992079311 0.1) (0.1584522314 -0.6976123877 0.1) (0.2420276134 -0.6254605067 0.1) (0.2418884986 -0.5863802712 0.1) (0.2424370137 -0.545965384 0.1) (0.1994340942 -0.5439241039 0.1) (0.1563910461 -0.5418457299 0.1) (0.2305020295 0.1277556516 0.1) (0.2316059447 0.1504758503 0.1) (0.2099257278 0.151533561 0.1) (0.1882511181 0.1525829916 0.1) (0.283484774 0.3312444948 0.1) (0.284970006 0.3796020155 0.1) (0.2416861035 0.3817771858 0.1) (0.1983769451 0.3840785374 0.1) (0.2860662577 0.4813360014 0.1) (0.2855737609 0.534271985 0.1) (0.2843864316 0.5881729506 0.1) (0.2410551225 0.5898569193 0.1) (0.1976071859 0.5918643442 0.1) (0.2801995199 0.6975062264 0.1) (0.2774443353 0.7521500883 0.1) (0.2744714756 0.8062883429 0.1) (0.2311252212 0.8071250508 0.1) (0.1876378157 0.8082605885 0.1) (0.3095884562 0.9621141936 0.1) (0.2647191574 1.011262034 0.1) (0.3079289813 1.011164716 0.1) (0.3510412659 1.011147677 0.1) (0.2214410066 1.011443817 0.1) (0.478469152 -1.014150633 0.1) (0.4770731523 -0.9713050937 0.1) (0.5200466724 -0.9715313011 0.1) (0.3911319807 -0.9708839699 0.1) (0.4319980557 -0.9299736339 0.1) (0.4293702204 -0.8905256656 0.1) (0.4264407706 -0.8524753038 0.1) (0.3835555225 -0.8516603941 0.1) (0.3406745254 -0.8508846491 0.1) (0.4205649319 -0.7792137755 0.1) (0.4180220695 -0.7432349904 0.1) (0.415962158 -0.7071505211 0.1) (0.3730785357 -0.7054753905 0.1) (0.3301996331 -0.7038391992 0.1) (0.4137239168 -0.6330907622 0.1) (0.4136495321 -0.5943993555 0.1) (0.4142679102 -0.5542019985 0.1) (0.3713117123 -0.5521112911 0.1) (0.3283684525 -0.5500372742 0.1) (0.403589046 0.1190387748 0.1) (0.404662693 0.1417334034 0.1) (0.383091005 0.1428409385 0.1) (0.3614964402 0.1439515803 0.1) (0.4560849383 0.322933914 0.1) (0.4574511351 0.3719833865 0.1) (0.4143883965 0.3736959168 0.1) (0.3713319288 0.3756241387 0.1) (0.4582131009 0.4758436805 0.1) (0.457570284 0.5297659001 0.1) (0.4563983874 0.5840400566 0.1) (0.41359122 0.5845845764 0.1) (0.3706043036 0.5857778832 0.1) (0.4521449526 0.6949722725 0.1) (0.4494109267 0.7503246152 0.1) (0.4464854914 0.8050582164 0.1) (0.4036576651 0.8050689711 0.1) (0.3606545362 0.805528334 0.1) (0.4815886664 0.9623471365 0.1) (0.4371421171 1.01102514 0.1) (0.4801585061 1.011160267 0.1) (0.5231306763 1.011217689 0.1) (0.3941146004 1.011040922 0.1) (0.6504314204 -1.014621258 0.1) (0.6488466635 -0.9724628559 0.1) (0.6918415847 -0.9726487232 0.1) (0.5630123475 -0.9717785657 0.1) (0.603739247 -0.9316564854 0.1) (0.6010093411 -0.8930425537 0.1) (0.5980107793 -0.8558875179 0.1) (0.5551272883 -0.8549971729 0.1) (0.5122395085 -0.8541242011 0.1) (0.5920869009 -0.7844461805 0.1) (0.5895606773 -0.7493139288 0.1) (0.5875393508 -0.7139860006 0.1) (0.5446533005 -0.7122424014 0.1) (0.5017635503 -0.7105124941 0.1) (0.5854266413 -0.6410380049 0.1) (0.5854304023 -0.6026541672 0.1) (0.5861303016 -0.5625772985 0.1) (0.5431711752 -0.5604734943 0.1) (0.5002061116 -0.5583719884 0.1) (0.5760601166 0.1099231367 0.1) (0.5771100187 0.1326028931 0.1) (0.5555805025 0.1337544457 0.1) (0.5340258362 0.1349242324 0.1) (0.6279765895 0.3157585932 0.1) (0.6290883033 0.3662643572 0.1) (0.5862383858 0.3675433563 0.1) (0.5433416927 0.3687580172 0.1) (0.6294222191 0.4725792702 0.1) (0.6285860429 0.5277913822 0.1) (0.6271064302 0.583860846 0.1) (0.5847282485 0.582947748 0.1) (0.5419849819 0.5832168431 0.1) (0.6228609172 0.6958186147 0.1) (0.6201633463 0.7516147866 0.1) (0.6173289108 0.8065448501 0.1) (0.5746898488 0.8059623262 0.1) (0.5319288969 0.805813793 0.1) (0.6530404758 0.9633847428 0.1) (0.609111766 1.011198755 0.1) (0.6520915105 1.011297896 0.1) (0.6951086141 1.011221486 0.1) (0.5661307999 1.011183362 0.1) (0.822274465 -1.015415781 0.1) (0.8204784421 -0.9740838211 0.1) (0.8634725707 -0.9743188994 0.1) (0.7347715702 -0.973007012 0.1) (0.7755269528 -0.9332913053 0.1) (0.7727281771 -0.8954601289 0.1) (0.7693702304 -0.8600134688 0.1) (0.7265565462 -0.8588890084 0.1) (0.6837158336 -0.8578279821 0.1) (0.7634052523 -0.7904526424 0.1) (0.7609063757 -0.7561512498 0.1) (0.7589388857 -0.7215320844 0.1) (0.7161098924 -0.7195537089 0.1) (0.6732582073 -0.7176364792 0.1) (0.7569928192 -0.6495178672 0.1) (0.7570970769 -0.6113155843 0.1) (0.7579027096 -0.571214058 0.1) (0.7149686531 -0.5690184948 0.1) (0.6720181187 -0.5668465382 0.1) (0.7480747103 0.1003109336 0.1) (0.7993045557 0.3103687634 0.1) (0.8001061935 0.3626843748 0.1) (0.7574314663 0.3632648925 0.1) (0.7146538092 0.3643213938 0.1) (0.7998514796 0.4722949908 0.1) (0.7987661952 0.5288759319 0.1) (0.7970959588 0.5859907144 0.1) (0.7547357957 0.5848762814 0.1) (0.7123354063 0.5838882443 0.1) (0.7924597213 0.7001645594 0.1) (0.7897866345 0.7561539692 0.1) (0.7871480482 0.8109142192 0.1) (0.7447402187 0.809648644 0.1) (0.7024222524 0.8081374827 0.1) (0.8245172396 0.9642711845 0.1) (0.7811572152 1.010987167 0.1) (0.824205 1.01078 0.1) (0.867232 1.01058 0.1) (0.7381150427 1.011128125 0.1) (0.9949777014 -1.01502496 0.1) (0.9928395977 -0.974728153 0.1) (1.035255045 -0.9722206246 0.1) (0.9062224854 -0.9751776061 0.1) (0.9465924072 -0.9374221958 0.1) (0.9435931044 -0.9008850074 0.1) (0.9404266377 -0.8658091258 0.1) (0.8976180133 -0.8641573783 0.1) (0.8551299524 -0.8619931173 0.1) (0.9344570538 -0.7981851241 0.1) (0.9320312361 -0.7646322982 0.1) (0.9301750171 -0.7305742106 0.1) (0.8874098581 -0.7277501493 0.1) (0.84457367 -0.7256902354 0.1) (0.9285256446 -0.6590437679 0.1) (0.9287938864 -0.6207522499 0.1) (0.9297606626 -0.5803496217 0.1) (0.8867095285 -0.5779664037 0.1) (0.843775541 -0.5756889049 0.1) (0.8780502398 -0.2960719964 0.1) (0.8785829782 -0.2847885594 0.1) (0.8678240613 -0.2842991653 0.1) (0.85709192 -0.2838150685 0.1) (0.8898334943 -0.1008209636 0.1) (0.8902591741 -0.08970205539 0.1) (0.8795735017 -0.08893977582 0.1) (0.9634039663 0.1096580345 0.1) (0.9654779673 0.1557721145 0.1) (0.9227282732 0.1582201525 0.1) (0.9689406409 0.2552710892 0.1) (0.9699016941 0.308046052 0.1) (0.9703031298 0.3627618177 0.1) (0.9277819832 0.3625586576 0.1) (0.8853166819 0.362099695 0.1) (0.9693173734 0.4765738865 0.1) (0.9679040873 0.5345269161 0.1) (0.9663134729 0.5915227746 0.1) (0.9241503471 0.5894854211 0.1) (0.8818223801 0.588200048 0.1) (0.9618368362 0.7055135236 0.1) (0.9594233638 0.760948772 0.1) (0.9571590408 0.8148977938 0.1) (0.9146906148 0.8137803179 0.1) (0.8721218583 0.8129812638 0.1) (0.996255 0.964048 0.1) (0.953252 1.01014 0.1) (0.996254 1.00991 0.1) (1.03926 1.00967 0.1) (0.91025 1.01035 0.1) (1.166988205 -1.011207323 0.1) (1.165202357 -0.9705242623 0.1) (1.208686055 -0.9694155371 0.1) (1.078459464 -0.9719621289 0.1) (1.119246957 -0.9333206679 0.1) (1.116316961 -0.8972148588 0.1) (1.113216926 -0.8626586347 0.1) (1.069679792 -0.8635532898 0.1) (1.026357432 -0.8637725657 0.1) (1.107350635 -0.7962532398 0.1) (1.104952655 -0.7633580471 0.1) (1.103104757 -0.7299633074 0.1) (1.059553405 -0.7305360899 0.1) (1.016236736 -0.7301930954 0.1) (1.101402841 -0.6597271707 0.1) (1.101611593 -0.6220568491 0.1) (1.102495989 -0.5822661019 0.1) (1.059260288 -0.5814250121 0.1) (1.016142148 -0.5800027508 0.1) (1.081739673 -0.1045139077 0.1) (1.082844775 -0.08162396876 0.1) (1.061349811 -0.08058621472 0.1) (1.13462441 0.1004852441 0.1) (1.136526249 0.149722232 0.1) (1.093609092 0.1506114432 0.1) (1.05072984 0.1512374394 0.1) (1.139150905 0.2551075498 0.1) (1.139690884 0.3108039486 0.1) (1.139794939 0.3670717046 0.1) (1.097654682 0.3653227902 0.1) (1.055151207 0.3641781778 0.1) (1.138271527 0.4828680309 0.1) (1.136944668 0.5419179877 0.1) (1.135011454 0.599998443 0.1) (1.092805274 0.5980775615 0.1) (1.050773345 0.5953828747 0.1) (1.130670288 0.7132432875 0.1) (1.128635813 0.7677301954 0.1) (1.126942545 0.8201420929 0.1) (1.084520424 0.8187781588 0.1) (1.041968342 0.8177526867 0.1) (1.16822 0.962976 0.1) (1.12529 1.00921 0.1) (1.16826 1.00895 0.1) (1.21123 1.00864 0.1) (1.08228 1.00943 0.1) (1.340170289 -1.008643312 0.1) (1.339321237 -0.9653656148 0.1) (1.382796199 -0.9641196439 0.1) (1.252228683 -0.9681263239 0.1) (1.293960161 -0.9267232818 0.1) (1.291654607 -0.8888590584 0.1) (1.289061765 -0.8528019085 0.1) (1.244896145 -0.8561038466 0.1) (1.200840947 -0.8588944218 0.1) (1.283784459 -0.7844108349 0.1) (1.281445046 -0.7511434218 0.1) (1.279493374 -0.7178584603 0.1) (1.235085403 -0.7223833376 0.1) (1.190870154 -0.7259117492 0.1) (1.277122644 -0.6494696374 0.1) (1.276796756 -0.6136191722 0.1) (1.277044712 -0.5762949599 0.1) (1.233116423 -0.5795495751 0.1) (1.189390139 -0.5815187246 0.1) (1.279068701 -0.4967273275 0.1) (1.280687218 -0.4545222509 0.1) (1.282582073 -0.4109307075 0.1) (1.239413977 -0.4102957652 0.1) (1.286827044 -0.3208605858 0.1) (1.289033479 -0.275125378 0.1) (1.291243688 -0.2293454002 0.1) (1.248243772 -0.2272694099 0.1) (1.295664688 -0.1377566725 0.1) (1.29787578 -0.09164687828 0.1) (1.300068144 -0.04485972916 0.1) (1.257083969 -0.04409885291 0.1) (1.304200755 0.05219952524 0.1) (1.305994508 0.1030121075 0.1) (1.307492623 0.1555178682 0.1) (1.264880524 0.1522878417 0.1) (1.222169081 0.1503611505 0.1) (1.309284798 0.2653980449 0.1) (1.309463613 0.3223789326 0.1) (1.309132255 0.3802975712 0.1) (1.266960424 0.3757074864 0.1) (1.22465255 0.3721308366 0.1) (1.307049277 0.4972581695 0.1) (1.305446089 0.5553556664 0.1) (1.303626345 0.6125536199 0.1) (1.261424112 0.6091683041 0.1) (1.219119141 0.6063104898 0.1) (1.299979985 0.7224425374 0.1) (1.298515753 0.7743666332 0.1) (1.297538845 0.8238861447 0.1) (1.254712465 0.8231331381 0.1) (1.212064656 0.8217637337 0.1) (1.34028 0.9625 0.1) (1.29722 1.00833 0.1) (1.34028 1.00833 0.1) (1.38333 1.00833 0.1) (1.25417 1.00833 0.1) (1.5125 -1.00833 0.1) (1.5125 -0.9625 0.1) (1.55556 -0.9625 0.1) (1.426182042 -0.9631403717 0.1) (1.468871349 -0.9185308289 0.1) (1.467729566 -0.8767252091 0.1) (1.466151275 -0.8369319074 0.1) (1.421915413 -0.8409860254 0.1) (1.377615458 -0.8450997183 0.1) (1.462336157 -0.7621378142 0.1) (1.460404822 -0.7264086106 0.1) (1.458634792 -0.6912697857 0.1) (1.413706595 -0.698932728 0.1) (1.368837438 -0.7060278727 0.1) (1.455974686 -0.6212316141 0.1) (1.455216583 -0.5856427454 0.1) (1.454882568 -0.5492921133 0.1) (1.410148037 -0.5580698615 0.1) (1.365571424 -0.5655596005 0.1) (1.455466589 -0.4735356881 0.1) (1.456325234 -0.4339076521 0.1) (1.457499214 -0.393070418 0.1) (1.413453735 -0.4006682158 0.1) (1.369600607 -0.4062124795 0.1) (1.460569503 -0.3079021717 0.1) (1.462354653 -0.263688099 0.1) (1.464238 -0.2184541031 0.1) (1.420807085 -0.2249990771 0.1) (1.377484021 -0.2290542638 0.1) (1.468113273 -0.1249626703 0.1) (1.470013119 -0.07663976947 0.1) (1.47182206 -0.02718497634 0.1) (1.428919 -0.03478039963 0.1) (1.385985293 -0.04029493337 0.1) (1.474946313 0.07533484767 0.1) (1.476146517 0.1284251277 0.1) (1.477033253 0.1826603206 0.1) (1.434783839 0.1738117622 0.1) (1.39244255 0.1662742021 0.1) (1.477711298 0.2939513242 0.1) (1.477470196 0.3505285072 0.1) (1.476860287 0.4073110159 0.1) (1.435038849 0.3995195441 0.1) (1.39315361 0.3923097174 0.1) (1.474753449 0.5200006883 0.1) (1.473435868 0.5751179261 0.1) (1.472102645 0.6289022152 0.1) (1.429973439 0.6247086393 0.1) (1.387868945 0.6204679841 0.1) (1.469972297 0.731111653 0.1) (1.469481829 0.7790029125 0.1) (1.46944 0.825 0.1) (1.42639 0.825 0.1) (1.383351526 0.8249225547 0.1) (1.5125 0.9625 0.1) (1.46944 1.00833 0.1) (1.5125 1.00833 0.1) (1.55556 1.00833 0.1) (1.42639 1.00833 0.1) (1.68472 -1.00833 0.1) (1.68472 -0.9625 0.1) (1.72778 -0.9625 0.1) (1.59861 -0.9625 0.1) (1.64167 -0.916667 0.1) (1.64167 -0.870833 0.1) (1.64153157 -0.8255325354 0.1) (1.598027062 -0.8272112704 0.1) (1.554270367 -0.8298216354 0.1) (1.64011846 -0.7400270461 0.1) (1.639074352 -0.6994149446 0.1) (1.637959557 -0.6598566772 0.1) (1.593307991 -0.6672437249 0.1) (1.548504912 -0.6751473253 0.1) (1.635905078 -0.5826856612 0.1) (1.635116918 -0.5444734423 0.1) (1.634558168 -0.5061369089 0.1) (1.589645586 -0.5174830273 0.1) (1.54469697 -0.5287001729 0.1) (1.634227805 -0.4281527561 0.1) (1.63446367 -0.3881220196 0.1) (1.634948234 -0.3472080338 0.1) (1.590494542 -0.3602694523 0.1) (1.546075917 -0.3725442124 0.1) (1.636543805 -0.2623541769 0.1) (1.63757712 -0.2182984016 0.1) (1.638707968 -0.1731145703 0.1) (1.595036002 -0.1865325591 0.1) (1.551389358 -0.1988616112 0.1) (1.641069042 -0.07933980523 0.1) (1.64220074 -0.03077638838 0.1) (1.643235301 0.01885547881 0.1) (1.600413936 0.005730189045 0.1) (1.557580357 -0.006598341905 0.1) (1.644836724 0.1210277663 0.1) (1.645330548 0.1733416297 0.1) (1.645586716 0.2262594456 0.1) (1.603470769 0.214785739 0.1) (1.561365599 0.2034496961 0.1) (1.645368414 0.3330471313 0.1) (1.64492822 0.3863998538 0.1) (1.644322264 0.4393396044 0.1) (1.602353852 0.4317869727 0.1) (1.56048977 0.4237245683 0.1) (1.642894432 0.5427591548 0.1) (1.642255773 0.5926444076 0.1) (1.641810424 0.6409585301 0.1) (1.599124586 0.6391039847 0.1) (1.55664642 0.636324273 0.1) (1.64167 0.733333 0.1) (1.64167 0.779167 0.1) (1.64167 0.825 0.1) (1.59861 0.825 0.1) (1.55556 0.825 0.1) (1.68472 0.9625 0.1) (1.64167 1.00833 0.1) (1.68472 1.00833 0.1) (1.72778 1.00833 0.1) (1.59861 1.00833 0.1) (1.85694 -1.00833 0.1) (1.85694 -0.9625 0.1) (1.9 -0.9625 0.1) (1.77083 -0.9625 0.1) (1.81389 -0.916667 0.1) (1.81389 -0.870833 0.1) (1.81389 -0.825 0.1) (1.77083 -0.825 0.1) (1.72778 -0.825 0.1) (1.81389 -0.733333 0.1) (1.81389 -0.6875 0.1) (1.813830054 -0.6419787137 0.1) (1.770359361 -0.644081102 0.1) (1.72653628 -0.6479549953 0.1) (1.813266431 -0.5537703088 0.1) (1.812897068 -0.5106994599 0.1) (1.812546379 -0.4680247775 0.1) (1.768396393 -0.4755975208 0.1) (1.723989736 -0.4847563779 0.1) (1.812057997 -0.3830353644 0.1) (1.811967339 -0.3403424978 0.1) (1.811990742 -0.2973044977 0.1) (1.767926597 -0.3083720315 0.1) (1.72371166 -0.3207296002 0.1) (1.812354191 -0.209700451 0.1) (1.812661696 -0.1649604889 0.1) (1.813021741 -0.1195254237 0.1) (1.769531311 -0.1317718516 0.1) (1.725978139 -0.1451645824 0.1) (1.813786558 -0.02653458971 0.1) (1.814133748 0.02096760641 0.1) (1.81442228 0.06905767344 0.1) (1.771609907 0.05791282016 0.1) (1.72882355 0.04547879836 0.1) (1.814746331 0.1665795547 0.1) (1.814762171 0.2157338743 0.1) (1.814683604 0.2649216059 0.1) (1.772239715 0.2572085193 0.1) (1.729937607 0.2479104178 0.1) (1.814322215 0.362602246 0.1) (1.814110354 0.4106648603 0.1) (1.813945469 0.4579183139 0.1) (1.771194652 0.4556384453 0.1) (1.728702929 0.451587218 0.1) (1.81389 0.55 0.1) (1.81389 0.595833 0.1) (1.81389 0.641667 0.1) (1.77083 0.641667 0.1) (1.72778 0.641667 0.1) (1.81389 0.733333 0.1) (1.81389 0.779167 0.1) (1.81389 0.825 0.1) (1.77083 0.825 0.1) (1.72778 0.825 0.1) (1.85694 0.9625 0.1) (1.81389 1.00833 0.1) (1.85694 1.00833 0.1) (1.9 1.00833 0.1) (1.77083 1.00833 0.1) (2.02917 -1.00833 0.1) (2.02917 -0.9625 0.1) (2.07222 -0.9625 0.1) (1.94306 -0.9625 0.1) (1.98611 -0.916667 0.1) (1.98611 -0.870833 0.1) (1.98611 -0.825 0.1) (1.94306 -0.825 0.1) (1.9 -0.825 0.1) (1.98611 -0.733333 0.1) (1.98611 -0.6875 0.1) (1.98611 -0.641667 0.1) (1.94306 -0.641667 0.1) (1.9 -0.641667 0.1) (1.98611 -0.55 0.1) (1.98611 -0.504167 0.1) (1.98611 -0.458333 0.1) (1.94306 -0.458333 0.1) (1.899892439 -0.4591323234 0.1) (1.98611 -0.366667 0.1) (1.98611 -0.320833 0.1) (1.986109987 -0.275000161 0.1) (1.942935333 -0.2765463505 0.1) (1.899509724 -0.2809838975 0.1) (1.986101736 -0.1834869208 0.1) (1.986100219 -0.1377399026 0.1) (1.986102331 -0.09194210281 0.1) (1.942970874 -0.09480640329 0.1) (1.899739961 -0.1005915006 0.1) (1.986109671 -0.000165533664 0.1) (1.98611071 0.0457684539 0.1) (1.986110041 0.09166498646 0.1) (1.943099003 0.0900456839 0.1) (1.900147528 0.0855325443 0.1) (1.98611 0.183333 0.1) (1.98611 0.229167 0.1) (1.98611 0.275 0.1) (1.94306 0.275 0.1) (1.900070216 0.2740928705 0.1) (1.98611 0.366667 0.1) (1.98611 0.4125 0.1) (1.98611 0.458333 0.1) (1.94306 0.458333 0.1) (1.9 0.458333 0.1) (1.98611 0.55 0.1) (1.98611 0.595833 0.1) (1.98611 0.641667 0.1) (1.94306 0.641667 0.1) (1.9 0.641667 0.1) (1.98611 0.733333 0.1) (1.98611 0.779167 0.1) (1.98611 0.825 0.1) (1.94306 0.825 0.1) (1.9 0.825 0.1) (2.02917 0.9625 0.1) (1.98611 1.00833 0.1) (2.02917 1.00833 0.1) (2.07222 1.00833 0.1) (1.94306 1.00833 0.1) (2.20139 -1.00833 0.1) (2.20139 -0.9625 0.1) (2.24444 -0.9625 0.1) (2.11528 -0.9625 0.1) (2.15833 -0.916667 0.1) (2.15833 -0.870833 0.1) (2.15833 -0.825 0.1) (2.11528 -0.825 0.1) (2.07222 -0.825 0.1) (2.15833 -0.733333 0.1) (2.15833 -0.6875 0.1) (2.15833 -0.641667 0.1) (2.11528 -0.641667 0.1) (2.07222 -0.641667 0.1) (2.15833 -0.55 0.1) (2.15833 -0.504167 0.1) (2.15833 -0.458333 0.1) (2.11528 -0.458333 0.1) (2.07222 -0.458333 0.1) (2.15833 -0.366667 0.1) (2.15833 -0.320833 0.1) (2.15833 -0.275 0.1) (2.11528 -0.275 0.1) (2.07222 -0.275 0.1) (2.15833 -0.183333 0.1) (2.15833 -0.1375 0.1) (2.15833 -0.0916667 0.1) (2.11528 -0.0916667 0.1) (2.07222 -0.0916667 0.1) (2.15833 0 0.1) (2.15833 0.0458333 0.1) (2.15833 0.0916667 0.1) (2.11528 0.0916667 0.1) (2.07222 0.0916667 0.1) (2.15833 0.183333 0.1) (2.15833 0.229167 0.1) (2.15833 0.275 0.1) (2.11528 0.275 0.1) (2.07222 0.275 0.1) (2.15833 0.366667 0.1) (2.15833 0.4125 0.1) (2.15833 0.458333 0.1) (2.11528 0.458333 0.1) (2.07222 0.458333 0.1) (2.15833 0.55 0.1) (2.15833 0.595833 0.1) (2.15833 0.641667 0.1) (2.11528 0.641667 0.1) (2.07222 0.641667 0.1) (2.15833 0.733333 0.1) (2.15833 0.779167 0.1) (2.15833 0.825 0.1) (2.11528 0.825 0.1) (2.07222 0.825 0.1) (2.20139 0.9625 0.1) (2.15833 1.00833 0.1) (2.20139 1.00833 0.1) (2.24444 1.00833 0.1) (2.11528 1.00833 0.1) (2.37361 -1.00833 0.1) (2.37361 -0.9625 0.1) (2.41667 -0.9625 0.1) (2.2875 -0.9625 0.1) (2.33056 -0.916667 0.1) (2.33056 -0.870833 0.1) (2.33056 -0.825 0.1) (2.2875 -0.825 0.1) (2.24444 -0.825 0.1) (2.33056 -0.733333 0.1) (2.33056 -0.6875 0.1) (2.33056 -0.641667 0.1) (2.2875 -0.641667 0.1) (2.24444 -0.641667 0.1) (2.33056 -0.55 0.1) (2.33056 -0.504167 0.1) (2.33056 -0.458333 0.1) (2.2875 -0.458333 0.1) (2.24444 -0.458333 0.1) (2.33056 -0.366667 0.1) (2.33056 -0.320833 0.1) (2.33056 -0.275 0.1) (2.2875 -0.275 0.1) (2.24444 -0.275 0.1) (2.33056 -0.183333 0.1) (2.33056 -0.1375 0.1) (2.33056 -0.0916667 0.1) (2.2875 -0.0916667 0.1) (2.24444 -0.0916667 0.1) (2.33056 -9.25186e-18 0.1) (2.33056 0.0458333 0.1) (2.33056 0.0916667 0.1) (2.2875 0.0916667 0.1) (2.24444 0.0916667 0.1) (2.33056 0.183333 0.1) (2.33056 0.229167 0.1) (2.33056 0.275 0.1) (2.2875 0.275 0.1) (2.24444 0.275 0.1) (2.33056 0.366667 0.1) (2.33056 0.4125 0.1) (2.33056 0.458333 0.1) (2.2875 0.458333 0.1) (2.24444 0.458333 0.1) (2.33056 0.55 0.1) (2.33056 0.595833 0.1) (2.33056 0.641667 0.1) (2.2875 0.641667 0.1) (2.24444 0.641667 0.1) (2.33056 0.733333 0.1) (2.33056 0.779167 0.1) (2.33056 0.825 0.1) (2.2875 0.825 0.1) (2.24444 0.825 0.1) (2.37361 0.9625 0.1) (2.33056 1.00833 0.1) (2.37361 1.00833 0.1) (2.41667 1.00833 0.1) (2.2875 1.00833 0.1) (2.54583 -1.00833 0.1) (2.54583 -0.9625 0.1) (2.58889 -0.9625 0.1) (2.45972 -0.9625 0.1) (2.50278 -0.916667 0.1) (2.50278 -0.870833 0.1) (2.50278 -0.825 0.1) (2.45972 -0.825 0.1) (2.41667 -0.825 0.1) (2.50278 -0.733333 0.1) (2.50278 -0.6875 0.1) (2.50278 -0.641667 0.1) (2.45972 -0.641667 0.1) (2.41667 -0.641667 0.1) (2.50278 -0.55 0.1) (2.50278 -0.504167 0.1) (2.50278 -0.458333 0.1) (2.45972 -0.458333 0.1) (2.41667 -0.458333 0.1) (2.50278 -0.366667 0.1) (2.50278 -0.320833 0.1) (2.50278 -0.275 0.1) (2.45972 -0.275 0.1) (2.41667 -0.275 0.1) (2.50278 -0.183333 0.1) (2.50278 -0.1375 0.1) (2.50278 -0.0916667 0.1) (2.45972 -0.0916667 0.1) (2.41667 -0.0916667 0.1) (2.50278 -1.85037e-17 0.1) (2.50278 0.0458333 0.1) (2.50278 0.0916667 0.1) (2.45972 0.0916667 0.1) (2.41667 0.0916667 0.1) (2.50278 0.183333 0.1) (2.50278 0.229167 0.1) (2.50278 0.275 0.1) (2.45972 0.275 0.1) (2.41667 0.275 0.1) (2.50278 0.366667 0.1) (2.50278 0.4125 0.1) (2.50278 0.458333 0.1) (2.45972 0.458333 0.1) (2.41667 0.458333 0.1) (2.50278 0.55 0.1) (2.50278 0.595833 0.1) (2.50278 0.641667 0.1) (2.45972 0.641667 0.1) (2.41667 0.641667 0.1) (2.50278 0.733333 0.1) (2.50278 0.779167 0.1) (2.50278 0.825 0.1) (2.45972 0.825 0.1) (2.41667 0.825 0.1) (2.54583 0.9625 0.1) (2.50278 1.00833 0.1) (2.54583 1.00833 0.1) (2.58889 1.00833 0.1) (2.45972 1.00833 0.1) (2.71806 -1.00833 0.1) (2.71806 -0.9625 0.1) (2.76111 -0.9625 0.1) (2.63194 -0.9625 0.1) (2.675 -0.916667 0.1) (2.675 -0.870833 0.1) (2.675 -0.825 0.1) (2.63194 -0.825 0.1) (2.58889 -0.825 0.1) (2.675 -0.733333 0.1) (2.675 -0.6875 0.1) (2.675 -0.641667 0.1) (2.63194 -0.641667 0.1) (2.58889 -0.641667 0.1) (2.675 -0.55 0.1) (2.675 -0.504167 0.1) (2.675 -0.458333 0.1) (2.63194 -0.458333 0.1) (2.58889 -0.458333 0.1) (2.675 -0.366667 0.1) (2.675 -0.320833 0.1) (2.675 -0.275 0.1) (2.63194 -0.275 0.1) (2.58889 -0.275 0.1) (2.675 -0.183333 0.1) (2.675 -0.1375 0.1) (2.675 -0.0916667 0.1) (2.63194 -0.0916667 0.1) (2.58889 -0.0916667 0.1) (2.675 0 0.1) (2.675 0.0458333 0.1) (2.675 0.0916667 0.1) (2.63194 0.0916667 0.1) (2.58889 0.0916667 0.1) (2.675 0.183333 0.1) (2.675 0.229167 0.1) (2.675 0.275 0.1) (2.63194 0.275 0.1) (2.58889 0.275 0.1) (2.675 0.366667 0.1) (2.675 0.4125 0.1) (2.675 0.458333 0.1) (2.63194 0.458333 0.1) (2.58889 0.458333 0.1) (2.675 0.55 0.1) (2.675 0.595833 0.1) (2.675 0.641667 0.1) (2.63194 0.641667 0.1) (2.58889 0.641667 0.1) (2.675 0.733333 0.1) (2.675 0.779167 0.1) (2.675 0.825 0.1) (2.63194 0.825 0.1) (2.58889 0.825 0.1) (2.71806 0.9625 0.1) (2.675 1.00833 0.1) (2.71806 1.00833 0.1) (2.76111 1.00833 0.1) (2.63194 1.00833 0.1) (2.89028 -1.00833 0.1) (2.89028 -0.9625 0.1) (2.93333 -0.9625 0.1) (2.80417 -0.9625 0.1) (2.84722 -0.916667 0.1) (2.84722 -0.870833 0.1) (2.84722 -0.825 0.1) (2.80417 -0.825 0.1) (2.76111 -0.825 0.1) (2.84722 -0.733333 0.1) (2.84722 -0.6875 0.1) (2.84722 -0.641667 0.1) (2.80417 -0.641667 0.1) (2.76111 -0.641667 0.1) (2.84722 -0.55 0.1) (2.84722 -0.504167 0.1) (2.84722 -0.458333 0.1) (2.80417 -0.458333 0.1) (2.76111 -0.458333 0.1) (2.84722 -0.366667 0.1) (2.84722 -0.320833 0.1) (2.84722 -0.275 0.1) (2.80417 -0.275 0.1) (2.76111 -0.275 0.1) (2.84722 -0.183333 0.1) (2.84722 -0.1375 0.1) (2.84722 -0.0916667 0.1) (2.80417 -0.0916667 0.1) (2.76111 -0.0916667 0.1) (2.84722 1.85037e-17 0.1) (2.84722 0.0458333 0.1) (2.84722 0.0916667 0.1) (2.80417 0.0916667 0.1) (2.76111 0.0916667 0.1) (2.84722 0.183333 0.1) (2.84722 0.229167 0.1) (2.84722 0.275 0.1) (2.80417 0.275 0.1) (2.76111 0.275 0.1) (2.84722 0.366667 0.1) (2.84722 0.4125 0.1) (2.84722 0.458333 0.1) (2.80417 0.458333 0.1) (2.76111 0.458333 0.1) (2.84722 0.55 0.1) (2.84722 0.595833 0.1) (2.84722 0.641667 0.1) (2.80417 0.641667 0.1) (2.76111 0.641667 0.1) (2.84722 0.733333 0.1) (2.84722 0.779167 0.1) (2.84722 0.825 0.1) (2.80417 0.825 0.1) (2.76111 0.825 0.1) (2.89028 0.9625 0.1) (2.84722 1.00833 0.1) (2.89028 1.00833 0.1) (2.93333 1.00833 0.1) (2.80417 1.00833 0.1) (3.0625 -1.00833 0.1) (3.0625 -0.9625 0.1) (3.10556 -0.9625 0.1) (2.97639 -0.9625 0.1) (3.01944 -0.916667 0.1) (3.01944 -0.870833 0.1) (3.01944 -0.825 0.1) (2.97639 -0.825 0.1) (2.93333 -0.825 0.1) (3.01944 -0.733333 0.1) (3.01944 -0.6875 0.1) (3.01944 -0.641667 0.1) (2.97639 -0.641667 0.1) (2.93333 -0.641667 0.1) (3.01944 -0.55 0.1) (3.01944 -0.504167 0.1) (3.01944 -0.458333 0.1) (2.97639 -0.458333 0.1) (2.93333 -0.458333 0.1) (3.01944 -0.366667 0.1) (3.01944 -0.320833 0.1) (3.01944 -0.275 0.1) (2.97639 -0.275 0.1) (2.93333 -0.275 0.1) (3.01944 -0.183333 0.1) (3.01944 -0.1375 0.1) (3.01944 -0.0916667 0.1) (2.97639 -0.0916667 0.1) (2.93333 -0.0916667 0.1) (3.01944 9.25186e-18 0.1) (3.01944 0.0458333 0.1) (3.01944 0.0916667 0.1) (2.97639 0.0916667 0.1) (2.93333 0.0916667 0.1) (3.01944 0.183333 0.1) (3.01944 0.229167 0.1) (3.01944 0.275 0.1) (2.97639 0.275 0.1) (2.93333 0.275 0.1) (3.01944 0.366667 0.1) (3.01944 0.4125 0.1) (3.01944 0.458333 0.1) (2.97639 0.458333 0.1) (2.93333 0.458333 0.1) (3.01944 0.55 0.1) (3.01944 0.595833 0.1) (3.01944 0.641667 0.1) (2.97639 0.641667 0.1) (2.93333 0.641667 0.1) (3.01944 0.733333 0.1) (3.01944 0.779167 0.1) (3.01944 0.825 0.1) (2.97639 0.825 0.1) (2.93333 0.825 0.1) (3.0625 0.9625 0.1) (3.01944 1.00833 0.1) (3.0625 1.00833 0.1) (3.10556 1.00833 0.1) (2.97639 1.00833 0.1) (3.23472 -1.00833 0.1) (3.23472 -0.9625 0.1) (3.27778 -0.9625 0.1) (3.14861 -0.9625 0.1) (3.19167 -0.916667 0.1) (3.19167 -0.870833 0.1) (3.19167 -0.825 0.1) (3.14861 -0.825 0.1) (3.10556 -0.825 0.1) (3.19167 -0.733333 0.1) (3.19167 -0.6875 0.1) (3.19167 -0.641667 0.1) (3.14861 -0.641667 0.1) (3.10556 -0.641667 0.1) (3.19167 -0.55 0.1) (3.19167 -0.504167 0.1) (3.19167 -0.458333 0.1) (3.14861 -0.458333 0.1) (3.10556 -0.458333 0.1) (3.19167 -0.366667 0.1) (3.19167 -0.320833 0.1) (3.19167 -0.275 0.1) (3.14861 -0.275 0.1) (3.10556 -0.275 0.1) (3.19167 -0.183333 0.1) (3.19167 -0.1375 0.1) (3.19167 -0.0916667 0.1) (3.14861 -0.0916667 0.1) (3.10556 -0.0916667 0.1) (3.19167 0 0.1) (3.19167 0.0458333 0.1) (3.19167 0.0916667 0.1) (3.14861 0.0916667 0.1) (3.10556 0.0916667 0.1) (3.19167 0.183333 0.1) (3.19167 0.229167 0.1) (3.19167 0.275 0.1) (3.14861 0.275 0.1) (3.10556 0.275 0.1) (3.19167 0.366667 0.1) (3.19167 0.4125 0.1) (3.19167 0.458333 0.1) (3.14861 0.458333 0.1) (3.10556 0.458333 0.1) (3.19167 0.55 0.1) (3.19167 0.595833 0.1) (3.19167 0.641667 0.1) (3.14861 0.641667 0.1) (3.10556 0.641667 0.1) (3.19167 0.733333 0.1) (3.19167 0.779167 0.1) (3.19167 0.825 0.1) (3.14861 0.825 0.1) (3.10556 0.825 0.1) (3.23472 0.9625 0.1) (3.19167 1.00833 0.1) (3.23472 1.00833 0.1) (3.27778 1.00833 0.1) (3.14861 1.00833 0.1) (3.40694 -1.00833 0.1) (3.40694 -0.9625 0.1) (3.45 -0.9625 0.1) (3.32083 -0.9625 0.1) (3.36389 -0.916667 0.1) (3.36389 -0.870833 0.1) (3.36389 -0.825 0.1) (3.32083 -0.825 0.1) (3.27778 -0.825 0.1) (3.36389 -0.733333 0.1) (3.36389 -0.6875 0.1) (3.36389 -0.641667 0.1) (3.32083 -0.641667 0.1) (3.27778 -0.641667 0.1) (3.36389 -0.55 0.1) (3.36389 -0.504167 0.1) (3.36389 -0.458333 0.1) (3.32083 -0.458333 0.1) (3.27778 -0.458333 0.1) (3.36389 -0.366667 0.1) (3.36389 -0.320833 0.1) (3.36389 -0.275 0.1) (3.32083 -0.275 0.1) (3.27778 -0.275 0.1) (3.36389 -0.183333 0.1) (3.36389 -0.1375 0.1) (3.36389 -0.0916667 0.1) (3.32083 -0.0916667 0.1) (3.27778 -0.0916667 0.1) (3.36389 0 0.1) (3.36389 0.0458333 0.1) (3.36389 0.0916667 0.1) (3.32083 0.0916667 0.1) (3.27778 0.0916667 0.1) (3.36389 0.183333 0.1) (3.36389 0.229167 0.1) (3.36389 0.275 0.1) (3.32083 0.275 0.1) (3.27778 0.275 0.1) (3.36389 0.366667 0.1) (3.36389 0.4125 0.1) (3.36389 0.458333 0.1) (3.32083 0.458333 0.1) (3.27778 0.458333 0.1) (3.36389 0.55 0.1) (3.36389 0.595833 0.1) (3.36389 0.641667 0.1) (3.32083 0.641667 0.1) (3.27778 0.641667 0.1) (3.36389 0.733333 0.1) (3.36389 0.779167 0.1) (3.36389 0.825 0.1) (3.32083 0.825 0.1) (3.27778 0.825 0.1) (3.40694 0.9625 0.1) (3.36389 1.00833 0.1) (3.40694 1.00833 0.1) (3.45 1.00833 0.1) (3.32083 1.00833 0.1) (3.57917 -1.00833 0.1) (3.57917 -0.9625 0.1) (3.62222 -0.9625 0.1) (3.49306 -0.9625 0.1) (3.53611 -0.916667 0.1) (3.53611 -0.870833 0.1) (3.53611 -0.825 0.1) (3.49306 -0.825 0.1) (3.45 -0.825 0.1) (3.53611 -0.733333 0.1) (3.53611 -0.6875 0.1) (3.53611 -0.641667 0.1) (3.49306 -0.641667 0.1) (3.45 -0.641667 0.1) (3.53611 -0.55 0.1) (3.53611 -0.504167 0.1) (3.53611 -0.458333 0.1) (3.49306 -0.458333 0.1) (3.45 -0.458333 0.1) (3.53611 -0.366667 0.1) (3.53611 -0.320833 0.1) (3.53611 -0.275 0.1) (3.49306 -0.275 0.1) (3.45 -0.275 0.1) (3.53611 -0.183333 0.1) (3.53611 -0.1375 0.1) (3.53611 -0.0916667 0.1) (3.49306 -0.0916667 0.1) (3.45 -0.0916667 0.1) (3.53611 0 0.1) (3.53611 0.0458333 0.1) (3.53611 0.0916667 0.1) (3.49306 0.0916667 0.1) (3.45 0.0916667 0.1) (3.53611 0.183333 0.1) (3.53611 0.229167 0.1) (3.53611 0.275 0.1) (3.49306 0.275 0.1) (3.45 0.275 0.1) (3.53611 0.366667 0.1) (3.53611 0.4125 0.1) (3.53611 0.458333 0.1) (3.49306 0.458333 0.1) (3.45 0.458333 0.1) (3.53611 0.55 0.1) (3.53611 0.595833 0.1) (3.53611 0.641667 0.1) (3.49306 0.641667 0.1) (3.45 0.641667 0.1) (3.53611 0.733333 0.1) (3.53611 0.779167 0.1) (3.53611 0.825 0.1) (3.49306 0.825 0.1) (3.45 0.825 0.1) (3.57917 0.9625 0.1) (3.53611 1.00833 0.1) (3.57917 1.00833 0.1) (3.62222 1.00833 0.1) (3.49306 1.00833 0.1) (3.75139 -1.00833 0.1) (3.75139 -0.9625 0.1) (3.79444 -0.9625 0.1) (3.66528 -0.9625 0.1) (3.70833 -0.916667 0.1) (3.70833 -0.870833 0.1) (3.70833 -0.825 0.1) (3.66528 -0.825 0.1) (3.62222 -0.825 0.1) (3.70833 -0.733333 0.1) (3.70833 -0.6875 0.1) (3.70833 -0.641667 0.1) (3.66528 -0.641667 0.1) (3.62222 -0.641667 0.1) (3.70833 -0.55 0.1) (3.70833 -0.504167 0.1) (3.70833 -0.458333 0.1) (3.66528 -0.458333 0.1) (3.62222 -0.458333 0.1) (3.70833 -0.366667 0.1) (3.70833 -0.320833 0.1) (3.70833 -0.275 0.1) (3.66528 -0.275 0.1) (3.62222 -0.275 0.1) (3.70833 -0.183333 0.1) (3.70833 -0.1375 0.1) (3.70833 -0.0916667 0.1) (3.66528 -0.0916667 0.1) (3.62222 -0.0916667 0.1) (3.70833 -4.62593e-18 0.1) (3.70833 0.0458333 0.1) (3.70833 0.0916667 0.1) (3.66528 0.0916667 0.1) (3.62222 0.0916667 0.1) (3.70833 0.183333 0.1) (3.70833 0.229167 0.1) (3.70833 0.275 0.1) (3.66528 0.275 0.1) (3.62222 0.275 0.1) (3.70833 0.366667 0.1) (3.70833 0.4125 0.1) (3.70833 0.458333 0.1) (3.66528 0.458333 0.1) (3.62222 0.458333 0.1) (3.70833 0.55 0.1) (3.70833 0.595833 0.1) (3.70833 0.641667 0.1) (3.66528 0.641667 0.1) (3.62222 0.641667 0.1) (3.70833 0.733333 0.1) (3.70833 0.779167 0.1) (3.70833 0.825 0.1) (3.66528 0.825 0.1) (3.62222 0.825 0.1) (3.75139 0.9625 0.1) (3.70833 1.00833 0.1) (3.75139 1.00833 0.1) (3.79444 1.00833 0.1) (3.66528 1.00833 0.1) (3.92361 -1.00833 0.1) (3.92361 -0.9625 0.1) (3.96667 -0.9625 0.1) (3.8375 -0.9625 0.1) (3.88056 -0.916667 0.1) (3.88056 -0.870833 0.1) (3.88056 -0.825 0.1) (3.8375 -0.825 0.1) (3.79444 -0.825 0.1) (3.88056 -0.733333 0.1) (3.88056 -0.6875 0.1) (3.88056 -0.641667 0.1) (3.8375 -0.641667 0.1) (3.79444 -0.641667 0.1) (3.88056 -0.55 0.1) (3.88056 -0.504167 0.1) (3.88056 -0.458333 0.1) (3.8375 -0.458333 0.1) (3.79444 -0.458333 0.1) (3.88056 -0.366667 0.1) (3.88056 -0.320833 0.1) (3.88056 -0.275 0.1) (3.8375 -0.275 0.1) (3.79444 -0.275 0.1) (3.88056 -0.183333 0.1) (3.88056 -0.1375 0.1) (3.88056 -0.0916667 0.1) (3.8375 -0.0916667 0.1) (3.79444 -0.0916667 0.1) (3.88056 -9.25186e-18 0.1) (3.88056 0.0458333 0.1) (3.88056 0.0916667 0.1) (3.8375 0.0916667 0.1) (3.79444 0.0916667 0.1) (3.88056 0.183333 0.1) (3.88056 0.229167 0.1) (3.88056 0.275 0.1) (3.8375 0.275 0.1) (3.79444 0.275 0.1) (3.88056 0.366667 0.1) (3.88056 0.4125 0.1) (3.88056 0.458333 0.1) (3.8375 0.458333 0.1) (3.79444 0.458333 0.1) (3.88056 0.55 0.1) (3.88056 0.595833 0.1) (3.88056 0.641667 0.1) (3.8375 0.641667 0.1) (3.79444 0.641667 0.1) (3.88056 0.733333 0.1) (3.88056 0.779167 0.1) (3.88056 0.825 0.1) (3.8375 0.825 0.1) (3.79444 0.825 0.1) (3.92361 0.9625 0.1) (3.88056 1.00833 0.1) (3.92361 1.00833 0.1) (3.96667 1.00833 0.1) (3.8375 1.00833 0.1) (4.09583 -1.00833 0.1) (4.09583 -0.9625 0.1) (4.13889 -0.9625 0.1) (4.00972 -0.9625 0.1) (4.05278 -0.916667 0.1) (4.05278 -0.870833 0.1) (4.05278 -0.825 0.1) (4.00972 -0.825 0.1) (3.96667 -0.825 0.1) (4.05278 -0.733333 0.1) (4.05278 -0.6875 0.1) (4.05278 -0.641667 0.1) (4.00972 -0.641667 0.1) (3.96667 -0.641667 0.1) (4.05278 -0.55 0.1) (4.05278 -0.504167 0.1) (4.05278 -0.458333 0.1) (4.00972 -0.458333 0.1) (3.96667 -0.458333 0.1) (4.05278 -0.366667 0.1) (4.05278 -0.320833 0.1) (4.05278 -0.275 0.1) (4.00972 -0.275 0.1) (3.96667 -0.275 0.1) (4.05278 -0.183333 0.1) (4.05278 -0.1375 0.1) (4.05278 -0.0916667 0.1) (4.00972 -0.0916667 0.1) (3.96667 -0.0916667 0.1) (4.05278 -1.38778e-17 0.1) (4.05278 0.0458333 0.1) (4.05278 0.0916667 0.1) (4.00972 0.0916667 0.1) (3.96667 0.0916667 0.1) (4.05278 0.183333 0.1) (4.05278 0.229167 0.1) (4.05278 0.275 0.1) (4.00972 0.275 0.1) (3.96667 0.275 0.1) (4.05278 0.366667 0.1) (4.05278 0.4125 0.1) (4.05278 0.458333 0.1) (4.00972 0.458333 0.1) (3.96667 0.458333 0.1) (4.05278 0.55 0.1) (4.05278 0.595833 0.1) (4.05278 0.641667 0.1) (4.00972 0.641667 0.1) (3.96667 0.641667 0.1) (4.05278 0.733333 0.1) (4.05278 0.779167 0.1) (4.05278 0.825 0.1) (4.00972 0.825 0.1) (3.96667 0.825 0.1) (4.09583 0.9625 0.1) (4.05278 1.00833 0.1) (4.09583 1.00833 0.1) (4.13889 1.00833 0.1) (4.00972 1.00833 0.1) (4.26806 -1.00833 0.1) (4.26806 -0.9625 0.1) (4.31111 -0.9625 0.1) (4.18194 -0.9625 0.1) (4.225 -0.916667 0.1) (4.225 -0.870833 0.1) (4.225 -0.825 0.1) (4.18194 -0.825 0.1) (4.13889 -0.825 0.1) (4.225 -0.733333 0.1) (4.225 -0.6875 0.1) (4.225 -0.641667 0.1) (4.18194 -0.641667 0.1) (4.13889 -0.641667 0.1) (4.225 -0.55 0.1) (4.225 -0.504167 0.1) (4.225 -0.458333 0.1) (4.18194 -0.458333 0.1) (4.13889 -0.458333 0.1) (4.225 -0.366667 0.1) (4.225 -0.320833 0.1) (4.225 -0.275 0.1) (4.18194 -0.275 0.1) (4.13889 -0.275 0.1) (4.225 -0.183333 0.1) (4.225 -0.1375 0.1) (4.225 -0.0916667 0.1) (4.18194 -0.0916667 0.1) (4.13889 -0.0916667 0.1) (4.225 0 0.1) (4.225 0.0458333 0.1) (4.225 0.0916667 0.1) (4.18194 0.0916667 0.1) (4.13889 0.0916667 0.1) (4.225 0.183333 0.1) (4.225 0.229167 0.1) (4.225 0.275 0.1) (4.18194 0.275 0.1) (4.13889 0.275 0.1) (4.225 0.366667 0.1) (4.225 0.4125 0.1) (4.225 0.458333 0.1) (4.18194 0.458333 0.1) (4.13889 0.458333 0.1) (4.225 0.55 0.1) (4.225 0.595833 0.1) (4.225 0.641667 0.1) (4.18194 0.641667 0.1) (4.13889 0.641667 0.1) (4.225 0.733333 0.1) (4.225 0.779167 0.1) (4.225 0.825 0.1) (4.18194 0.825 0.1) (4.13889 0.825 0.1) (4.26806 0.9625 0.1) (4.225 1.00833 0.1) (4.26806 1.00833 0.1) (4.31111 1.00833 0.1) (4.18194 1.00833 0.1) (4.44028 -1.00833 0.1) (4.44028 -0.9625 0.1) (4.48333 -0.9625 0.1) (4.35417 -0.9625 0.1) (4.39722 -0.916667 0.1) (4.39722 -0.870833 0.1) (4.39722 -0.825 0.1) (4.35417 -0.825 0.1) (4.31111 -0.825 0.1) (4.39722 -0.733333 0.1) (4.39722 -0.6875 0.1) (4.39722 -0.641667 0.1) (4.35417 -0.641667 0.1) (4.31111 -0.641667 0.1) (4.39722 -0.55 0.1) (4.39722 -0.504167 0.1) (4.39722 -0.458333 0.1) (4.35417 -0.458333 0.1) (4.31111 -0.458333 0.1) (4.39722 -0.366667 0.1) (4.39722 -0.320833 0.1) (4.39722 -0.275 0.1) (4.35417 -0.275 0.1) (4.31111 -0.275 0.1) (4.39722 -0.183333 0.1) (4.39722 -0.1375 0.1) (4.39722 -0.0916667 0.1) (4.35417 -0.0916667 0.1) (4.31111 -0.0916667 0.1) (4.39722 -2.31296e-18 0.1) (4.39722 0.0458333 0.1) (4.39722 0.0916667 0.1) (4.35417 0.0916667 0.1) (4.31111 0.0916667 0.1) (4.39722 0.183333 0.1) (4.39722 0.229167 0.1) (4.39722 0.275 0.1) (4.35417 0.275 0.1) (4.31111 0.275 0.1) (4.39722 0.366667 0.1) (4.39722 0.4125 0.1) (4.39722 0.458333 0.1) (4.35417 0.458333 0.1) (4.31111 0.458333 0.1) (4.39722 0.55 0.1) (4.39722 0.595833 0.1) (4.39722 0.641667 0.1) (4.35417 0.641667 0.1) (4.31111 0.641667 0.1) (4.39722 0.733333 0.1) (4.39722 0.779167 0.1) (4.39722 0.825 0.1) (4.35417 0.825 0.1) (4.31111 0.825 0.1) (4.44028 0.9625 0.1) (4.39722 1.00833 0.1) (4.44028 1.00833 0.1) (4.48333 1.00833 0.1) (4.35417 1.00833 0.1) (4.6125 -1.00833 0.1) (4.6125 -0.9625 0.1) (4.65556 -0.9625 0.1) (4.52639 -0.9625 0.1) (4.56944 -0.916667 0.1) (4.56944 -0.870833 0.1) (4.56944 -0.825 0.1) (4.52639 -0.825 0.1) (4.48333 -0.825 0.1) (4.56944 -0.733333 0.1) (4.56944 -0.6875 0.1) (4.56944 -0.641667 0.1) (4.52639 -0.641667 0.1) (4.48333 -0.641667 0.1) (4.56944 -0.55 0.1) (4.56944 -0.504167 0.1) (4.56944 -0.458333 0.1) (4.52639 -0.458333 0.1) (4.48333 -0.458333 0.1) (4.56944 -0.366667 0.1) (4.56944 -0.320833 0.1) (4.56944 -0.275 0.1) (4.52639 -0.275 0.1) (4.48333 -0.275 0.1) (4.56944 -0.183333 0.1) (4.56944 -0.1375 0.1) (4.56944 -0.0916667 0.1) (4.52639 -0.0916667 0.1) (4.48333 -0.0916667 0.1) (4.56944 -6.93889e-18 0.1) (4.56944 0.0458333 0.1) (4.56944 0.0916667 0.1) (4.52639 0.0916667 0.1) (4.48333 0.0916667 0.1) (4.56944 0.183333 0.1) (4.56944 0.229167 0.1) (4.56944 0.275 0.1) (4.52639 0.275 0.1) (4.48333 0.275 0.1) (4.56944 0.366667 0.1) (4.56944 0.4125 0.1) (4.56944 0.458333 0.1) (4.52639 0.458333 0.1) (4.48333 0.458333 0.1) (4.56944 0.55 0.1) (4.56944 0.595833 0.1) (4.56944 0.641667 0.1) (4.52639 0.641667 0.1) (4.48333 0.641667 0.1) (4.56944 0.733333 0.1) (4.56944 0.779167 0.1) (4.56944 0.825 0.1) (4.52639 0.825 0.1) (4.48333 0.825 0.1) (4.6125 0.9625 0.1) (4.56944 1.00833 0.1) (4.6125 1.00833 0.1) (4.65556 1.00833 0.1) (4.52639 1.00833 0.1) (4.78472 -1.00833 0.1) (4.78472 -0.9625 0.1) (4.82778 -0.9625 0.1) (4.69861 -0.9625 0.1) (4.74167 -0.916667 0.1) (4.74167 -0.870833 0.1) (4.74167 -0.825 0.1) (4.69861 -0.825 0.1) (4.65556 -0.825 0.1) (4.74167 -0.733333 0.1) (4.74167 -0.6875 0.1) (4.74167 -0.641667 0.1) (4.69861 -0.641667 0.1) (4.65556 -0.641667 0.1) (4.74167 -0.55 0.1) (4.74167 -0.504167 0.1) (4.74167 -0.458333 0.1) (4.69861 -0.458333 0.1) (4.65556 -0.458333 0.1) (4.74167 -0.366667 0.1) (4.74167 -0.320833 0.1) (4.74167 -0.275 0.1) (4.69861 -0.275 0.1) (4.65556 -0.275 0.1) (4.74167 -0.183333 0.1) (4.74167 -0.1375 0.1) (4.74167 -0.0916667 0.1) (4.69861 -0.0916667 0.1) (4.65556 -0.0916667 0.1) (4.74167 -1.15648e-17 0.1) (4.74167 0.0458333 0.1) (4.74167 0.0916667 0.1) (4.69861 0.0916667 0.1) (4.65556 0.0916667 0.1) (4.74167 0.183333 0.1) (4.74167 0.229167 0.1) (4.74167 0.275 0.1) (4.69861 0.275 0.1) (4.65556 0.275 0.1) (4.74167 0.366667 0.1) (4.74167 0.4125 0.1) (4.74167 0.458333 0.1) (4.69861 0.458333 0.1) (4.65556 0.458333 0.1) (4.74167 0.55 0.1) (4.74167 0.595833 0.1) (4.74167 0.641667 0.1) (4.69861 0.641667 0.1) (4.65556 0.641667 0.1) (4.74167 0.733333 0.1) (4.74167 0.779167 0.1) (4.74167 0.825 0.1) (4.69861 0.825 0.1) (4.65556 0.825 0.1) (4.78472 0.9625 0.1) (4.74167 1.00833 0.1) (4.78472 1.00833 0.1) (4.82778 1.00833 0.1) (4.69861 1.00833 0.1) (5 -1.375 0.1) (5 -1.28333 0.1) (5 -1.19167 0.1) (5 -1.1 0.1) (5 -1.00833 0.1) (4.95694 -1.00833 0.1) (4.95694 -0.9625 0.1) (5 -0.9625 0.1) (4.87083 -0.9625 0.1) (4.91389 -0.916667 0.1) (4.91389 -0.870833 0.1) (4.91389 -0.825 0.1) (4.87083 -0.825 0.1) (4.82778 -0.825 0.1) (4.91389 -0.733333 0.1) (4.91389 -0.6875 0.1) (4.91389 -0.641667 0.1) (4.87083 -0.641667 0.1) (4.82778 -0.641667 0.1) (4.91389 -0.55 0.1) (4.91389 -0.504167 0.1) (4.91389 -0.458333 0.1) (4.87083 -0.458333 0.1) (4.82778 -0.458333 0.1) (4.91389 -0.366667 0.1) (4.91389 -0.320833 0.1) (4.91389 -0.275 0.1) (4.87083 -0.275 0.1) (4.82778 -0.275 0.1) (4.91389 -0.183333 0.1) (4.91389 -0.1375 0.1) (4.91389 -0.0916667 0.1) (4.87083 -0.0916667 0.1) (4.82778 -0.0916667 0.1) (4.91389 -1.61908e-17 0.1) (4.91389 0.0458333 0.1) (4.91389 0.0916667 0.1) (4.87083 0.0916667 0.1) (4.82778 0.0916667 0.1) (4.91389 0.183333 0.1) (4.91389 0.229167 0.1) (4.91389 0.275 0.1) (4.87083 0.275 0.1) (4.82778 0.275 0.1) (4.91389 0.366667 0.1) (4.91389 0.4125 0.1) (4.91389 0.458333 0.1) (4.87083 0.458333 0.1) (4.82778 0.458333 0.1) (4.91389 0.55 0.1) (4.91389 0.595833 0.1) (4.91389 0.641667 0.1) (4.87083 0.641667 0.1) (4.82778 0.641667 0.1) (4.91389 0.733333 0.1) (4.91389 0.779167 0.1) (4.91389 0.825 0.1) (4.87083 0.825 0.1) (4.82778 0.825 0.1) (5 0.9625 0.1) (4.95694 0.9625 0.1) (5 1.1 0.1) (4.91389 1.00833 0.1) (4.95694 1.00833 0.1) (5 1.00833 0.1) (4.87083 1.00833 0.1) (5 1.19167 0.1) (5 1.28333 0.1) (5 1.375 0.1) (0.8463457469 -0.2833312954 0.1) (0.8355906806 -0.2828450907 0.1) (0.835056847 -0.2941304771 0.1) (0.8328959592 0.0725142794 0.1) (0.8318797559 0.04986893807 0.1) (0.8308785351 0.02722287341 0.1) (0.8523327385 0.02590075412 0.1) (0.8737476703 0.02453247491 0.1) (1.019141476 -0.2850379699 0.1) (1.008393994 -0.2845190929 0.1) (1.007841409 -0.2959647615 0.1) (1.017102605 -0.1335845999 0.1) (1.015024466 -0.1471823558 0.1) (1.025772006 -0.1477000342 0.1) (1.036529515 -0.1482185944 0.1) (0.8729700519 -0.1218861889 0.1) (0.8951398079 0.02314827638 0.1) (0.9165218812 0.02172151366 0.1) (0.9175431409 0.0443886365 0.1) (-0.02576001753 -0.2191222382 0.1) (-0.04784465905 -0.2177566669 0.1) (-0.04864744277 -0.2406555949 0.1) (-0.04947767722 -0.2635341755 0.1) (-0.1763327371 -0.1134884105 0.1) (-0.1549547623 -0.1148549055 0.1) (-0.1335510858 -0.1162904202 0.1) (-0.132562409 -0.09274290186 0.1) (0.1666075688 0.153632925 0.1) (0.1448483197 0.1546504 0.1) (0.1437325975 0.1319137516 0.1) (0.2959625175 -0.303361594 0.1) (0.2948715389 -0.3260834184 0.1) (0.3163710423 -0.3270893544 0.1) (0.3378546608 -0.3280925211 0.1) (0.165715442 -0.3200040809 0.1) (0.1872772934 -0.3210250409 0.1) (0.2088163162 -0.3220418952 0.1) (0.2099068264 -0.2993090354 0.1) (0.3398736187 0.1450575794 0.1) (0.3182314817 0.1461575029 0.1) (0.3171412747 0.1234516598 0.1) (0.4679480879 -0.3113975638 0.1) (0.4668610702 -0.3340995562 0.1) (0.4883700936 -0.3350949389 0.1) (0.5098702239 -0.33608789 0.1) (0.3593372804 -0.3290956395 0.1) (0.380831886 -0.3300993367 0.1) (0.3819204329 -0.3073864053 0.1) (0.5124732503 0.1360748965 0.1) (0.4909509049 0.1372090831 0.1) (0.489890918 0.1145278114 0.1) (0.6399592288 -0.3193186331 0.1) (0.6388750768 -0.3420027428 0.1) (0.6603738846 -0.3429816137 0.1) (0.6818687934 -0.3439582941 0.1) (0.5313724483 -0.3370789398 0.1) (0.5528787645 -0.3380681849 0.1) (0.5539642528 -0.3153771315 0.1) (0.5913492328 -0.2094627186 0.1) (0.8119357346 -0.3271068776 0.1) (0.810855144 -0.3498001697 0.1) (0.8323620389 -0.3507774287 0.1) (0.8538657443 -0.3517585384 0.1) (0.7033697435 -0.3449342649 0.1) (0.7248727877 -0.3459083345 0.1) (0.7259558925 -0.3232251754 0.1) (0.7632702922 -0.2174455156 0.1) (0.7683772644 -0.2233756871 0.1) (0.7737576391 -0.2236014063 0.1) (0.6987868195 -0.2144895049 0.1) (0.7639984476 -0.02535144811 0.1) (0.7635145546 -0.03659779739 0.1) (0.7742624169 -0.03725395247 0.1) (0.7849978876 -0.03789719496 0.1) (0.9851398302 -0.3330461688 0.1) (0.9840098072 -0.3558301827 0.1) (1.00507863 -0.3531901083 0.1) (1.026583582 -0.3542283446 0.1) (0.8753582215 -0.3527441119 0.1) (0.8968504575 -0.3537346795 0.1) (0.8979340102 -0.331021507 0.1) (0.943076763 -0.2877590844 0.1) (0.9323315543 -0.2872553346 0.1) (0.921569076 -0.286756758 0.1) (0.9210371918 -0.2980432397 0.1) (0.1709293325 0.02242386971 0.1) (0.3223597961 -0.2022979671 0.1) (0.321817703 -0.2136300095 0.1) (0.3325614788 -0.2141427006 0.1) (0.2573030601 -0.2105523541 0.1) (0.2680497842 -0.2110661887 0.1) (0.2788035485 -0.211579362 0.1) (0.2793464476 -0.2002513632 0.1) (0.344928071 -0.1805443638 0.1) (0.3395733941 -0.1802633195 0.1) (0.3342087 -0.1799823922 0.1) (0.3339274973 -0.1857654598 0.1) (0.2794504141 0.01675909204 0.1) (0.2797424717 0.02276699778 0.1) (0.2743114457 0.02300116934 0.1) (0.2688783876 0.0232554623 0.1) (0.3444878772 0.01416278481 0.1) (0.1926757486 0.02149311443 0.1) (0.2634591824 0.02352710742 0.1) (0.2580529759 0.02381914944 0.1) (0.2577645761 0.01780405896 0.1) (0.3553699145 -0.1868340158 0.1) (0.3556462214 -0.1811108818 0.1) (0.3502816815 -0.1808267583 0.1) (0.5288041487 0.02166627292 0.1) (0.5180300152 0.02223449256 0.1) (0.5072529817 0.02280485454 0.1) (0.5067335519 0.01150675874 0.1) (0.3661312536 0.01292263844 0.1) (0.6773190726 -0.2133649623 0.1) (0.6128427017 -0.2105314365 0.1) (0.7791367117 -0.2238540941 0.1) (0.7845119199 -0.2241246162 0.1) (0.7847969437 -0.2183246132 0.1) (0.7920554152 -0.2921895709 0.1) (0.7925902959 -0.2809032338 0.1) (0.781849117 -0.2804197019 0.1) (0.7710960966 -0.2799325947 0.1) (0.7957256479 -0.03855498255 0.1) (0.8064441685 -0.03923825424 0.1) (0.8069278391 -0.02797577547 0.1) (0.9640451399 -0.3000565444 0.1) (0.9645771205 -0.288768065 0.1) (0.953815834 -0.2882655413 0.1) (0.1236034515 -0.2952024699 0.1) (0.1225174533 -0.3179455593 0.1) (0.1441228677 -0.3189766318 0.1) (-0.007766289324 -0.3114924086 0.1) (0.01417694301 -0.3126569268 0.1) (0.03587252816 -0.3137364039 0.1) (0.03694811787 -0.2909807981 0.1) (0.06344994418 -0.1897590288 0.1) (0.06291488758 -0.2011174412 0.1) (0.07378151338 -0.2016610925 0.1) (0.08464014505 -0.2022023555 0.1) (0.01948908281 -0.1873953643 0.1) (0.2363239786 -0.198186298 0.1) (0.2357817408 -0.2095213369 0.1) (0.2465463476 -0.2100380372 0.1) (0.1711622821 -0.2064165955 0.1) (0.1819377796 -0.2069358239 0.1) (0.1927163219 -0.2074541982 0.1) (0.1932591866 -0.1961061744 0.1) (0.6621178308 0.1051866849 0.1) (0.9435123019 -0.09386661382 0.1) (0.9328898997 -0.09297583582 0.1) (0.9324626472 -0.104106582 0.1) (0.1501082535 -0.1940268978 0.1) (0.1495663876 -0.2053749698 0.1) (0.1603737515 -0.205897739 0.1) (0.09547084376 -0.2027332594 0.1) (0.1063037434 -0.203266272 0.1) (0.1068428056 -0.1919140599 0.1) (0.0293283262 0.03437116206 0.1) (0.03007326271 0.04579252671 0.1) (0.01899522057 0.04617919044 0.1) (0.008001662172 0.04658380102 0.1) (0.63600071 0.004555050566 0.1) (0.6257544311 0.01642996975 0.1) (0.6149934892 0.01702258163 0.1) (0.6790229093 0.002152605901 0.1) (0.5498637086 0.009225248765 0.1) (0.5503769043 0.02051863972 0.1) (0.5395852258 0.02109671689 0.1) (0.6042342557 0.01760910404 0.1) (0.5934481983 0.01819992498 0.1) (0.5929363391 0.006913477657 0.1) (-0.07885901648 -0.09709739426 0.1) (-0.06816373813 -0.09767522247 0.1) (-0.06792820178 -0.08478168041 0.1) (-0.06743751488 -0.07230384004 0.1) (-0.01301920455 -0.1508146668 0.1) (-0.02419260633 -0.1499808844 0.1) (-0.02432243296 -0.16161596 0.1) (-0.02430140163 -0.1733011687 0.1) (-0.06670014649 -0.05920814853 0.1) (-0.06583441836 -0.0467032482 0.1) (-0.07659922431 -0.04644573985 0.1) (0.01504811689 -0.01704222072 0.1) (0.7417705674 -0.2167759604 0.1) (0.03276819418 -0.1367748282 0.1) (0.0380557068 -0.1427956113 0.1) (0.0102687289 -0.1353997419 0.1) (0.3019639432 -0.1784321572 0.1) (0.2965870147 -0.1782387417 0.1) (0.3124324075 -0.1847095786 0.1) (0.3127163933 -0.1788896023 0.1) (0.3073408 -0.178647795 0.1) (0.3011541159 0.01633298366 0.1) (0.3228313091 0.01537853894 0.1) (0.2144000388 0.02062249607 0.1) (0.2360952794 0.01948196456 0.1) (0.489522028 -0.01033977001 0.1) (0.4949089618 -0.01061626456 0.1) (0.4951827067 -0.00490472052 0.1) (0.6229401037 -0.045761669 0.1) (0.6178352081 -0.03972627525 0.1) (0.6444757407 -0.04682791757 0.1) (0.8146591294 -0.1014618931 0.1) (0.9414800751 -0.154395333 0.1) (1.048088535 -0.3552665809 0.1) (1.069583498 -0.3563043349 0.1) (1.07068862 -0.3334139964 0.1) (1.042856671 -0.2402955292 0.1) (1.053604104 -0.240815405 0.1) (1.054156641 -0.2293707352 0.1) (1.054709081 -0.2179280631 0.1) (0.974832167 -0.1079174912 0.1) (-0.006716158225 -0.116601714 0.1) (-0.01257031562 -0.1159229206 0.1) (-0.01240621624 -0.1219344277 0.1) (0.5698466298 -0.2083965631 0.1) (0.7202807496 -0.2156523546 0.1) (1.055261545 -0.2064848915 0.1) (1.055814134 -0.1950391229 0.1) (1.045056259 -0.1945281539 0.1) (0.1492567759 0.02355729907 0.1) (0.3877414488 0.01192837822 0.1) (0.4093984996 0.01086778132 0.1) (0.6558190384 -0.2125151825 0.1) (0.634300357 -0.211595422 0.1) (0.6660337681 -0.04792808532 0.1) (0.9628248509 -0.1558895756 0.1) (0.9994825289 -0.1756721254 0.1) (-0.007457129009 0.161477934 0.1) (-0.03061732411 0.1395142303 0.1) (0.7220271362 -0.0003110432914 0.1) (-0.003085778455 0.04692987075 0.1) (-0.01477916019 0.0358668874 0.1) (-0.900365 -0.825172 0.1) (-0.943231 -0.77932 0.1) (-0.900509 -0.641852 0.1) (-0.943354 -0.595998 0.1) (-0.900647 -0.458532 0.1) (-0.943466 -0.412676 0.1) (-0.9009904897 -0.2757464876 0.1) (-0.9436009492 -0.229476021 0.1) (-0.9010346726 -0.09329011046 0.1) (-0.9436328571 -0.04647655258 0.1) (-0.900642498 0.09003962872 0.1) (-0.9435114774 0.1369898809 0.1) (-0.9005402 0.2742477085 0.1) (-0.9435130043 0.3206510445 0.1) (-0.900648 0.458135 0.1) (-0.943413 0.503996 0.1) (-0.90051 0.641481 0.1) (-0.943293 0.687341 0.1) (-0.900365 0.824828 0.1) (-0.943121 0.916525 0.1) (-0.94317 0.870686 0.1) (-0.729054 -0.82526 0.1) (-0.771953 -0.779411 0.1) (-0.7294194809 -0.6421105425 0.1) (-0.7722567107 -0.5962122082 0.1) (-0.7316151323 -0.4623606517 0.1) (-0.7739028592 -0.4156533357 0.1) (-0.7327418932 -0.2842964961 0.1) (-0.7745377279 -0.2362142676 0.1) (-0.7312471349 -0.1045023912 0.1) (-0.7731675457 -0.05509557975 0.1) (-0.7284818444 0.07879652963 0.1) (-0.7711879585 0.1289853702 0.1) (-0.7267755799 0.2656373929 0.1) (-0.7704977694 0.3156284501 0.1) (-0.7274828383 0.4542616105 0.1) (-0.77154876 0.5027358502 0.1) (-0.7291653778 0.6412133766 0.1) (-0.772062 0.687245 0.1) (-0.729068 0.824984 0.1) (-0.77178 0.916958 0.1) (-0.771858 0.870764 0.1) (-0.5576244824 -0.8255809873 0.1) (-0.6006422528 -0.7795576122 0.1) (-0.5613614862 -0.6472444384 0.1) (-0.6042143502 -0.6014454846 0.1) (-0.5658741495 -0.4750770714 0.1) (-0.6077287163 -0.4278809657 0.1) (-0.5660274697 -0.3023982463 0.1) (-0.6071230388 -0.2532521678 0.1) (-0.5617278616 -0.1250531558 0.1) (-0.6028589765 -0.07414481374 0.1) (-0.5556857402 0.0581554009 0.1) (-0.5976918589 0.1104973124 0.1) (-0.5511401176 0.2473288 0.1) (-0.5947103268 0.3004784453 0.1) (-0.5508191783 0.4413734913 0.1) (-0.5958372194 0.4937300627 0.1) (-0.5545150799 0.6376013614 0.1) (-0.5994170995 0.6867120252 0.1) (-0.5557929582 0.8280732783 0.1) (-0.598713 0.919474 0.1) (-0.598763 0.873702 0.1) (-0.3852675156 -0.8315241379 0.1) (-0.4292065362 -0.7865000266 0.1) (-0.3935603731 -0.6619837552 0.1) (-0.4383823205 -0.6141858328 0.1) (-0.4004055216 -0.4936759556 0.1) (-0.4422543345 -0.4465797153 0.1) (-0.3986316704 -0.3236199037 0.1) (-0.4394097268 -0.2748498497 0.1) (-0.3918077708 -0.1459429644 0.1) (-0.4323999608 -0.09608132465 0.1) (-0.3833932503 0.03718845149 0.1) (-0.4244273638 0.08845240374 0.1) (-0.375887606 0.2271446236 0.1) (-0.418469336 0.280377569 0.1) (-0.3717065225 0.4268661643 0.1) (-0.4167868886 0.4812522897 0.1) (-0.3747083317 0.6285022504 0.1) (-0.4209094277 0.6812179957 0.1) (-0.3818679379 0.8257949046 0.1) (-0.4268262487 0.920107068 0.1) (-0.4264961647 0.8738672159 0.1) (-0.2160146678 -0.8371538355 0.1) (-0.2609076822 -0.7942933635 0.1) (-0.2260004351 -0.676419042 0.1) (-0.2696310121 -0.633107558 0.1) (-0.2299445737 -0.5160870398 0.1) (-0.2727394267 -0.4700433782 0.1) (-0.2275437167 -0.3435068371 0.1) (-0.2695940645 -0.2936395725 0.1) (-0.1997612942 -0.1585770765 0.1) (-0.2211426295 -0.1573009246 0.1) (-0.2617307829 -0.1091687547 0.1) (-0.219037789 -0.111256458 0.1) (-0.2179536578 -0.08836540645 0.1) (-0.2168564236 -0.06547253668 0.1) (-0.2201028494 -0.1341879762 0.1) (-0.1987436851 -0.1353427177 0.1) (-0.1907497111 0.02725005025 0.1) (-0.1919890227 0.004006471836 0.1) (-0.21462464 -0.01916273089 0.1) (-0.2133753102 0.004848257213 0.1) (-0.2121577982 0.02805504406 0.1) (-0.2157476157 -0.04250583514 0.1) (-0.2525721277 0.07578536422 0.1) (-0.2004598873 0.215538222 0.1) (-0.2419734957 0.2660337633 0.1) (-0.1940652346 0.4098591107 0.1) (-0.2380269564 0.4644285895 0.1) (-0.1971335956 0.6153011912 0.1) (-0.2434868255 0.6699780929 0.1) (-0.2056081012 0.8209522213 0.1) (-0.2529339728 0.919628695 0.1) (-0.2516434143 0.8715740562 0.1) (-0.0458727598 -0.8434237151 0.1) (-0.09160391836 -0.8020887489 0.1) (-0.05622764504 -0.688160362 0.1) (-0.1007483055 -0.6465697885 0.1) (-0.05950507167 -0.5299401532 0.1) (-0.1017737043 -0.4851396837 0.1) (-0.0534476824 -0.3547708751 0.1) (-0.09376158445 -0.2840615642 0.1) (-0.07204500681 -0.2852391678 0.1) (-0.05147493619 -0.3091399196 0.1) (-0.07303389768 -0.3080570269 0.1) (-0.09468919506 -0.3069124168 0.1) (-0.02979881125 -0.3102575026 0.1) (-0.1352502721 -0.1635131193 0.1) (-0.1361337387 -0.1867270231 0.1) (-0.1142815235 -0.2129222728 0.1) (-0.09202788718 -0.2147855726 0.1) (-0.1074610383 -0.02194299128 0.1) (-0.1261149889 0.02570568812 0.1) (-0.1276420372 0.001976820587 0.1) (-0.01861201116 0.3969019713 0.1) (-0.06187690219 0.450468989 0.1) (-0.02038127063 0.6034491717 0.1) (-0.0661507509 0.6590904955 0.1) (-0.03031517768 0.8146139879 0.1) (-0.0788323354 0.9168383845 0.1) (-0.0765654376 0.8669653777 0.1) (0.1259572709 -0.8472622541 0.1) (0.07994416307 -0.8079272521 0.1) (0.1154918668 -0.695899963 0.1) (0.07087336925 -0.6564226885 0.1) (0.1133218351 -0.539694445 0.1) (0.07131251 -0.4955597228 0.1) (0.1014517002 0.1566964857 0.1) (0.07971866533 0.1576866648 0.1) (0.05925946866 0.1814639263 0.1) (0.1552149911 0.3863271125 0.1) (0.1126240339 0.4389179467 0.1) (0.1543698336 0.5936123747 0.1) (0.1089575355 0.6495697273 0.1) (0.1444133391 0.8090937015 0.1) (0.09548753249 0.9138244593 0.1) (0.09813712081 0.8626175549 0.1) (0.2977624453 -0.8501875341 0.1) (0.2518669114 -0.8116275469 0.1) (0.2872927518 -0.7022910962 0.1) (0.2428661562 -0.6634778866 0.1) (0.2854125607 -0.5480027596 0.1) (0.2436208683 -0.5040030476 0.1) (0.2749250266 0.1483333916 0.1) (0.2532736933 0.1494087299 0.1) (0.2327107141 0.1731930043 0.1) (0.3281970283 0.3775480985 0.1) (0.2858547472 0.429695321 0.1) (0.3275799667 0.5868120769 0.1) (0.2825622101 0.6427073646 0.1) (0.3176561301 0.8057646196 0.1) (0.2687181784 0.9116301125 0.1) (0.2714891406 0.8595537369 0.1) (0.4693413015 -0.8532899062 0.1) (0.4234343806 -0.8154949916 0.1) (0.4588630807 -0.7088220746 0.1) (0.4145047438 -0.6705614317 0.1) (0.4572372982 -0.5562851017 0.1) (0.4155211015 -0.5122737222 0.1) (0.3631362864 -0.2496604236 0.1) (0.4478493288 0.1394812039 0.1) (0.4262880149 0.1405962475 0.1) (0.405737387 0.1644289826 0.1) (0.5004343102 0.3702870003 0.1) (0.4582201194 0.4228921401 0.1) (0.4992528068 0.583516247 0.1) (0.4545144513 0.6394197265 0.1) (0.4892308274 0.8054751479 0.1) (0.4408951517 0.9111986674 0.1) (0.4435724769 0.8587856492 0.1) (0.6407750072 -0.8570634237 0.1) (0.5949664225 -0.8198256708 0.1) (0.6303482472 -0.7159482346 0.1) (0.5861380881 -0.6780284016 0.1) (0.629070146 -0.5646976551 0.1) (0.5874660835 -0.5205779277 0.1) (0.5351630086 -0.2577564478 0.1) (0.6201608744 0.1302341057 0.1) (0.5986309518 0.1314187164 0.1) (0.6719163766 0.3649907539 0.1) (0.6295896497 0.4186344086 0.1) (0.6698189142 0.5835084425 0.1) (0.6250460683 0.6403051655 0.1) (0.6597715378 0.8076379621 0.1) (0.6121307883 0.9124860701 0.1) (0.6145577677 0.8602925375 0.1) (0.8120269775 -0.8616115669 0.1) (0.766287675 -0.8249148259 0.1) (0.8016651165 -0.7239033432 0.1) (0.7576126512 -0.686130277 0.1) (0.8008236678 -0.573494872 0.1) (0.7593429841 -0.5289823943 0.1) (0.7071390179 -0.2657208733 0.1) (0.8427114423 0.3624530308 0.1) (0.8002968602 0.4167488388 0.1) (0.8395687325 0.5866467155 0.1) (0.7949495417 0.643255751 0.1) (0.8297935919 0.811471351 0.1) (0.7830345896 0.9147638974 0.1) (0.7847565986 0.8640626659 0.1) (0.9839604177 -0.8656054315 0.1) (0.9373137454 -0.8317395996 0.1) (0.9737555399 -0.731326081 0.1) (0.9289890105 -0.695524869 0.1) (0.9735483952 -0.5810740384 0.1) (0.9313476357 -0.5376283514 0.1) (0.9000868283 -0.2857666726 0.1) (0.8893438928 -0.28527805 0.1) (0.8791136086 -0.2735280475 0.1) (0.9116033931 -0.09129078109 0.1) (0.9009355538 -0.09049091776 0.1) (0.8906999991 -0.07853902619 0.1) (1.008173837 0.1534504345 0.1) (0.9673688958 0.2042688454 0.1) (1.012711987 0.3635149281 0.1) (0.9701295833 0.4191654719 0.1) (1.008483508 0.5936641015 0.1) (0.9642027614 0.6489677412 0.1) (0.9995682123 0.816273656 0.1) (0.9538947741 0.916786244 0.1) (0.9552610012 0.866987138 0.1) (1.156946689 -0.8610960793 0.1) (1.110162322 -0.8291765272 0.1) (1.14688117 -0.7284326415 0.1) (1.101903622 -0.695569098 0.1) (1.145865953 -0.58236107 0.1) (1.10398247 -0.5401723202 0.1) (1.051956435 -0.2751508956 0.1) (1.052508971 -0.2637062258 0.1) (1.104349727 -0.08266220503 0.1) (1.083949882 -0.05873392993 0.1) (1.179387068 0.1495720189 0.1) (1.138069871 0.2013185968 0.1) (1.182221872 0.369577805 0.1) (1.13930537 0.4246365108 0.1) (1.177051526 0.6025543774 0.1) (1.132873184 0.6572605734 0.1) (1.169531698 0.8209291807 0.1) (1.125223682 0.917328141 0.1) (1.12572648 0.8699926316 0.1) (1.333322267 -0.8490899473 0.1) (1.286377407 -0.8181381845 0.1) (1.324094017 -0.7123780544 0.1) (1.278030804 -0.6841023584 0.1) (1.32120456 -0.571644907 0.1) (1.277825011 -0.5373447051 0.1) (1.325981238 -0.4096212528 0.1) (1.284656463 -0.3662544057 0.1) (1.33430178 -0.2304981137 0.1) (1.293453902 -0.1835653225 0.1) (1.343041685 -0.04364333798 0.1) (1.302198343 0.002982559613 0.1) (1.350020089 0.1601659593 0.1) (1.308612355 0.2096936946 0.1) (1.351198083 0.3858604136 0.1) (1.30830893 0.438744562 0.1) (1.345771136 0.6163644033 0.1) (1.301745664 0.6683877701 0.1) (1.340415185 0.8245207094 0.1) (1.29722 0.916667 0.1) (1.29722 0.870833 0.1) (1.510290869 -0.8331375468 0.1) (1.464300527 -0.7988524857 0.1) (1.503590251 -0.6832542673 0.1) (1.457131522 -0.6563319432 0.1) (1.499753019 -0.5394135038 0.1) (1.454972988 -0.5119711184 0.1) (1.501724271 -0.3836011549 0.1) (1.458932879 -0.3510506081 0.1) (1.507777164 -0.2096363216 0.1) (1.466172678 -0.1722180705 0.1) (1.514712964 -0.01769485647 0.1) (1.473485646 0.02346179194 0.1) (1.519224241 0.1926296168 0.1) (1.477563785 0.237904123 0.1) (1.518668542 0.4154670599 0.1) (1.475929281 0.4639330497 0.1) (1.514316348 0.6328474394 0.1) (1.470897155 0.681000039 0.1) (1.5125 0.825 0.1) (1.46944 0.916667 0.1) (1.46944 0.870833 0.1) (1.68472 -0.825 0.1) (1.64097826 -0.7819811935 0.1) (1.682380213 -0.653318695 0.1) (1.636874857 -0.6210481492 0.1) (1.679352226 -0.4950840218 0.1) (1.634257949 -0.4674334258 0.1) (1.679363705 -0.3338556641 0.1) (1.635653591 -0.3053093208 0.1) (1.682356871 -0.1591399856 0.1) (1.639888347 -0.1267931385 0.1) (1.686029195 0.0322783169 0.1) (1.644127407 0.06948911821 0.1) (1.687724736 0.2374456949 0.1) (1.645596719 0.2795751856 0.1) (1.686418266 0.4460485192 0.1) (1.643616329 0.4915615796 0.1) (1.684720291 0.6416655145 0.1) (1.64167 0.6875 0.1) (1.68472 0.825 0.1) (1.64167 0.916667 0.1) (1.64167 0.870833 0.1) (1.85694 -0.825 0.1) (1.81389 -0.779167 0.1) (1.85694 -0.641667 0.1) (1.813599571 -0.5974571353 0.1) (1.856381199 -0.4624268892 0.1) (1.812256795 -0.4255363319 0.1) (1.855852757 -0.2880284096 0.1) (1.812123969 -0.2537913294 0.1) (1.856419609 -0.1089708384 0.1) (1.813406413 -0.07337925494 0.1) (1.857256389 0.07841115013 0.1) (1.814631202 0.1176371108 0.1) (1.857279155 0.2706597178 0.1) (1.814527239 0.3139476215 0.1) (1.85694 0.458333 0.1) (1.81389 0.504167 0.1) (1.85694 0.641667 0.1) (1.81389 0.6875 0.1) (1.85694 0.825 0.1) (1.81389 0.916667 0.1) (1.81389 0.870833 0.1) (2.02917 -0.825 0.1) (1.98611 -0.779167 0.1) (2.02917 -0.641667 0.1) (1.98611 -0.595833 0.1) (2.02917 -0.458333 0.1) (1.98611 -0.4125 0.1) (2.02917 -0.275 0.1) (1.986106385 -0.2292212705 0.1) (2.02917 -0.0916667 0.1) (1.986106314 -0.04608039485 0.1) (2.02917 0.0916667 0.1) (1.98611 0.1375 0.1) (2.02917 0.275 0.1) (1.98611 0.320833 0.1) (2.02917 0.458333 0.1) (1.98611 0.504167 0.1) (2.02917 0.641667 0.1) (1.98611 0.6875 0.1) (2.02917 0.825 0.1) (1.98611 0.916667 0.1) (1.98611 0.870833 0.1) (2.20139 -0.825 0.1) (2.15833 -0.779167 0.1) (2.20139 -0.641667 0.1) (2.15833 -0.595833 0.1) (2.20139 -0.458333 0.1) (2.15833 -0.4125 0.1) (2.20139 -0.275 0.1) (2.15833 -0.229167 0.1) (2.20139 -0.0916667 0.1) (2.15833 -0.0458333 0.1) (2.20139 0.0916667 0.1) (2.15833 0.1375 0.1) (2.20139 0.275 0.1) (2.15833 0.320833 0.1) (2.20139 0.458333 0.1) (2.15833 0.504167 0.1) (2.20139 0.641667 0.1) (2.15833 0.6875 0.1) (2.20139 0.825 0.1) (2.15833 0.916667 0.1) (2.15833 0.870833 0.1) (2.37361 -0.825 0.1) (2.33056 -0.779167 0.1) (2.37361 -0.641667 0.1) (2.33056 -0.595833 0.1) (2.37361 -0.458333 0.1) (2.33056 -0.4125 0.1) (2.37361 -0.275 0.1) (2.33056 -0.229167 0.1) (2.37361 -0.0916667 0.1) (2.33056 -0.0458333 0.1) (2.37361 0.0916667 0.1) (2.33056 0.1375 0.1) (2.37361 0.275 0.1) (2.33056 0.320833 0.1) (2.37361 0.458333 0.1) (2.33056 0.504167 0.1) (2.37361 0.641667 0.1) (2.33056 0.6875 0.1) (2.37361 0.825 0.1) (2.33056 0.916667 0.1) (2.33056 0.870833 0.1) (2.54583 -0.825 0.1) (2.50278 -0.779167 0.1) (2.54583 -0.641667 0.1) (2.50278 -0.595833 0.1) (2.54583 -0.458333 0.1) (2.50278 -0.4125 0.1) (2.54583 -0.275 0.1) (2.50278 -0.229167 0.1) (2.54583 -0.0916667 0.1) (2.50278 -0.0458333 0.1) (2.54583 0.0916667 0.1) (2.50278 0.1375 0.1) (2.54583 0.275 0.1) (2.50278 0.320833 0.1) (2.54583 0.458333 0.1) (2.50278 0.504167 0.1) (2.54583 0.641667 0.1) (2.50278 0.6875 0.1) (2.54583 0.825 0.1) (2.50278 0.916667 0.1) (2.50278 0.870833 0.1) (2.71806 -0.825 0.1) (2.675 -0.779167 0.1) (2.71806 -0.641667 0.1) (2.675 -0.595833 0.1) (2.71806 -0.458333 0.1) (2.675 -0.4125 0.1) (2.71806 -0.275 0.1) (2.675 -0.229167 0.1) (2.71806 -0.0916667 0.1) (2.675 -0.0458333 0.1) (2.71806 0.0916667 0.1) (2.675 0.1375 0.1) (2.71806 0.275 0.1) (2.675 0.320833 0.1) (2.71806 0.458333 0.1) (2.675 0.504167 0.1) (2.71806 0.641667 0.1) (2.675 0.6875 0.1) (2.71806 0.825 0.1) (2.675 0.916667 0.1) (2.675 0.870833 0.1) (2.89028 -0.825 0.1) (2.84722 -0.779167 0.1) (2.89028 -0.641667 0.1) (2.84722 -0.595833 0.1) (2.89028 -0.458333 0.1) (2.84722 -0.4125 0.1) (2.89028 -0.275 0.1) (2.84722 -0.229167 0.1) (2.89028 -0.0916667 0.1) (2.84722 -0.0458333 0.1) (2.89028 0.0916667 0.1) (2.84722 0.1375 0.1) (2.89028 0.275 0.1) (2.84722 0.320833 0.1) (2.89028 0.458333 0.1) (2.84722 0.504167 0.1) (2.89028 0.641667 0.1) (2.84722 0.6875 0.1) (2.89028 0.825 0.1) (2.84722 0.916667 0.1) (2.84722 0.870833 0.1) (3.0625 -0.825 0.1) (3.01944 -0.779167 0.1) (3.0625 -0.641667 0.1) (3.01944 -0.595833 0.1) (3.0625 -0.458333 0.1) (3.01944 -0.4125 0.1) (3.0625 -0.275 0.1) (3.01944 -0.229167 0.1) (3.0625 -0.0916667 0.1) (3.01944 -0.0458333 0.1) (3.0625 0.0916667 0.1) (3.01944 0.1375 0.1) (3.0625 0.275 0.1) (3.01944 0.320833 0.1) (3.0625 0.458333 0.1) (3.01944 0.504167 0.1) (3.0625 0.641667 0.1) (3.01944 0.6875 0.1) (3.0625 0.825 0.1) (3.01944 0.916667 0.1) (3.01944 0.870833 0.1) (3.23472 -0.825 0.1) (3.19167 -0.779167 0.1) (3.23472 -0.641667 0.1) (3.19167 -0.595833 0.1) (3.23472 -0.458333 0.1) (3.19167 -0.4125 0.1) (3.23472 -0.275 0.1) (3.19167 -0.229167 0.1) (3.23472 -0.0916667 0.1) (3.19167 -0.0458333 0.1) (3.23472 0.0916667 0.1) (3.19167 0.1375 0.1) (3.23472 0.275 0.1) (3.19167 0.320833 0.1) (3.23472 0.458333 0.1) (3.19167 0.504167 0.1) (3.23472 0.641667 0.1) (3.19167 0.6875 0.1) (3.23472 0.825 0.1) (3.19167 0.916667 0.1) (3.19167 0.870833 0.1) (3.40694 -0.825 0.1) (3.36389 -0.779167 0.1) (3.40694 -0.641667 0.1) (3.36389 -0.595833 0.1) (3.40694 -0.458333 0.1) (3.36389 -0.4125 0.1) (3.40694 -0.275 0.1) (3.36389 -0.229167 0.1) (3.40694 -0.0916667 0.1) (3.36389 -0.0458333 0.1) (3.40694 0.0916667 0.1) (3.36389 0.1375 0.1) (3.40694 0.275 0.1) (3.36389 0.320833 0.1) (3.40694 0.458333 0.1) (3.36389 0.504167 0.1) (3.40694 0.641667 0.1) (3.36389 0.6875 0.1) (3.40694 0.825 0.1) (3.36389 0.916667 0.1) (3.36389 0.870833 0.1) (3.57917 -0.825 0.1) (3.53611 -0.779167 0.1) (3.57917 -0.641667 0.1) (3.53611 -0.595833 0.1) (3.57917 -0.458333 0.1) (3.53611 -0.4125 0.1) (3.57917 -0.275 0.1) (3.53611 -0.229167 0.1) (3.57917 -0.0916667 0.1) (3.53611 -0.0458333 0.1) (3.57917 0.0916667 0.1) (3.53611 0.1375 0.1) (3.57917 0.275 0.1) (3.53611 0.320833 0.1) (3.57917 0.458333 0.1) (3.53611 0.504167 0.1) (3.57917 0.641667 0.1) (3.53611 0.6875 0.1) (3.57917 0.825 0.1) (3.53611 0.916667 0.1) (3.53611 0.870833 0.1) (3.75139 -0.825 0.1) (3.70833 -0.779167 0.1) (3.75139 -0.641667 0.1) (3.70833 -0.595833 0.1) (3.75139 -0.458333 0.1) (3.70833 -0.4125 0.1) (3.75139 -0.275 0.1) (3.70833 -0.229167 0.1) (3.75139 -0.0916667 0.1) (3.70833 -0.0458333 0.1) (3.75139 0.0916667 0.1) (3.70833 0.1375 0.1) (3.75139 0.275 0.1) (3.70833 0.320833 0.1) (3.75139 0.458333 0.1) (3.70833 0.504167 0.1) (3.75139 0.641667 0.1) (3.70833 0.6875 0.1) (3.75139 0.825 0.1) (3.70833 0.916667 0.1) (3.70833 0.870833 0.1) (3.92361 -0.825 0.1) (3.88056 -0.779167 0.1) (3.92361 -0.641667 0.1) (3.88056 -0.595833 0.1) (3.92361 -0.458333 0.1) (3.88056 -0.4125 0.1) (3.92361 -0.275 0.1) (3.88056 -0.229167 0.1) (3.92361 -0.0916667 0.1) (3.88056 -0.0458333 0.1) (3.92361 0.0916667 0.1) (3.88056 0.1375 0.1) (3.92361 0.275 0.1) (3.88056 0.320833 0.1) (3.92361 0.458333 0.1) (3.88056 0.504167 0.1) (3.92361 0.641667 0.1) (3.88056 0.6875 0.1) (3.92361 0.825 0.1) (3.88056 0.916667 0.1) (3.88056 0.870833 0.1) (4.09583 -0.825 0.1) (4.05278 -0.779167 0.1) (4.09583 -0.641667 0.1) (4.05278 -0.595833 0.1) (4.09583 -0.458333 0.1) (4.05278 -0.4125 0.1) (4.09583 -0.275 0.1) (4.05278 -0.229167 0.1) (4.09583 -0.0916667 0.1) (4.05278 -0.0458333 0.1) (4.09583 0.0916667 0.1) (4.05278 0.1375 0.1) (4.09583 0.275 0.1) (4.05278 0.320833 0.1) (4.09583 0.458333 0.1) (4.05278 0.504167 0.1) (4.09583 0.641667 0.1) (4.05278 0.6875 0.1) (4.09583 0.825 0.1) (4.05278 0.916667 0.1) (4.05278 0.870833 0.1) (4.26806 -0.825 0.1) (4.225 -0.779167 0.1) (4.26806 -0.641667 0.1) (4.225 -0.595833 0.1) (4.26806 -0.458333 0.1) (4.225 -0.4125 0.1) (4.26806 -0.275 0.1) (4.225 -0.229167 0.1) (4.26806 -0.0916667 0.1) (4.225 -0.0458333 0.1) (4.26806 0.0916667 0.1) (4.225 0.1375 0.1) (4.26806 0.275 0.1) (4.225 0.320833 0.1) (4.26806 0.458333 0.1) (4.225 0.504167 0.1) (4.26806 0.641667 0.1) (4.225 0.6875 0.1) (4.26806 0.825 0.1) (4.225 0.916667 0.1) (4.225 0.870833 0.1) (4.44028 -0.825 0.1) (4.39722 -0.779167 0.1) (4.44028 -0.641667 0.1) (4.39722 -0.595833 0.1) (4.44028 -0.458333 0.1) (4.39722 -0.4125 0.1) (4.44028 -0.275 0.1) (4.39722 -0.229167 0.1) (4.44028 -0.0916667 0.1) (4.39722 -0.0458333 0.1) (4.44028 0.0916667 0.1) (4.39722 0.1375 0.1) (4.44028 0.275 0.1) (4.39722 0.320833 0.1) (4.44028 0.458333 0.1) (4.39722 0.504167 0.1) (4.44028 0.641667 0.1) (4.39722 0.6875 0.1) (4.44028 0.825 0.1) (4.39722 0.916667 0.1) (4.39722 0.870833 0.1) (4.6125 -0.825 0.1) (4.56944 -0.779167 0.1) (4.6125 -0.641667 0.1) (4.56944 -0.595833 0.1) (4.6125 -0.458333 0.1) (4.56944 -0.4125 0.1) (4.6125 -0.275 0.1) (4.56944 -0.229167 0.1) (4.6125 -0.0916667 0.1) (4.56944 -0.0458333 0.1) (4.6125 0.0916667 0.1) (4.56944 0.1375 0.1) (4.6125 0.275 0.1) (4.56944 0.320833 0.1) (4.6125 0.458333 0.1) (4.56944 0.504167 0.1) (4.6125 0.641667 0.1) (4.56944 0.6875 0.1) (4.6125 0.825 0.1) (4.56944 0.916667 0.1) (4.56944 0.870833 0.1) (4.78472 -0.825 0.1) (4.74167 -0.779167 0.1) (4.78472 -0.641667 0.1) (4.74167 -0.595833 0.1) (4.78472 -0.458333 0.1) (4.74167 -0.4125 0.1) (4.78472 -0.275 0.1) (4.74167 -0.229167 0.1) (4.78472 -0.0916667 0.1) (4.74167 -0.0458333 0.1) (4.78472 0.0916667 0.1) (4.74167 0.1375 0.1) (4.78472 0.275 0.1) (4.74167 0.320833 0.1) (4.78472 0.458333 0.1) (4.74167 0.504167 0.1) (4.78472 0.641667 0.1) (4.74167 0.6875 0.1) (4.78472 0.825 0.1) (4.74167 0.916667 0.1) (4.74167 0.870833 0.1) (5 -0.825 0.1) (4.95694 -0.825 0.1) (4.91389 -0.779167 0.1) (5 -0.641667 0.1) (4.95694 -0.641667 0.1) (4.91389 -0.595833 0.1) (5 -0.458333 0.1) (4.95694 -0.458333 0.1) (4.91389 -0.4125 0.1) (5 -0.275 0.1) (4.95694 -0.275 0.1) (4.91389 -0.229167 0.1) (5 -0.0916667 0.1) (4.95694 -0.0916667 0.1) (4.91389 -0.0458333 0.1) (5 0.0916667 0.1) (4.95694 0.0916667 0.1) (4.91389 0.1375 0.1) (5 0.275 0.1) (4.95694 0.275 0.1) (4.91389 0.320833 0.1) (5 0.458333 0.1) (4.95694 0.458333 0.1) (4.91389 0.504167 0.1) (5 0.641667 0.1) (4.95694 0.641667 0.1) (4.91389 0.6875 0.1) (5 0.825 0.1) (4.95694 0.825 0.1) (4.91389 0.916667 0.1) (4.91389 0.870833 0.1) (0.1626284758 0.07411729988 0.1) (0.3360863371 0.06565783942 0.1) (0.2060416001 0.07205640107 0.1) (0.4921700913 -0.2557428676 0.1) (0.5082855728 0.04541636625 0.1) (0.508806773 0.05673039521 0.1) (0.3793446895 0.06346024512 0.1) (0.6641513082 -0.2637445876 0.1) (0.8361225028 -0.2715806316 0.1) (0.8140755057 -0.2818734389 0.1) (0.8248326179 -0.2823587413 0.1) (0.8094240423 0.02853899968 0.1) (0.8298582261 0.004554703509 0.1) (1.008946627 -0.2730724254 0.1) (0.9873780598 -0.2875982285 0.1) (0.9976465122 -0.2840002159 0.1) (1.006024728 -0.1434345032 0.1) (1.014471558 -0.1586347167 0.1) (0.8781135804 -0.1277849667 0.1) (1.000769608 -0.007274879447 0.1) (0.9805731077 0.0172155438 0.1) (0.9592511303 0.01874652978 0.1) (0.9154961784 -0.0009754296058 0.1) (0.9379047811 0.02024965863 0.1) (-0.04714634505 -0.1830779965 0.1) (-0.03603715077 -0.1838666302 0.1) (-0.02488566219 -0.1962878366 0.1) (-0.03615494238 -0.1954784591 0.1) (-0.04738070424 -0.1946531616 0.1) (-0.01399012336 -0.196894956 0.1) (-0.07004305042 -0.2162504466 0.1) (-0.1343573983 -0.1402287873 0.1) (-0.1120281586 -0.1181590894 0.1) (-0.1245171351 0.04930438979 0.1) (-0.122816526 0.07287480339 0.1) (-0.1447082025 0.07316081344 0.1) (-0.1006789701 0.07268404717 0.1) (-0.1209321171 0.0964573678 0.1) (0.1459728386 0.1773826192 0.1) (0.1231851656 0.1556882648 0.1) (0.2518537954 -0.3240656362 0.1) (0.2733610966 -0.3250759532 0.1) (0.2937799335 -0.3488182278 0.1) (0.2303345082 -0.3230547404 0.1) (0.3193196428 0.1688624436 0.1) (0.2965869613 0.1472495321 0.1) (0.4238403163 -0.332102653 0.1) (0.4453561387 -0.3331023687 0.1) (0.4657722822 -0.3568174817 0.1) (0.3797427122 -0.3528252529 0.1) (0.4023325812 -0.3311013255 0.1) (0.406132331 -0.2516921758 0.1) (0.4920141295 0.1598952044 0.1) (0.4694098228 0.1383491802 0.1) (0.5958886897 -0.3400405373 0.1) (0.6173773644 -0.3410219225 0.1) (0.6377886723 -0.3647127741 0.1) (0.5517902176 -0.3607811162 0.1) (0.574386176 -0.3390554805 0.1) (0.5781752896 -0.2597629535 0.1) (0.5377984326 -0.01848446752 0.1) (0.7678619923 -0.3478536563 0.1) (0.7893601387 -0.3488254871 0.1) (0.8086792968 -0.395283159 0.1) (0.8097688703 -0.3725282283 0.1) (0.723787189 -0.3686224094 0.1) (0.7463619446 -0.3468797313 0.1) (0.7501274027 -0.2676831753 0.1) (0.7603400315 -0.2794463418 0.1) (0.7527786499 -0.03596354443 0.1) (0.7630372717 -0.04783165089 0.1) (0.9398512208 -0.355751642 0.1) (0.9615036288 -0.3567839821 0.1) (0.9817820684 -0.4014548345 0.1) (0.9828948012 -0.378634945 0.1) (0.8946726332 -0.399258621 0.1) (0.8957631711 -0.3764837136 0.1) (0.9183390701 -0.3547380873 0.1) (0.9220976605 -0.2754971484 0.1) (0.9108286204 -0.2862582435 0.1) (1.138518791 -0.2678586886 0.1) (1.160023744 -0.2688969248 0.1) (1.161128865 -0.2460065864 0.1) (1.162233952 -0.2231169471 0.1) (1.158918622 -0.2917872633 0.1) (1.142939214 -0.1762986331 0.1) (1.164444166 -0.1773368694 0.1) (1.165549268 -0.1544469304 0.1) (1.163339059 -0.2002269082 0.1) (1.056929355 -0.1721469694 0.1) (1.05748193 -0.1607015005 0.1) (1.047277016 -0.1487370719 0.1) (0.09735367811 -0.1629461668 0.1) (0.1622879922 -0.1660615038 0.1) (0.1191802198 0.07613484239 0.1) (0.3003201147 -0.2126051439 0.1) (0.3110689329 -0.2131170772 0.1) (0.320731519 -0.2362939978 0.1) (0.3212746592 -0.2249610048 0.1) (0.2782593612 -0.2229133056 0.1) (0.289567301 -0.2120930176 0.1) (0.2699324483 -0.1715522056 0.1) (0.3345018126 -0.1740770567 0.1) (0.3234641314 -0.1794239096 0.1) (0.3288379694 -0.1797020746 0.1) (0.1838552361 -0.1670122421 0.1) (0.2484422496 -0.1704364907 0.1) (0.2927734549 0.06782502792 0.1) (0.2933187375 0.079160921 0.1) (0.2824830825 0.0796990724 0.1) (0.2716352968 0.08023480595 0.1) (0.3041413112 0.07862139883 0.1) (0.2851685656 0.02255508996 0.1) (0.2800250915 0.02860015533 0.1) (0.258333791 0.02965639879 0.1) (0.2526448821 0.02413430937 0.1) (0.2494249246 0.06995889672 0.1) (0.2499754424 0.08129954287 0.1) (0.2391333122 0.08182799523 0.1) (0.2608053937 0.08076767383 0.1) (0.4491585337 -0.2537213793 0.1) (0.361014718 -0.1813959973 0.1) (0.3559287026 -0.1753220691 0.1) (0.5162126542 -0.01735773063 0.1) (0.4657179406 0.05899689495 0.1) (0.5077696561 0.03410808919 0.1) (0.4964816519 0.02336893416 0.1) (0.4225638806 0.06123951236 0.1) (0.6211590865 -0.2617580725 0.1) (0.7842389995 -0.2298190801 0.1) (0.7898805564 -0.2244068351 0.1) (0.8033244348 -0.2813874271 0.1) (0.7931222145 -0.2696367771 0.1) (0.8488407511 -0.05320968923 0.1) (0.8059715224 -0.0504590161 0.1) (0.8171727733 -0.03989928633 0.1) (1.016423776 -0.2274829557 0.1) (0.9755244532 -0.289025275 0.1) (0.9651056568 -0.2775094543 0.1) (1.017342271 -0.2049329134 0.1) (0.0793230432 -0.3158771988 0.1) (0.1009222683 -0.3169099748 0.1) (0.05759192009 -0.3148080199 0.1) (0.04106985937 -0.1999917037 0.1) (0.05198825585 -0.2005558754 0.1) (0.0623790319 -0.212475815 0.1) (0.03010983212 -0.1994085023 0.1) (0.2142654157 -0.2084905609 0.1) (0.2250300707 -0.2090062624 0.1) (0.2352383112 -0.220860323 0.1) (0.1921735536 -0.2188002243 0.1) (0.2034868734 -0.2079721867 0.1) (0.6416611694 0.1290579335 0.1) (0.7295920551 -0.07411190417 0.1) (0.9333435347 -0.08177558104 0.1) (0.92224552 -0.09214626922 0.1) (0.1279428633 -0.204325002 0.1) (0.1387690121 -0.2048526828 0.1) (0.1490244735 -0.2167240407 0.1) (0.1057645846 -0.2146204817 0.1) (0.1171247534 -0.2037967082 0.1) (0.04104810422 0.04536479181 0.1) (0.03073295015 0.05718797215 0.1) (0.07567153404 0.07809723482 0.1) (0.57191127 0.01936384945 0.1) (0.5611422754 0.01993482448 0.1) (0.5508933375 0.03181688018 0.1) (0.5939614422 0.02949431477 0.1) (0.5826719364 0.01878626834 0.1) (0.8995438149 -0.1292095493 0.1) (-0.06881542917 -0.1215754015 0.1) (-0.0685109333 -0.1096361951 0.1) (-0.05744824354 -0.09832370776 0.1) (-0.06869885597 -0.1341454469 0.1) (-0.05753308496 -0.1473201186 0.1) (-0.04625618825 -0.1483947721 0.1) (-0.02388510212 -0.1384500983 0.1) (-0.03515170596 -0.1492602679 0.1) (-0.0640428152 -0.02246534603 0.1) (-0.06321070866 -0.01065062733 0.1) (-0.0508928097 0.0015545689 0.1) (-0.0549180513 -0.04661476273 0.1) (-0.06484364374 -0.03429579133 0.1) (0.06073794226 0.004484333155 0.1) (0.02101519062 -0.0113554536 0.1) (0.5593523248 -0.01958733901 0.1) (0.7511169244 -0.07525602408 0.1) (0.9341745562 -0.247961495 0.1) (0.1190167039 -0.1640489009 0.1) (0.1406678648 -0.1651692833 0.1) (0.2914823061 -0.1723238973 0.1) (0.3180910366 -0.1791510867 0.1) (0.3130151878 -0.1729080521 0.1) (0.2053950735 -0.168157385 0.1) (0.2269359627 -0.1693014774 0.1) (0.4946229192 -0.01639589478 0.1) (0.5002899797 -0.01089087163 0.1) (0.9556412494 -0.2490249156 0.1) (0.9771936299 -0.2497650922 0.1) (0.936322776 -0.1484914652 0.1) (1.068478425 -0.3791936745 0.1) (1.09108845 -0.3573425712 0.1) (1.053061556 -0.2522605571 0.1) (1.064361574 -0.2413347643 0.1) (-0.03027571743 -0.088149806 0.1) (-0.01290434136 -0.1097233004 0.1) (-0.01847416719 -0.1151241913 0.1) (-0.02907673473 -0.06018609144 0.1) (1.066571725 -0.1955559851 0.1) (1.056366763 -0.1835925553 0.1) (1.003125416 -0.185446567 0.1) (-0.94311 0.962359 0.1) (-0.771676 0.963108 0.1) (-0.598684 0.965251 0.1) (-0.426783 0.965869 0.1) (-0.2537050985 0.9665849168 0.1) (-0.08054260981 0.9654725179 0.1) (0.09330542155 0.9637049527 0.1) (0.2663874508 0.9622672102 0.1) (0.438679239 0.9620185316 0.1) (0.6102532436 0.9628667826 0.1) (0.7816932394 0.9639547061 0.1) (0.9532745056 0.96425605 0.1) (1.12524 0.963225 0.1) (1.29722 0.9625 0.1) (1.46944 0.9625 0.1) (1.64167 0.9625 0.1) (1.81389 0.9625 0.1) (1.98611 0.9625 0.1) (2.15833 0.9625 0.1) (2.33056 0.9625 0.1) (2.50278 0.9625 0.1) (2.675 0.9625 0.1) (2.84722 0.9625 0.1) (3.01944 0.9625 0.1) (3.19167 0.9625 0.1) (3.36389 0.9625 0.1) (3.53611 0.9625 0.1) (3.70833 0.9625 0.1) (3.88056 0.9625 0.1) (4.05278 0.9625 0.1) (4.225 0.9625 0.1) (4.39722 0.9625 0.1) (4.56944 0.9625 0.1) (4.74167 0.9625 0.1) (4.91389 0.9625 0.1) (1.181518707 -0.2699346789 0.1) (1.18593913 -0.1783746234 0.1) (0.2938632141 0.09050085765 0.1) (0.2505251061 0.09264323375 0.1) (0.8339282681 0.09520289441 0.1) (-0.1976890213 -0.1123154868 0.1) (-0.1932655937 -0.01992591118 0.1) (-0.05044035379 -0.2863502967 0.1) (0.5781491266 0.1552871752 0.1) (0.8935791814 -0.4220524099 0.1) (0.3201882341 -0.2476299873 0.1) (-0.02457228498 -0.1848095948 0.1) (0.2077243732 -0.3447836964 0.1) (0.8075877119 -0.4180590171 0.1) (0.9806777464 -0.424287144 0.1) (0.1214310692 -0.3406966393 0.1) (0.03479664912 -0.3364980028 0.1) (-0.94311 -0.962641 0.1) (-0.771746 -0.962725 0.1) (-0.600176 -0.963422 0.1) (-0.426342 -0.966051 0.1) (-0.2542221888 -0.9666858355 0.1) (-0.08258159648 -0.9681767153 0.1) (0.08993587576 -0.9696459254 0.1) (0.262200742 -0.9703997759 0.1) (0.4340977993 -0.9710929692 0.1) (0.6059700907 -0.9720377251 0.1) (0.7778532396 -0.9729850199 0.1) (0.9492018459 -0.975815943 0.1) (1.121783353 -0.9713881872 0.1) (1.295778886 -0.9667419212 0.1) (1.469415332 -0.9625770688 0.1) (1.64167 -0.9625 0.1) (1.81389 -0.9625 0.1) (1.98611 -0.9625 0.1) (2.15833 -0.9625 0.1) (2.33056 -0.9625 0.1) (2.50278 -0.9625 0.1) (2.675 -0.9625 0.1) (2.84722 -0.9625 0.1) (3.01944 -0.9625 0.1) (3.19167 -0.9625 0.1) (3.36389 -0.9625 0.1) (3.53611 -0.9625 0.1) (3.70833 -0.9625 0.1) (3.88056 -0.9625 0.1) (4.05278 -0.9625 0.1) (4.225 -0.9625 0.1) (4.39722 -0.9625 0.1) (4.56944 -0.9625 0.1) (4.74167 -0.9625 0.1) (4.91389 -0.9625 0.1) (0.9470019116 -0.2110405119 0.1) (0.9416928842 -0.2103530962 0.1) (0.9473679679 -0.2081657197 0.1) (0.9420579417 -0.2074782557 0.1) (0.947648931 -0.2059543958 0.1) (0.9423389096 -0.205266832 0.1) (0.9523212258 -0.211701493 0.1) (0.9526912629 -0.2088271933 0.1) (0.9529752177 -0.206616114 0.1) (0.1372457065 -0.1282401942 0.1) (0.1318765319 -0.1275543799 0.1) (0.1375968284 -0.1253636798 0.1) (0.1322505499 -0.1246805727 0.1) (0.1378678465 -0.1231509748 0.1) (0.1325384807 -0.1224700859 0.1) (0.0440983719 -0.03362239381 0.1) (0.04850969996 -0.03205890131 0.1) (0.04507116577 -0.03635218044 0.1) (0.04942965117 -0.03480696099 0.1) (0.04581957668 -0.03845201383 0.1) (0.05013733705 -0.03692084685 0.1) (0.5615146263 -0.05915814765 0.1) (0.5659826278 -0.06026129045 0.1) (0.5608201396 -0.06197173088 0.1) (0.5652881459 -0.0630747738 0.1) (0.5602861514 -0.06413599838 0.1) (0.5647541576 -0.0652390413 0.1) (0.1265368003 -0.1268393514 0.1) (0.1269247394 -0.1239675178 0.1) (0.1272236188 -0.1217583605 0.1) (0.7362902524 -0.1086929812 0.1) (0.7437820679 -0.1110756817 0.1) (0.7354130438 -0.111454914 0.1) (0.742893022 -0.1138339561 0.1) (0.7347378066 -0.1135794629 0.1) (0.7422089104 -0.1159556847 0.1) (0.901639978 -0.1670811918 0.1) (0.9059791464 -0.1687376656 0.1) (0.9006012952 -0.1697868513 0.1) (0.9049296742 -0.1714386995 0.1) (0.8998029992 -0.1718681767 0.1) (0.9041215441 -0.1735163464 0.1) (0.9891790657 -0.2146677311 0.1) (0.9843554916 -0.2151024307 0.1) (0.9894201969 -0.2128044914 0.1) (0.9846687384 -0.2126578924 0.1) (0.9896055316 -0.2113711612 0.1) (0.9849096953 -0.2107775244 0.1) (0.0562014592 -0.02964280839 0.1) (0.05703488076 -0.03241842743 0.1) (0.05767597103 -0.03455342642 0.1) (0.003544827389 -0.05587878247 0.1) (0.0100772549 -0.05026426232 0.1) (0.005647656442 -0.05787280655 0.1) (0.01182628949 -0.05257479368 0.1) (0.00726520517 -0.05940679386 0.1) (0.01317174125 -0.05435224297 0.1) (0.6899210227 -0.1810298448 0.1) (0.6845767456 -0.180471179 0.1) (0.6902273417 -0.1781481638 0.1) (0.6848790837 -0.1775890055 0.1) (0.6904625174 -0.1759313256 0.1) (0.6851112677 -0.1753719227 0.1) (0.6739279471 -0.1793598715 0.1) (0.6688705152 -0.1788320741 0.1) (0.6742272936 -0.1764774535 0.1) (0.6691678736 -0.1759493598 0.1) (0.6744584836 -0.1742602226 0.1) (0.6693960671 -0.1737319843 0.1) (0.6952565134 -0.1816046056 0.1) (0.6955658193 -0.1787232691 0.1) (0.6958039818 -0.1765067753 0.1) (0.7112809357 -0.1833303554 0.1) (0.7059384483 -0.1827553569 0.1) (0.7115902464 -0.180448919 0.1) (0.706248753 -0.1798740686 0.1) (0.7118284089 -0.1782324252 0.1) (0.7064869107 -0.1776576747 0.1) (0.7588393719 -0.1884709355 0.1) (0.7539275084 -0.187914124 0.1) (0.7591656098 -0.1855914176 0.1) (0.7542517535 -0.1850344098 0.1) (0.7594167138 -0.1833764496 0.1) (0.7545018683 -0.1828191939 0.1) (0.794896743 -0.1280550343 0.1) (0.8023613576 -0.1306486161 0.1) (0.793957443 -0.1307966282 0.1) (0.8014112391 -0.1333861836 0.1) (0.7932349049 -0.1329055389 0.1) (0.8006798369 -0.1354920633 0.1) (0.9313335258 -0.2090737508 0.1) (0.9268592673 -0.2084942155 0.1) (0.9316956012 -0.206198466 0.1) (0.9272322865 -0.2056203601 0.1) (0.9319735822 -0.2039866979 0.1) (0.9275192281 -0.2034096252 0.1) (0.9974627301 -0.2129459893 0.1) (0.9972695471 -0.2123852211 0.1) (0.9682862782 -0.2137652731 0.1) (0.9629578299 -0.2131068545 0.1) (0.9686560309 -0.2108968665 0.1) (0.9633298165 -0.2102336501 0.1) (0.9689407675 -0.2086903302 0.1) (0.9636167292 -0.2080235145 0.1) (0.9653541879 -0.1927312086 0.1) (0.9695767711 -0.1945006919 0.1) (0.964228147 -0.1954007135 0.1) (0.9684528435 -0.197167896 0.1) (0.9633621127 -0.19745424 0.1) (0.9675888985 -0.1992196211 0.1) (0.1753436291 -0.0111668792 0.1) (0.1806782207 -0.01088930506 0.1) (0.1755042876 -0.01406029278 0.1) (0.1808198048 -0.01378380008 0.1) (0.1756280945 -0.01628615264 0.1) (0.1809285617 -0.01601033498 0.1) (0.1860654764 -0.01064070424 0.1) (0.1861869922 -0.0135361326 0.1) (0.1862816978 -0.01576339074 0.1) (0.1968525081 -0.01025743892 0.1) (0.202258215 -0.01014508637 0.1) (0.1969309003 -0.0131543895 0.1) (0.2023155593 -0.01304252254 0.1) (0.1969915105 -0.01538280482 0.1) (0.2023591314 -0.01527131667 0.1) (0.3480939409 -0.0179409589 0.1) (0.353431934 -0.01860904897 0.1) (0.3477378344 -0.02081703247 0.1) (0.3530688645 -0.02148418567 0.1) (0.3474648283 -0.02302944126 0.1) (0.3527888907 -0.02369575749 0.1) (0.3320166634 -0.01608651057 0.1) (0.3373693326 -0.01667872009 0.1) (0.3317023729 -0.01896740623 0.1) (0.3370480745 -0.01955877877 0.1) (0.3314612235 -0.02118355559 0.1) (0.3367999525 -0.02177419104 0.1) (0.3587848517 -0.01927906099 0.1) (0.3584058635 -0.02215212764 0.1) (0.3581139519 -0.02436212194 0.1) (0.3693927428 -0.02076072665 0.1) (0.3744452971 -0.0214725029 0.1) (0.368987891 -0.02363034207 0.1) (0.374034486 -0.0243411298 0.1) (0.3686770834 -0.02583772212 0.1) (0.3737187036 -0.0265478692 0.1) (0.1581638632 -0.1306701527 0.1) (0.1532304979 -0.1301024918 0.1) (0.1584851214 -0.1277900941 0.1) (0.1535627095 -0.1272236627 0.1) (0.1587322445 -0.1255746336 0.1) (0.1538187981 -0.1250091357 0.1) (0.1479382308 -0.1294826629 0.1) (0.1482734293 -0.1266041783 0.1) (0.1485324999 -0.1243900955 0.1) (0.8233882524 -0.1380427936 0.1) (0.8277810614 -0.1396250678 0.1) (0.8224135103 -0.1407719639 0.1) (0.8268004178 -0.142352051 0.1) (0.821663405 -0.142871234 0.1) (0.8260463799 -0.1444498298 0.1) (0.880891239 -0.1591098563 0.1) (0.8851977827 -0.1607370228 0.1) (0.8798663422 -0.1618202862 0.1) (0.8841620482 -0.1634438259 0.1) (0.8790768814 -0.1639052418 0.1) (0.8833667101 -0.165526095 0.1) (0.5415918013 -0.05431908407 0.1) (0.5463760198 -0.05546682763 0.1) (0.5409151248 -0.05713703124 0.1) (0.5456983494 -0.05828462669 0.1) (0.5403949853 -0.05930477061 0.1) (0.5451772255 -0.06045201818 0.1) (0.5514838585 -0.05669246767 0.1) (0.5508012565 -0.05950872713 0.1) (0.5502761711 -0.06167522654 0.1) (0.6533577842 -0.08364226393 0.1) (0.6580430079 -0.0849741479 0.1) (0.6525654494 -0.08642959812 0.1) (0.6572467115 -0.08776059002 0.1) (0.6519553417 -0.08857377155 0.1) (0.656634635 -0.0899040677 0.1) (0.110564848 -0.1246281671 0.1) (0.1052854402 -0.1238456691 0.1) (0.110980634 -0.1217601809 0.1) (0.1057181244 -0.1209802006 0.1) (0.1113003925 -0.1195540339 0.1) (0.1060517992 -0.1187761271 0.1) (0.1158896755 -0.1253823224 0.1) (0.1162905512 -0.1225121146 0.1) (0.1165983767 -0.1203042902 0.1) (0.5613283213 -0.1682163412 0.1) (0.5562630253 -0.1677270093 0.1) (0.56160675 -0.1653317119 0.1) (0.5565414492 -0.1648424798 0.1) (0.5618209983 -0.1631128621 0.1) (0.5567556975 -0.1626236301 0.1) (0.6041025861 -0.1723326237 0.1) (0.5987511207 -0.1718191638 0.1) (0.6043790171 -0.1694478979 0.1) (0.5990275517 -0.168934438 0.1) (0.6045922715 -0.1672289 0.1) (0.5992408061 -0.1667154401 0.1) (0.5880472537 -0.1707908974 0.1) (0.5826958896 -0.17027534 0.1) (0.5883246836 -0.1679062198 0.1) (0.5829733195 -0.1673906624 0.1) (0.5885389319 -0.1656873701 0.1) (0.5831875678 -0.1651718127 0.1) (0.566642796 -0.168728716 0.1) (0.5669202211 -0.1658441383 0.1) (0.5671344742 -0.1636251887 0.1) (0.5773445254 -0.1697597826 0.1) (0.5776229493 -0.1668752531 0.1) (0.5778362037 -0.1646562553 0.1) (0.6643983304 -0.1783754818 0.1) (0.6646926972 -0.1754925229 0.1) (0.6649189026 -0.1732748512 0.1) (0.6521569747 -0.1771336249 0.1) (0.6468607244 -0.1765962999 0.1) (0.6524493486 -0.1742504697 0.1) (0.6471540971 -0.173713193 0.1) (0.65267456 -0.1720326499 0.1) (0.6473793037 -0.171495473 0.1) (0.6094530526 -0.1728460353 0.1) (0.6097304825 -0.1699613577 0.1) (0.609942738 -0.1677423116 0.1) (0.6254761769 -0.1744120366 0.1) (0.6201420335 -0.1738715807 0.1) (0.6257685508 -0.1715288814 0.1) (0.620426436 -0.1709876402 0.1) (0.6259927634 -0.1693110133 0.1) (0.6206456689 -0.1687692313 0.1) (0.6415117961 -0.1760510254 0.1) (0.641805164 -0.1731680183 0.1) (0.6420323683 -0.1709503948 0.1) (0.6308180603 -0.1749580723 0.1) (0.631112427 -0.1720751135 0.1) (0.6313396313 -0.1698574899 0.1) (0.7326555075 -0.1856175574 0.1) (0.7273107669 -0.1850477563 0.1) (0.7329618265 -0.1827358764 0.1) (0.7276180847 -0.1821661235 0.1) (0.7331979962 -0.1805191863 0.1) (0.7278552484 -0.1799495815 0.1) (0.7166245473 -0.1839028051 0.1) (0.7169328592 -0.1810213205 0.1) (0.7171710217 -0.1788048267 0.1) (0.7531181359 -0.1141197519 0.1) (0.7575220179 -0.1155556198 0.1) (0.7522182449 -0.1168745516 0.1) (0.7566172007 -0.11830877 0.1) (0.7515262512 -0.1189936471 0.1) (0.7559212647 -0.1204265738 0.1) (0.7379993795 -0.1861846134 0.1) (0.7383056985 -0.1833029324 0.1) (0.7385408742 -0.1810860942 0.1) (0.7486571874 -0.1873166795 0.1) (0.7489734707 -0.1844359802 0.1) (0.7492166081 -0.182220127 0.1) (0.8069222556 -0.1322330986 0.1) (0.8059662213 -0.1349687787 0.1) (0.8052308863 -0.137073167 0.1) (0.8159592765 -0.1354160919 0.1) (0.8149933984 -0.1381482932 0.1) (0.8142501837 -0.1402499984 0.1) (0.9736060071 -0.2144176641 0.1) (0.9739784868 -0.2115757198 0.1) (0.974265241 -0.2093896046 0.1) (0.1580945495 -0.01236988035 0.1) (0.1656635936 -0.01178429937 0.1) (0.1583204941 -0.01525893713 0.1) (0.1658734507 -0.01467478203 0.1) (0.1584945225 -0.01748141488 0.1) (0.1660344219 -0.01689813114 0.1) (0.1371831205 -0.01430051938 0.1) (0.1424653926 -0.01373799074 0.1) (0.1374985739 -0.01718118277 0.1) (0.1427627271 -0.01662068274 0.1) (0.1377419995 -0.01939709941 0.1) (0.1429910592 -0.01883817336 0.1) (0.1531518088 -0.01276368584 0.1) (0.1533867959 -0.01565207791 0.1) (0.1535678644 -0.01787389439 0.1) (0.132107545 -0.01487432863 0.1) (0.1324411173 -0.0177529634 0.1) (0.1326986326 -0.01996735772 0.1) (0.2184801318 -0.009957533959 0.1) (0.2238886117 -0.009953641319 0.1) (0.2184873896 -0.01285555549 0.1) (0.2238768531 -0.01285154569 0.1) (0.2184928998 -0.0150847146 0.1) (0.2238693398 -0.01508087697 0.1) (0.2076589718 -0.01005231791 0.1) (0.2077012853 -0.01295002956 0.1) (0.2077338364 -0.01517899243 0.1) (0.2293136584 -0.01000060674 0.1) (0.2292868834 -0.01289848696 0.1) (0.2292653672 -0.01512754266 0.1) (0.3104691049 -0.01396075449 0.1) (0.315881301 -0.01446052702 0.1) (0.3102175917 -0.01684778458 0.1) (0.3156118425 -0.01734598991 0.1) (0.3100242707 -0.01906864585 0.1) (0.3154045715 -0.01956547687 0.1) (0.3266328758 -0.01549600242 0.1) (0.3263355174 -0.01837871671 0.1) (0.3261063203 -0.02059614393 0.1) (0.305078861 -0.0135247147 0.1) (0.304844299 -0.01641316388 0.1) (0.3046629448 -0.01863500336 0.1) (0.3789362339 -0.02212132315 0.1) (0.3785164719 -0.02498871698 0.1) (0.3781937362 -0.02719431975 0.1) (0.391279494 -0.02396899894 0.1) (0.3965843031 -0.02478526117 0.1) (0.3908408457 -0.02683357874 0.1) (0.3961208141 -0.02764593854 0.1) (0.3905031949 -0.0290370598 0.1) (0.3957642819 -0.0298465057 0.1) (0.4176766361 -0.02841851883 0.1) (0.4226934411 -0.02933160535 0.1) (0.4171664766 -0.03127123636 0.1) (0.4221753391 -0.03218293826 0.1) (0.4167742033 -0.03346557273 0.1) (0.4217771065 -0.03437628611 0.1) (0.4018868133 -0.02569061619 0.1) (0.4014034633 -0.0285479319 0.1) (0.4010310413 -0.0307458297 0.1) (0.4124441596 -0.02749341805 0.1) (0.411946903 -0.0303484605 0.1) (0.4115635565 -0.03254452937 0.1) (0.6458598601 -0.08151051318 0.1) (0.6450685001 -0.08429839501 0.1) (0.6444603755 -0.08644296454 0.1) (0.7694054091 -0.1195046641 0.1) (0.773754373 -0.1209582443 0.1) (0.7684877907 -0.1222533819 0.1) (0.7728357693 -0.1237066341 0.1) (0.7677820067 -0.1243677969 0.1) (0.7721279967 -0.125820763 0.1) (0.8613953764 -0.2003804257 0.1) (0.8561011357 -0.1997600009 0.1) (0.8617345557 -0.1975024336 0.1) (0.856439321 -0.1968818608 0.1) (0.861996618 -0.1952885954 0.1) (0.8566993904 -0.1946678262 0.1) (0.8510449659 -0.1991645857 0.1) (0.8513841501 -0.1962864938 0.1) (0.8516452135 -0.1940726073 0.1) (0.8667095311 -0.2010031134 0.1) (0.8670596639 -0.198126351 0.1) (0.8673286891 -0.1959134496 0.1) (0.8720344042 -0.2016733733 0.1) (0.8723954856 -0.1987979404 0.1) (0.8726724726 -0.1965860241 0.1) (0.9363950809 -0.2096820407 0.1) (0.9367531755 -0.2068062634 0.1) (0.9370291685 -0.204594199 0.1) (0.9576386592 -0.2124014287 0.1) (0.9580146605 -0.2095280176 0.1) (0.9583045793 -0.2073178269 0.1) (0.1426051271 -0.1288584597 0.1) (0.1429423136 -0.1259802713 0.1) (0.1432023831 -0.1237662367 0.1) (0.8691292237 -0.1546997286 0.1) (0.8765316164 -0.1574623064 0.1) (0.8681180791 -0.157415628 0.1) (0.8755126065 -0.1601752231 0.1) (0.8673404259 -0.159504858 0.1) (0.8747290616 -0.1622620663 0.1) (0.03971851336 -0.03519971994 0.1) (0.04074165761 -0.0379110131 0.1) (0.04152869599 -0.03999669274 0.1) (0.5565954617 -0.05794381915 0.1) (0.5559049365 -0.06075829446 0.1) (0.5553739207 -0.06292320605 0.1) (0.0882339607 -0.1210822846 0.1) (0.08332400428 -0.1202080958 0.1) (0.08873012336 -0.1182270892 0.1) (0.08384131197 -0.1173566245 0.1) (0.08911188138 -0.1160307434 0.1) (0.08423914505 -0.1151632573 0.1) (0.07808012809 -0.1192370919 0.1) (0.07862194308 -0.1163902077 0.1) (0.07903873338 -0.1142002587 0.1) (0.09572795206 -0.1223457355 0.1) (0.09619670597 -0.119485913 0.1) (0.09655730933 -0.117286043 0.1) (0.1002381387 -0.1230665678 0.1) (0.1006897043 -0.1202040133 0.1) (0.1010363012 -0.1180018652 0.1) (0.1212150279 -0.1261048663 0.1) (0.1216089359 -0.1232338215 0.1) (0.1219107925 -0.1210252083 0.1) (0.7483929391 -0.1125789773 0.1) (0.7474960041 -0.1153347606 0.1) (0.7468059772 -0.1174545918 0.1) (0.9039971408 -0.2055812514 0.1) (0.8986874726 -0.2049278444 0.1) (0.9043542413 -0.202705326 0.1) (0.8990366066 -0.2020510337 0.1) (0.9046282463 -0.2004929654 0.1) (0.8993046378 -0.1998379843 0.1) (0.8933638648 -0.2042935873 0.1) (0.8937090179 -0.2014162841 0.1) (0.8939740622 -0.1992028903 0.1) (0.897051098 -0.1653297656 0.1) (0.8960104513 -0.1680346296 0.1) (0.8952111805 -0.1701154073 0.1) (0.9093180138 -0.2062514183 0.1) (0.9096761035 -0.2033757409 0.1) (0.9099521013 -0.2011635766 0.1) (0.9145965829 -0.2069061273 0.1) (0.9149546727 -0.2040304498 0.1) (0.9152306656 -0.2018183854 0.1) (0.9133357327 -0.1716610216 0.1) (0.9176502359 -0.1733721697 0.1) (0.9122695454 -0.1743557421 0.1) (0.9165850378 -0.1760671382 0.1) (0.9114496319 -0.1764286152 0.1) (0.9157651146 -0.178140211 0.1) (0.978989648 -0.2149489963 0.1) (0.9793462171 -0.2122085028 0.1) (0.9796201962 -0.2101003623 0.1) (0.4698920219 -0.03848349898 0.1) (0.4773901642 -0.04000935535 0.1) (0.4693134202 -0.04132300066 0.1) (0.4768016416 -0.04284697643 0.1) (0.4688675713 -0.04350724173 0.1) (0.4763488587 -0.04502968134 0.1) (0.5734880034 -0.06211427621 0.1) (0.5727905539 -0.06492701559 0.1) (0.5722545873 -0.06709078712 0.1) (0.5782815117 -0.06329770927 0.1) (0.5775711979 -0.06610732466 0.1) (0.5770253394 -0.06826861628 0.1) (0.01236378729 -0.09847691559 0.1) (0.008303150418 -0.09590661015 0.1) (0.01385251564 -0.09599061365 0.1) (0.01002328466 -0.09357424633 0.1) (0.01499757901 -0.09407800666 0.1) (0.01134643475 -0.09178026519 0.1) (0.6792344179 -0.1799136085 0.1) (0.6795347632 -0.1770312386 0.1) (0.6797669472 -0.1748141558 0.1) (0.700595985 -0.182179859 0.1) (0.7009062897 -0.1792985707 0.1) (0.7011454463 -0.177082225 0.1) (0.7649697478 -0.1180219793 0.1) (0.7640560742 -0.1207719387 0.1) (0.7633522488 -0.1228872592 0.1) (0.7661907369 -0.1893043082 0.1) (0.7665159807 -0.1864246422 0.1) (0.7667670896 -0.1842095744 0.1) (0.8465652274 -0.1986363458 0.1) (0.8469044068 -0.1957583537 0.1) (0.8471654702 -0.1935444673 0.1) (0.839203569 -0.1977673352 0.1) (0.8395427483 -0.1948893431 0.1) (0.8398048058 -0.1926756048 0.1) (0.8826924064 -0.2030087853 0.1) (0.8773588819 -0.2023518237 0.1) (0.8830445321 -0.2001322192 0.1) (0.8777189693 -0.1994762427 0.1) (0.8833155501 -0.1979195142 0.1) (0.8779949623 -0.1972641783 0.1) (0.953745439 -0.187863039 0.1) (0.9610921902 -0.1909071612 0.1) (0.9526468398 -0.1905447814 0.1) (0.9599700385 -0.1935790564 0.1) (0.9518023749 -0.192607759 0.1) (0.9591069235 -0.1956343257 0.1) (0.1702484737 -0.01146191994 0.1) (0.1704342333 -0.01435384223 0.1) (0.170578123 -0.01657846911 0.1) (0.1914505959 -0.01043635188 0.1) (0.1915530518 -0.01333256203 0.1) (0.1916307145 -0.01556029888 0.1) (0.3427389291 -0.01727284811 0.1) (0.3423997449 -0.02015094007 0.1) (0.3421386815 -0.02236482649 0.1) (0.3641074927 -0.02001629118 0.1) (0.3637106027 -0.02288689168 0.1) (0.3634047652 -0.02509501226 0.1) (0.8320971087 -0.1411798084 0.1) (0.8311154856 -0.1439063438 0.1) (0.8303594693 -0.1460036266 0.1) (0.01707437978 -0.04579408249 0.1) (0.01857094855 -0.04827573833 0.1) (0.01972213374 -0.05018467252 0.1) (0.02094164894 -0.0435862043 0.1) (0.02818536334 -0.03996370188 0.1) (0.02232331409 -0.04613359564 0.1) (0.02941894211 -0.04258603928 0.1) (0.02338615649 -0.04809312856 0.1) (0.03036787561 -0.04460314617 0.1) (0.03226595124 -0.03811933341 0.1) (0.03340528514 -0.04078387516 0.1) (0.03428176017 -0.04283362588 0.1) (0.6628502596 -0.08634986741 0.1) (0.6620450701 -0.08913387784 0.1) (0.6614260789 -0.09127541983 0.1) (0.6672928521 -0.0876475112 0.1) (0.6747879937 -0.08983689482 0.1) (0.6664817419 -0.09042973405 0.1) (0.6739749149 -0.09261842192 0.1) (0.6658578144 -0.09256983631 0.1) (0.673350003 -0.09475817631 0.1) (0.07278569714 -0.1182120873 0.1) (0.06757430559 -0.1171073944 0.1) (0.07336400891 -0.1153723714 0.1) (0.06819582426 -0.1142768727 0.1) (0.07380886375 -0.1131879822 0.1) (0.06867397961 -0.1120994976 0.1) (0.05805601319 -0.1149179488 0.1) (0.0504654604 -0.1130105923 0.1) (0.0587347631 -0.1121006023 0.1) (0.0512012838 -0.1102076147 0.1) (0.05925688101 -0.1099333589 0.1) (0.05176742076 -0.1080514069 0.1) (0.06258041743 -0.1159560358 0.1) (0.0632312509 -0.1131321355 0.1) (0.06373188695 -0.1109598503 0.1) (0.5517966316 -0.1672956256 0.1) (0.5520750555 -0.1644110961 0.1) (0.5522893087 -0.1621921465 0.1) (0.5933986564 -0.1713056557 0.1) (0.5936760863 -0.1684209782 0.1) (0.5938893406 -0.1662019803 0.1) (0.5719941601 -0.1692442734 0.1) (0.5722715852 -0.1663596957 0.1) (0.5724858384 -0.1641407461 0.1) (0.6570766292 -0.177632745 0.1) (0.6573690031 -0.1747495898 0.1) (0.6575942146 -0.1725317699 0.1) (0.6148025252 -0.1733592988 0.1) (0.6150809491 -0.1704747693 0.1) (0.6152942034 -0.1682557715 0.1) (0.6361639294 -0.1755045006 0.1) (0.6364592949 -0.17262159 0.1) (0.6366855004 -0.1704039182 0.1) (0.7219671601 -0.1844752067 0.1) (0.7222754719 -0.181593722 0.1) (0.7225126356 -0.17937718 0.1) (0.7433392658 -0.1867512768 0.1) (0.7436475825 -0.1838696923 0.1) (0.7438837474 -0.181653102 0.1) (0.811592588 -0.1338734233 0.1) (0.8106306475 -0.1366070161 0.1) (0.8098903811 -0.1387098649 0.1) (0.8880305001 -0.2036540537 0.1) (0.888377646 -0.2007769468 0.1) (0.8886446832 -0.1985637493 0.1) (0.892597047 -0.1636058734 0.1) (0.8915524677 -0.166309246 0.1) (0.8907492546 -0.1683887321 0.1) (0.9194902178 -0.2075087129 0.1) (0.9198582622 -0.2046342169 0.1) (0.9201412229 -0.2024229895 0.1) (0.9219202827 -0.1750502354 0.1) (0.9208531207 -0.1777444083 0.1) (0.9200322227 -0.1798169335 0.1) (0.1478179841 -0.01319127148 0.1) (0.1480821255 -0.01607716655 0.1) (0.1482853083 -0.0182971473 0.1) (0.1275181839 -0.01541394471 0.1) (0.1278759164 -0.01828984137 0.1) (0.1281505615 -0.02050195908 0.1) (0.2130596183 -0.009982570902 0.1) (0.2130849034 -0.01288046161 0.1) (0.2131054347 -0.01510954499 0.1) (0.2346621087 -0.01005809072 0.1) (0.2346213259 -0.01295579523 0.1) (0.234589802 -0.01518476823 0.1) (0.2396397653 -0.01014382685 0.1) (0.2395869771 -0.01304135223 0.1) (0.2395454504 -0.01527014266 0.1) (0.3212516093 -0.01497769984 0.1) (0.3209711925 -0.01786203299 0.1) (0.3207559453 -0.02008083451 0.1) (0.2997524365 -0.01309395862 0.1) (0.2995278485 -0.01598318967 0.1) (0.2993544753 -0.0182056147 0.1) (0.2947877705 -0.01271841176 0.1) (0.2945741552 -0.01560847292 0.1) (0.2944097571 -0.01783163159 0.1) (0.3863712152 -0.02323425333 0.1) (0.3859425119 -0.02610021431 0.1) (0.3856118143 -0.028304832 0.1) (0.4271902023 -0.03015010387 0.1) (0.4266691231 -0.03300089258 0.1) (0.4262689073 -0.03519384434 0.1) (0.4071635032 -0.02659162103 0.1) (0.406674194 -0.02944794821 0.1) (0.4062978007 -0.0316451537 0.1) (0.5882399234 -0.06589345135 0.1) (0.5926983489 -0.06707051837 0.1) (0.5875019267 -0.06869582337 0.1) (0.5919593678 -0.06987254252 0.1) (0.5869343107 -0.07085155932 0.1) (0.5913897686 -0.07202788238 0.1) (0.583340598 -0.06459998749 0.1) (0.5826114943 -0.06740479119 0.1) (0.5820507979 -0.06956236296 0.1) (0.6886947694 -0.09395120465 0.1) (0.6961853293 -0.0962147536 0.1) (0.6878579885 -0.09672598091 0.1) (0.6953465897 -0.09898862436 0.1) (0.6872153121 -0.09886042247 0.1) (0.6947019432 -0.1011224001 0.1) (0.7008636118 -0.09762819774 0.1) (0.7000199301 -0.1004007486 0.1) (0.6993713287 -0.1025334925 0.1) (0.001345689434 -0.08991373001 0.1) (-0.003906879646 -0.08146001157 0.1) (0.003562709776 -0.08804736957 0.1) (-0.001186661165 -0.08046069544 0.1) (0.005268099123 -0.08661183808 0.1) (0.0009058085108 -0.07969198582 0.1) (-0.005181018405 -0.0751701705 0.1) (-0.002286596166 -0.07502677594 0.1) (-6.012064654e-05 -0.07491647223 0.1) (-0.004392396577 -0.06858480966 0.1) (-0.00158988975 -0.06932250253 0.1) (0.0005658833724 -0.06988995005 0.1) (0.1750861142 -0.1324418518 0.1) (0.1700179609 -0.1319287544 0.1) (0.1753794821 -0.1295588447 0.1) (0.1703143205 -0.1290459919 0.1) (0.1756056875 -0.1273411729 0.1) (0.1705425188 -0.1268285165 0.1) (0.1804000591 -0.1329859379 0.1) (0.180692433 -0.1301027827 0.1) (0.1809186384 -0.127885111 0.1) (0.2178983692 -0.1365799916 0.1) (0.2125353192 -0.136099111 0.1) (0.2181578586 -0.133693647 0.1) (0.212801786 -0.1332134036 0.1) (0.2183571582 -0.1314733747 0.1) (0.2130070641 -0.1309937203 0.1) (0.7318794493 -0.1072967858 0.1) (0.7310051985 -0.1100596663 0.1) (0.7303319297 -0.1121849169 0.1) (0.8604571386 -0.1514853971 0.1) (0.8648242635 -0.1531019726 0.1) (0.8594528894 -0.1542036318 0.1) (0.8638170613 -0.1558191637 0.1) (0.8586801581 -0.1562946011 0.1) (0.8630413624 -0.1579093891 0.1) (0.5194827137 -0.04914240007 0.1) (0.5246491196 -0.05029547997 0.1) (0.51884961 -0.05197025997 0.1) (0.5240051202 -0.05312091163 0.1) (0.5183631415 -0.05414563193 0.1) (0.5235087406 -0.05529420322 0.1) (0.5295976007 -0.051441743 0.1) (0.5289347922 -0.05426276249 0.1) (0.5284245494 -0.05643288188 0.1) (0.26077409 -0.1403574724 0.1) (0.2554170481 -0.1398973056 0.1) (0.2610226115 -0.1374701978 0.1) (0.2556655745 -0.1370099311 0.1) (0.2612139348 -0.1352492401 0.1) (0.255855899 -0.1347889252 0.1) (0.2232615783 -0.1370575761 0.1) (0.2235170772 -0.1341709386 0.1) (0.223713385 -0.1319504218 0.1) (0.3467101094 -0.1477804813 0.1) (0.3413563197 -0.1473151654 0.1) (0.3469705928 -0.1448942847 0.1) (0.3416088317 -0.1444281835 0.1) (0.3471708912 -0.1426740607 0.1) (0.3418021479 -0.1422074221 0.1) (0.3092505186 -0.1445457127 0.1) (0.3041835789 -0.1441111653 0.1) (0.3094990401 -0.1416584381 0.1) (0.3044311064 -0.1412237425 0.1) (0.3096893694 -0.1394373323 0.1) (0.3046214357 -0.1390026367 0.1) (0.2661300076 -0.1408201879 0.1) (0.2663795231 -0.1379330614 0.1) (0.2665718453 -0.1357121519 0.1) (0.2997278313 -0.143728852 0.1) (0.2999733611 -0.1408413328 0.1) (0.3001616927 -0.1386201306 0.1) (0.352049212 -0.1482804293 0.1) (0.3523176717 -0.1453949181 0.1) (0.3525239486 -0.1431752831 0.1) (0.3895039868 -0.1518223229 0.1) (0.3841534045 -0.1513113085 0.1) (0.3897794238 -0.148937449 0.1) (0.3844278427 -0.1484263864 0.1) (0.3899906805 -0.1467183547 0.1) (0.3846391042 -0.1462071922 0.1) (0.3948545643 -0.1523334372 0.1) (0.3951310001 -0.1494486115 0.1) (0.3953422568 -0.1472295172 0.1) (0.9852097832 -0.2017623072 0.1) (0.99157322 -0.2060127146 0.1) (0.9842129879 -0.2041187805 0.1) (0.9908949146 -0.207620175 0.1) (0.9834466851 -0.205931436 0.1) (0.990372677 -0.2088567298 0.1) (0.08715253285 -0.02201227762 0.1) (0.09489258838 -0.02045801633 0.1) (0.0877398684 -0.02485010207 0.1) (0.09543464077 -0.02330476749 0.1) (0.08819162247 -0.02703312663 0.1) (0.09585172486 -0.02549462811 0.1) (0.4822386325 -0.04102904823 0.1) (0.487396578 -0.04212925864 0.1) (0.4816402035 -0.04386448906 0.1) (0.4867931934 -0.04496365929 0.1) (0.4811794878 -0.04604560958 0.1) (0.4863285161 -0.04714388773 0.1) (0.02409918013 -0.1043467577 0.1) (0.01972926372 -0.1023608178 0.1) (0.02525301557 -0.1016884061 0.1) (0.02100003592 -0.09975636794 0.1) (0.02614065776 -0.0996435317 0.1) (0.02197758706 -0.09775287732 0.1) (0.710604157 -0.1006306569 0.1) (0.7150199931 -0.1020055503 0.1) (0.7097447066 -0.1033980313 0.1) (0.7141575704 -0.1047722807 0.1) (0.7090822845 -0.105526724 0.1) (0.7134941687 -0.1069005256 0.1) (0.7812146954 -0.1234540954 0.1) (0.7802951021 -0.1262022472 0.1) (0.7795873391 -0.1283161763 0.1) (0.7757280189 -0.1903787724 0.1) (0.7706686218 -0.1898087311 0.1) (0.7760522687 -0.1874989583 0.1) (0.7709938656 -0.1869290651 0.1) (0.7763023835 -0.1852837424 0.1) (0.7712429768 -0.1847139008 0.1) (0.7857950667 -0.1249877578 0.1) (0.7848744938 -0.1277354619 0.1) (0.7841657466 -0.1298490431 0.1) (0.7810303846 -0.1909760621 0.1) (0.7813546345 -0.188096248 0.1) (0.7816027516 -0.1858809356 0.1) (0.7970317295 -0.1927650726 0.1) (0.791705218 -0.1921702214 0.1) (0.797361953 -0.1898859473 0.1) (0.7920284738 -0.1892902592 0.1) (0.7976150499 -0.1876711757 0.1) (0.792276591 -0.1870749468 0.1) (0.9451783882 -0.1844016851 0.1) (0.9494776201 -0.186138827 0.1) (0.9440925521 -0.1870886491 0.1) (0.9483898249 -0.1888248954 0.1) (0.9432579116 -0.189155505 0.1) (0.9475522168 -0.1908910074 0.1) (0.9949221805 -0.2095781588 0.1) (0.99446017 -0.2105833488 0.1) (0.2618505737 -0.01080806636 0.1) (0.2672543315 -0.01102640455 0.1) (0.2617367987 -0.01370384875 0.1) (0.2671255692 -0.01392156349 0.1) (0.2616492821 -0.01593131989 0.1) (0.2670260617 -0.01614855583 0.1) (0.2469465236 -0.01028364165 0.1) (0.2468687357 -0.01318056076 0.1) (0.2468092057 -0.0154089826 0.1) (0.2514214785 -0.01043401132 0.1) (0.2513266911 -0.01333051017 0.1) (0.2512541666 -0.01555850488 0.1) (0.2726124817 -0.01127698092 0.1) (0.2724617497 -0.01417097907 0.1) (0.272345262 -0.01639715163 0.1) (0.287517258 -0.01220110566 0.1) (0.2873166131 -0.01509209337 0.1) (0.2871621937 -0.01731593404 0.1) (0.2830778994 -0.01189407028 0.1) (0.2828912237 -0.01478603276 0.1) (0.2827477819 -0.01701060365 0.1) (0.626804252 -0.07623165756 0.1) (0.6315335678 -0.07752121854 0.1) (0.6260425436 -0.07902747851 0.1) (0.6307698714 -0.08031674328 0.1) (0.6254561475 -0.08117820301 0.1) (0.6301824909 -0.0824671199 0.1) (0.02858846207 -0.1062015011 0.1) (0.02963283685 -0.1034982188 0.1) (0.03043614977 -0.1014187375 0.1) (0.04569278405 -0.1117067237 0.1) (0.04078528428 -0.110323361 0.1) (0.04647001988 -0.1089148561 0.1) (0.04162146106 -0.1075486557 0.1) (0.04706787229 -0.1067673878 0.1) (0.04226463926 -0.1054141883 0.1) (0.1964621242 -0.1345748437 0.1) (0.1911086948 -0.1340605882 0.1) (0.1967365624 -0.1316899216 0.1) (0.1913901104 -0.1311763033 0.1) (0.1969488179 -0.1294708755 0.1) (0.1916063516 -0.1289576499 0.1) (0.2018181057 -0.135077709 0.1) (0.2020905511 -0.1321925906 0.1) (0.2023008186 -0.1299732483 0.1) (0.7225072575 -0.1043373597 0.1) (0.7216408997 -0.1071026487 0.1) (0.7209735482 -0.1092297578 0.1) (0.5020320681 -0.04525095429 0.1) (0.5095371873 -0.04692261674 0.1) (0.501414801 -0.04808258226 0.1) (0.5089080403 -0.0497514686 0.1) (0.5009412113 -0.05026077856 0.1) (0.5084245442 -0.05192748465 0.1) (0.2446833253 -0.1389690158 0.1) (0.2393225865 -0.1384817392 0.1) (0.244939823 -0.1360824266 0.1) (0.2395830747 -0.1355954428 0.1) (0.2451381286 -0.1338620062 0.1) (0.2397823694 -0.1333752704 0.1) (0.2339716962 -0.1379978415 0.1) (0.2342291879 -0.1351114004 0.1) (0.2344274934 -0.13289098 0.1) (0.3306455074 -0.1463892832 0.1) (0.3252865739 -0.1459268225 0.1) (0.3308950277 -0.1435020567 0.1) (0.3255360943 -0.1430395961 0.1) (0.331086351 -0.141281099 0.1) (0.3257274176 -0.1408186384 0.1) (0.3199296334 -0.1454645582 0.1) (0.3201781549 -0.1425772836 0.1) (0.3203694782 -0.1403563258 0.1) (0.2821892882 -0.1422386612 0.1) (0.2768281443 -0.1417597748 0.1) (0.2824427942 -0.1393518274 0.1) (0.277084642 -0.1388731856 0.1) (0.2826381081 -0.1371311625 0.1) (0.2772819487 -0.136652717 0.1) (0.2875151491 -0.1427018278 0.1) (0.2877626717 -0.1398145049 0.1) (0.287953001 -0.1375933991 0.1) (0.3681001717 -0.1497883053 0.1) (0.3627493482 -0.149282285 0.1) (0.3683736159 -0.146903235 0.1) (0.3630207996 -0.1463970185 0.1) (0.3685828797 -0.1446839444 0.1) (0.3632300634 -0.1441777278 0.1) (0.3734519457 -0.1502953726 0.1) (0.3737253851 -0.1474104022 0.1) (0.3739356477 -0.1451911598 0.1) (0.4162025464 -0.154383381 0.1) (0.4109049651 -0.1538736239 0.1) (0.4164809703 -0.1514988515 0.1) (0.411182395 -0.1509889463 0.1) (0.4166942247 -0.1492798536 0.1) (0.4113956494 -0.1487699484 0.1) (0.4055545661 -0.1533588139 0.1) (0.4058309971 -0.1504740881 0.1) (0.4060442515 -0.1482550902 0.1) (0.8236751832 -0.1959283739 0.1) (0.8183425328 -0.1952947816 0.1) (0.8240163554 -0.1930505782 0.1) (0.818684699 -0.192417134 0.1) (0.8242794069 -0.190836988 0.1) (0.8189487541 -0.1902034921 0.1) (0.8342898712 -0.1971863071 0.1) (0.8346300494 -0.1943083632 0.1) (0.8348921069 -0.1920946249 0.1) (0.8130099209 -0.1946603903 0.1) (0.813353086 -0.1917827909 0.1) (0.8136171363 -0.1895692489 0.1) (0.8023569486 -0.1933866926 0.1) (0.8026961327 -0.1905086007 0.1) (0.8029561974 -0.188294666 0.1) (0.9292794266 -0.1779828255 0.1) (0.933585689 -0.1797195058 0.1) (0.9282014558 -0.1806727722 0.1) (0.9325018168 -0.1824072654 0.1) (0.9273727071 -0.182742015 0.1) (0.9316681462 -0.1844747688 0.1) (0.0652121387 -0.02709636581 0.1) (0.07293964107 -0.02515304654 0.1) (0.0659570536 -0.02989694585 0.1) (0.07361704971 -0.02797079121 0.1) (0.06653013198 -0.03205128763 0.1) (0.07413814032 -0.03013814113 0.1) (0.07748983202 -0.0241079535 0.1) (0.07813038631 -0.02693423088 0.1) (0.0786231189 -0.02910832114 0.1) (0.4975311287 -0.04429088959 0.1) (0.4969237776 -0.04712449804 0.1) (0.4964571172 -0.04930433039 0.1) (0.6049486384 -0.07030472394 0.1) (0.6099740018 -0.07164191657 0.1) (0.6042047114 -0.07310550814 0.1) (0.6092201828 -0.07444022086 0.1) (0.6036321495 -0.07526000414 0.1) (0.6086407062 -0.07659278117 0.1) (0.6365494456 -0.07888898932 0.1) (0.6357778452 -0.08168233038 0.1) (0.6351835404 -0.08383097107 0.1) (0.6148545001 -0.07297281609 0.1) (0.6140937712 -0.0757690848 0.1) (0.6135083643 -0.07792005728 0.1) (0.6842572566 -0.09261055578 0.1) (0.683430358 -0.09538801171 0.1) (0.6827935902 -0.09752449058 0.1) (0.7058016907 -0.09913507869 0.1) (0.704949143 -0.1019046386 0.1) (0.7042926445 -0.1040350589 0.1) (0.1655420267 -0.1314668751 0.1) (0.1658463577 -0.1285848979 0.1) (0.1660815334 -0.1263680597 0.1) (0.1857471102 -0.1335286189 0.1) (0.1860354984 -0.130645071 0.1) (0.186257723 -0.1284269067 0.1) (0.2071717713 -0.1355870702 0.1) (0.2074452155 -0.132702 0.1) (0.2076554782 -0.1304827576 0.1) (0.727134358 -0.1057948169 0.1) (0.7262620689 -0.108558538 0.1) (0.7255917689 -0.1106845076 0.1) (0.8530513304 -0.1487520885 0.1) (0.8520529779 -0.1514726103 0.1) (0.8512841647 -0.1535653707 0.1) (0.5143480054 -0.04799635691 0.1) (0.5137168752 -0.05082481267 0.1) (0.5132313911 -0.0530005325 0.1) (0.5340878797 -0.05251892989 0.1) (0.5334141756 -0.05533752114 0.1) (0.5328960193 -0.05750565661 0.1) (0.2500539506 -0.139438148 0.1) (0.2503044698 -0.1365509698 0.1) (0.2504977859 -0.1343302085 0.1) (0.2286201114 -0.137528327 0.1) (0.2288746163 -0.1346415415 0.1) (0.2290699302 -0.1324208766 0.1) (0.3360024094 -0.1468523465 0.1) (0.3362519297 -0.1439651201 0.1) (0.3364442519 -0.1417442106 0.1) (0.3145716891 -0.1450023455 0.1) (0.3148202107 -0.1421150709 0.1) (0.315011534 -0.1398941132 0.1) (0.2714819347 -0.1412826107 0.1) (0.2717354456 -0.138395677 0.1) (0.2719297557 -0.1361750637 0.1) (0.2924468981 -0.1431163326 0.1) (0.292690435 -0.1402286171 0.1) (0.2928777726 -0.1380072667 0.1) (0.3573982837 -0.148781259 0.1) (0.3576687362 -0.1458959442 0.1) (0.357877006 -0.1436765055 0.1) (0.3788027209 -0.1508023916 0.1) (0.3790771591 -0.1479174695 0.1) (0.3792874217 -0.1456982271 0.1) (0.4284347998 -0.1555649287 0.1) (0.421122427 -0.1548570823 0.1) (0.4287142226 -0.1526804475 0.1) (0.4214008557 -0.151972453 0.1) (0.4289284758 -0.1504614979 0.1) (0.4216151041 -0.1497536032 0.1) (0.4329021441 -0.1559973595 0.1) (0.4331815669 -0.1531128783 0.1) (0.43339582 -0.1508939287 0.1) (0.4002051466 -0.1528444516 0.1) (0.4004815825 -0.149959626 0.1) (0.4006938379 -0.1477405799 0.1) (0.5182134526 -0.1640628907 0.1) (0.5128669813 -0.1635496719 0.1) (0.5184908825 -0.1611782131 0.1) (0.5131404207 -0.1606647016 0.1) (0.518703138 -0.158959167 0.1) (0.5133516822 -0.1584455074 0.1) (0.5075210557 -0.1630458905 0.1) (0.5077915082 -0.1601605757 0.1) (0.5080007768 -0.1579411852 0.1) (0.4807501181 -0.1605323975 0.1) (0.4753975911 -0.1600201879 0.1) (0.4810255551 -0.1576475236 0.1) (0.475674027 -0.1571353622 0.1) (0.4812378106 -0.1554284775 0.1) (0.4758862825 -0.1549163161 0.1) (0.4861056319 -0.1610449515 0.1) (0.4863790761 -0.1581598813 0.1) (0.4865893387 -0.1559406389 0.1) (0.4379703836 -0.1564879348 0.1) (0.4382478135 -0.1536032573 0.1) (0.4384610678 -0.1513842594 0.1) (0.4432830438 -0.1569964176 0.1) (0.443556488 -0.1541113474 0.1) (0.4437657519 -0.1518920567 0.1) (0.4700470619 -0.1595080748 0.1) (0.4703224941 -0.1566233007 0.1) (0.4705347544 -0.1544041548 0.1) (0.4646995147 -0.1589964059 0.1) (0.4649729589 -0.1561113357 0.1) (0.4651832215 -0.1538920933 0.1) (0.5235649083 -0.1645765503 0.1) (0.5238413394 -0.1616918245 0.1) (0.5240545937 -0.1594728266 0.1) (0.5289153653 -0.1650901617 0.1) (0.5291927952 -0.1622054841 0.1) (0.5294060495 -0.1599864862 0.1) (0.9810898405 -0.1995672784 0.1) (0.9800005556 -0.2021390421 0.1) (0.9791621825 -0.2041173149 0.1) (0.06067333931 -0.02836586926 0.1) (0.06146157483 -0.03115462458 0.1) (0.06206793586 -0.03329976063 0.1) (0.08237523682 -0.02302918623 0.1) (0.08298836579 -0.02586154816 0.1) (0.08345995264 -0.02804022405 0.1) (0.09946560589 -0.01962236771 0.1) (0.09997149486 -0.02247578273 0.1) (0.1003605977 -0.02467080002 0.1) (0.1044694982 -0.01877067842 0.1) (0.104941165 -0.02162994996 0.1) (0.1053045178 -0.02382953082 0.1) (0.4346791764 -0.03151332893 0.1) (0.4395652701 -0.0324587498 0.1) (0.4341432208 -0.03436119686 0.1) (0.4390154176 -0.03530414471 0.1) (0.4337300973 -0.03655192357 0.1) (0.438592378 -0.03749289094 0.1) (0.4925624516 -0.04323115332 0.1) (0.4919580729 -0.04606540586 0.1) (0.4914934005 -0.04824553441 0.1) (0.4447535592 -0.03346961952 0.1) (0.4441997402 -0.03631422223 0.1) (0.4437737283 -0.03850232438 0.1) (0.4499854981 -0.03448880383 0.1) (0.4494296959 -0.03733301044 0.1) (0.4490016959 -0.03952081638 0.1) (-0.002151255577 -0.0630860865 0.1) (0.0003863800267 -0.06448558649 0.1) (0.002338404495 -0.065562161 0.1) (0.6794586363 -0.09120121339 0.1) (0.6786425995 -0.09398179675 0.1) (0.6780147249 -0.09612070729 0.1) (0.7905084534 -0.1265657863 0.1) (0.7895809802 -0.129311255 0.1) (0.7888673111 -0.1314230968 0.1) (0.7863687519 -0.1915741888 0.1) (0.7866910089 -0.1886941783 0.1) (0.7869391309 -0.1864787661 0.1) (0.9378378447 -0.1814363539 0.1) (0.9367529978 -0.1841235659 0.1) (0.9359183477 -0.1861906215 0.1) (0.2565161413 -0.01060538946 0.1) (0.2564113606 -0.01350150597 0.1) (0.2563318395 -0.015729263 0.1) (0.277979469 -0.01159335999 0.1) (0.2778087651 -0.0144862938 0.1) (0.2776782985 -0.01671169136 0.1) (0.03626204953 -0.1088960776 0.1) (0.03717435275 -0.1061454714 0.1) (0.03787610475 -0.1040295501 0.1) (0.8440504629 -0.1454838395 0.1) (0.8487070395 -0.1471602429 0.1) (0.8430668566 -0.1482099789 0.1) (0.8477165474 -0.1498838472 0.1) (0.8423108499 -0.1503070619 0.1) (0.8469556285 -0.1519789911 0.1) (0.8395257484 -0.1438549502 0.1) (0.8385441205 -0.1465815855 0.1) (0.8377881042 -0.1486788683 0.1) (0.5021699236 -0.1625462628 0.1) (0.4968167939 -0.1620465387 0.1) (0.5024393773 -0.1596608998 0.1) (0.4970862524 -0.1591610758 0.1) (0.5026466531 -0.1574413129 0.1) (0.4972935233 -0.1569415888 0.1) (0.4914626701 -0.1615466664 0.1) (0.4917331227 -0.1586613516 0.1) (0.4919403984 -0.1564417648 0.1) (0.4539963241 -0.1579956041 0.1) (0.4486421762 -0.1574962313 0.1) (0.4542657778 -0.1551102411 0.1) (0.4489116299 -0.1546108683 0.1) (0.4544730535 -0.1528906543 0.1) (0.4491189057 -0.1523912814 0.1) (0.4593474802 -0.1584947324 0.1) (0.4596179327 -0.1556094176 0.1) (0.4598262074 -0.153389879 0.1) (0.5395623805 -0.1661139814 0.1) (0.5342658222 -0.1656037731 0.1) (0.5398408044 -0.1632294519 0.1) (0.5345432521 -0.1627190955 0.1) (0.5400540588 -0.161010454 0.1) (0.5347565016 -0.1605001975 0.1) (0.5444831828 -0.1665893291 0.1) (0.5447616115 -0.1637046997 0.1) (0.5449758598 -0.16148585 0.1) (0.8290078432 -0.1965617665 0.1) (0.8293490202 -0.1936838709 0.1) (0.8296120765 -0.1914701808 0.1) (0.8076794563 -0.194022999 0.1) (0.8080226165 -0.1911454994 0.1) (0.8082866668 -0.1889319575 0.1) (0.9768653125 -0.197630707 0.1) (0.9757476329 -0.2002721825 0.1) (0.9748876441 -0.2023041754 0.1) (0.1096864086 -0.01794449111 0.1) (0.1148919273 -0.01714688772 0.1) (0.1101338573 -0.02080769937 0.1) (0.1153192064 -0.02001312687 0.1) (0.110478049 -0.02301015958 0.1) (0.1156472672 -0.02221791191 0.1) (0.1198075207 -0.01642368989 0.1) (0.1202075756 -0.01929392086 0.1) (0.120515462 -0.02150183667 0.1) (0.4552273482 -0.0355100685 0.1) (0.4604179738 -0.03655549109 0.1) (0.4546636132 -0.03835269073 0.1) (0.4598443228 -0.03939613283 0.1) (0.4542296636 -0.04053930837 0.1) (0.4594034343 -0.0415813142 0.1) (0.4654018637 -0.037569708 0.1) (0.4648242462 -0.04040955756 0.1) (0.4643803854 -0.04259409484 0.1) (0.6001995737 -0.06905095225 0.1) (0.5994595986 -0.07185282829 0.1) (0.5988900043 -0.07400806827 0.1) (0.6414086989 -0.08024519379 0.1) (0.6406242535 -0.08303501131 0.1) (0.6400210652 -0.08518102056 0.1) (0.6193061423 -0.07418669884 0.1) (0.6185434302 -0.07698257145 0.1) (0.6179570341 -0.07913329594 0.1) (-1.2 -2.2 0.15) (-1.02836 -2.2 0.15) (-1.0284 -2.01675 0.15) (-1.2 -2.01667 0.15) (-1.02845 -1.83342 0.15) (-1.2 -1.83333 0.15) (-1.0285 -1.65009 0.15) (-1.2 -1.65 0.15) (-1.02855 -1.46674 0.15) (-1.11428 -1.46671 0.15) (-1.2 -1.46667 0.15) (-1.1143 -1.37504 0.15) (-1.2 -1.375 0.15) (-1.2 -1.28333 0.15) (-1.11432 -1.28338 0.15) (-1.11433 -1.19171 0.15) (-1.2 -1.19167 0.15) (-1.2 -1.1 0.15) (-1.11435 -1.10005 0.15) (-1.11437 -1.00838 0.15) (-1.2 -1.00833 0.15) (-1.2 -0.916667 0.15) (-1.11439 -0.916715 0.15) (-1.11441 -0.825051 0.15) (-1.2 -0.825 0.15) (-1.2 -0.733333 0.15) (-1.11443 -0.733386 0.15) (-1.11444 -0.641721 0.15) (-1.2 -0.641667 0.15) (-1.2 -0.55 0.15) (-1.11446 -0.550056 0.15) (-1.11448 -0.458391 0.15) (-1.2 -0.458333 0.15) (-1.2 -0.366667 0.15) (-1.11449 -0.366726 0.15) (-1.11451 -0.27506 0.15) (-1.2 -0.275 0.15) (-1.2 -0.183333 0.15) (-1.11452 -0.183395 0.15) (-1.11452 -0.0917285 0.15) (-1.2 -0.0916667 0.15) (-1.2 0 0.15) (-1.11452 -6.20099e-05 0.15) (-1.11452 0.0916048 0.15) (-1.2 0.0916667 0.15) (-1.2 0.183333 0.15) (-1.11452 0.183272 0.15) (-1.11451 0.27494 0.15) (-1.2 0.275 0.15) (-1.2 0.366667 0.15) (-1.11449 0.366608 0.15) (-1.11448 0.458276 0.15) (-1.2 0.458333 0.15) (-1.2 0.55 0.15) (-1.11446 0.549944 0.15) (-1.11444 0.641612 0.15) (-1.2 0.641667 0.15) (-1.2 0.733333 0.15) (-1.11443 0.733281 0.15) (-1.11441 0.824949 0.15) (-1.2 0.825 0.15) (-1.2 0.916667 0.15) (-1.11439 0.916618 0.15) (-1.11437 1.00829 0.15) (-1.2 1.00833 0.15) (-1.2 1.1 0.15) (-1.11435 1.09995 0.15) (-1.11433 1.19162 0.15) (-1.2 1.19167 0.15) (-1.2 1.28333 0.15) (-1.11432 1.28329 0.15) (-1.1143 1.37497 0.15) (-1.2 1.375 0.15) (-1.2 1.46667 0.15) (-1.11429 1.46665 0.15) (-1.02854 1.46685 0.15) (-1.02831 1.65049 0.15) (-1.2 1.65 0.15) (-1.02824 1.83417 0.15) (-1.2 1.83387 0.15) (-1.02804 2.01728 0.15) (-1.2 2.01724 0.15) (-1.02778 2.2 0.15) (-1.2 2.2 0.15) (-0.85612 -2.2 0.15) (-0.85642 -2.01697 0.15) (-0.85678 -1.83375 0.15) (-0.85688 -1.65042 0.15) (-0.85704 -1.46688 0.15) (-0.942809 -1.46678 0.15) (-0.942854 -1.37512 0.15) (-1.02858 -1.37508 0.15) (-1.02862 -1.28342 0.15) (-0.942902 -1.28346 0.15) (-0.942953 -1.19179 0.15) (-1.02865 -1.19175 0.15) (-1.02869 -1.10009 0.15) (-0.943007 -1.10013 0.15) (-0.943063 -1.00847 0.15) (-0.985895 -1.00845 0.15) (-1.02872 -1.00843 0.15) (-1.02876 -0.916763 0.15) (-0.985943 -0.916786 0.15) (-0.985992 -0.870958 0.15) (-1.02881 -0.870935 0.15) (-1.02884 -0.733437 0.15) (-0.986043 -0.733463 0.15) (-0.986093 -0.687634 0.15) (-1.02889 -0.687609 0.15) (-1.02892 -0.550112 0.15) (-0.986141 -0.550139 0.15) (-0.986191 -0.504311 0.15) (-1.02897 -0.504284 0.15) (-1.02898 -0.366785 0.15) (-0.986227 -0.366814 0.15) (-0.986274 -0.320985 0.15) (-1.02903 -0.320956 0.15) (-1.02903 -0.183456 0.15) (-0.986288 -0.183486 0.15) (-0.9863275902 -0.1376593386 0.15) (-1.02908 -0.137627 0.15) (-1.02905 -0.000123943 0.15) (-0.9863103257 -0.0001811844683 0.15) (-0.9863364965 0.04565343257 0.15) (-1.02908 0.0457059 0.15) (-1.02903 0.183211 0.15) (-0.986288 0.18318 0.15) (-0.986305 0.229012 0.15) (-1.02906 0.229042 0.15) (-1.02898 0.366549 0.15) (-0.986228 0.36652 0.15) (-0.986235 0.412352 0.15) (-1.029 0.41238 0.15) (-1.02892 0.549888 0.15) (-0.986141 0.549861 0.15) (-0.986143 0.595694 0.15) (-1.02893 0.59572 0.15) (-1.02884 0.733229 0.15) (-0.986043 0.733204 0.15) (-0.986043 0.779037 0.15) (-1.02885 0.779061 0.15) (-1.02876 0.91657 0.15) (-0.985944 0.916547 0.15) (-0.985942 0.962381 0.15) (-1.02877 0.962403 0.15) (-1.02869 1.09992 0.15) (-0.943013 1.09996 0.15) (-0.942949 1.19183 0.15) (-1.02865 1.19161 0.15) (-1.02862 1.28331 0.15) (-0.942852 1.2837 0.15) (-0.942603 1.37575 0.15) (-1.02858 1.3751 0.15) (-0.94248 1.46749 0.15) (-0.856309 1.46797 0.15) (-0.856172 1.65126 0.15) (-0.856002 1.83463 0.15) (-0.855752 2.01733 0.15) (-0.855556 2.2 0.15) (-0.683333 -2.2 0.15) (-0.683732 -2.01725 0.15) (-0.684123 -1.8345 0.15) (-0.68446 -1.65166 0.15) (-0.684565 -1.46844 0.15) (-0.77116 -1.46732 0.15) (-0.77125 -1.37562 0.15) (-0.857103 -1.37519 0.15) (-0.857167 -1.28353 0.15) (-0.771348 -1.2839 0.15) (-0.771487 -1.19201 0.15) (-0.857238 -1.19184 0.15) (-0.85731 -1.10017 0.15) (-0.771588 -1.10027 0.15) (-0.771687 -1.00855 0.15) (-0.814539 -1.00853 0.15) (-0.857385 -1.00851 0.15) (-0.857463 -0.916853 0.15) (-0.814627 -0.916875 0.15) (-0.814684 -0.871047 0.15) (-0.857517 -0.871025 0.15) (-0.857628 -0.733536 0.15) (-0.814814 -0.733559 0.15) (-0.814875 -0.687732 0.15) (-0.857684 -0.687708 0.15) (-0.857795 -0.550219 0.15) (-0.8150427676 -0.5502941253 0.15) (-0.8152765771 -0.5047250732 0.15) (-0.8578527669 -0.5043947965 0.15) (-0.8583475961 -0.3676545227 0.15) (-0.8161786174 -0.3689180988 0.15) (-0.8164149784 -0.3237949949 0.15) (-0.8585457294 -0.3222536773 0.15) (-0.8587262697 -0.1860686303 0.15) (-0.8164834353 -0.1882634663 0.15) (-0.8163210539 -0.1429226511 0.15) (-0.8586653339 -0.1405825886 0.15) (-0.8581188878 -0.003565827489 0.15) (-0.8153833459 -0.006098729491 0.15) (-0.8150396159 0.03980713271 0.15) (-0.8579184785 0.04232000648 0.15) (-0.8574208541 0.1805858147 0.15) (-0.8141844691 0.1783823758 0.15) (-0.8140655319 0.2248074323 0.15) (-0.8573824144 0.2268274818 0.15) (-0.8575547342 0.3656684174 0.15) (-0.8142091614 0.3643948903 0.15) (-0.8144225812 0.4108981906 0.15) (-0.8576978801 0.4118725972 0.15) (-0.857795 0.549781 0.15) (-0.8149684282 0.5497020927 0.15) (-0.814972 0.595592 0.15) (-0.857769 0.595617 0.15) (-0.857628 0.733131 0.15) (-0.814815 0.733107 0.15) (-0.814779 0.778944 0.15) (-0.8576 0.778967 0.15) (-0.857464 0.916483 0.15) (-0.814633 0.916519 0.15) (-0.814603 0.96244 0.15) (-0.857438 0.962328 0.15) (-0.85725 1.10049 0.15) (-0.770908 1.1016 0.15) (-0.770553 1.19343 0.15) (-0.856875 1.19274 0.15) (-0.856623 1.28457 0.15) (-0.770431 1.28507 0.15) (-0.770351 1.37669 0.15) (-0.856389 1.37633 0.15) (-0.770297 1.46831 0.15) (-0.684227 1.46864 0.15) (-0.683965 1.6519 0.15) (-0.683689 1.8347 0.15) (-0.683502 2.01736 0.15) (-0.683333 2.2 0.15) (-0.511111 -2.2 0.15) (-0.511372 -2.01734 0.15) (-0.511646 -1.83468 0.15) (-0.511912 -1.65201 0.15) (-0.512088 -1.46924 0.15) (-0.598172 -1.46894 0.15) (-0.5982 -1.37737 0.15) (-0.684628 -1.37684 0.15) (-0.684917 -1.28506 0.15) (-0.598333 -1.28576 0.15) (-0.598734 -1.194 0.15) (-0.685494 -1.19278 0.15) (-0.68575 -1.10077 0.15) (-0.599191 -1.10213 0.15) (-0.59999 -1.00954 0.15) (-0.643085 -1.00875 0.15) (-0.685965 -1.00863 0.15) (-0.686088 -0.916936 0.15) (-0.643229 -0.916968 0.15) (-0.643304 -0.871132 0.15) (-0.686158 -0.871109 0.15) (-0.686344 -0.733627 0.15) (-0.6436116857 -0.733776001 0.15) (-0.6441498581 -0.6885624884 0.15) (-0.6865518724 -0.6879679778 0.15) (-0.6885079882 -0.5532917459 0.15) (-0.6468344837 -0.5553317163 0.15) (-0.6477482288 -0.5114585943 0.15) (-0.68929218 -0.5089486527 0.15) (-0.69090578 -0.3765299113 0.15) (-0.6494236126 -0.3802692276 0.15) (-0.6495162569 -0.3364310796 0.15) (-0.6910749607 -0.3323632929 0.15) (-0.6902752473 -0.1990007232 0.15) (-0.6482910422 -0.2037739151 0.15) (-0.6474781671 -0.1590455371 0.15) (-0.6896505761 -0.1541280988 0.15) (-0.6871036214 -0.01792494124 0.15) (-0.6443165857 -0.02303283013 0.15) (-0.6431956164 0.0229430081 0.15) (-0.6861945356 0.02803725726 0.15) (-0.683826227 0.1675779216 0.15) (-0.6402354969 0.162766511 0.15) (-0.6395477275 0.2099647924 0.15) (-0.6833088399 0.2145926069 0.15) (-0.68286808 0.356709991 0.15) (-0.638770235 0.3529248586 0.15) (-0.6389962453 0.4008679756 0.15) (-0.6831313149 0.4042778959 0.15) (-0.6847360361 0.5466634233 0.15) (-0.6408019688 0.5445970877 0.15) (-0.6416158975 0.5921988284 0.15) (-0.6853759687 0.5937717245 0.15) (-0.686358 0.733246 0.15) (-0.6433100539 0.7340555728 0.15) (-0.64276 0.781174 0.15) (-0.686277 0.779542 0.15) (-0.684856 0.918994 0.15) (-0.641698 0.91929 0.15) (-0.641653 0.965082 0.15) (-0.684683 0.964872 0.15) (-0.684589 1.10222 0.15) (-0.598587 1.10257 0.15) (-0.598492 1.19415 0.15) (-0.684489 1.19382 0.15) (-0.684423 1.28541 0.15) (-0.598356 1.28576 0.15) (-0.598227 1.37737 0.15) (-0.684353 1.37701 0.15) (-0.598044 1.46899 0.15) (-0.511813 1.46933 0.15) (-0.511625 1.65211 0.15) (-0.511417 1.83475 0.15) (-0.511259 2.01738 0.15) (-0.511111 2.2 0.15) (-0.338889 -2.2 0.15) (-0.339075 -2.01738 0.15) (-0.339307 -1.83475 0.15) (-0.339552 -1.6521 0.15) (-0.339914 -1.46942 0.15) (-0.42603 -1.4694 0.15) (-0.426107 -1.37793 0.15) (-0.512124 -1.37767 0.15) (-0.512175 -1.28611 0.15) (-0.426152 -1.28638 0.15) (-0.426205 -1.19484 0.15) (-0.512281 -1.19454 0.15) (-0.512399 -1.10297 0.15) (-0.426261 -1.10332 0.15) (-0.42631 -1.0118 0.15) (-0.469316 -1.01165 0.15) (-0.512427 -1.01145 0.15) (-0.513033 -0.919636 0.15) (-0.469459 -0.920103 0.15) (-0.4696831799 -0.8743456364 0.15) (-0.513554 -0.87351 0.15) (-0.5168086329 -0.7366219089 0.15) (-0.4744601449 -0.7392912161 0.15) (-0.4763927182 -0.6956099491 0.15) (-0.5182576257 -0.6928179744 0.15) (-0.5226617427 -0.5641947028 0.15) (-0.4813827996 -0.5678688463 0.15) (-0.4825323633 -0.5258706001 0.15) (-0.5237921909 -0.5217594794 0.15) (-0.5251825227 -0.3940658334 0.15) (-0.4836972238 -0.39915244 0.15) (-0.4832999204 -0.3563469716 0.15) (-0.5249259155 -0.3510700085 0.15) (-0.5222347344 -0.2200085084 0.15) (-0.4801106011 -0.2255155012 0.15) (-0.4785606051 -0.181067856 0.15) (-0.5208546489 -0.1755566969 0.15) (-0.5159299649 -0.03988629218 0.15) (-0.473148944 -0.04537965583 0.15) (-0.4712617589 0.0005916546678 0.15) (-0.5142077715 0.006097679466 0.15) (-0.5094712516 0.1463814847 0.15) (-0.4659935034 0.1408298875 0.15) (-0.4645603272 0.1884486584 0.15) (-0.5082241043 0.1939450511 0.15) (-0.506133759 0.3389609731 0.15) (-0.4619730836 0.3341063399 0.15) (-0.461829683 0.3833625807 0.15) (-0.5061110334 0.3879223989 0.15) (-0.5079434839 0.5372308421 0.15) (-0.4623679038 0.5349995674 0.15) (-0.4626467356 0.5852080608 0.15) (-0.5081643034 0.5875556967 0.15) (-0.5108191953 0.7336826807 0.15) (-0.4667682561 0.7321642918 0.15) (-0.4681233386 0.7801591071 0.15) (-0.5118644894 0.7811364528 0.15) (-0.512777 0.919803 0.15) (-0.469804 0.919959 0.15) (-0.469767 0.965722 0.15) (-0.512742 0.965571 0.15) (-0.512576 1.1029 0.15) (-0.426399 1.10328 0.15) (-0.426059 1.1949 0.15) (-0.512348 1.19452 0.15) (-0.512064 1.28615 0.15) (-0.425833 1.28649 0.15) (-0.425757 1.37805 0.15) (-0.511924 1.37774 0.15) (-0.42569 1.46951 0.15) (-0.339558 1.46954 0.15) (-0.339308 1.65218 0.15) (-0.339106 1.8348 0.15) (-0.338986 2.0174 0.15) (-0.338889 2.2 0.15) (-0.166667 -2.2 0.15) (-0.16675 -2.01741 0.15) (-0.166857 -1.83481 0.15) (-0.167034 -1.6522 0.15) (-0.167458 -1.46954 0.15) (-0.253787 -1.46946 0.15) (-0.25393 -1.37813 0.15) (-0.340052 -1.37808 0.15) (-0.340133 -1.28663 0.15) (-0.254058 -1.28681 0.15) (-0.254132 -1.19535 0.15) (-0.340185 -1.1951 0.15) (-0.340241 -1.10359 0.15) (-0.25418 -1.10384 0.15) (-0.25416 -1.01239 0.15) (-0.29726 -1.01222 0.15) (-0.340301 -1.01208 0.15) (-0.3405731931 -0.9208583704 0.15) (-0.2978033548 -0.9213657282 0.15) (-0.2990461198 -0.8773516945 0.15) (-0.3415157479 -0.8763837273 0.15) (-0.3470348758 -0.7483140801 0.15) (-0.3052226814 -0.7508599623 0.15) (-0.3074874751 -0.7100257521 0.15) (-0.3491843409 -0.7069511339 0.15) (-0.3551978827 -0.5839283329 0.15) (-0.3128191309 -0.588750055 0.15) (-0.3139592815 -0.5479914112 0.15) (-0.3567091102 -0.5425548311 0.15) (-0.3583504291 -0.4157963852 0.15) (-0.3158121798 -0.4214810024 0.15) (-0.3151909374 -0.3779740786 0.15) (-0.3575438124 -0.3725659452 0.15) (-0.3531888563 -0.2400272659 0.15) (-0.3106135773 -0.2441278604 0.15) (-0.3086564373 -0.198462571 0.15) (-0.3512639751 -0.1950480428 0.15) (-0.344927322 -0.05859941586 0.15) (-0.3022301049 -0.06128860623 0.15) (-0.3000050261 -0.01545155019 0.15) (-0.3427306842 -0.01273052281 0.15) (-0.3361649288 0.1275319878 0.15) (-0.2930652679 0.1245484329 0.15) (-0.2908578175 0.1716467766 0.15) (-0.334114197 0.1750911828 0.15) (-0.3292799812 0.3215011904 0.15) (-0.284355678 0.3184522081 0.15) (-0.282587483 0.3683182792 0.15) (-0.3275527737 0.3723390783 0.15) (-0.3273240152 0.5236843376 0.15) (-0.2829318701 0.5195132074 0.15) (-0.2841691719 0.5706063886 0.15) (-0.3285926001 0.5744240479 0.15) (-0.3341840681 0.7259653044 0.15) (-0.2899477955 0.7236002153 0.15) (-0.292116213 0.7738465141 0.15) (-0.3362200833 0.7756527854 0.15) (-0.340355107 0.9200595016 0.15) (-0.2966793133 0.9200353109 0.15) (-0.2970272237 0.9665598751 0.15) (-0.340495 0.966291 0.15) (-0.339984 1.10368 0.15) (-0.253752 1.104 0.15) (-0.25369 1.1955 0.15) (-0.33981 1.19524 0.15) (-0.339723 1.28677 0.15) (-0.253617 1.28696 0.15) (-0.253479 1.37829 0.15) (-0.339655 1.37822 0.15) (-0.253377 1.4696 0.15) (-0.167064 1.46964 0.15) (-0.166945 1.65224 0.15) (-0.166826 1.83483 0.15) (-0.166743 2.01742 0.15) (-0.166667 2.2 0.15) (0.00555556 -2.2 0.15) (0.00551007 -2.01742 0.15) (0.00546213 -1.83484 0.15) (0.00540281 -1.65225 0.15) (0.0053634 -1.46967 0.15) (-0.0809386 -1.46965 0.15) (-0.0809705 -1.37835 0.15) (-0.167621 -1.37821 0.15) (-0.167738 -1.2869 0.15) (-0.0810137 -1.28705 0.15) (-0.081081 -1.19575 0.15) (-0.167848 -1.19558 0.15) (-0.167946 -1.10413 0.15) (-0.081294 -1.10442 0.15) (-0.08179833561 -1.01292816 0.15) (-0.1250045303 -1.012740746 0.15) (-0.16807 -1.01263 0.15) (-0.1696107291 -0.9233308754 0.15) (-0.1269508677 -0.9240994002 0.15) (-0.1289635515 -0.8817324572 0.15) (-0.1714472019 -0.8805515956 0.15) (-0.1789313557 -0.7579707887 0.15) (-0.1367690571 -0.760508442 0.15) (-0.1393019479 -0.7213097748 0.15) (-0.1817158154 -0.7188456096 0.15) (-0.1869542804 -0.6008195853 0.15) (-0.1446122322 -0.6042610726 0.15) (-0.1451937722 -0.5643682983 0.15) (-0.1875778953 -0.5608031254 0.15) (-0.1863182302 -0.435791577 0.15) (-0.1433251158 -0.4392440558 0.15) (-0.1418490597 -0.3952614046 0.15) (-0.1853006468 -0.3920339887 0.15) (-0.1814815198 -0.2540815873 0.15) (-0.1371343787 -0.2580517482 0.15) (-0.1364175357 -0.2349504404 0.15) (-0.1366446307 -0.2105601137 0.15) (-0.1585875314 -0.2083904421 0.15) (-0.1800403574 -0.2071434766 0.15) (-0.1741714569 -0.06751913607 0.15) (-0.1528293912 -0.06855108719 0.15) (-0.1517175554 -0.04516914056 0.15) (-0.173063737 -0.04426391539 0.15) (-0.1633313894 0.1204098444 0.15) (-0.1413783088 0.1200477848 0.15) (-0.1190776188 0.1198351363 0.15) (-0.1172824863 0.1430615916 0.15) (-0.115926161 0.1659708383 0.15) (-0.1599925964 0.1670871427 0.15) (-0.1524074009 0.3078780848 0.15) (-0.1091238565 0.3049185041 0.15) (-0.1076433143 0.3532911977 0.15) (-0.1511225103 0.3564920878 0.15) (-0.1504303459 0.5081337111 0.15) (-0.1061437792 0.5052589193 0.15) (-0.1068706949 0.5571569414 0.15) (-0.1513158429 0.5601125454 0.15) (-0.1566552282 0.7168545604 0.15) (-0.112490097 0.7142523475 0.15) (-0.1150821281 0.7662327274 0.15) (-0.159109239 0.7683796347 0.15) (-0.1658238949 0.9183087638 0.15) (-0.1223069347 0.9175643465 0.15) (-0.1238510451 0.9658228375 0.15) (-0.1671600125 0.966154917 0.15) (-0.167581 1.10426 0.15) (-0.0812491 1.10447 0.15) (-0.0810988 1.19579 0.15) (-0.167498 1.19571 0.15) (-0.167364 1.28702 0.15) (-0.0810205 1.28709 0.15) (-0.080918 1.37839 0.15) (-0.16716 1.37833 0.15) (-0.0808667 1.46969 0.15) (0.00526028 1.4697 0.15) (0.00533705 1.65227 0.15) (0.00541418 1.83485 0.15) (0.00548531 2.01743 0.15) (0.00555556 2.2 0.15) (0.177778 -2.2 0.15) (0.177739 -2.01742 0.15) (0.1777 -1.83484 0.15) (0.177661 -1.65227 0.15) (0.177627 -1.46969 0.15) (0.0915047 -1.4697 0.15) (0.0914852 -1.37841 0.15) (0.00534656 -1.37838 0.15) (0.00532381 -1.28709 0.15) (0.0914651 -1.28711 0.15) (0.0914414 -1.19582 0.15) (0.00528866 -1.19579 0.15) (0.00515509 -1.10449 0.15) (0.0913796 -1.10453 0.15) (0.09101517524 -1.013503339 0.15) (0.04780860133 -1.013337242 0.15) (0.004691275986 -1.013285189 0.15) (0.002042851362 -0.9261704256 0.15) (0.04509839443 -0.9265601075 0.15) (0.04274676411 -0.8853304672 0.15) (-0.0002754517986 -0.884748304 0.15) (-0.008684846438 -0.7667006812 0.15) (0.03427162297 -0.7679777216 0.15) (0.03168765908 -0.7300266125 0.15) (-0.01126447143 -0.7285321659 0.15) (-0.01603885506 -0.6132298109 0.15) (0.02694418952 -0.6153270123 0.15) (0.02665209291 -0.5757841599 0.15) (-0.01639357759 -0.5735461106 0.15) (-0.01372465883 -0.4474880914 0.15) (0.02962034932 -0.4497828603 0.15) (0.03161804092 -0.4048352246 0.15) (-0.01181896377 -0.4026791836 0.15) (-0.0057308288 -0.265938567 0.15) (0.01628484874 -0.2671296097 0.15) (0.01725218528 -0.2443517577 0.15) (-0.00472889911 -0.2431643875 0.15) (0.01200530158 0.115025359 0.15) (0.0338198094 0.1141023291 0.15) (0.03500889798 0.1368634681 0.15) (0.0132278299 0.1378089115 0.15) (0.02173640772 0.2977544915 0.15) (0.064977268 0.2955123571 0.15) (0.06688886955 0.3426827148 0.15) (0.02356579355 0.3451369212 0.15) (0.02538368277 0.4955174037 0.15) (0.06885960719 0.4930273004 0.15) (0.06814904908 0.5454900563 0.15) (0.02463573777 0.5478336739 0.15) (0.01881392778 0.7076134096 0.15) (0.06236869946 0.7059902305 0.15) (0.05967912286 0.7594489407 0.15) (0.01608744565 0.7607760548 0.15) (0.008059996616 0.9156112958 0.15) (0.05196766857 0.9146425101 0.15) (0.04988333167 0.9642260632 0.15) (0.006112402186 0.9648589581 0.15) (0.00498511 1.10452 0.15) (0.0912177 1.10457 0.15) (0.0912678 1.19586 0.15) (0.00512268 1.19582 0.15) (0.00517435 1.28712 0.15) (0.0913049 1.28714 0.15) (0.0913415 1.37843 0.15) (0.00522194 1.37841 0.15) (0.0913798 1.46972 0.15) (0.17756 1.46972 0.15) (0.177642 1.65229 0.15) (0.17769 1.83486 0.15) (0.177734 2.01743 0.15) (0.177778 2.2 0.15) (0.35 -2.2 0.15) (0.349964 -2.01742 0.15) (0.349927 -1.83485 0.15) (0.349892 -1.65227 0.15) (0.349867 -1.4697 0.15) (0.263757 -1.46971 0.15) (0.263743 -1.37842 0.15) (0.177608 -1.3784 0.15) (0.177589 -1.28711 0.15) (0.263728 -1.28713 0.15) (0.263712 -1.19584 0.15) (0.17757 -1.19582 0.15) (0.177544 -1.10453 0.15) (0.263698 -1.10455 0.15) (0.2634085216 -1.013773684 0.15) (0.2203553498 -1.013703006 0.15) (0.1772712131 -1.013627797 0.15) (0.1742212741 -0.9279988268 0.15) (0.2172363416 -0.928322077 0.15) (0.2147275421 -0.8879174241 0.15) (0.1717404175 -0.8874014491 0.15) (0.1631177975 -0.7721535643 0.15) (0.2060724476 -0.7733304288 0.15) (0.2035179439 -0.7362785329 0.15) (0.1605585753 -0.7348838054 0.15) (0.1560546782 -0.62168376 0.15) (0.199055743 -0.6235970096 0.15) (0.1989021058 -0.5844064997 0.15) (0.1558805563 -0.5823898577 0.15) (0.1592311483 -0.4562324563 0.15) (0.202317044 -0.4582977153 0.15) (0.2044369505 -0.4130626031 0.15) (0.1613384459 -0.4110379182 0.15) (0.1678934176 -0.2745392153 0.15) (0.1894570256 -0.2755652659 0.15) (0.1905446701 -0.2528502887 0.15) (0.1689812068 -0.2518212415 0.15) (0.1860182203 0.1071418021 0.15) (0.2077081983 0.1060996388 0.15) (0.2088176243 0.1288095598 0.15) (0.1871388264 0.129855188 0.15) (0.1949499243 0.289057918 0.15) (0.2382251237 0.2869067153 0.15) (0.2402067582 0.3334407082 0.15) (0.1969235654 0.3356918984 0.15) (0.1993822489 0.4855849525 0.15) (0.2427610405 0.4833362162 0.15) (0.2422538135 0.5361321706 0.15) (0.1988389594 0.5382831934 0.15) (0.1933619087 0.7003820569 0.15) (0.2368508719 0.6987803863 0.15) (0.234094058 0.7532044028 0.15) (0.1905978437 0.754585704 0.15) (0.1819653742 0.9127418646 0.15) (0.2253960055 0.9120836668 0.15) (0.22308503 0.9625667561 0.15) (0.1797048965 0.9630079596 0.15) (0.177442 1.10447 0.15) (0.263862 1.10431 0.15) (0.263862 1.19583 0.15) (0.177467 1.19586 0.15) (0.177495 1.28715 0.15) (0.263864 1.28717 0.15) (0.263866 1.37846 0.15) (0.177525 1.37843 0.15) (0.263867 1.46975 0.15) (0.350165 1.46972 0.15) (0.350091 1.65229 0.15) (0.350058 1.83486 0.15) (0.350028 2.01743 0.15) (0.35 2.2 0.15) (0.522222 -2.2 0.15) (0.522182 -2.01743 0.15) (0.522141 -1.83485 0.15) (0.522103 -1.65228 0.15) (0.522069 -1.46971 0.15) (0.435968 -1.46972 0.15) (0.43595 -1.37843 0.15) (0.349852 -1.37841 0.15) (0.349837 -1.28712 0.15) (0.435933 -1.28714 0.15) (0.435915 -1.19585 0.15) (0.349822 -1.19584 0.15) (0.349806 -1.10455 0.15) (0.435897 -1.10456 0.15) (0.4354539267 -1.014079278 0.15) (0.3924476706 -1.014001518 0.15) (0.3494478373 -1.013905866 0.15) (0.3461421088 -0.9292254387 0.15) (0.3890672126 -0.9295856073 0.15) (0.3864662915 -0.8899321752 0.15) (0.34356711 -0.8893724433 0.15) (0.3348270685 -0.7767185262 0.15) (0.3776943814 -0.7779451473 0.15) (0.3751467919 -0.7417517618 0.15) (0.3322764139 -0.7403110675 0.15) (0.3279011404 -0.6291892202 0.15) (0.3708079425 -0.6311252485 0.15) (0.3707149668 -0.5923488619 0.15) (0.3277899737 -0.5903214443 0.15) (0.3313421765 -0.4644057824 0.15) (0.3743219989 -0.4664369864 0.15) (0.3764715741 -0.4210779144 0.15) (0.3334858277 -0.4190817002 0.15) (0.3400325123 -0.2826717008 0.15) (0.3615128449 -0.2836807158 0.15) (0.3625940003 -0.2609964614 0.15) (0.3518529316 -0.260489908 0.15) (0.3411208525 -0.2599837886 0.15) (0.3593362097 0.09856394892 0.15) (0.3809411003 0.09745981668 0.15) (0.3820133145 0.1201455039 0.15) (0.3604155603 0.1212522951 0.15) (0.367953031 0.2803228008 0.15) (0.4110576064 0.2781093106 0.15) (0.4129669363 0.3249307806 0.15) (0.3698894525 0.3270080589 0.15) (0.3723529739 0.4780887606 0.15) (0.4153822599 0.4765001793 0.15) (0.4148446683 0.5300314448 0.15) (0.3718255625 0.5314280889 0.15) (0.3663820164 0.6959903425 0.15) (0.4093651146 0.6951880377 0.15) (0.4066128271 0.7504170705 0.15) (0.3636211484 0.7510363162 0.15) (0.3549483329 0.9113473234 0.15) (0.3979804148 0.9111361051 0.15) (0.3957090893 0.9619730259 0.15) (0.3526600595 0.9621086287 0.15) (0.350236 1.10409 0.15) (0.43642 1.10386 0.15) (0.4364 1.19541 0.15) (0.350224 1.19563 0.15) (0.350216 1.28715 0.15) (0.436392 1.287 0.15) (0.436371 1.37844 0.15) (0.350194 1.37844 0.15) (0.436339 1.46973 0.15) (0.52247 1.4697 0.15) (0.522403 1.65228 0.15) (0.522334 1.83485 0.15) (0.522278 2.01743 0.15) (0.522222 2.2 0.15) (0.694444 -2.2 0.15) (0.694421 -2.01743 0.15) (0.694395 -1.83486 0.15) (0.694367 -1.65229 0.15) (0.694266 -1.46972 0.15) (0.608164 -1.46973 0.15) (0.608143 -1.37844 0.15) (0.522052 -1.37842 0.15) (0.522033 -1.28714 0.15) (0.608122 -1.28715 0.15) (0.608101 -1.19587 0.15) (0.522015 -1.19585 0.15) (0.521997 -1.10456 0.15) (0.608086 -1.10458 0.15) (0.6074846827 -1.014420132 0.15) (0.5644873226 -1.014321154 0.15) (0.5214813339 -1.014229681 0.15) (0.5178822649 -0.9307716409 0.15) (0.5608139449 -0.93120751 0.15) (0.5581094858 -0.8923795857 0.15) (0.5152038402 -0.8917321624 0.15) (0.5063405113 -0.7817690796 0.15) (0.5492160818 -0.7830988744 0.15) (0.546684528 -0.7477564663 0.15) (0.5038046844 -0.7462149188 0.15) (0.499584583 -0.637023788 0.15) (0.5425084966 -0.6390259086 0.15) (0.5424923203 -0.6005725175 0.15) (0.4995483759 -0.5984971706 0.15) (0.5033343435 -0.4725011933 0.15) (0.546340521 -0.474510194 0.15) (0.5485166617 -0.4290216469 0.15) (0.5055050281 -0.4270432051 0.15) (0.5120416689 -0.2907168186 0.15) (0.5335426052 -0.2917138133 0.15) (0.5346228787 -0.2690685617 0.15) (0.5238725312 -0.2685675673 0.15) (0.5131242295 -0.2680656705 0.15) (0.5319194741 0.08957404683 0.15) (0.5534914099 0.0884094334 0.15) (0.5545395898 0.1110742554 0.15) (0.5329738882 0.1122435737 0.15) (0.5403225601 0.2715052202 0.15) (0.5833754948 0.2694066074 0.15) (0.5850608935 0.3174370479 0.15) (0.5420764004 0.3191190159 0.15) (0.5440162983 0.4733844941 0.15) (0.5867109957 0.4731099793 0.15) (0.5861062583 0.5273388784 0.15) (0.543337449 0.5278178144 0.15) (0.5375932676 0.6951724186 0.15) (0.5803013679 0.6951899662 0.15) (0.5775674761 0.7509910154 0.15) (0.5348376598 0.7508928985 0.15) (0.5265200025 0.9119589815 0.15) (0.5693645866 0.9120979531 0.15) (0.5673852933 0.96265352 0.15) (0.5244703748 0.9625674027 0.15) (0.522596 1.10359 0.15) (0.608805 1.10329 0.15) (0.608783 1.19489 0.15) (0.522553 1.19516 0.15) (0.522536 1.28678 0.15) (0.608754 1.28653 0.15) (0.608691 1.37816 0.15) (0.522505 1.3784 0.15) (0.608659 1.46969 0.15) (0.694922 1.46961 0.15) (0.694721 1.65224 0.15) (0.69458 1.83483 0.15) (0.694507 2.01742 0.15) (0.694444 2.2 0.15) (0.866667 -2.2 0.15) (0.866804 -2.01742 0.15) (0.866933 -1.83485 0.15) (0.867013 -1.65228 0.15) (0.866587 -1.46974 0.15) (0.780367 -1.46974 0.15) (0.780339 -1.37845 0.15) (0.694242 -1.37843 0.15) (0.69422 -1.28715 0.15) (0.780315 -1.28717 0.15) (0.780291 -1.19588 0.15) (0.694197 -1.19586 0.15) (0.694176 -1.10458 0.15) (0.780267 -1.1046 0.15) (0.7794874067 -1.014800074 0.15) (0.7364251847 -1.014846687 0.15) (0.6934473677 -1.014680442 0.15) (0.6895367311 -0.9326756826 0.15) (0.7324270431 -0.9332544725 0.15) (0.7296119564 -0.895326821 0.15) (0.6867515124 -0.894511006 0.15) (0.677770392 -0.7873162511 0.15) (0.7206005189 -0.7888506904 0.15) (0.7180931482 -0.7543438331 0.15) (0.6752557127 -0.7526027812 0.15) (0.6712204306 -0.6451845388 0.15) (0.7141164833 -0.6473285281 0.15) (0.7141923793 -0.6090959364 0.15) (0.6712701145 -0.6069118405 0.15) (0.6753224062 -0.480502007 0.15) (0.7183250478 -0.4824934259 0.15) (0.7205138465 -0.4368999935 0.15) (0.6775117673 -0.4349310234 0.15) (0.6840313177 -0.2986268386 0.15) (0.7055311725 -0.2996047589 0.15) (0.7066043783 -0.2770022162 0.15) (0.695850552 -0.2765110655 0.15) (0.6851047646 -0.2760193017 0.15) (0.7040684429 0.08011153786 0.15) (0.7255664232 0.07888742154 0.15) (0.7265962383 0.1015451208 0.15) (0.7050985955 0.102776229 0.15) (0.7122241514 0.2634784737 0.15) (0.7551065875 0.261735368 0.15) (0.756504898 0.3116760994 0.15) (0.7137074008 0.3128465083 0.15) (0.7146065042 0.4723914363 0.15) (0.7573401692 0.471871995 0.15) (0.7563411091 0.5280739742 0.15) (0.7138397647 0.5274972839 0.15) (0.7078637304 0.6972035865 0.15) (0.7501480947 0.6987537553 0.15) (0.7474475184 0.7547618763 0.15) (0.7051724297 0.7531780277 0.15) (0.6975893193 0.9136114289 0.15) (0.7403313464 0.9141078011 0.15) (0.7388213671 0.9637108627 0.15) (0.6959551482 0.9634994072 0.15) (0.694995 1.10296 0.15) (0.781109 1.10262 0.15) (0.781098 1.1943 0.15) (0.694983 1.1946 0.15) (0.694971 1.28624 0.15) (0.781097 1.28597 0.15) (0.781101 1.37767 0.15) (0.694945 1.37791 0.15) (0.781109 1.4694 0.15) (0.867247 1.46918 0.15) (0.867081 1.65219 0.15) (0.866868 1.8348 0.15) (0.866754 2.0174 0.15) (0.866667 2.2 0.15) (1.03889 -2.2 0.15) (1.03889 -2.01667 0.15) (1.03889 -1.83333 0.15) (1.03889 -1.65 0.15) (1.03889 -1.46667 0.15) (0.953286 -1.46972 0.15) (0.953361 -1.37843 0.15) (0.866525 -1.37846 0.15) (0.866505 -1.28717 0.15) (0.953429 -1.28714 0.15) (0.953488 -1.19585 0.15) (0.866488 -1.19589 0.15) (0.866462 -1.10461 0.15) (0.953452 -1.10458 0.15) (0.9512742268 -1.016388735 0.15) (0.9081417681 -1.016029648 0.15) (0.8652741616 -1.015551089 0.15) (0.8610361523 -0.9351860389 0.15) (0.903683668 -0.9364648426 0.15) (0.9007403115 -0.8995855331 0.15) (0.8581810974 -0.8978645599 0.15) (0.8489813273 -0.7938766633 0.15) (0.8916994135 -0.7958665543 0.15) (0.8892770137 -0.7620321792 0.15) (0.8465033817 -0.7599805227 0.15) (0.8427350302 -0.6540505668 0.15) (0.8856901655 -0.6560133164 0.15) (0.885803426 -0.618210912 0.15) (0.842903734 -0.6158752202 0.15) (0.847306625 -0.4884883102 0.15) (0.8903018637 -0.4905160188 0.15) (0.8924839592 -0.444862132 0.15) (0.8709936383 -0.4438526347 0.15) (0.8495010303 -0.442849034 0.15) (0.8560224823 -0.3064017745 0.15) (0.8667585707 -0.306887063 0.15) (0.8672913229 -0.2955826023 0.15) (0.8565581828 -0.2950984573 0.15) (0.8680397916 -0.1104087152 0.15) (0.8733875415 -0.1107917642 0.15) (0.8787380282 -0.1111388633 0.15) (0.8791464951 -0.1000654279 0.15) (0.8684570739 -0.09931858552 0.15) (0.875770378 0.06982963281 0.15) (0.8971704581 0.06844404966 0.15) (0.9185641111 0.06704976632 0.15) (0.9206451858 0.1124982857 0.15) (0.8778281142 0.1152302219 0.15) (0.8768016537 0.092538321 0.15) (0.883493442 0.2573005587 0.15) (0.9261944642 0.2564907209 0.15) (0.9272234911 0.3090065956 0.15) (0.8847019332 0.3088186083 0.15) (0.8847809566 0.4734995677 0.15) (0.9271383648 0.4745815467 0.15) (0.9258978028 0.5318256865 0.15) (0.8835673358 0.5306222588 0.15) (0.8771852261 0.7026702336 0.15) (0.9195827336 0.7038213416 0.15) (0.9170745289 0.7595213801 0.15) (0.8746020643 0.7585253263 0.15) (0.8683130236 0.9162258703 0.15) (0.911122448 0.9164696767 0.15) (0.9103280345 0.9643660917 0.15) (0.8673800732 0.9644394678 0.15) (0.867204 1.10226 0.15) (0.953252 1.10189 0.15) (0.953259 1.19361 0.15) (0.867204 1.19395 0.15) (0.867215 1.28567 0.15) (0.953283 1.2854 0.15) (0.953316 1.3772 0.15) (0.867233 1.37742 0.15) (0.953348 1.469 0.15) (1.03943 1.46885 0.15) (1.0394 1.65214 0.15) (1.0392 1.83477 0.15) (1.03904 2.01739 0.15) (1.03889 2.2 0.15) (1.21111 -2.2 0.15) (1.21111 -2.01667 0.15) (1.21111 -1.83333 0.15) (1.21111 -1.65 0.15) (1.21111 -1.46667 0.15) (1.125 -1.46667 0.15) (1.125 -1.375 0.15) (1.03889 -1.375 0.15) (1.03889 -1.28333 0.15) (1.125 -1.28333 0.15) (1.125 -1.19167 0.15) (1.03889 -1.19167 0.15) (1.03889 -1.1 0.15) (1.125 -1.1 0.15) (1.123705721 -1.01174935 0.15) (1.080477341 -1.012131918 0.15) (1.037327057 -1.012326251 0.15) (1.032584847 -0.934331568 0.15) (1.075837419 -0.9340472651 0.15) (1.072835275 -0.8980499118 0.15) (1.029542741 -0.8983210129 0.15) (1.020416542 -0.7971107085 0.15) (1.063762387 -0.7971054454 0.15) (1.061371663 -0.7641017549 0.15) (1.018033773 -0.7639487081 0.15) (1.014736786 -0.6589393339 0.15) (1.057974144 -0.6597538318 0.15) (1.058271995 -0.6216952373 0.15) (1.015090106 -0.6205964966 0.15) (1.019952951 -0.4915683778 0.15) (1.062952867 -0.4936443681 0.15) (1.06516311 -0.4478636912 0.15) (1.043668146 -0.4468259371 0.15) (1.022163194 -0.4457877009 0.15) (1.028793825 -0.3084476676 0.15) (1.050298777 -0.3094859039 0.15) (1.05140385 -0.2865965642 0.15) (1.04064638 -0.286077205 0.15) (1.029898898 -0.285558328 0.15) (1.029346361 -0.2970029978 0.15) (1.037634649 -0.1253279891 0.15) (1.048382131 -0.125846847 0.15) (1.059139602 -0.1263661966 0.15) (1.060244709 -0.1034761537 0.15) (1.038739757 -0.1024379174 0.15) (1.046475476 0.05779175513 0.15) (1.089475391 0.05571576483 0.15) (1.091652082 0.101985544 0.15) (1.048678703 0.1036719298 0.15) (1.054099751 0.2540058391 0.15) (1.096496523 0.2538737315 0.15) (1.097225919 0.3084129135 0.15) (1.054874467 0.3080604318 0.15) (1.053834146 0.4796471826 0.15) (1.096153244 0.4808348562 0.15) (1.094684281 0.5395659257 0.15) (1.05257953 0.5370408066 0.15) (1.046263002 0.7093434162 0.15) (1.088313166 0.7118426929 0.15) (1.086367374 0.7658166784 0.15) (1.043985915 0.7644188377 0.15) (1.039444068 0.9174543573 0.15) (1.082328625 0.9174268999 0.15) (1.08225 0.963502 0.15) (1.03926 0.963775 0.15) (1.03928 1.10146 0.15) (1.12532 1.10101 0.15) (1.12539 1.19295 0.15) (1.03931 1.19327 0.15) (1.03934 1.28514 0.15) (1.12544 1.28491 0.15) (1.12548 1.37679 0.15) (1.03939 1.377 0.15) (1.12552 1.46859 0.15) (1.2116 1.46826 0.15) (1.21159 1.65175 0.15) (1.21146 1.83473 0.15) (1.21128 2.01737 0.15) (1.21111 2.2 0.15) (1.38333 -2.2 0.15) (1.38333 -2.01667 0.15) (1.38333 -1.83333 0.15) (1.38333 -1.65 0.15) (1.38333 -1.46667 0.15) (1.29722 -1.46667 0.15) (1.29722 -1.375 0.15) (1.21111 -1.375 0.15) (1.21111 -1.28333 0.15) (1.29722 -1.28333 0.15) (1.29722 -1.19167 0.15) (1.21111 -1.19167 0.15) (1.21111 -1.1 0.15) (1.29722 -1.1 0.15) (1.296917704 -1.009180364 0.15) (1.253621478 -1.009849512 0.15) (1.210295063 -1.010552622 0.15) (1.20643386 -0.9306450235 0.15) (1.25017486 -0.9287999823 0.15) (1.247661658 -0.8915824125 0.15) (1.203747612 -0.8939340903 0.15) (1.195179935 -0.7919755381 0.15) (1.239401589 -0.7885806148 0.15) (1.237024976 -0.7555634188 0.15) (1.192784392 -0.7590912931 0.15) (1.188840061 -0.6567958256 0.15) (1.232878928 -0.6537142496 0.15) (1.232695646 -0.6174595791 0.15) (1.188799379 -0.6200722787 0.15) (1.192191108 -0.4984394363 0.15) (1.235533586 -0.4982915128 0.15) (1.237346257 -0.4550261947 0.15) (1.194193562 -0.4540135967 0.15) (1.200813465 -0.3167525933 0.15) (1.243823369 -0.3188290658 0.15) (1.246033564 -0.2730493877 0.15) (1.203023659 -0.2709729152 0.15) (1.201918538 -0.2938632536 0.15) (1.20965429 -0.1336328819 0.15) (1.252664195 -0.1357093544 0.15) (1.254874403 -0.08992937665 0.15) (1.211864499 -0.08785290412 0.15) (1.218439206 0.05068167502 0.15) (1.261354421 0.0507216582 0.15) (1.263257898 0.1005769719 0.15) (1.220436613 0.09950534561 0.15) (1.224439656 0.2580283817 0.15) (1.266924091 0.2611231237 0.15) (1.267209613 0.3178582169 0.15) (1.224823777 0.3144412569 0.15) (1.2227037 0.4895497523 0.15) (1.264941491 0.4930082393 0.15) (1.26331166 0.5514821996 0.15) (1.221058212 0.548272022 0.15) (1.215016112 0.7183689685 0.15) (1.257526185 0.7202821102 0.15) (1.255887333 0.772898248 0.15) (1.213442699 0.7707776659 0.15) (1.21111 0.916667 0.15) (1.25417 0.916667 0.15) (1.25417 0.9625 0.15) (1.21125 0.962818 0.15) (1.21135 1.10065 0.15) (1.29756 1.10048 0.15) (1.29749 1.1924 0.15) (1.21147 1.19275 0.15) (1.21153 1.28465 0.15) (1.29758 1.2844 0.15) (1.29764 1.37625 0.15) (1.21159 1.37654 0.15) (1.29764 1.46792 0.15) (1.38364 1.46759 0.15) (1.38374 1.65132 0.15) (1.38369 1.83462 0.15) (1.38351 2.01735 0.15) (1.38333 2.2 0.15) (1.55556 -2.2 0.15) (1.55556 -2.01667 0.15) (1.55556 -1.83333 0.15) (1.55556 -1.65 0.15) (1.55556 -1.46667 0.15) (1.46944 -1.46667 0.15) (1.46944 -1.375 0.15) (1.38333 -1.375 0.15) (1.38333 -1.28333 0.15) (1.46944 -1.28333 0.15) (1.46944 -1.19167 0.15) (1.38333 -1.19167 0.15) (1.38333 -1.1 0.15) (1.46944 -1.1 0.15) (1.46944 -1.00833 0.15) (1.42639 -1.00833 0.15) (1.383322575 -1.008351521 0.15) (1.381552718 -0.9223211255 0.15) (1.425274371 -0.9202700092 0.15) (1.423794844 -0.8796390587 0.15) (1.379765166 -0.8827453915 0.15) (1.372945281 -0.774108085 0.15) (1.417641419 -0.7682422236 0.15) (1.415563815 -0.7333656741 0.15) (1.370752152 -0.739922703 0.15) (1.366228275 -0.6374563321 0.15) (1.411044746 -0.6298032939 0.15) (1.410363357 -0.5944034932 0.15) (1.365647362 -0.6020632116 0.15) (1.366831306 -0.4886001762 0.15) (1.411055499 -0.481904626 0.15) (1.412096943 -0.4419141565 0.15) (1.368061802 -0.4480536655 0.15) (1.373315246 -0.3192545064 0.15) (1.416859411 -0.314758858 0.15) (1.418790438 -0.2703161585 0.15) (1.375366417 -0.2744902674 0.15) (1.381790522 -0.1362747595 0.15) (1.42493463 -0.1318082005 0.15) (1.426966902 -0.08382608541 0.15) (1.383920405 -0.08876573634 0.15) (1.389706097 0.06023958602 0.15) (1.432363025 0.06693670745 0.15) (1.433732069 0.1197369334 0.15) (1.391231865 0.1125536199 0.15) (1.393684918 0.2775307344 0.15) (1.435741885 0.2852729188 0.15) (1.435595774 0.3422042593 0.15) (1.393643462 0.3346362794 0.15) (1.390995583 0.5077681294 0.15) (1.432886788 0.5137589095 0.15) (1.431464816 0.5698512946 0.15) (1.389493012 0.5646818227 0.15) (1.38487613 0.7270565361 0.15) (1.427385815 0.7292340349 0.15) (1.426613171 0.7783037939 0.15) (1.383845895 0.7771997081 0.15) (1.38333 0.916667 0.15) (1.42639 0.916667 0.15) (1.42639 0.9625 0.15) (1.38333 0.9625 0.15) (1.38333 1.1 0.15) (1.46944 1.1 0.15) (1.46983 1.19203 0.15) (1.38358 1.19218 0.15) (1.38365 1.28424 0.15) (1.46966 1.28378 0.15) (1.46961 1.37544 0.15) (1.38362 1.37587 0.15) (1.46965 1.46727 0.15) (1.55574 1.46706 0.15) (1.55584 1.65071 0.15) (1.55579 1.834 0.15) (1.55576 2.01733 0.15) (1.55556 2.2 0.15) (1.72778 -2.2 0.15) (1.72778 -2.01667 0.15) (1.72778 -1.83333 0.15) (1.72778 -1.65 0.15) (1.72778 -1.46667 0.15) (1.64167 -1.46667 0.15) (1.64167 -1.375 0.15) (1.55556 -1.375 0.15) (1.55556 -1.28333 0.15) (1.64167 -1.28333 0.15) (1.64167 -1.19167 0.15) (1.55556 -1.19167 0.15) (1.55556 -1.1 0.15) (1.64167 -1.1 0.15) (1.64167 -1.00833 0.15) (1.59861 -1.00833 0.15) (1.55556 -1.00833 0.15) (1.555553481 -0.9166889842 0.15) (1.59861 -0.916667 0.15) (1.598542872 -0.8710744852 0.15) (1.555163271 -0.872240269 0.15) (1.551552927 -0.7501030253 0.15) (1.595939143 -0.7446844181 0.15) (1.594630935 -0.7054833726 0.15) (1.550007408 -0.7121991871 0.15) (1.546026688 -0.6022102388 0.15) (1.591011956 -0.5923416822 0.15) (1.590188129 -0.5550499754 0.15) (1.545196151 -0.5656712795 0.15) (1.544740376 -0.4525756944 0.15) (1.589479698 -0.4406025022 0.15) (1.589850054 -0.4009301074 0.15) (1.545261026 -0.4130987178 0.15) (1.548418883 -0.2880197215 0.15) (1.592461644 -0.2756902523 0.15) (1.593696922 -0.2316931159 0.15) (1.549850855 -0.2440207028 0.15) (1.5545813 -0.1050608973 0.15) (1.597823397 -0.09270685407 0.15) (1.599168915 -0.04405421025 0.15) (1.556131206 -0.05641210096 0.15) (1.559968185 0.09642031538 0.15) (1.602408068 0.1084805665 0.15) (1.603071925 0.1612609881 0.15) (1.560810455 0.1494944315 0.15) (1.561532011 0.3132285441 0.15) (1.603424419 0.3232405566 0.15) (1.602999262 0.3776518591 0.15) (1.561147323 0.3685398558 0.15) (1.558615487 0.5323423501 0.15) (1.600675137 0.5379277739 0.15) (1.599827675 0.5892853623 0.15) (1.55758473 0.5850770072 0.15) (1.555577019 0.7332600087 0.15) (1.59861 0.733333 0.15) (1.59861 0.779167 0.15) (1.55556 0.779167 0.15) (1.55556 0.916667 0.15) (1.59861 0.916667 0.15) (1.59861 0.9625 0.15) (1.55556 0.9625 0.15) (1.55556 1.1 0.15) (1.64167 1.1 0.15) (1.64167 1.19167 0.15) (1.55556 1.19167 0.15) (1.55556 1.28333 0.15) (1.64167 1.28333 0.15) (1.64167 1.375 0.15) (1.55556 1.375 0.15) (1.64167 1.46667 0.15) (1.72778 1.46667 0.15) (1.72778 1.65 0.15) (1.72778 1.83333 0.15) (1.72803 2.01725 0.15) (1.72778 2.2 0.15) (1.9 -2.2 0.15) (1.9 -2.01667 0.15) (1.9 -1.83333 0.15) (1.9 -1.65 0.15) (1.9 -1.46667 0.15) (1.81389 -1.46667 0.15) (1.81389 -1.375 0.15) (1.72778 -1.375 0.15) (1.72778 -1.28333 0.15) (1.81389 -1.28333 0.15) (1.81389 -1.19167 0.15) (1.72778 -1.19167 0.15) (1.72778 -1.1 0.15) (1.81389 -1.1 0.15) (1.81389 -1.00833 0.15) (1.77083 -1.00833 0.15) (1.72778 -1.00833 0.15) (1.72778 -0.916667 0.15) (1.77083 -0.916667 0.15) (1.77083 -0.870833 0.15) (1.72778 -0.870833 0.15) (1.727607753 -0.7340976313 0.15) (1.77083 -0.733333 0.15) (1.77070479 -0.6881002908 0.15) (1.727159201 -0.6904353788 0.15) (1.725130732 -0.5655317931 0.15) (1.769353034 -0.5587972141 0.15) (1.76883961 -0.5170566752 0.15) (1.724498696 -0.5250664112 0.15) (1.723475722 -0.4036847681 0.15) (1.767867983 -0.3926423893 0.15) (1.767822011 -0.3507530672 0.15) (1.723500763 -0.3625233904 0.15) (1.724619307 -0.2347723764 0.15) (1.768539095 -0.2216439707 0.15) (1.769002522 -0.1771263291 0.15) (1.72525994 -0.1904483598 0.15) (1.727487277 -0.0516851136 0.15) (1.77064732 -0.03851768597 0.15) (1.771164263 0.009330779545 0.15) (1.728196515 -0.003535789527 0.15) (1.729700841 0.1457082627 0.15) (1.772183291 0.1568610958 0.15) (1.772278057 0.2069480468 0.15) (1.729904551 0.1966509439 0.15) (1.729528788 0.3505160731 0.15) (1.771823443 0.3574124445 0.15) (1.771510507 0.4068927667 0.15) (1.729143776 0.4013732543 0.15) (1.727936673 0.5490511156 0.15) (1.77083044 0.5499973021 0.15) (1.77083 0.595833 0.15) (1.727781832 0.5958227738 0.15) (1.72778 0.733333 0.15) (1.77083 0.733333 0.15) (1.77083 0.779167 0.15) (1.72778 0.779167 0.15) (1.72778 0.916667 0.15) (1.77083 0.916667 0.15) (1.77083 0.9625 0.15) (1.72778 0.9625 0.15) (1.72778 1.1 0.15) (1.81389 1.1 0.15) (1.81389 1.19167 0.15) (1.72778 1.19167 0.15) (1.72778 1.28333 0.15) (1.81389 1.28333 0.15) (1.81389 1.375 0.15) (1.72778 1.375 0.15) (1.81389 1.46667 0.15) (1.9 1.46667 0.15) (1.9 1.65 0.15) (1.9 1.83333 0.15) (1.9 2.01667 0.15) (1.9 2.2 0.15) (2.07222 -2.2 0.15) (2.07222 -2.01667 0.15) (2.07222 -1.83333 0.15) (2.07222 -1.65 0.15) (2.07222 -1.46667 0.15) (1.98611 -1.46667 0.15) (1.98611 -1.375 0.15) (1.9 -1.375 0.15) (1.9 -1.28333 0.15) (1.98611 -1.28333 0.15) (1.98611 -1.19167 0.15) (1.9 -1.19167 0.15) (1.9 -1.1 0.15) (1.98611 -1.1 0.15) (1.98611 -1.00833 0.15) (1.94306 -1.00833 0.15) (1.9 -1.00833 0.15) (1.9 -0.916667 0.15) (1.94306 -0.916667 0.15) (1.94306 -0.870833 0.15) (1.9 -0.870833 0.15) (1.9 -0.733333 0.15) (1.94306 -0.733333 0.15) (1.94306 -0.6875 0.15) (1.9 -0.6875 0.15) (1.9 -0.55 0.15) (1.94306 -0.55 0.15) (1.94306 -0.504167 0.15) (1.899980637 -0.5042980395 0.15) (1.899653027 -0.3698726505 0.15) (1.943020939 -0.3670330527 0.15) (1.942974699 -0.3217437328 0.15) (1.899560697 -0.3254530008 0.15) (1.89954929 -0.191442229 0.15) (1.942914174 -0.1860073967 0.15) (1.942935061 -0.1405131861 0.15) (1.899631133 -0.1462055975 0.15) (1.899978781 -0.008197320908 0.15) (1.943054045 -0.00272368369 0.15) (1.943084382 0.0436031963 0.15) (1.900078296 0.03853060335 0.15) (1.900170917 0.1799643145 0.15) (1.943081172 0.1829122158 0.15) (1.943063902 0.2291054795 0.15) (1.900129753 0.2271420817 0.15) (1.9 0.366667 0.15) (1.94306 0.366667 0.15) (1.94306 0.4125 0.15) (1.9 0.4125 0.15) (1.9 0.55 0.15) (1.94306 0.55 0.15) (1.94306 0.595833 0.15) (1.9 0.595833 0.15) (1.9 0.733333 0.15) (1.94306 0.733333 0.15) (1.94306 0.779167 0.15) (1.9 0.779167 0.15) (1.9 0.916667 0.15) (1.94306 0.916667 0.15) (1.94306 0.9625 0.15) (1.9 0.9625 0.15) (1.9 1.1 0.15) (1.98611 1.1 0.15) (1.98611 1.19167 0.15) (1.9 1.19167 0.15) (1.9 1.28333 0.15) (1.98611 1.28333 0.15) (1.98611 1.375 0.15) (1.9 1.375 0.15) (1.98611 1.46667 0.15) (2.07222 1.46667 0.15) (2.07222 1.65 0.15) (2.07222 1.83333 0.15) (2.07222 2.01667 0.15) (2.07222 2.2 0.15) (2.24444 -2.2 0.15) (2.24444 -2.01667 0.15) (2.24444 -1.83333 0.15) (2.24444 -1.65 0.15) (2.24444 -1.46667 0.15) (2.15833 -1.46667 0.15) (2.15833 -1.375 0.15) (2.07222 -1.375 0.15) (2.07222 -1.28333 0.15) (2.15833 -1.28333 0.15) (2.15833 -1.19167 0.15) (2.07222 -1.19167 0.15) (2.07222 -1.1 0.15) (2.15833 -1.1 0.15) (2.15833 -1.00833 0.15) (2.11528 -1.00833 0.15) (2.07222 -1.00833 0.15) (2.07222 -0.916667 0.15) (2.11528 -0.916667 0.15) (2.11528 -0.870833 0.15) (2.07222 -0.870833 0.15) (2.07222 -0.733333 0.15) (2.11528 -0.733333 0.15) (2.11528 -0.6875 0.15) (2.07222 -0.6875 0.15) (2.07222 -0.55 0.15) (2.11528 -0.55 0.15) (2.11528 -0.504167 0.15) (2.07222 -0.504167 0.15) (2.07222 -0.366667 0.15) (2.11528 -0.366667 0.15) (2.11528 -0.320833 0.15) (2.07222 -0.320833 0.15) (2.07222 -0.183333 0.15) (2.11528 -0.183333 0.15) (2.11528 -0.1375 0.15) (2.07222 -0.1375 0.15) (2.07222 0 0.15) (2.11528 0 0.15) (2.11528 0.0458333 0.15) (2.07222 0.0458333 0.15) (2.07222 0.183333 0.15) (2.11528 0.183333 0.15) (2.11528 0.229167 0.15) (2.07222 0.229167 0.15) (2.07222 0.366667 0.15) (2.11528 0.366667 0.15) (2.11528 0.4125 0.15) (2.07222 0.4125 0.15) (2.07222 0.55 0.15) (2.11528 0.55 0.15) (2.11528 0.595833 0.15) (2.07222 0.595833 0.15) (2.07222 0.733333 0.15) (2.11528 0.733333 0.15) (2.11528 0.779167 0.15) (2.07222 0.779167 0.15) (2.07222 0.916667 0.15) (2.11528 0.916667 0.15) (2.11528 0.9625 0.15) (2.07222 0.9625 0.15) (2.07222 1.1 0.15) (2.15833 1.1 0.15) (2.15833 1.19167 0.15) (2.07222 1.19167 0.15) (2.07222 1.28333 0.15) (2.15833 1.28333 0.15) (2.15833 1.375 0.15) (2.07222 1.375 0.15) (2.15833 1.46667 0.15) (2.24444 1.46667 0.15) (2.24444 1.65 0.15) (2.24444 1.83333 0.15) (2.24444 2.01667 0.15) (2.24444 2.2 0.15) (2.41667 -2.2 0.15) (2.41667 -2.01667 0.15) (2.41667 -1.83333 0.15) (2.41667 -1.65 0.15) (2.41667 -1.46667 0.15) (2.33056 -1.46667 0.15) (2.33056 -1.375 0.15) (2.24444 -1.375 0.15) (2.24444 -1.28333 0.15) (2.33056 -1.28333 0.15) (2.33056 -1.19167 0.15) (2.24444 -1.19167 0.15) (2.24444 -1.1 0.15) (2.33056 -1.1 0.15) (2.33056 -1.00833 0.15) (2.2875 -1.00833 0.15) (2.24444 -1.00833 0.15) (2.24444 -0.916667 0.15) (2.2875 -0.916667 0.15) (2.2875 -0.870833 0.15) (2.24444 -0.870833 0.15) (2.24444 -0.733333 0.15) (2.2875 -0.733333 0.15) (2.2875 -0.6875 0.15) (2.24444 -0.6875 0.15) (2.24444 -0.55 0.15) (2.2875 -0.55 0.15) (2.2875 -0.504167 0.15) (2.24444 -0.504167 0.15) (2.24444 -0.366667 0.15) (2.2875 -0.366667 0.15) (2.2875 -0.320833 0.15) (2.24444 -0.320833 0.15) (2.24444 -0.183333 0.15) (2.2875 -0.183333 0.15) (2.2875 -0.1375 0.15) (2.24444 -0.1375 0.15) (2.24444 0 0.15) (2.2875 -4.62593e-18 0.15) (2.2875 0.0458333 0.15) (2.24444 0.0458333 0.15) (2.24444 0.183333 0.15) (2.2875 0.183333 0.15) (2.2875 0.229167 0.15) (2.24444 0.229167 0.15) (2.24444 0.366667 0.15) (2.2875 0.366667 0.15) (2.2875 0.4125 0.15) (2.24444 0.4125 0.15) (2.24444 0.55 0.15) (2.2875 0.55 0.15) (2.2875 0.595833 0.15) (2.24444 0.595833 0.15) (2.24444 0.733333 0.15) (2.2875 0.733333 0.15) (2.2875 0.779167 0.15) (2.24444 0.779167 0.15) (2.24444 0.916667 0.15) (2.2875 0.916667 0.15) (2.2875 0.9625 0.15) (2.24444 0.9625 0.15) (2.24444 1.1 0.15) (2.33056 1.1 0.15) (2.33056 1.19167 0.15) (2.24444 1.19167 0.15) (2.24444 1.28333 0.15) (2.33056 1.28333 0.15) (2.33056 1.375 0.15) (2.24444 1.375 0.15) (2.33056 1.46667 0.15) (2.41667 1.46667 0.15) (2.41667 1.65 0.15) (2.41667 1.83333 0.15) (2.41667 2.01667 0.15) (2.41667 2.2 0.15) (2.58889 -2.2 0.15) (2.58889 -2.01667 0.15) (2.58889 -1.83333 0.15) (2.58889 -1.65 0.15) (2.58889 -1.46667 0.15) (2.50278 -1.46667 0.15) (2.50278 -1.375 0.15) (2.41667 -1.375 0.15) (2.41667 -1.28333 0.15) (2.50278 -1.28333 0.15) (2.50278 -1.19167 0.15) (2.41667 -1.19167 0.15) (2.41667 -1.1 0.15) (2.50278 -1.1 0.15) (2.50278 -1.00833 0.15) (2.45972 -1.00833 0.15) (2.41667 -1.00833 0.15) (2.41667 -0.916667 0.15) (2.45972 -0.916667 0.15) (2.45972 -0.870833 0.15) (2.41667 -0.870833 0.15) (2.41667 -0.733333 0.15) (2.45972 -0.733333 0.15) (2.45972 -0.6875 0.15) (2.41667 -0.6875 0.15) (2.41667 -0.55 0.15) (2.45972 -0.55 0.15) (2.45972 -0.504167 0.15) (2.41667 -0.504167 0.15) (2.41667 -0.366667 0.15) (2.45972 -0.366667 0.15) (2.45972 -0.320833 0.15) (2.41667 -0.320833 0.15) (2.41667 -0.183333 0.15) (2.45972 -0.183333 0.15) (2.45972 -0.1375 0.15) (2.41667 -0.1375 0.15) (2.41667 -1.85037e-17 0.15) (2.45972 -1.85037e-17 0.15) (2.45972 0.0458333 0.15) (2.41667 0.0458333 0.15) (2.41667 0.183333 0.15) (2.45972 0.183333 0.15) (2.45972 0.229167 0.15) (2.41667 0.229167 0.15) (2.41667 0.366667 0.15) (2.45972 0.366667 0.15) (2.45972 0.4125 0.15) (2.41667 0.4125 0.15) (2.41667 0.55 0.15) (2.45972 0.55 0.15) (2.45972 0.595833 0.15) (2.41667 0.595833 0.15) (2.41667 0.733333 0.15) (2.45972 0.733333 0.15) (2.45972 0.779167 0.15) (2.41667 0.779167 0.15) (2.41667 0.916667 0.15) (2.45972 0.916667 0.15) (2.45972 0.9625 0.15) (2.41667 0.9625 0.15) (2.41667 1.1 0.15) (2.50278 1.1 0.15) (2.50278 1.19167 0.15) (2.41667 1.19167 0.15) (2.41667 1.28333 0.15) (2.50278 1.28333 0.15) (2.50278 1.375 0.15) (2.41667 1.375 0.15) (2.50278 1.46667 0.15) (2.58889 1.46667 0.15) (2.58889 1.65 0.15) (2.58889 1.83333 0.15) (2.58889 2.01667 0.15) (2.58889 2.2 0.15) (2.76111 -2.2 0.15) (2.76111 -2.01667 0.15) (2.76111 -1.83333 0.15) (2.76111 -1.65 0.15) (2.76111 -1.46667 0.15) (2.675 -1.46667 0.15) (2.675 -1.375 0.15) (2.58889 -1.375 0.15) (2.58889 -1.28333 0.15) (2.675 -1.28333 0.15) (2.675 -1.19167 0.15) (2.58889 -1.19167 0.15) (2.58889 -1.1 0.15) (2.675 -1.1 0.15) (2.675 -1.00833 0.15) (2.63194 -1.00833 0.15) (2.58889 -1.00833 0.15) (2.58889 -0.916667 0.15) (2.63194 -0.916667 0.15) (2.63194 -0.870833 0.15) (2.58889 -0.870833 0.15) (2.58889 -0.733333 0.15) (2.63194 -0.733333 0.15) (2.63194 -0.6875 0.15) (2.58889 -0.6875 0.15) (2.58889 -0.55 0.15) (2.63194 -0.55 0.15) (2.63194 -0.504167 0.15) (2.58889 -0.504167 0.15) (2.58889 -0.366667 0.15) (2.63194 -0.366667 0.15) (2.63194 -0.320833 0.15) (2.58889 -0.320833 0.15) (2.58889 -0.183333 0.15) (2.63194 -0.183333 0.15) (2.63194 -0.1375 0.15) (2.58889 -0.1375 0.15) (2.58889 -1.85037e-17 0.15) (2.63194 -9.25186e-18 0.15) (2.63194 0.0458333 0.15) (2.58889 0.0458333 0.15) (2.58889 0.183333 0.15) (2.63194 0.183333 0.15) (2.63194 0.229167 0.15) (2.58889 0.229167 0.15) (2.58889 0.366667 0.15) (2.63194 0.366667 0.15) (2.63194 0.4125 0.15) (2.58889 0.4125 0.15) (2.58889 0.55 0.15) (2.63194 0.55 0.15) (2.63194 0.595833 0.15) (2.58889 0.595833 0.15) (2.58889 0.733333 0.15) (2.63194 0.733333 0.15) (2.63194 0.779167 0.15) (2.58889 0.779167 0.15) (2.58889 0.916667 0.15) (2.63194 0.916667 0.15) (2.63194 0.9625 0.15) (2.58889 0.9625 0.15) (2.58889 1.1 0.15) (2.675 1.1 0.15) (2.675 1.19167 0.15) (2.58889 1.19167 0.15) (2.58889 1.28333 0.15) (2.675 1.28333 0.15) (2.675 1.375 0.15) (2.58889 1.375 0.15) (2.675 1.46667 0.15) (2.76111 1.46667 0.15) (2.76111 1.65 0.15) (2.76111 1.83333 0.15) (2.76111 2.01667 0.15) (2.76111 2.2 0.15) (2.93333 -2.2 0.15) (2.93333 -2.01667 0.15) (2.93333 -1.83333 0.15) (2.93333 -1.65 0.15) (2.93333 -1.46667 0.15) (2.84722 -1.46667 0.15) (2.84722 -1.375 0.15) (2.76111 -1.375 0.15) (2.76111 -1.28333 0.15) (2.84722 -1.28333 0.15) (2.84722 -1.19167 0.15) (2.76111 -1.19167 0.15) (2.76111 -1.1 0.15) (2.84722 -1.1 0.15) (2.84722 -1.00833 0.15) (2.80417 -1.00833 0.15) (2.76111 -1.00833 0.15) (2.76111 -0.916667 0.15) (2.80417 -0.916667 0.15) (2.80417 -0.870833 0.15) (2.76111 -0.870833 0.15) (2.76111 -0.733333 0.15) (2.80417 -0.733333 0.15) (2.80417 -0.6875 0.15) (2.76111 -0.6875 0.15) (2.76111 -0.55 0.15) (2.80417 -0.55 0.15) (2.80417 -0.504167 0.15) (2.76111 -0.504167 0.15) (2.76111 -0.366667 0.15) (2.80417 -0.366667 0.15) (2.80417 -0.320833 0.15) (2.76111 -0.320833 0.15) (2.76111 -0.183333 0.15) (2.80417 -0.183333 0.15) (2.80417 -0.1375 0.15) (2.76111 -0.1375 0.15) (2.76111 1.85037e-17 0.15) (2.80417 1.85037e-17 0.15) (2.80417 0.0458333 0.15) (2.76111 0.0458333 0.15) (2.76111 0.183333 0.15) (2.80417 0.183333 0.15) (2.80417 0.229167 0.15) (2.76111 0.229167 0.15) (2.76111 0.366667 0.15) (2.80417 0.366667 0.15) (2.80417 0.4125 0.15) (2.76111 0.4125 0.15) (2.76111 0.55 0.15) (2.80417 0.55 0.15) (2.80417 0.595833 0.15) (2.76111 0.595833 0.15) (2.76111 0.733333 0.15) (2.80417 0.733333 0.15) (2.80417 0.779167 0.15) (2.76111 0.779167 0.15) (2.76111 0.916667 0.15) (2.80417 0.916667 0.15) (2.80417 0.9625 0.15) (2.76111 0.9625 0.15) (2.76111 1.1 0.15) (2.84722 1.1 0.15) (2.84722 1.19167 0.15) (2.76111 1.19167 0.15) (2.76111 1.28333 0.15) (2.84722 1.28333 0.15) (2.84722 1.375 0.15) (2.76111 1.375 0.15) (2.84722 1.46667 0.15) (2.93333 1.46667 0.15) (2.93333 1.65 0.15) (2.93333 1.83333 0.15) (2.93333 2.01667 0.15) (2.93333 2.2 0.15) (3.10556 -2.2 0.15) (3.10556 -2.01667 0.15) (3.10556 -1.83333 0.15) (3.10556 -1.65 0.15) (3.10556 -1.46667 0.15) (3.01944 -1.46667 0.15) (3.01944 -1.375 0.15) (2.93333 -1.375 0.15) (2.93333 -1.28333 0.15) (3.01944 -1.28333 0.15) (3.01944 -1.19167 0.15) (2.93333 -1.19167 0.15) (2.93333 -1.1 0.15) (3.01944 -1.1 0.15) (3.01944 -1.00833 0.15) (2.97639 -1.00833 0.15) (2.93333 -1.00833 0.15) (2.93333 -0.916667 0.15) (2.97639 -0.916667 0.15) (2.97639 -0.870833 0.15) (2.93333 -0.870833 0.15) (2.93333 -0.733333 0.15) (2.97639 -0.733333 0.15) (2.97639 -0.6875 0.15) (2.93333 -0.6875 0.15) (2.93333 -0.55 0.15) (2.97639 -0.55 0.15) (2.97639 -0.504167 0.15) (2.93333 -0.504167 0.15) (2.93333 -0.366667 0.15) (2.97639 -0.366667 0.15) (2.97639 -0.320833 0.15) (2.93333 -0.320833 0.15) (2.93333 -0.183333 0.15) (2.97639 -0.183333 0.15) (2.97639 -0.1375 0.15) (2.93333 -0.1375 0.15) (2.93333 1.85037e-17 0.15) (2.97639 1.38778e-17 0.15) (2.97639 0.0458333 0.15) (2.93333 0.0458333 0.15) (2.93333 0.183333 0.15) (2.97639 0.183333 0.15) (2.97639 0.229167 0.15) (2.93333 0.229167 0.15) (2.93333 0.366667 0.15) (2.97639 0.366667 0.15) (2.97639 0.4125 0.15) (2.93333 0.4125 0.15) (2.93333 0.55 0.15) (2.97639 0.55 0.15) (2.97639 0.595833 0.15) (2.93333 0.595833 0.15) (2.93333 0.733333 0.15) (2.97639 0.733333 0.15) (2.97639 0.779167 0.15) (2.93333 0.779167 0.15) (2.93333 0.916667 0.15) (2.97639 0.916667 0.15) (2.97639 0.9625 0.15) (2.93333 0.9625 0.15) (2.93333 1.1 0.15) (3.01944 1.1 0.15) (3.01944 1.19167 0.15) (2.93333 1.19167 0.15) (2.93333 1.28333 0.15) (3.01944 1.28333 0.15) (3.01944 1.375 0.15) (2.93333 1.375 0.15) (3.01944 1.46667 0.15) (3.10556 1.46667 0.15) (3.10556 1.65 0.15) (3.10556 1.83333 0.15) (3.10556 2.01667 0.15) (3.10556 2.2 0.15) (3.27778 -2.2 0.15) (3.27778 -2.01667 0.15) (3.27778 -1.83333 0.15) (3.27778 -1.65 0.15) (3.27778 -1.46667 0.15) (3.19167 -1.46667 0.15) (3.19167 -1.375 0.15) (3.10556 -1.375 0.15) (3.10556 -1.28333 0.15) (3.19167 -1.28333 0.15) (3.19167 -1.19167 0.15) (3.10556 -1.19167 0.15) (3.10556 -1.1 0.15) (3.19167 -1.1 0.15) (3.19167 -1.00833 0.15) (3.14861 -1.00833 0.15) (3.10556 -1.00833 0.15) (3.10556 -0.916667 0.15) (3.14861 -0.916667 0.15) (3.14861 -0.870833 0.15) (3.10556 -0.870833 0.15) (3.10556 -0.733333 0.15) (3.14861 -0.733333 0.15) (3.14861 -0.6875 0.15) (3.10556 -0.6875 0.15) (3.10556 -0.55 0.15) (3.14861 -0.55 0.15) (3.14861 -0.504167 0.15) (3.10556 -0.504167 0.15) (3.10556 -0.366667 0.15) (3.14861 -0.366667 0.15) (3.14861 -0.320833 0.15) (3.10556 -0.320833 0.15) (3.10556 -0.183333 0.15) (3.14861 -0.183333 0.15) (3.14861 -0.1375 0.15) (3.10556 -0.1375 0.15) (3.10556 0 0.15) (3.14861 0 0.15) (3.14861 0.0458333 0.15) (3.10556 0.0458333 0.15) (3.10556 0.183333 0.15) (3.14861 0.183333 0.15) (3.14861 0.229167 0.15) (3.10556 0.229167 0.15) (3.10556 0.366667 0.15) (3.14861 0.366667 0.15) (3.14861 0.4125 0.15) (3.10556 0.4125 0.15) (3.10556 0.55 0.15) (3.14861 0.55 0.15) (3.14861 0.595833 0.15) (3.10556 0.595833 0.15) (3.10556 0.733333 0.15) (3.14861 0.733333 0.15) (3.14861 0.779167 0.15) (3.10556 0.779167 0.15) (3.10556 0.916667 0.15) (3.14861 0.916667 0.15) (3.14861 0.9625 0.15) (3.10556 0.9625 0.15) (3.10556 1.1 0.15) (3.19167 1.1 0.15) (3.19167 1.19167 0.15) (3.10556 1.19167 0.15) (3.10556 1.28333 0.15) (3.19167 1.28333 0.15) (3.19167 1.375 0.15) (3.10556 1.375 0.15) (3.19167 1.46667 0.15) (3.27778 1.46667 0.15) (3.27778 1.65 0.15) (3.27778 1.83333 0.15) (3.27778 2.01667 0.15) (3.27778 2.2 0.15) (3.45 -2.2 0.15) (3.45 -2.01667 0.15) (3.45 -1.83333 0.15) (3.45 -1.65 0.15) (3.45 -1.46667 0.15) (3.36389 -1.46667 0.15) (3.36389 -1.375 0.15) (3.27778 -1.375 0.15) (3.27778 -1.28333 0.15) (3.36389 -1.28333 0.15) (3.36389 -1.19167 0.15) (3.27778 -1.19167 0.15) (3.27778 -1.1 0.15) (3.36389 -1.1 0.15) (3.36389 -1.00833 0.15) (3.32083 -1.00833 0.15) (3.27778 -1.00833 0.15) (3.27778 -0.916667 0.15) (3.32083 -0.916667 0.15) (3.32083 -0.870833 0.15) (3.27778 -0.870833 0.15) (3.27778 -0.733333 0.15) (3.32083 -0.733333 0.15) (3.32083 -0.6875 0.15) (3.27778 -0.6875 0.15) (3.27778 -0.55 0.15) (3.32083 -0.55 0.15) (3.32083 -0.504167 0.15) (3.27778 -0.504167 0.15) (3.27778 -0.366667 0.15) (3.32083 -0.366667 0.15) (3.32083 -0.320833 0.15) (3.27778 -0.320833 0.15) (3.27778 -0.183333 0.15) (3.32083 -0.183333 0.15) (3.32083 -0.1375 0.15) (3.27778 -0.1375 0.15) (3.27778 0 0.15) (3.32083 0 0.15) (3.32083 0.0458333 0.15) (3.27778 0.0458333 0.15) (3.27778 0.183333 0.15) (3.32083 0.183333 0.15) (3.32083 0.229167 0.15) (3.27778 0.229167 0.15) (3.27778 0.366667 0.15) (3.32083 0.366667 0.15) (3.32083 0.4125 0.15) (3.27778 0.4125 0.15) (3.27778 0.55 0.15) (3.32083 0.55 0.15) (3.32083 0.595833 0.15) (3.27778 0.595833 0.15) (3.27778 0.733333 0.15) (3.32083 0.733333 0.15) (3.32083 0.779167 0.15) (3.27778 0.779167 0.15) (3.27778 0.916667 0.15) (3.32083 0.916667 0.15) (3.32083 0.9625 0.15) (3.27778 0.9625 0.15) (3.27778 1.1 0.15) (3.36389 1.1 0.15) (3.36389 1.19167 0.15) (3.27778 1.19167 0.15) (3.27778 1.28333 0.15) (3.36389 1.28333 0.15) (3.36389 1.375 0.15) (3.27778 1.375 0.15) (3.36389 1.46667 0.15) (3.45 1.46667 0.15) (3.45 1.65 0.15) (3.45 1.83333 0.15) (3.45 2.01667 0.15) (3.45 2.2 0.15) (3.62222 -2.2 0.15) (3.62222 -2.01667 0.15) (3.62222 -1.83333 0.15) (3.62222 -1.65 0.15) (3.62222 -1.46667 0.15) (3.53611 -1.46667 0.15) (3.53611 -1.375 0.15) (3.45 -1.375 0.15) (3.45 -1.28333 0.15) (3.53611 -1.28333 0.15) (3.53611 -1.19167 0.15) (3.45 -1.19167 0.15) (3.45 -1.1 0.15) (3.53611 -1.1 0.15) (3.53611 -1.00833 0.15) (3.49306 -1.00833 0.15) (3.45 -1.00833 0.15) (3.45 -0.916667 0.15) (3.49306 -0.916667 0.15) (3.49306 -0.870833 0.15) (3.45 -0.870833 0.15) (3.45 -0.733333 0.15) (3.49306 -0.733333 0.15) (3.49306 -0.6875 0.15) (3.45 -0.6875 0.15) (3.45 -0.55 0.15) (3.49306 -0.55 0.15) (3.49306 -0.504167 0.15) (3.45 -0.504167 0.15) (3.45 -0.366667 0.15) (3.49306 -0.366667 0.15) (3.49306 -0.320833 0.15) (3.45 -0.320833 0.15) (3.45 -0.183333 0.15) (3.49306 -0.183333 0.15) (3.49306 -0.1375 0.15) (3.45 -0.1375 0.15) (3.45 0 0.15) (3.49306 0 0.15) (3.49306 0.0458333 0.15) (3.45 0.0458333 0.15) (3.45 0.183333 0.15) (3.49306 0.183333 0.15) (3.49306 0.229167 0.15) (3.45 0.229167 0.15) (3.45 0.366667 0.15) (3.49306 0.366667 0.15) (3.49306 0.4125 0.15) (3.45 0.4125 0.15) (3.45 0.55 0.15) (3.49306 0.55 0.15) (3.49306 0.595833 0.15) (3.45 0.595833 0.15) (3.45 0.733333 0.15) (3.49306 0.733333 0.15) (3.49306 0.779167 0.15) (3.45 0.779167 0.15) (3.45 0.916667 0.15) (3.49306 0.916667 0.15) (3.49306 0.9625 0.15) (3.45 0.9625 0.15) (3.45 1.1 0.15) (3.53611 1.1 0.15) (3.53611 1.19167 0.15) (3.45 1.19167 0.15) (3.45 1.28333 0.15) (3.53611 1.28333 0.15) (3.53611 1.375 0.15) (3.45 1.375 0.15) (3.53611 1.46667 0.15) (3.62222 1.46667 0.15) (3.62222 1.65 0.15) (3.62222 1.83333 0.15) (3.62222 2.01667 0.15) (3.62222 2.2 0.15) (3.79444 -2.2 0.15) (3.79444 -2.01667 0.15) (3.79444 -1.83333 0.15) (3.79444 -1.65 0.15) (3.79444 -1.46667 0.15) (3.70833 -1.46667 0.15) (3.70833 -1.375 0.15) (3.62222 -1.375 0.15) (3.62222 -1.28333 0.15) (3.70833 -1.28333 0.15) (3.70833 -1.19167 0.15) (3.62222 -1.19167 0.15) (3.62222 -1.1 0.15) (3.70833 -1.1 0.15) (3.70833 -1.00833 0.15) (3.66528 -1.00833 0.15) (3.62222 -1.00833 0.15) (3.62222 -0.916667 0.15) (3.66528 -0.916667 0.15) (3.66528 -0.870833 0.15) (3.62222 -0.870833 0.15) (3.62222 -0.733333 0.15) (3.66528 -0.733333 0.15) (3.66528 -0.6875 0.15) (3.62222 -0.6875 0.15) (3.62222 -0.55 0.15) (3.66528 -0.55 0.15) (3.66528 -0.504167 0.15) (3.62222 -0.504167 0.15) (3.62222 -0.366667 0.15) (3.66528 -0.366667 0.15) (3.66528 -0.320833 0.15) (3.62222 -0.320833 0.15) (3.62222 -0.183333 0.15) (3.66528 -0.183333 0.15) (3.66528 -0.1375 0.15) (3.62222 -0.1375 0.15) (3.62222 0 0.15) (3.66528 -2.31296e-18 0.15) (3.66528 0.0458333 0.15) (3.62222 0.0458333 0.15) (3.62222 0.183333 0.15) (3.66528 0.183333 0.15) (3.66528 0.229167 0.15) (3.62222 0.229167 0.15) (3.62222 0.366667 0.15) (3.66528 0.366667 0.15) (3.66528 0.4125 0.15) (3.62222 0.4125 0.15) (3.62222 0.55 0.15) (3.66528 0.55 0.15) (3.66528 0.595833 0.15) (3.62222 0.595833 0.15) (3.62222 0.733333 0.15) (3.66528 0.733333 0.15) (3.66528 0.779167 0.15) (3.62222 0.779167 0.15) (3.62222 0.916667 0.15) (3.66528 0.916667 0.15) (3.66528 0.9625 0.15) (3.62222 0.9625 0.15) (3.62222 1.1 0.15) (3.70833 1.1 0.15) (3.70833 1.19167 0.15) (3.62222 1.19167 0.15) (3.62222 1.28333 0.15) (3.70833 1.28333 0.15) (3.70833 1.375 0.15) (3.62222 1.375 0.15) (3.70833 1.46667 0.15) (3.79444 1.46667 0.15) (3.79444 1.65 0.15) (3.79444 1.83333 0.15) (3.79444 2.01667 0.15) (3.79444 2.2 0.15) (3.96667 -2.2 0.15) (3.96667 -2.01667 0.15) (3.96667 -1.83333 0.15) (3.96667 -1.65 0.15) (3.96667 -1.46667 0.15) (3.88056 -1.46667 0.15) (3.88056 -1.375 0.15) (3.79444 -1.375 0.15) (3.79444 -1.28333 0.15) (3.88056 -1.28333 0.15) (3.88056 -1.19167 0.15) (3.79444 -1.19167 0.15) (3.79444 -1.1 0.15) (3.88056 -1.1 0.15) (3.88056 -1.00833 0.15) (3.8375 -1.00833 0.15) (3.79444 -1.00833 0.15) (3.79444 -0.916667 0.15) (3.8375 -0.916667 0.15) (3.8375 -0.870833 0.15) (3.79444 -0.870833 0.15) (3.79444 -0.733333 0.15) (3.8375 -0.733333 0.15) (3.8375 -0.6875 0.15) (3.79444 -0.6875 0.15) (3.79444 -0.55 0.15) (3.8375 -0.55 0.15) (3.8375 -0.504167 0.15) (3.79444 -0.504167 0.15) (3.79444 -0.366667 0.15) (3.8375 -0.366667 0.15) (3.8375 -0.320833 0.15) (3.79444 -0.320833 0.15) (3.79444 -0.183333 0.15) (3.8375 -0.183333 0.15) (3.8375 -0.1375 0.15) (3.79444 -0.1375 0.15) (3.79444 -9.25186e-18 0.15) (3.8375 -9.25186e-18 0.15) (3.8375 0.0458333 0.15) (3.79444 0.0458333 0.15) (3.79444 0.183333 0.15) (3.8375 0.183333 0.15) (3.8375 0.229167 0.15) (3.79444 0.229167 0.15) (3.79444 0.366667 0.15) (3.8375 0.366667 0.15) (3.8375 0.4125 0.15) (3.79444 0.4125 0.15) (3.79444 0.55 0.15) (3.8375 0.55 0.15) (3.8375 0.595833 0.15) (3.79444 0.595833 0.15) (3.79444 0.733333 0.15) (3.8375 0.733333 0.15) (3.8375 0.779167 0.15) (3.79444 0.779167 0.15) (3.79444 0.916667 0.15) (3.8375 0.916667 0.15) (3.8375 0.9625 0.15) (3.79444 0.9625 0.15) (3.79444 1.1 0.15) (3.88056 1.1 0.15) (3.88056 1.19167 0.15) (3.79444 1.19167 0.15) (3.79444 1.28333 0.15) (3.88056 1.28333 0.15) (3.88056 1.375 0.15) (3.79444 1.375 0.15) (3.88056 1.46667 0.15) (3.96667 1.46667 0.15) (3.96667 1.65 0.15) (3.96667 1.83333 0.15) (3.96667 2.01667 0.15) (3.96667 2.2 0.15) (4.13889 -2.2 0.15) (4.13889 -2.01667 0.15) (4.13889 -1.83333 0.15) (4.13889 -1.65 0.15) (4.13889 -1.46667 0.15) (4.05278 -1.46667 0.15) (4.05278 -1.375 0.15) (3.96667 -1.375 0.15) (3.96667 -1.28333 0.15) (4.05278 -1.28333 0.15) (4.05278 -1.19167 0.15) (3.96667 -1.19167 0.15) (3.96667 -1.1 0.15) (4.05278 -1.1 0.15) (4.05278 -1.00833 0.15) (4.00972 -1.00833 0.15) (3.96667 -1.00833 0.15) (3.96667 -0.916667 0.15) (4.00972 -0.916667 0.15) (4.00972 -0.870833 0.15) (3.96667 -0.870833 0.15) (3.96667 -0.733333 0.15) (4.00972 -0.733333 0.15) (4.00972 -0.6875 0.15) (3.96667 -0.6875 0.15) (3.96667 -0.55 0.15) (4.00972 -0.55 0.15) (4.00972 -0.504167 0.15) (3.96667 -0.504167 0.15) (3.96667 -0.366667 0.15) (4.00972 -0.366667 0.15) (4.00972 -0.320833 0.15) (3.96667 -0.320833 0.15) (3.96667 -0.183333 0.15) (4.00972 -0.183333 0.15) (4.00972 -0.1375 0.15) (3.96667 -0.1375 0.15) (3.96667 -9.25186e-18 0.15) (4.00972 -1.15648e-17 0.15) (4.00972 0.0458333 0.15) (3.96667 0.0458333 0.15) (3.96667 0.183333 0.15) (4.00972 0.183333 0.15) (4.00972 0.229167 0.15) (3.96667 0.229167 0.15) (3.96667 0.366667 0.15) (4.00972 0.366667 0.15) (4.00972 0.4125 0.15) (3.96667 0.4125 0.15) (3.96667 0.55 0.15) (4.00972 0.55 0.15) (4.00972 0.595833 0.15) (3.96667 0.595833 0.15) (3.96667 0.733333 0.15) (4.00972 0.733333 0.15) (4.00972 0.779167 0.15) (3.96667 0.779167 0.15) (3.96667 0.916667 0.15) (4.00972 0.916667 0.15) (4.00972 0.9625 0.15) (3.96667 0.9625 0.15) (3.96667 1.1 0.15) (4.05278 1.1 0.15) (4.05278 1.19167 0.15) (3.96667 1.19167 0.15) (3.96667 1.28333 0.15) (4.05278 1.28333 0.15) (4.05278 1.375 0.15) (3.96667 1.375 0.15) (4.05278 1.46667 0.15) (4.13889 1.46667 0.15) (4.13889 1.65 0.15) (4.13889 1.83333 0.15) (4.13889 2.01667 0.15) (4.13889 2.2 0.15) (4.31111 -2.2 0.15) (4.31111 -2.01667 0.15) (4.31111 -1.83333 0.15) (4.31111 -1.65 0.15) (4.31111 -1.46667 0.15) (4.225 -1.46667 0.15) (4.225 -1.375 0.15) (4.13889 -1.375 0.15) (4.13889 -1.28333 0.15) (4.225 -1.28333 0.15) (4.225 -1.19167 0.15) (4.13889 -1.19167 0.15) (4.13889 -1.1 0.15) (4.225 -1.1 0.15) (4.225 -1.00833 0.15) (4.18194 -1.00833 0.15) (4.13889 -1.00833 0.15) (4.13889 -0.916667 0.15) (4.18194 -0.916667 0.15) (4.18194 -0.870833 0.15) (4.13889 -0.870833 0.15) (4.13889 -0.733333 0.15) (4.18194 -0.733333 0.15) (4.18194 -0.6875 0.15) (4.13889 -0.6875 0.15) (4.13889 -0.55 0.15) (4.18194 -0.55 0.15) (4.18194 -0.504167 0.15) (4.13889 -0.504167 0.15) (4.13889 -0.366667 0.15) (4.18194 -0.366667 0.15) (4.18194 -0.320833 0.15) (4.13889 -0.320833 0.15) (4.13889 -0.183333 0.15) (4.18194 -0.183333 0.15) (4.18194 -0.1375 0.15) (4.13889 -0.1375 0.15) (4.13889 -1.85037e-17 0.15) (4.18194 -9.25186e-18 0.15) (4.18194 0.0458333 0.15) (4.13889 0.0458333 0.15) (4.13889 0.183333 0.15) (4.18194 0.183333 0.15) (4.18194 0.229167 0.15) (4.13889 0.229167 0.15) (4.13889 0.366667 0.15) (4.18194 0.366667 0.15) (4.18194 0.4125 0.15) (4.13889 0.4125 0.15) (4.13889 0.55 0.15) (4.18194 0.55 0.15) (4.18194 0.595833 0.15) (4.13889 0.595833 0.15) (4.13889 0.733333 0.15) (4.18194 0.733333 0.15) (4.18194 0.779167 0.15) (4.13889 0.779167 0.15) (4.13889 0.916667 0.15) (4.18194 0.916667 0.15) (4.18194 0.9625 0.15) (4.13889 0.9625 0.15) (4.13889 1.1 0.15) (4.225 1.1 0.15) (4.225 1.19167 0.15) (4.13889 1.19167 0.15) (4.13889 1.28333 0.15) (4.225 1.28333 0.15) (4.225 1.375 0.15) (4.13889 1.375 0.15) (4.225 1.46667 0.15) (4.31111 1.46667 0.15) (4.31111 1.65 0.15) (4.31111 1.83333 0.15) (4.31111 2.01667 0.15) (4.31111 2.2 0.15) (4.48333 -2.2 0.15) (4.48333 -2.01667 0.15) (4.48333 -1.83333 0.15) (4.48333 -1.65 0.15) (4.48333 -1.46667 0.15) (4.39722 -1.46667 0.15) (4.39722 -1.375 0.15) (4.31111 -1.375 0.15) (4.31111 -1.28333 0.15) (4.39722 -1.28333 0.15) (4.39722 -1.19167 0.15) (4.31111 -1.19167 0.15) (4.31111 -1.1 0.15) (4.39722 -1.1 0.15) (4.39722 -1.00833 0.15) (4.35417 -1.00833 0.15) (4.31111 -1.00833 0.15) (4.31111 -0.916667 0.15) (4.35417 -0.916667 0.15) (4.35417 -0.870833 0.15) (4.31111 -0.870833 0.15) (4.31111 -0.733333 0.15) (4.35417 -0.733333 0.15) (4.35417 -0.6875 0.15) (4.31111 -0.6875 0.15) (4.31111 -0.55 0.15) (4.35417 -0.55 0.15) (4.35417 -0.504167 0.15) (4.31111 -0.504167 0.15) (4.31111 -0.366667 0.15) (4.35417 -0.366667 0.15) (4.35417 -0.320833 0.15) (4.31111 -0.320833 0.15) (4.31111 -0.183333 0.15) (4.35417 -0.183333 0.15) (4.35417 -0.1375 0.15) (4.31111 -0.1375 0.15) (4.31111 1.85037e-17 0.15) (4.35417 8.09538e-18 0.15) (4.35417 0.0458333 0.15) (4.31111 0.0458333 0.15) (4.31111 0.183333 0.15) (4.35417 0.183333 0.15) (4.35417 0.229167 0.15) (4.31111 0.229167 0.15) (4.31111 0.366667 0.15) (4.35417 0.366667 0.15) (4.35417 0.4125 0.15) (4.31111 0.4125 0.15) (4.31111 0.55 0.15) (4.35417 0.55 0.15) (4.35417 0.595833 0.15) (4.31111 0.595833 0.15) (4.31111 0.733333 0.15) (4.35417 0.733333 0.15) (4.35417 0.779167 0.15) (4.31111 0.779167 0.15) (4.31111 0.916667 0.15) (4.35417 0.916667 0.15) (4.35417 0.9625 0.15) (4.31111 0.9625 0.15) (4.31111 1.1 0.15) (4.39722 1.1 0.15) (4.39722 1.19167 0.15) (4.31111 1.19167 0.15) (4.31111 1.28333 0.15) (4.39722 1.28333 0.15) (4.39722 1.375 0.15) (4.31111 1.375 0.15) (4.39722 1.46667 0.15) (4.48333 1.46667 0.15) (4.48333 1.65 0.15) (4.48333 1.83333 0.15) (4.48333 2.01667 0.15) (4.48333 2.2 0.15) (4.65556 -2.2 0.15) (4.65556 -2.01667 0.15) (4.65556 -1.83333 0.15) (4.65556 -1.65 0.15) (4.65556 -1.46667 0.15) (4.56944 -1.46667 0.15) (4.56944 -1.375 0.15) (4.48333 -1.375 0.15) (4.48333 -1.28333 0.15) (4.56944 -1.28333 0.15) (4.56944 -1.19167 0.15) (4.48333 -1.19167 0.15) (4.48333 -1.1 0.15) (4.56944 -1.1 0.15) (4.56944 -1.00833 0.15) (4.52639 -1.00833 0.15) (4.48333 -1.00833 0.15) (4.48333 -0.916667 0.15) (4.52639 -0.916667 0.15) (4.52639 -0.870833 0.15) (4.48333 -0.870833 0.15) (4.48333 -0.733333 0.15) (4.52639 -0.733333 0.15) (4.52639 -0.6875 0.15) (4.48333 -0.6875 0.15) (4.48333 -0.55 0.15) (4.52639 -0.55 0.15) (4.52639 -0.504167 0.15) (4.48333 -0.504167 0.15) (4.48333 -0.366667 0.15) (4.52639 -0.366667 0.15) (4.52639 -0.320833 0.15) (4.48333 -0.320833 0.15) (4.48333 -0.183333 0.15) (4.52639 -0.183333 0.15) (4.52639 -0.1375 0.15) (4.48333 -0.1375 0.15) (4.48333 -2.31296e-17 0.15) (4.52639 -1.50343e-17 0.15) (4.52639 0.0458333 0.15) (4.48333 0.0458333 0.15) (4.48333 0.183333 0.15) (4.52639 0.183333 0.15) (4.52639 0.229167 0.15) (4.48333 0.229167 0.15) (4.48333 0.366667 0.15) (4.52639 0.366667 0.15) (4.52639 0.4125 0.15) (4.48333 0.4125 0.15) (4.48333 0.55 0.15) (4.52639 0.55 0.15) (4.52639 0.595833 0.15) (4.48333 0.595833 0.15) (4.48333 0.733333 0.15) (4.52639 0.733333 0.15) (4.52639 0.779167 0.15) (4.48333 0.779167 0.15) (4.48333 0.916667 0.15) (4.52639 0.916667 0.15) (4.52639 0.9625 0.15) (4.48333 0.9625 0.15) (4.48333 1.1 0.15) (4.56944 1.1 0.15) (4.56944 1.19167 0.15) (4.48333 1.19167 0.15) (4.48333 1.28333 0.15) (4.56944 1.28333 0.15) (4.56944 1.375 0.15) (4.48333 1.375 0.15) (4.56944 1.46667 0.15) (4.65556 1.46667 0.15) (4.65556 1.65 0.15) (4.65556 1.83333 0.15) (4.65556 2.01667 0.15) (4.65556 2.2 0.15) (4.82778 -2.2 0.15) (4.82778 -2.01667 0.15) (4.82778 -1.83333 0.15) (4.82778 -1.65 0.15) (4.82778 -1.46667 0.15) (4.74167 -1.46667 0.15) (4.74167 -1.375 0.15) (4.65556 -1.375 0.15) (4.65556 -1.28333 0.15) (4.74167 -1.28333 0.15) (4.74167 -1.19167 0.15) (4.65556 -1.19167 0.15) (4.65556 -1.1 0.15) (4.74167 -1.1 0.15) (4.74167 -1.00833 0.15) (4.69861 -1.00833 0.15) (4.65556 -1.00833 0.15) (4.65556 -0.916667 0.15) (4.69861 -0.916667 0.15) (4.69861 -0.870833 0.15) (4.65556 -0.870833 0.15) (4.65556 -0.733333 0.15) (4.69861 -0.733333 0.15) (4.69861 -0.6875 0.15) (4.65556 -0.6875 0.15) (4.65556 -0.55 0.15) (4.69861 -0.55 0.15) (4.69861 -0.504167 0.15) (4.65556 -0.504167 0.15) (4.65556 -0.366667 0.15) (4.69861 -0.366667 0.15) (4.69861 -0.320833 0.15) (4.65556 -0.320833 0.15) (4.65556 -0.183333 0.15) (4.69861 -0.183333 0.15) (4.69861 -0.1375 0.15) (4.65556 -0.1375 0.15) (4.65556 9.25186e-18 0.15) (4.69861 -1.15648e-18 0.15) (4.69861 0.0458333 0.15) (4.65556 0.0458333 0.15) (4.65556 0.183333 0.15) (4.69861 0.183333 0.15) (4.69861 0.229167 0.15) (4.65556 0.229167 0.15) (4.65556 0.366667 0.15) (4.69861 0.366667 0.15) (4.69861 0.4125 0.15) (4.65556 0.4125 0.15) (4.65556 0.55 0.15) (4.69861 0.55 0.15) (4.69861 0.595833 0.15) (4.65556 0.595833 0.15) (4.65556 0.733333 0.15) (4.69861 0.733333 0.15) (4.69861 0.779167 0.15) (4.65556 0.779167 0.15) (4.65556 0.916667 0.15) (4.69861 0.916667 0.15) (4.69861 0.9625 0.15) (4.65556 0.9625 0.15) (4.65556 1.1 0.15) (4.74167 1.1 0.15) (4.74167 1.19167 0.15) (4.65556 1.19167 0.15) (4.65556 1.28333 0.15) (4.74167 1.28333 0.15) (4.74167 1.375 0.15) (4.65556 1.375 0.15) (4.74167 1.46667 0.15) (4.82778 1.46667 0.15) (4.82778 1.65 0.15) (4.82778 1.83333 0.15) (4.82778 2.01667 0.15) (4.82778 2.2 0.15) (5 -2.2 0.15) (5 -2.01667 0.15) (5 -1.83333 0.15) (5 -1.65 0.15) (5 -1.46667 0.15) (4.91389 -1.46667 0.15) (4.91389 -1.375 0.15) (4.82778 -1.375 0.15) (4.82778 -1.28333 0.15) (4.91389 -1.28333 0.15) (4.91389 -1.19167 0.15) (4.82778 -1.19167 0.15) (4.82778 -1.1 0.15) (4.91389 -1.1 0.15) (4.91389 -1.00833 0.15) (4.87083 -1.00833 0.15) (4.82778 -1.00833 0.15) (4.82778 -0.916667 0.15) (4.87083 -0.916667 0.15) (4.87083 -0.870833 0.15) (4.82778 -0.870833 0.15) (4.82778 -0.733333 0.15) (4.87083 -0.733333 0.15) (4.87083 -0.6875 0.15) (4.82778 -0.6875 0.15) (4.82778 -0.55 0.15) (4.87083 -0.55 0.15) (4.87083 -0.504167 0.15) (4.82778 -0.504167 0.15) (4.82778 -0.366667 0.15) (4.87083 -0.366667 0.15) (4.87083 -0.320833 0.15) (4.82778 -0.320833 0.15) (4.82778 -0.183333 0.15) (4.87083 -0.183333 0.15) (4.87083 -0.1375 0.15) (4.82778 -0.1375 0.15) (4.82778 -3.23815e-17 0.15) (4.87083 -2.42861e-17 0.15) (4.87083 0.0458333 0.15) (4.82778 0.0458333 0.15) (4.82778 0.183333 0.15) (4.87083 0.183333 0.15) (4.87083 0.229167 0.15) (4.82778 0.229167 0.15) (4.82778 0.366667 0.15) (4.87083 0.366667 0.15) (4.87083 0.4125 0.15) (4.82778 0.4125 0.15) (4.82778 0.55 0.15) (4.87083 0.55 0.15) (4.87083 0.595833 0.15) (4.82778 0.595833 0.15) (4.82778 0.733333 0.15) (4.87083 0.733333 0.15) (4.87083 0.779167 0.15) (4.82778 0.779167 0.15) (4.82778 0.916667 0.15) (4.87083 0.916667 0.15) (4.87083 0.9625 0.15) (4.82778 0.9625 0.15) (4.82778 1.1 0.15) (4.91389 1.1 0.15) (4.91389 1.19167 0.15) (4.82778 1.19167 0.15) (4.82778 1.28333 0.15) (4.91389 1.28333 0.15) (4.91389 1.375 0.15) (4.82778 1.375 0.15) (4.91389 1.46667 0.15) (5 1.46667 0.15) (5 1.65 0.15) (5 1.83333 0.15) (5 2.01667 0.15) (5 2.2 0.15) (0.1473840241 -0.2507855606 0.15) (0.1462970891 -0.2735065791 0.15) (0.1643620099 0.1081783305 0.15) (0.1632015467 0.08546887117 0.15) (0.1740171424 0.08495071034 0.15) (0.1848699843 0.0844367583 0.15) (0.01065278898 0.09219902484 0.15) (0.03255993425 0.09132658659 0.15) (0.3303887733 -0.2594776691 0.15) (0.3196447081 -0.2589709711 0.15) (0.3185511809 -0.2816626375 0.15) (0.3377051563 0.09966533961 0.15) (0.3366263843 0.07698897943 0.15) (0.3474485722 0.07644146657 0.15) (0.3582676189 0.07589110186 0.15) (0.1957317193 0.08392037458 0.15) (0.2065963544 0.08340184852 0.15) (0.5023789244 -0.2675639184 0.15) (0.491628625 -0.2670619251 0.15) (0.4905428268 -0.2897179228 0.15) (0.5103663095 0.09071272489 0.15) (0.5093282625 0.06805041719 0.15) (0.5201015418 0.06748524229 0.15) (0.5308665893 0.06691545898 0.15) (0.369087568 0.07533869126 0.15) (0.3798795979 0.07478862973 0.15) (0.6743609749 -0.2755276344 0.15) (0.6636152357 -0.2750348718 0.15) (0.6625375524 -0.29764721 0.15) (0.682579452 0.08133522017 0.15) (0.6815560639 0.05868622106 0.15) (0.7030584116 0.05744887875 0.15) (0.5524476593 0.06575340806 0.15) (0.8458120097 -0.2946146842 0.15) (0.8452763574 -0.3059170026 0.15) (0.8626815877 -0.1100555669 0.15) (0.8624687023 -0.115626332 0.15) (0.8678284466 -0.1159683116 0.15) (0.857752502 -0.09859523986 0.15) (0.8573235844 -0.1096982635 0.15) (0.8543458642 0.07116533619 0.15) (0.8533339937 0.04852679383 0.15) (0.8747560759 0.04718219736 0.15) (0.7245589339 0.05625667698 0.15) (1.018588891 -0.2964836385 0.15) (1.018036355 -0.3079283084 0.15) (1.026877176 -0.124808683 0.15) (1.02632461 -0.136253966 0.15) (1.03708209 -0.1367731255 0.15) (0.8731823509 -0.1163275696 0.15) (1.017234805 -0.1013996811 0.15) (1.017061686 -0.1120361072 0.15) (1.017053793 -0.1227755008 0.15) (1.003961701 0.0610616914 0.15) (1.002929419 0.03841512397 0.15) (1.001875597 0.0156334381 0.15) (1.023200799 0.01408627784 0.15) (1.044648148 0.01268439629 0.15) (0.8961530148 0.04579376237 0.15) (-0.02673187299 -0.2419148895 0.15) (-0.02774265205 -0.2646946487 0.15) (-0.1752642294 -0.09046475135 0.15) (-0.153916276 -0.09156138464 0.15) (-0.009914889559 0.1158874142 0.15) (-0.01123375135 0.09305945549 0.15) (-0.1648429902 0.0971046248 0.15) (-0.1430527754 0.09666633035 0.15) (0.0944542358 0.02027911561 0.15) (0.08897349526 0.02051418558 0.15) (0.08869348237 0.01478272063 0.15) (0.09417716633 0.01453189038 0.15) (0.006555858792 0.02371801974 0.15) (0.005841890316 0.01228404706 0.15) (0.01694624368 0.0119444693 0.15) (0.01762912556 0.02336412441 0.15) (0.1654909924 0.1308993213 0.15) (0.1517402956 0.291205074 0.15) (0.1494546004 0.2456431329 0.15) (0.19272 0.2435292962 0.15) (0.0193706455 0.2517722723 0.15) (0.06271290493 0.2497598472 0.15) (0.2904962307 -0.4170822965 0.15) (0.2883585722 -0.4623773491 0.15) (0.3174619245 -0.3043695276 0.15) (0.3389443994 -0.3053756426 0.15) (0.1668051944 -0.2972661786 0.15) (0.1883669012 -0.2982901351 0.15) (0.2682841155 0.01090485111 0.15) (0.2628696628 0.01119198508 0.15) (0.262565068 0.004737764678 0.15) (0.267975617 0.004452721392 0.15) (0.1815384893 0.01609520403 0.15) (0.1812737794 0.01015605951 0.15) (0.1866994018 0.01005880782 0.15) (0.1869683025 0.01591885823 0.15) (0.3387895976 0.1223554424 0.15) (0.3247602537 0.2825370774 0.15) (0.3225761288 0.2370397239 0.15) (0.3657853797 0.2348204722 0.15) (0.2360165427 0.2413969361 0.15) (0.4624906392 -0.4250596243 0.15) (0.4603258437 -0.4704872006 0.15) (0.4894569666 -0.3123959431 0.15) (0.5109569522 -0.3133918906 0.15) (0.3604259237 -0.3063807105 0.15) (0.426014014 -0.2867056601 0.15) (0.427096492 -0.2640354859 0.15) (0.4163414396 -0.2635282573 0.15) (0.4055903343 -0.2630222205 0.15) (0.4045065682 -0.2856983396 0.15) (0.4303412779 -0.1960590751 0.15) (0.424962553 -0.1958199198 0.15) (0.4195839783 -0.1955983923 0.15) (0.4190442589 -0.2069227402 0.15) (0.4297997453 -0.2074209792 0.15) (0.3443742656 -0.1919945789 0.15) (0.343832076 -0.203328619 0.15) (0.3545597258 -0.203843535 0.15) (0.3550975343 -0.1925172927 0.15) (0.3497320251 -0.1922532458 0.15) (0.4415293898 0.003537412641 0.15) (0.436123653 0.003776970953 0.15) (0.4358598819 -0.001935354965 0.15) (0.4412671571 -0.002143050389 0.15) (0.355022017 0.007773365976 0.15) (0.3547316862 0.001946387458 0.15) (0.3601279473 0.001510557753 0.15) (0.3604280807 0.007416155026 0.15) (0.5114181128 0.1133903871 0.15) (0.4972984375 0.2736840357 0.15) (0.4951905018 0.2280513234 0.15) (0.5382565744 0.2257488794 0.15) (0.4089079109 0.2325883874 0.15) (0.634515633 -0.4329633414 0.15) (0.6323280098 -0.4784973125 0.15) (0.6614569894 -0.3202984546 0.15) (0.6829518983 -0.3212751349 0.15) (0.5324580813 -0.3143848899 0.15) (0.5980569797 -0.2946933416 0.15) (0.5991424748 -0.2720643607 0.15) (0.5883909355 -0.2715673134 0.15) (0.5776364479 -0.2710691226 0.15) (0.5765547071 -0.2937032906 0.15) (0.602372174 -0.2043174894 0.15) (0.5969986736 -0.2040323326 0.15) (0.5967246339 -0.2097292454 0.15) (0.6020999385 -0.2099977699 0.15) (0.5163489443 -0.2003183583 0.15) (0.5158166537 -0.211571782 0.15) (0.5265644249 -0.212084666 0.15) (0.5270972803 -0.2008402801 0.15) (0.5217212041 -0.200587737 0.15) (0.6139737082 -0.005551704507 0.15) (0.6032149039 -0.004956292449 0.15) (0.602710456 -0.01623438745 0.15) (0.6134728259 -0.0168181579 0.15) (0.5277696027 -0.0009235192426 0.15) (0.527250839 -0.01222855524 0.15) (0.5326510573 -0.01252020804 0.15) (0.5380619246 -0.012798659 0.15) (0.5385577006 -0.001492813532 0.15) (0.8279980482 -0.4418529418 0.15) (0.8064952589 -0.4408528542 0.15) (0.8043066194 -0.4864763901 0.15) (0.8345211465 -0.3054337944 0.15) (0.8334450129 -0.3280762423 0.15) (0.8549487666 -0.3290563532 0.15) (0.7044528483 -0.3222511057 0.15) (0.7700244683 -0.3025231996 0.15) (0.7705611194 -0.2912209294 0.15) (0.7598040555 -0.2907346282 0.15) (0.759268355 -0.3020379455 0.15) (0.7743533265 -0.2117813806 0.15) (0.7689618562 -0.2116403249 0.15) (0.7686620471 -0.2175806782 0.15) (0.7740460108 -0.2177735323 0.15) (0.6883437269 -0.2080598298 0.15) (0.6880531218 -0.2139132258 0.15) (0.69341757 -0.2141992471 0.15) (0.6937043257 -0.20838411 0.15) (0.7821694449 -0.1051922103 0.15) (0.7824131366 -0.09956399392 0.15) (0.7770158884 -0.09935598165 0.15) (0.7767555728 -0.1050382092 0.15) (0.7859624693 -0.01538792259 0.15) (0.7752201997 -0.0147403472 0.15) (0.7747390626 -0.02601255947 0.15) (0.7854777612 -0.02665115221 0.15) (0.7000289486 -0.01033939666 0.15) (0.6995335523 -0.02159590303 0.15) (0.7102834738 -0.02220940779 0.15) (0.7107791064 -0.01094800711 0.15) (1.000658242 -0.4447494646 0.15) (0.9796153273 -0.4471224777 0.15) (0.9773514302 -0.4928324851 0.15) (1.007288873 -0.3074094314 0.15) (1.006183752 -0.3302997698 0.15) (1.027688704 -0.3313380061 0.15) (0.8764415331 -0.3300359336 0.15) (0.8775154417 -0.3073773596 0.15) (0.9420077936 -0.3103568258 0.15) (0.9425438317 -0.2990465167 0.15) (0.931798623 -0.2985427669 0.15) (0.9312615861 -0.3098530278 0.15) (0.946305489 -0.2197420518 0.15) (0.9409832285 -0.2191420997 0.15) (0.9406885992 -0.2249959021 0.15) (0.9460297567 -0.2254740238 0.15) (0.860391563 -0.2153037808 0.15) (0.860072737 -0.2213891858 0.15) (0.865414687 -0.221747206 0.15) (0.8657232668 -0.215749609 0.15) (1.180413586 -0.2928250174 0.15) (1.179308513 -0.315714357 0.15) (1.188149338 -0.1325946456 0.15) (1.187044232 -0.1554846845 0.15) (1.208549184 -0.1565229207 0.15) (1.047829576 -0.1372919026 0.15) (0.08571531442 -0.1794927829 0.15) (0.09654611646 -0.1800256942 0.15) (0.09707984635 -0.1686595088 0.15) (0.09166230266 -0.1683928496 0.15) (0.08625742557 -0.1681334096 0.15) (0.1722489278 -0.18370157 0.15) (0.1728007512 -0.1722924071 0.15) (0.1674128047 -0.1720368882 0.15) (0.162008429 -0.1718106109 0.15) (0.1614589643 -0.1831916549 0.15) (-0.002111392667 -0.1747271915 0.15) (0.008967936073 -0.1753949442 0.15) (0.009281812613 -0.1639457603 0.15) (-0.00177515252 -0.163278887 0.15) (0.07538791761 -0.1675893188 0.15) (0.0748541774 -0.1789494967 0.15) (0.176104453 0.01630849647 0.15) (0.1758434117 0.01032091869 0.15) (0.09964687349 0.01429224714 0.15) (0.09991926839 0.0200338913 0.15) (0.09917482592 0.1112153704 0.15) (0.09797596258 0.08847572775 0.15) (0.1088435013 0.08798209062 0.15) (0.1197505353 0.08749155252 0.15) (0.120925802 0.1102173169 0.15) (0.1053688831 0.0198073322 0.15) (0.1059534856 0.03119038403 0.15) (0.09505835139 0.03167233829 0.15) (0.1818089158 0.02192464526 0.15) (0.176372992 0.02216105561 0.15) (0.3390187448 -0.1917310142 0.15) (0.3336518993 -0.1914739109 0.15) (0.3331044262 -0.2028137029 0.15) (0.2583874737 -0.1879042989 0.15) (0.2578450568 -0.1992223093 0.15) (0.2685916845 -0.1997381416 0.15) (0.2691329579 -0.1884230794 0.15) (0.2540347537 -0.2786219391 0.15) (0.2755418138 -0.2796372503 0.15) (0.2766307326 -0.2569373521 0.15) (0.2551248161 -0.2559190925 0.15) (0.2696687313 -0.1771389881 0.15) (0.2643009063 -0.176881437 0.15) (0.2589308418 -0.1766080596 0.15) (0.3446482619 -0.186298565 0.15) (0.3392928906 -0.186031904 0.15) (0.1830244253 -0.1842207985 0.15) (0.1835711678 -0.1728131924 0.15) (0.1781853196 -0.1725349481 0.15) (0.2535553684 -0.176343031 0.15) (0.248173313 -0.1760691748 0.15) (0.2476312434 -0.1873799937 0.15) (0.3496251309 0.008134038384 0.15) (0.3493456594 0.002386829002 0.15) (0.2733973684 0.004233814842 0.15) (0.2737134573 0.01067726844 0.15) (0.2727315795 0.1029213336 0.15) (0.2721828664 0.09157659561 0.15) (0.2830286062 0.09103995966 0.15) (0.2835752251 0.1023827964 0.15) (0.2740186991 0.0169582561 0.15) (0.26858706 0.01720046658 0.15) (0.3553042578 0.0135364603 0.15) (0.3499010616 0.01384938144 0.15) (0.1872406169 0.02170445741 0.15) (0.2631691912 0.01747905533 0.15) (0.2619027717 0.1034561509 0.15) (0.2613540104 0.0921104141 0.15) (0.5109795362 -0.2000521208 0.15) (0.505612367 -0.1997809856 0.15) (0.5050751649 -0.2110531943 0.15) (0.4405637873 -0.2079286418 0.15) (0.4411099903 -0.1965529468 0.15) (0.4357255563 -0.1962868849 0.15) (0.4475294988 -0.2877123676 0.15) (0.4486167781 -0.2650464298 0.15) (0.4378586327 -0.2645410543 0.15) (0.4360074781 -0.1905096588 0.15) (0.4306217186 -0.1902917891 0.15) (0.5166130181 -0.1947241845 0.15) (0.5112453997 -0.1944416143 0.15) (0.3500046272 -0.1865653742 0.15) (0.4252389225 -0.1900954873 0.15) (0.5169952667 -0.0003594947203 0.15) (0.5164790945 -0.01167306561 0.15) (0.5218649861 -0.01195041089 0.15) (0.4466697341 -0.002406584218 0.15) (0.446933516 0.003264493186 0.15) (0.445722976 0.09411095906 0.15) (0.444686541 0.07144056422 0.15) (0.4554740933 0.07088070722 0.15) (0.466244569 0.07031967233 0.15) (0.4672847582 0.0929848801 0.15) (0.4523221678 0.00298210894 0.15) (0.4528405933 0.01430087722 0.15) (0.4420560375 0.01486058955 0.15) (0.5282868612 0.01037107719 0.15) (0.5175136784 0.01093824977 0.15) (0.3607165399 0.01322510282 0.15) (0.4312610593 0.01541179459 0.15) (0.4309899576 0.009734262652 0.15) (0.4307254819 0.004028077861 0.15) (0.4241505786 0.09522453538 0.15) (0.4230955996 0.0725640463 0.15) (0.4338932368 0.07200570474 0.15) (0.6829825735 -0.2077470362 0.15) (0.6826894313 -0.2136322469 0.15) (0.6074733418 -0.2102642002 0.15) (0.6077446805 -0.2046024981 0.15) (0.6195434156 -0.2956796245 0.15) (0.6206216777 -0.2730553002 0.15) (0.6098870222 -0.2725610704 0.15) (0.6080178178 -0.1989035394 0.15) (0.6026499475 -0.1985847149 0.15) (0.6886495512 -0.2020570939 0.15) (0.6832940659 -0.2016891094 0.15) (0.5219848729 -0.1950019533 0.15) (0.5972790758 -0.1982658456 0.15) (0.6892712679 -0.009720711705 0.15) (0.6887754569 -0.02098580808 0.15) (0.6242383128 -0.01739957594 0.15) (0.6247393832 -0.006129227076 0.15) (0.8550321414 -0.2149758531 0.15) (0.8547067595 -0.2211141035 0.15) (0.7794250352 -0.2180272189 0.15) (0.7797296685 -0.2120491543 0.15) (0.7807775851 -0.3030083091 0.15) (0.7813142362 -0.2917060389 0.15) (0.781959683 -0.1107190148 0.15) (0.7873149689 -0.1110496562 0.15) (0.7875436619 -0.1054625244 0.15) (0.7800465258 -0.2059630535 0.15) (0.7746753358 -0.2056507765 0.15) (0.8607006346 -0.2092959956 0.15) (0.8553545758 -0.2088571834 0.15) (0.6940031504 -0.2024434087 0.15) (0.7692783373 -0.205562015 0.15) (0.7765142361 -0.1106591206 0.15) (0.8716969296 -0.02082690354 0.15) (0.8502898039 -0.01942135742 0.15) (0.8493143569 -0.04196905052 0.15) (0.8600213701 -0.04268330333 0.15) (0.8707149066 -0.04340711737 0.15) (0.7962064673 -0.02731008675 0.15) (0.7966951514 -0.01604744956 0.15) (0.7877872495 -0.09983646553 0.15) (1.033153343 -0.2169048953 0.15) (1.02230496 -0.2164022715 0.15) (1.022061184 -0.222073714 0.15) (1.02183559 -0.2277832777 0.15) (1.032631905 -0.2283275391 0.15) (0.9513627994 -0.2259958049 0.15) (0.9516267465 -0.2203627798 0.15) (0.9527498129 -0.3108644263 0.15) (0.9532839015 -0.2995530219 0.15) (0.9532961723 -0.1169990914 0.15) (0.9529511119 -0.1279412016 0.15) (0.9635531653 -0.1288594603 0.15) (0.9638924927 -0.1179324111 0.15) (0.9518414778 -0.2154381054 0.15) (0.9465261397 -0.2147777167 0.15) (1.033704544 -0.2054878932 0.15) (1.022852732 -0.2050562867 0.15) (1.022547323 -0.2107600948 0.15) (0.8660191204 -0.209849712 0.15) (0.9412171075 -0.2140904009 0.15) (0.9426923332 -0.1160556072 0.15) (0.9423348361 -0.127027212 0.15) (0.1181846333 -0.4089975481 0.15) (0.116102675 -0.4541342501 0.15) (0.145210719 -0.2962366354 0.15) (-0.006740535989 -0.2887143734 0.15) (0.01524448006 -0.2898939241 0.15) (0.08148559207 -0.2703855581 0.15) (0.08254803152 -0.2476493407 0.15) (0.0608120038 -0.2465739181 0.15) (0.05974786977 -0.269312056 0.15) (0.07431797179 -0.1903047501 0.15) (0.08517760574 -0.1908480638 0.15) (-0.002589641036 -0.1861141765 0.15) (0.008521178589 -0.1867907582 0.15) (0.04820844123 -0.02417690391 0.15) (0.04279336994 -0.02432354477 0.15) (0.04283362952 -0.03007367587 0.15) (0.04731378577 -0.02848637476 0.15) (0.003356125248 -0.0225322876 0.15) (0.002942762501 -0.02850560342 0.15) (0.008718279455 -0.0287780318 0.15) (0.009051790562 -0.02276441842 0.15) (0.2336040134 -0.254898112 0.15) (0.2325157558 -0.2776050503 0.15) (0.2470884889 -0.198704996 0.15) (0.1717052433 -0.1950665741 0.15) (0.1824807408 -0.1955858025 0.15) (0.5685495815 -0.04956162814 0.15) (0.5631142475 -0.04952037328 0.15) (0.5624170625 -0.05550041023 0.15) (0.5668860531 -0.05660380102 0.15) (0.6836151637 0.1039906325 0.15) (0.6692761011 0.2653697218 0.15) (0.667315029 0.2187120821 0.15) (0.7103238428 0.2163575897 0.15) (0.5813236803 0.2234263622 0.15) (0.7374307241 -0.1051024608 0.15) (0.7390807632 -0.09813232119 0.15) (0.7336859749 -0.09789409239 0.15) (0.7330159753 -0.1037050436 0.15) (0.7410868426 -0.05778321797 0.15) (0.7303410804 -0.05716651006 0.15) (0.7298554844 -0.06842739413 0.15) (0.7352322086 -0.06872872524 0.15) (0.7406076007 -0.06901617596 0.15) (0.6980889752 -0.05531226696 0.15) (0.6978444158 -0.06093771824 0.15) (0.7032189736 -0.06124244884 0.15) (0.7034645511 -0.05561664624 0.15) (0.9536837853 -0.1059428604 0.15) (0.9430848517 -0.1050014552 0.15) (0.9571419026 -0.02678743138 0.15) (0.9358121032 -0.02525256368 0.15) (0.9347666859 -0.0480053212 0.15) (0.956049457 -0.04966406517 0.15) (0.8814080621 -0.04413882222 0.15) (0.892091987 -0.04487508726 0.15) (0.8930824871 -0.02226444682 0.15) (0.1609156656 -0.1945486682 0.15) (0.09600895542 -0.1913800003 0.15) (0.1030900765 -0.2714275986 0.15) (0.1041664101 -0.2486980589 0.15) (0.1311634945 -0.1363719536 0.15) (0.1365519302 -0.1370113427 0.15) (0.1367888401 -0.1319798135 0.15) (0.1313908102 -0.1312903034 0.15) (-0.0009620104434 -0.128798785 0.15) (0.004758841847 -0.1292556919 0.15) (0.004887257224 -0.1234999883 0.15) (-0.000910767474 -0.12300021 0.15) (0.0440991164 -0.1315192223 0.15) (0.044300093 -0.1258052664 0.15) (0.03877612307 -0.1254868148 0.15) (0.03858083751 -0.131284042 0.15) (0.01831781926 0.03477558973 0.15) (0.00733560453 0.03517564798 0.15) (0.0841386045 0.03215047501 0.15) (0.08351093221 0.02076079241 0.15) (0.07743420673 0.1122019111 0.15) (0.07627498689 0.08946636143 0.15) (0.0871197521 0.08897382379 0.15) (0.6927039227 -0.05501754192 0.15) (0.692455151 -0.06064729508 0.15) (0.6549885499 -0.05311999452 0.15) (0.6546841341 -0.05894839548 0.15) (0.6600899131 -0.05914560656 0.15) (0.660378658 -0.05337221391 0.15) (0.6180729873 0.08491406427 0.15) (0.6170372274 0.06225765314 0.15) (0.6385462709 0.06107605279 0.15) (0.6395758449 0.08372875791 0.15) (0.6252447141 0.005146422493 0.15) (0.6144824841 0.005733089574 0.15) (0.7005289285 0.0009291026363 0.15) (0.689773477 0.001552485558 0.15) (0.5390679865 0.009802519995 0.15) (0.6037233953 0.006322608497 0.15) (0.5965379259 0.08609591958 0.15) (0.5955009743 0.06343556132 0.15) (0.8251542884 -0.1077462899 0.15) (0.8248858704 -0.1134511831 0.15) (0.8302840213 -0.1137027095 0.15) (0.8305330031 -0.1080478673 0.15) (0.9089277484 -0.1584070368 0.15) (0.9092319225 -0.1525629059 0.15) (0.9039215511 -0.1521106989 0.15) (0.9036186061 -0.1579086354 0.15) (0.9107676476 -0.113495502 0.15) (0.9001086082 -0.112679264 0.15) (0.8997318176 -0.1236979632 0.15) (0.9050686248 -0.1241002969 0.15) (0.9103936827 -0.1244971476 0.15) (-0.08879492669 -0.07125588527 0.15) (-0.0892916496 -0.08370322107 0.15) (-0.07861215541 -0.08421190768 0.15) (-0.07811499842 -0.0717804653 0.15) (-0.09174365042 -0.1671440534 0.15) (-0.06886456479 -0.1699670306 0.15) (-0.06862226841 -0.1583145583 0.15) (-0.06867559073 -0.1462882957 0.15) (-0.08001531802 -0.1448623036 0.15) (-0.09118044599 -0.1434695699 0.15) (-0.01298214192 -0.1625064563 0.15) (-0.013094984 -0.1740808803 0.15) (-0.004494686177 0.02406601249 0.15) (-0.005224955041 0.01261210267 0.15) (-0.08235755846 0.02526447025 0.15) (-0.08422397118 0.001432547917 0.15) (-0.07341101527 0.001116849937 0.15) (-0.0621803172 0.001380881726 0.15) (-0.06087082471 0.01359023867 0.15) (-0.05994821424 0.02529916994 0.15) (-0.07739710268 -0.05878742219 0.15) (-0.08809151074 -0.05834709592 0.15) (0.05511799348 -0.02603466297 0.15) (0.05066853714 0.02213594356 0.15) (0.05004435525 0.01073768267 0.15) (0.05555784454 0.01050283371 0.15) (0.06106217348 0.01026902771 0.15) (0.06166286557 0.0216929512 0.15) (0.05416915152 -0.01887908242 0.15) (0.04860421013 -0.01851550254 0.15) (0.009362877494 -0.0168455339 0.15) (0.003707763158 -0.01665911173 0.15) (0.04305381384 -0.01838359359 0.15) (0.03971041001 0.02257808921 0.15) (0.0391186435 0.01119388151 0.15) (0.04457383106 0.01096455044 0.15) (0.2249810977 0.01462426979 0.15) (0.2247051232 0.009239813793 0.15) (0.2301290442 0.008920686023 0.15) (0.2304042223 0.01430938535 0.15) (0.2195514563 0.01486638382 0.15) (0.2192747881 0.009446820435 0.15) (0.3983264062 0.005782792503 0.15) (0.3980696823 0.0001542241918 0.15) (0.4034875475 -0.0001659127292 0.15) (0.4037457422 0.005493120098 0.15) (0.3928917223 0.00602414881 0.15) (0.3926278096 0.0003710986875 0.15) (0.6118561022 -0.05103109816 0.15) (0.6064847187 -0.0507020924 0.15) (0.6062178402 -0.05641657097 0.15) (0.611551596 -0.05690284518 0.15) (0.5738882478 -0.05463277317 0.15) (0.5740653345 -0.04930581543 0.15) (0.5708912816 -0.003214731685 0.15) (0.5703814634 -0.0145003765 0.15) (0.5811380283 -0.01507996215 0.15) (0.5816481359 -0.003788324321 0.15) (0.5743421856 -0.04355067045 0.15) (0.5689009268 -0.04352845202 0.15) (0.6121577385 -0.04519805777 0.15) (0.6067760352 -0.04491691003 0.15) (0.5254872148 -0.04662252214 0.15) (0.5304594558 -0.0477743374 0.15) (0.5311431316 -0.04184600916 0.15) (0.5258027094 -0.04126970873 0.15) (0.5634954384 -0.0433666962 0.15) (0.5601254909 -0.002639606324 0.15) (0.559614698 -0.01392470349 0.15) (0.5649999241 -0.01421583272 0.15) (0.7312865475 -0.2106963188 0.15) (0.7310304288 -0.2162294053 0.15) (0.7364041076 -0.2165108664 0.15) (0.7366565409 -0.2110126428 0.15) (0.7291841963 -0.255444998 0.15) (0.7399289849 -0.2559367136 0.15) (0.7404585544 -0.244698176 0.15) (0.7297149576 -0.2442025134 0.15) (0.7721594516 -0.2574096696 0.15) (0.7726888282 -0.2461751274 0.15) (0.7619330525 -0.2456828814 0.15) (0.7614045782 -0.2569194695 0.15) (0.7840576957 -0.06033676237 0.15) (0.7733226204 -0.05968532942 0.15) (0.77285698 -0.07088540505 0.15) (0.7835947522 -0.07152245132 0.15) (0.7459802476 -0.0693190122 0.15) (0.7513561032 -0.06961759823 0.15) (0.7518283731 -0.05840462728 0.15) (0.7443968983 -0.1035249938 0.15) (0.7445674989 -0.09810427416 0.15) (0.9031249839 -0.2193328922 0.15) (0.9029026542 -0.2246223245 0.15) (0.9082669577 -0.2249113424 0.15) (0.9084777144 -0.2197164619 0.15) (0.9011413107 -0.2632823646 0.15) (0.911883151 -0.2637729366 0.15) (0.9124032211 -0.252586001 0.15) (0.9016621386 -0.2521004714 0.15) (0.944130343 -0.2652727304 0.15) (0.9446505095 -0.2540837971 0.15) (0.9392808604 -0.2538225538 0.15) (0.9339116314 -0.2535733448 0.15) (0.9333862296 -0.2647670312 0.15) (0.8581502188 -0.2613139249 0.15) (0.8688811683 -0.2618019688 0.15) (0.8694034427 -0.2505901105 0.15) (0.8586759238 -0.2500932217 0.15) (0.8909226818 -0.2516020051 0.15) (0.8904005176 -0.2627908419 0.15) (0.8977916242 -0.2188591517 0.15) (0.897555338 -0.2242510302 0.15) (0.08787174878 -0.133636323 0.15) (0.09345418017 -0.1330963952 0.15) (0.09511866332 -0.1260634791 0.15) (0.08805262162 -0.1284611244 0.15) (0.1260311791 -0.1305727123 0.15) (0.1257986052 -0.1357010632 0.15) (0.1290225033 -0.1816306628 0.15) (0.1295591387 -0.170287244 0.15) (0.124144059 -0.1700130949 0.15) (0.1187448402 -0.1697422144 0.15) (0.1182036838 -0.1810963277 0.15) (0.1255249084 -0.1414116084 0.15) (0.1309028374 -0.1419783064 0.15) (0.08760772094 -0.1392979776 0.15) (0.09312535355 -0.139127655 0.15) (0.1747039292 -0.1361898822 0.15) (0.169631795 -0.1356762923 0.15) (0.1689701835 -0.1417075042 0.15) (0.1743788624 -0.1417409647 0.15) (0.1363012246 -0.1425152562 0.15) (0.1398505051 -0.1821614365 0.15) (0.1403987456 -0.1708264872 0.15) (0.1349852779 -0.1705604252 0.15) (0.04205995894 -0.1772524944 0.15) (0.04256785755 -0.1658842609 0.15) (0.03148743959 -0.1652627093 0.15) (0.03098726578 -0.1766306149 0.15) (0.03832982727 -0.1370555522 0.15) (0.04385409364 -0.1372994313 0.15) (-0.0008947646898 -0.1346564425 0.15) (0.00465302496 -0.1350181932 0.15) (0.08236004315 -0.1337771972 0.15) (0.08212003739 -0.1393062559 0.15) (0.04936606281 -0.1374807447 0.15) (0.04961215352 -0.1316244988 0.15) (0.05304336035 -0.1778347218 0.15) (0.05355871304 -0.1664655467 0.15) (0.04984889753 -0.1258768284 0.15) (0.08255124486 -0.1285332166 0.15) (0.1380725229 0.01832654932 0.15) (0.1377872182 0.0125622013 0.15) (0.1432277002 0.01237873273 0.15) (0.1435261502 0.01810430174 0.15) (0.132631605 0.01856320078 0.15) (0.1323455045 0.01278237195 0.15) (0.3014069738 -0.1899271718 0.15) (0.301682673 -0.1842166231 0.15) (0.2963087446 -0.1839818042 0.15) (0.2960348929 -0.1896748216 0.15) (0.2604507109 -0.1441109449 0.15) (0.2602144568 -0.14912889 0.15) (0.2655693171 -0.1495720317 0.15) (0.2658046357 -0.1445734641 0.15) (0.3067813416 -0.1901736254 0.15) (0.3070573061 -0.1844575832 0.15) (0.21535171 -0.1858035511 0.15) (0.215900027 -0.1744462795 0.15) (0.210508181 -0.1741678458 0.15) (0.2051177829 -0.1739008953 0.15) (0.2045736499 -0.1852751885 0.15) (0.2175620342 -0.140332238 0.15) (0.2121880163 -0.1398504274 0.15) (0.2119391344 -0.1450262471 0.15) (0.2173128478 -0.1454936262 0.15) (0.1797504448 -0.1421073235 0.15) (0.1800188729 -0.1367340165 0.15) (0.2550946679 -0.1436508264 0.15) (0.254855606 -0.1486854554 0.15) (0.2226818998 -0.1459538723 0.15) (0.2229292241 -0.1408103149 0.15) (0.2261158345 -0.1863302397 0.15) (0.2266624197 -0.1749881022 0.15) (0.221285373 -0.1747141875 0.15) (0.3117389156 0.01045371538 0.15) (0.3114948882 0.005108864888 0.15) (0.31691753 0.004804716229 0.15) (0.3171628738 0.01017683496 0.15) (0.306313483 0.01065858312 0.15) (0.306067878 0.00530179481 0.15) (0.311994428 0.01593276817 0.15) (0.306571248 0.01616355743 0.15) (0.3138786997 0.05541784008 0.15) (0.3030540319 0.05595546102 0.15) (0.302510134 0.04462751041 0.15) (0.3133370405 0.04409478721 0.15) (0.2705395446 0.05755926556 0.15) (0.2699920233 0.04621847474 0.15) (0.2808440454 0.04568754248 0.15) (0.2813904715 0.05702638385 0.15) (0.3571928079 0.05323457374 0.15) (0.3463707165 0.05378408428 0.15) (0.3458321021 0.04246188558 0.15) (0.3566551441 0.04191132798 0.15) (0.3241706014 0.04355473458 0.15) (0.3247111653 0.05487583801 0.15) (0.3174178696 0.01566592433 0.15) (0.2252569864 0.0201313726 0.15) (0.219829019 0.02038742212 0.15) (0.2271870533 0.05967330229 0.15) (0.2163386407 0.06019605098 0.15) (0.2157853674 0.04886054368 0.15) (0.2266348753 0.04833974445 0.15) (0.1837523403 0.06174325269 0.15) (0.1831945895 0.05039794992 0.15) (0.1940636539 0.04988822049 0.15) (0.1946202613 0.06123057498 0.15) (0.2597075474 0.05809023221 0.15) (0.259158979 0.04674849078 0.15) (0.2374790515 0.04781219447 0.15) (0.238030327 0.05914779822 0.15) (0.2306801249 0.01983751196 0.15) (0.4733530839 -0.1981583659 0.15) (0.4736281412 -0.1924403776 0.15) (0.4682567445 -0.1921531198 0.15) (0.4679802882 -0.1978793501 0.15) (0.478729561 -0.1984233427 0.15) (0.4790036007 -0.1927264299 0.15) (0.3873341177 -0.1940916617 0.15) (0.3876024797 -0.1884501396 0.15) (0.382230215 -0.1881808608 0.15) (0.3819605214 -0.1938292267 0.15) (0.3927086646 -0.1943551438 0.15) (0.3929767759 -0.1887188156 0.15) (0.4846615712 0.001318577944 0.15) (0.4843952853 -0.004362890799 0.15) (0.4897947307 -0.004629076702 0.15) (0.4900595019 0.001041752712 0.15) (0.5205297605 -0.0404156389 0.15) (0.5203059566 -0.04546602205 0.15) (0.4792649004 0.00158002453 0.15) (0.4789949139 -0.004115882559 0.15) (0.6453180793 -0.2065168187 0.15) (0.6455736628 -0.2009948193 0.15) (0.6401920723 -0.2007735467 0.15) (0.6399370434 -0.2062840594 0.15) (0.6507037074 -0.206695937 0.15) (0.6509665701 -0.2011061098 0.15) (0.5593758007 -0.2021059122 0.15) (0.559672025 -0.1961776 0.15) (0.5542872029 -0.1960025253 0.15) (0.5539951897 -0.2018850873 0.15) (0.5647531795 -0.2023522108 0.15) (0.5650498571 -0.1964145096 0.15) (0.6172331363 -0.05136748499 0.15) (0.6175467381 -0.04549397453 0.15) (0.65526765 -0.04738047618 0.15) (0.6498743664 -0.04711108369 0.15) (0.6495847143 -0.05288253033 0.15) (0.6570120033 -0.007911075247 0.15) (0.6462463373 -0.007312628771 0.15) (0.645744461 -0.01857893406 0.15) (0.656515208 -0.01917582375 0.15) (0.6492642755 -0.0587732311 0.15) (0.6168961111 -0.0573528961 0.15) (0.8171966424 -0.2148199391 0.15) (0.8169473021 -0.2203163097 0.15) (0.8223200166 -0.2206177475 0.15) (0.8225623717 -0.215183112 0.15) (0.8151339973 -0.2593683 0.15) (0.8258919154 -0.2598576459 0.15) (0.8264161394 -0.2486468829 0.15) (0.8156593166 -0.2481555875 0.15) (0.8479307977 -0.2496084981 0.15) (0.8474050927 -0.2608292012 0.15) (0.782912279 -0.2579007721 0.15) (0.7834414628 -0.2466702252 0.15) (0.8049096785 -0.2476606343 0.15) (0.804385117 -0.2588783892 0.15) (0.8118367506 -0.2144188036 0.15) (0.8115788862 -0.2199880479 0.15) (0.8197763247 -0.1074498948 0.15) (0.8194929061 -0.1131959125 0.15) (0.8174407921 -0.2093688709 0.15) (0.8120916384 -0.2088697392 0.15) (0.822794794 -0.209829792 0.15) (0.731537519 -0.2052076359 0.15) (0.726173058 -0.2048181936 0.15) (0.7259150194 -0.2103703096 0.15) (0.7369006622 -0.2055828981 0.15) (0.7449373279 -0.1074899075 0.15) (0.8253964868 -0.1021075293 0.15) (0.8200275839 -0.1017893558 0.15) (0.8269625232 -0.06301366635 0.15) (0.8162352783 -0.06232446706 0.15) (0.8157755772 -0.07350520661 0.15) (0.8265066728 -0.0741975953 0.15) (0.7943112262 -0.07218590125 0.15) (0.7947786329 -0.06099071648 0.15) (0.9548681741 -0.2657841333 0.15) (0.9553838148 -0.2546059944 0.15) (0.9500173551 -0.2543409004 0.15) (0.9884629761 -0.2649812337 0.15) (0.9885704579 -0.2537343322 0.15) (0.9825093339 -0.2548763766 0.15) (0.9769397223 -0.2553353285 0.15) (0.9765794179 -0.2665309786 0.15) (0.99015705 -0.2199173996 0.15) (0.9840264138 -0.2217319744 0.15) (0.98386099 -0.2270662031 0.15) (0.9901191001 -0.2253900364 0.15) (0.9888668894 -0.2170900952 0.15) (0.9839477732 -0.2182802665 0.15) (0.994594579 -0.163898918 0.15) (0.9892490103 -0.1635536381 0.15) (0.9891073194 -0.1689561907 0.15) (0.9944497228 -0.1693048218 0.15) (0.9519673086 -0.1606365174 0.15) (0.9517523942 -0.1662078353 0.15) (0.9571106578 -0.1665390109 0.15) (0.9573146194 -0.1609871875 0.15) (0.9033383405 -0.2141048986 0.15) (0.8980216052 -0.2135149245 0.15) (0.9029891679 -0.1635637613 0.15) (0.9073450562 -0.1652264486 0.15) (0.9466193951 -0.1602983328 0.15) (0.9463885295 -0.165909728 0.15) (0.9142055411 -0.1640339929 0.15) (0.9143597961 -0.1585993089 0.15) (0.9086713645 -0.2146478034 0.15) (0.9210513495 -0.1253210784 0.15) (0.9214243421 -0.1143188352 0.15) (0.9146241934 -0.1528532739 0.15) (0.9521574469 -0.155122171 0.15) (0.9468252579 -0.1547486035 0.15) (0.001145332189 -0.0462623845 0.15) (0.0008111519284 -0.05328644115 0.15) (0.007803453238 -0.04726041865 0.15) (0.7185115577 -0.07941243849 0.15) (0.7131342975 -0.07910147032 0.15) (0.7127920702 -0.08507021117 0.15) (0.7181667244 -0.08537294409 0.15) (0.6970750197 -0.07793178663 0.15) (0.6968503049 -0.08349872682 0.15) (0.7022083039 -0.08385612016 0.15) (0.7024465713 -0.07823657233 0.15) (1.151182918 -0.4520166362 0.15) (1.149024023 -0.497464158 0.15) (1.157813549 -0.314676603 0.15) (1.156708428 -0.3375669415 0.15) (1.155603307 -0.36045728 0.15) (1.198603223 -0.3625332703 0.15) (1.049193656 -0.3323762424 0.15) (1.114803645 -0.3126001305 0.15) (1.115908718 -0.2897107908 0.15) (1.094403766 -0.2886725545 0.15) (1.093298693 -0.3115618942 0.15) (1.119224048 -0.2210404745 0.15) (1.097719096 -0.2200022383 0.15) (1.096614008 -0.2428918776 0.15) (1.118118961 -0.2439301138 0.15) (1.04339917 -0.228851376 0.15) (1.043941371 -0.2174134155 0.15) (1.168864583 -0.08577691382 0.15) (1.167759481 -0.1086668528 0.15) (1.166654375 -0.1315568916 0.15) (1.175484901 0.05177637875 0.15) (1.173285006 0.005783141635 0.15) (1.216283945 0.003739401238 0.15) (1.065770233 0.01097384073 0.15) (1.087265197 0.009936086695 0.15) (-0.001331129746 -0.1052819257 0.15) (0.004890172136 -0.1060971825 0.15) (0.006067032528 -0.09893850564 0.15) (-0.001868936705 -0.09912622961 0.15) (0.6916647679 -0.07774427115 0.15) (0.6913897885 -0.0834813854 0.15) (0.6754726187 -0.07698345571 0.15) (0.67531588 -0.08230368687 0.15) (0.6806747332 -0.08266412495 0.15) (0.6808868217 -0.0771513389 0.15) (0.8697744591 -0.06585197861 0.15) (0.8590850771 -0.0651250613 0.15) (0.8586325222 -0.07630294213 0.15) (0.8693240176 -0.07702755869 0.15) (0.8372228968 -0.07488696332 0.15) (0.8376776326 -0.06370538335 0.15) (0.8307641064 -0.1024315478 0.15) (1.042055073 -0.03376790079 0.15) (1.020953314 -0.03184367689 0.15) (1.019952518 -0.05464684481 0.15) (1.040949966 -0.05665793962 0.15) (0.977298733 -0.0513944773 0.15) (0.9784645269 -0.02832575709 0.15) (0.9642738505 -0.1069020586 0.15) (-0.04608627845 -0.07362901253 0.15) (-0.04638707512 -0.08690171967 0.15) (-0.03562353863 -0.08780141393 0.15) (-0.03563899421 -0.08066241314 0.15) (-0.03541533683 -0.07387936917 0.15) (-0.04663288371 -0.1240526873 0.15) (-0.03514779975 -0.1255618857 0.15) (-0.03517092966 -0.1135385825 0.15) (-0.04672507198 -0.1116369974 0.15) (-0.006723333335 -0.1224426634 0.15) (-0.006772406132 -0.1282603652 0.15) (-0.002373595004 -0.02238251036 0.15) (-0.002835203914 -0.02831314997 0.15) (-0.04193686512 -0.0223941734 0.15) (-0.04303257322 -0.03451984226 0.15) (-0.03194635714 -0.03445517509 0.15) (-0.03060475079 -0.02216957807 0.15) (-0.03496949037 -0.06660629566 0.15) (-0.03445018642 -0.05994969368 0.15) (-0.0452654363 -0.05988888162 0.15) (0.2466542586 0.0126531367 0.15) (0.2463652036 0.006603737898 0.15) (0.2517717217 0.005737512849 0.15) (0.2520682723 0.01204585144 0.15) (0.1804944614 -0.007126466016 0.15) (0.1859068038 -0.006876673557 0.15) (0.1861599993 -0.001694454382 0.15) (0.1807469835 -0.001854509967 0.15) (0.2021847618 -0.006378562302 0.15) (0.2024361274 -0.00131719548 0.15) (0.1970065201 -0.00140616828 0.15) (0.1967509958 -0.006491462396 0.15) (0.2032728437 0.01543304288 0.15) (0.1978384903 0.01559829471 0.15) (0.1975628724 0.009910168232 0.15) (0.2029949797 0.009822815339 0.15) (0.4199237246 0.004563291193 0.15) (0.4196453021 -0.001245139996 0.15) (0.4250441206 -0.001524310775 0.15) (0.4253274506 0.004282081395 0.15) (0.4186660223 -0.01926858479 0.15) (0.4240428358 -0.01965101456 0.15) (0.4243965614 -0.01350632348 0.15) (0.4190061765 -0.01319762505 0.15) (0.4405349823 -0.01894679227 0.15) (0.440758257 -0.01347188973 0.15) (0.4353142951 -0.01342270958 0.15) (0.4350644992 -0.01901146566 0.15) (0.353903725 -0.01487135162 0.15) (0.3592785303 -0.01554422244 0.15) (0.3595231944 -0.01035208032 0.15) (0.3541527233 -0.009713858811 0.15) (0.3749797544 -0.01774323731 0.15) (0.3756471094 -0.01175895693 0.15) (0.3702440659 -0.0115465601 0.15) (0.369919248 -0.01703027621 0.15) (0.3766367841 0.006542009454 0.15) (0.3712358534 0.006777431189 0.15) (0.3709186271 0.0007666357926 0.15) (0.3763229106 0.0005591849204 0.15) (0.5590938162 -0.2078844368 0.15) (0.5644709394 -0.2081360293 0.15) (0.5572062032 -0.2474594523 0.15) (0.5679604014 -0.2479636361 0.15) (0.5684975209 -0.2366724013 0.15) (0.557744418 -0.236166268 0.15) (0.6002202407 -0.2494710486 0.15) (0.6007569263 -0.2381888034 0.15) (0.5900047739 -0.2376837172 0.15) (0.5894679437 -0.2489689589 0.15) (0.5142034422 -0.2454423933 0.15) (0.5249515992 -0.2459472866 0.15) (0.5254901033 -0.2346481094 0.15) (0.5147420428 -0.2341412184 0.15) (0.5469912668 -0.2356611336 0.15) (0.5464529556 -0.2469563155 0.15) (0.5537163554 -0.2076398362 0.15) (0.6861739474 -0.2534586137 0.15) (0.6969194936 -0.2539553716 0.15) (0.6974520735 -0.242695955 0.15) (0.6867077672 -0.242194251 0.15) (0.7189596158 -0.2437012778 0.15) (0.7184285652 -0.2549497555 0.15) (0.7256550416 -0.2159418547 0.15) (0.9247777526 -0.2188854281 0.15) (0.9244950386 -0.2246375869 0.15) (0.9299319693 -0.2245006114 0.15) (0.9302380257 -0.2185138053 0.15) (0.9236608744 -0.24185339 0.15) (0.9290569068 -0.2420658488 0.15) (0.9293338502 -0.2363295302 0.15) (0.9239307844 -0.2361798052 0.15) (0.9451773237 -0.2428401207 0.15) (0.9454522555 -0.2371247295 0.15) (0.940090301 -0.2368077924 0.15) (0.9398106366 -0.2425589972 0.15) (1.04449357 -0.2059757376 0.15) (1.120329155 -0.1981504357 0.15) (1.098824203 -0.1971121994 0.15) (1.12364447 -0.1294804192 0.15) (1.102139518 -0.1284421832 0.15) (1.101034411 -0.1513322216 0.15) (1.122539364 -0.1523704579 0.15) (0.1597954487 0.01726177088 0.15) (0.159510675 0.01148768592 0.15) (0.1649485599 0.01102231463 0.15) (0.1652167891 0.0169099295 0.15) (0.158621524 -0.005000719274 0.15) (0.1653914738 -0.00802680555 0.15) (0.1644289415 -0.000901800382 0.15) (0.1589455272 0.0001343304792 0.15) (0.1753361751 -0.001927370555 0.15) (0.1751337795 -0.007405283452 0.15) (0.1383514501 0.02404174771 0.15) (0.1329138662 0.02428524636 0.15) (0.1403339668 0.06377837463 0.15) (0.1294876828 0.06428299959 0.15) (0.1289196542 0.05293218602 0.15) (0.1397710772 0.05243031646 0.15) (0.09680228721 0.06575389117 0.15) (0.0962332185 0.054398122 0.15) (0.1071306534 0.05391405432 0.15) (0.1077018231 0.06526771973 0.15) (0.1728933607 0.06225449756 0.15) (0.1723335157 0.05090729356 0.15) (0.1506535605 0.05192894967 0.15) (0.1512154031 0.06327605723 0.15) (0.1438093483 0.02380427646 0.15) (0.3334054444 0.009195431438 0.15) (0.3331483268 0.003662393253 0.15) (0.3385436656 0.00324893405 0.15) (0.3388070009 0.008848549852 0.15) (0.332424741 -0.01234133208 0.15) (0.3377883637 -0.01293477124 0.15) (0.3380265371 -0.007877072516 0.15) (0.3326485889 -0.007310774122 0.15) (0.3487910005 -0.009081065493 0.15) (0.3485567762 -0.01420212836 0.15) (0.2900182188 0.01056928202 0.15) (0.2845800126 0.0104888338 0.15) (0.2842703318 0.004198849735 0.15) (0.2897229965 0.004537300887 0.15) (0.4728141271 -0.2094876563 0.15) (0.4835704539 -0.2100099638 0.15) (0.4841094692 -0.1987001989 0.15) (0.4711951222 -0.2434160555 0.15) (0.481952124 -0.2439243793 0.15) (0.482492061 -0.2326162608 0.15) (0.4717351556 -0.2321059393 0.15) (0.5039990246 -0.2336335697 0.15) (0.5034593288 -0.2449366941 0.15) (0.5173751728 -0.1782533756 0.15) (0.5120215868 -0.1778253129 0.15) (0.5117669244 -0.1833282344 0.15) (0.5171256377 -0.1836915691 0.15) (0.4959558203 -0.1765411831 0.15) (0.4956822339 -0.1822287069 0.15) (0.5010477895 -0.1825954755 0.15) (0.5013144342 -0.1769687878 0.15) (0.4948678955 -0.1992412295 0.15) (0.500242153 -0.1995107046 0.15) (0.5005103897 -0.1938717794 0.15) (0.4951379025 -0.1935863711 0.15) (0.4458995789 -0.01935416192 0.15) (0.4461473772 -0.0137653094 0.15) (0.4618585417 -0.02125375731 0.15) (0.4622083793 -0.01514812419 0.15) (0.4568465898 -0.01470334639 0.15) (0.4565291399 -0.02065656401 0.15) (0.4630935754 0.002398903317 0.15) (0.4577040068 0.002683033808 0.15) (0.4574303968 -0.003025713488 0.15) (0.4628167671 -0.003334618566 0.15) (0.485175524 0.01262765063 0.15) (0.4743997166 0.01318193478 0.15) (0.4738785604 0.001848080628 0.15) (0.4867363553 0.04655385258 0.15) (0.4759708256 0.04711364752 0.15) (0.4754467254 0.03580176089 0.15) (0.4862182963 0.03524267546 0.15) (0.4436334289 0.04879800597 0.15) (0.4431062357 0.03748426635 0.15) (0.4538918386 0.03692550463 0.15) (0.4544190318 0.04823924425 0.15) (0.3985742797 0.01143541559 0.15) (0.3931524499 0.01169417228 0.15) (0.4003991244 0.05103748935 0.15) (0.3895862154 0.05159056123 0.15) (0.3890495987 0.04026826608 0.15) (0.3998607994 0.03972128367 0.15) (0.3674810863 0.04135862804 0.15) (0.3680168488 0.05268396792 0.15) (0.4328340352 0.04936143816 0.15) (0.4323076962 0.0380446538 0.15) (0.4106854533 0.03916263893 0.15) (0.4112128876 0.05048137274 0.15) (0.4039892002 0.01115797033 0.15) (0.6450556988 -0.2120966575 0.15) (0.6504373134 -0.2123174307 0.15) (0.6431898611 -0.2514694878 0.15) (0.6539405462 -0.2519634903 0.15) (0.654477459 -0.2406972747 0.15) (0.6437259679 -0.2401992286 0.15) (0.6759664092 -0.2416936906 0.15) (0.6754323965 -0.2529620486 0.15) (0.6109645953 -0.2499717537 0.15) (0.6115011361 -0.238692505 0.15) (0.6329736709 -0.2396971389 0.15) (0.6324384183 -0.2509704428 0.15) (0.6396771909 -0.2118530075 0.15) (0.6238242054 -0.2054564909 0.15) (0.6240882888 -0.1998621173 0.15) (0.6187355071 -0.1995418187 0.15) (0.6184687081 -0.2051717027 0.15) (0.6248660908 -0.1831916307 0.15) (0.6195334876 -0.1826814843 0.15) (0.6192691051 -0.1882820507 0.15) (0.6246087514 -0.1887292635 0.15) (0.6034990651 -0.1812043415 0.15) (0.6032187835 -0.1869683313 0.15) (0.6085759742 -0.1874046776 0.15) (0.6088516107 -0.1816954274 0.15) (0.6895238985 -0.1847762529 0.15) (0.6841846059 -0.184218028 0.15) (0.6839287533 -0.1894552831 0.15) (0.6892707807 -0.1899775981 0.15) (0.6684833504 -0.1825795638 0.15) (0.6678299544 -0.1885442945 0.15) (0.6732210744 -0.1885889212 0.15) (0.6735368015 -0.1831068686 0.15) (0.6668631429 -0.2070352845 0.15) (0.6722407561 -0.2072145164 0.15) (0.672556339 -0.2011133367 0.15) (0.6671727057 -0.2009965871 0.15) (0.5378516702 -0.2012990202 0.15) (0.5381185319 -0.1956678378 0.15) (0.5327367111 -0.1954928078 0.15) (0.5324727434 -0.2010847842 0.15) (0.5388667217 -0.1793411231 0.15) (0.5334693634 -0.1793220253 0.15) (0.5332390176 -0.184570123 0.15) (0.5386349335 -0.1845983619 0.15) (0.522490995 -0.1840417089 0.15) (0.5227333135 -0.1786700448 0.15) (0.5981455207 -0.1807132074 0.15) (0.5978595758 -0.1865322882 0.15) (0.5820829572 -0.1792383102 0.15) (0.5817808913 -0.1852254091 0.15) (0.5871401616 -0.1856601537 0.15) (0.5874364727 -0.1797300436 0.15) (0.5808761215 -0.2031778644 0.15) (0.5862506642 -0.2034621705 0.15) (0.5865373035 -0.1976287064 0.15) (0.5811663547 -0.1973114352 0.15) (0.6672703696 -0.01978447555 0.15) (0.6677665133 -0.008512487202 0.15) (0.6606485764 -0.04765698105 0.15) (0.6985662291 -0.04407901275 0.15) (0.6878045585 -0.04348075917 0.15) (0.6873150051 -0.05471992713 0.15) (0.8035974125 -0.1270897818 0.15) (0.8030343096 -0.1231175461 0.15) (0.7961180275 -0.1244910818 0.15) (0.8036562102 -0.1064619889 0.15) (0.7982666019 -0.1061579433 0.15) (0.7979976102 -0.1118954568 0.15) (0.8033972644 -0.1121573177 0.15) (0.7957978913 -0.2131787226 0.15) (0.7960865234 -0.2073454549 0.15) (0.7907528641 -0.206857183 0.15) (0.7904539712 -0.2127785585 0.15) (0.8387643471 -0.2153671302 0.15) (0.844208607 -0.2150576074 0.15) (0.8445034672 -0.2091782864 0.15) (0.8390088247 -0.2099092699 0.15) (0.7098061669 -0.2093772408 0.15) (0.7100855902 -0.2036310302 0.15) (0.7047225042 -0.2032338453 0.15) (0.7044369355 -0.2090451352 0.15) (0.7108788366 -0.1870761229 0.15) (0.7055353503 -0.1865010761 0.15) (0.7052947659 -0.1916087167 0.15) (0.7106406542 -0.1921547455 0.15) (0.6946079592 -0.1905173996 0.15) (0.6948534106 -0.1853504247 0.15) (0.7535044916 -0.1916576802 0.15) (0.7533975281 -0.1960920811 0.15) (0.7588402652 -0.1956896768 0.15) (0.7584153611 -0.1922143436 0.15) (0.7527499372 -0.2116622668 0.15) (0.7581465764 -0.2116755231 0.15) (0.758410529 -0.2060631222 0.15) (0.7529925051 -0.2062439604 0.15) (0.7603555566 -0.104974681 0.15) (0.7586979805 -0.111976512 0.15) (0.7656831031 -0.1103383602 0.15) (0.7658678502 -0.1048734714 0.15) (0.9962505527 -0.2210493621 0.15) (0.997707872 -0.2136747585 0.15) (0.9987520674 -0.2611008878 0.15) (0.9993055684 -0.2496362413 0.15) (0.9943335152 -0.2503883501 0.15) (1.031004067 -0.2626669906 0.15) (1.03154676 -0.2512188421 0.15) (1.020799568 -0.250693972 0.15) (1.020246742 -0.2621446349 0.15) (0.9505394366 -0.2431330375 0.15) (0.9508081549 -0.2374633998 0.15) (0.9666499888 -0.2440079508 0.15) (0.9669040617 -0.2384757668 0.15) (0.9615320224 -0.2381603452 0.15) (0.9612751182 -0.2437304368 0.15) (0.9676097724 -0.2222409106 0.15) (0.9622739001 -0.2216533164 0.15) (0.9620382806 -0.2270728593 0.15) (0.9673893783 -0.227552462 0.15) (0.9574879909 -0.1555090748 0.15) (0.9948746642 -0.1532243057 0.15) (0.984255969 -0.1522152689 0.15) (0.984018864 -0.1629328037 0.15) (0.9955906762 -0.1209536803 0.15) (0.9850220463 -0.1199444976 0.15) (0.9847327793 -0.1307885543 0.15) (0.9953466696 -0.1316897439 0.15) (0.9678048943 -0.2174942977 0.15) (0.9624741445 -0.2168420754 0.15) (0.9725372797 -0.1844211293 0.15) (0.9672511402 -0.1839439619 0.15) (0.9668192441 -0.1892608203 0.15) (0.9710366787 -0.1910332587 0.15) (1.035414096 -0.1711148432 0.15) (1.024656134 -0.1706056721 0.15) (1.024082189 -0.1820790429 0.15) (1.034851017 -0.1825705174 0.15) (0.9996197186 -0.1701346988 0.15) (0.9997811975 -0.164716282 0.15) (0.8817525432 -0.2173126035 0.15) (0.8820141944 -0.2117063988 0.15) (0.8766688394 -0.2110871105 0.15) (0.876395866 -0.2167826732 0.15) (0.9308627336 -0.2128114964 0.15) (0.9263735456 -0.212230139 0.15) (0.0260469365 -0.02358843011 0.15) (0.02572921241 -0.02952451458 0.15) (0.03136078625 -0.02976045918 0.15) (0.03173749175 -0.02390291032 0.15) (0.007752319144 -0.04081625572 0.15) (0.001907488743 -0.04044206647 0.15) (0.02038293717 -0.02328794678 0.15) (0.02011287059 -0.02925716798 0.15) (0.5473387801 -0.04711724073 0.15) (0.5472556853 -0.05180378597 0.15) (0.552372446 -0.05303125838 0.15) (0.5525891078 -0.04796290993 0.15) (0.5419546361 -0.04686590999 0.15) (0.5424704823 -0.05065569454 0.15) (0.740073611 -0.08040847924 0.15) (0.7346890324 -0.08014541389 0.15) (0.7343712899 -0.08600100383 0.15) (0.7397616247 -0.08624852868 0.15) (0.7235860126 -0.08551844646 0.15) (0.723906722 -0.07964287635 0.15) (0.7236349212 -0.1007425466 0.15) (0.7231015795 -0.09677598271 0.15) (0.7161407417 -0.09840881145 0.15) (0.1526799309 -0.1383750662 0.15) (0.1527985205 -0.1338450147 0.15) (0.1475012737 -0.133224645 0.15) (0.147290073 -0.1380969287 0.15) (0.1581605171 -0.1379559677 0.15) (0.1577458261 -0.1344142497 0.15) (0.02170364715 -0.1303976459 0.15) (0.02192076357 -0.124689475 0.15) (0.01623347715 -0.1243010664 0.15) (0.01603106288 -0.1300240636 0.15) (0.02259918261 -0.1078026442 0.15) (0.01807726551 -0.105746693 0.15) (0.01653523838 -0.1127731066 0.15) (0.02213975032 -0.1133373281 0.15) (-0.001013582903 -0.1112951344 0.15) (0.004937025227 -0.1119094038 0.15) (0.02773589207 -0.1138779185 0.15) (0.02723081721 -0.1097157201 0.15) (0.02739460806 -0.1307389769 0.15) (0.02758385081 -0.1250026291 0.15) (0.6538718598 -0.0760840609 0.15) (0.659246432 -0.07638849185 0.15) (0.6594928251 -0.07076653305 0.15) (0.6540627969 -0.07065685444 0.15) (0.6757279422 -0.07132168124 0.15) (0.6702929493 -0.07123188635 0.15) (0.6699800564 -0.07709071392 0.15) (0.6765518926 -0.05415153876 0.15) (0.6711637816 -0.05387869169 0.15) (0.6708887195 -0.05959677982 0.15) (0.6762874886 -0.05983550116 0.15) (0.6683464947 -0.08403061289 0.15) (0.6543887237 -0.08001866301 0.15) (0.6590778944 -0.08135173871 0.15) (0.8241614672 -0.1303842703 0.15) (0.8295373469 -0.1306823569 0.15) (0.8297603421 -0.1250888228 0.15) (0.8243287273 -0.1249497936 0.15) (0.8456558886 -0.1315162077 0.15) (0.8459022545 -0.1258740741 0.15) (0.8405522411 -0.1255379106 0.15) (0.8403348302 -0.1310987258 0.15) (0.8466213606 -0.109009231 0.15) (0.8412678235 -0.10868384 0.15) (0.841041188 -0.1142698297 0.15) (0.8463935873 -0.1145980491 0.15) (0.8402283739 -0.136352104 0.15) (0.8454553183 -0.1370392611 0.15) (0.8246558168 -0.1344948914 0.15) (0.8290555018 -0.1360799004 0.15) (0.867102841 -0.1328848314 0.15) (0.8616959468 -0.1326692452 0.15) (0.8614252327 -0.1384009589 0.15) (0.8668420562 -0.1385767777 0.15) (0.8506285626 -0.1379055371 0.15) (0.8509332773 -0.1320709434 0.15) (0.8865430399 -0.1572181009 0.15) (0.8880395642 -0.1506282008 0.15) (0.8826756783 -0.1502683207 0.15) (0.8822247079 -0.1555862605 0.15) (0.8886391694 -0.1339989691 0.15) (0.8832675256 -0.133675357 0.15) (0.8830516895 -0.1392450285 0.15) (0.8884301172 -0.139552549 0.15) (0.872237071 -0.1388103119 0.15) (0.8724942517 -0.1331308064 0.15) (0.9100033681 -0.1355263869 0.15) (0.9046802355 -0.1351311309 0.15) (0.9044548216 -0.1407125542 0.15) (0.9097810375 -0.141106157 0.15) (0.8937997737 -0.139896589 0.15) (0.8940043387 -0.1343530043 0.15) (0.8933500785 -0.1561372978 0.15) (0.8934188461 -0.150938766 0.15) (0.07205895315 -0.0214901159 0.15) (0.06510696455 -0.01926918792 0.15) (0.06424357856 -0.02345562354 0.15) (0.07150917599 -0.002027060906 0.15) (0.065999154 -0.001691361825 0.15) (0.06574757068 -0.00767589215 0.15) (0.07126802026 -0.008096292619 0.15) (0.04942475652 -0.0008082710638 0.15) (0.0491683874 -0.006678337437 0.15) (0.05468931403 -0.006981023963 0.15) (0.05493599935 -0.001081356172 0.15) (0.09341315905 -0.00335838052 0.15) (0.08792820058 -0.002926578266 0.15) (0.08764242623 -0.008847886252 0.15) (0.09318521118 -0.009494126535 0.15) (0.07675552587 -0.008379945347 0.15) (0.07698956022 -0.002319280187 0.15) (0.04393392573 -0.000554092276 0.15) (0.04363682818 -0.006421691742 0.15) (0.02734221256 0.0001092778737 0.15) (0.0270462078 -0.00567347558 0.15) (0.03255215889 -0.005935893095 0.15) (0.03283220987 -0.0001393542676 0.15) (0.03204441772 -0.01785247209 0.15) (0.0264263484 -0.0175358849 0.15) (0.2239022984 -0.006186318446 0.15) (0.2293493677 -0.006233345934 0.15) (0.2295906463 -0.001422384011 0.15) (0.2241545804 -0.001271866736 0.15) (0.2470472489 -0.006517617533 0.15) (0.2404116429 -0.002948477904 0.15) (0.239709488 -0.006377106899 0.15) (0.2412311963 0.01330110564 0.15) (0.240949741 0.007575016491 0.15) (0.2084183344 0.00972006661 0.15) (0.2086967265 0.0152582849 0.15) (0.2076035603 -0.006285363356 0.15) (0.2078584637 -0.001254402513 0.15) (0.2187216443 -0.001222417973 0.15) (0.2184707922 -0.006190200681 0.15) (0.3973758305 -0.01618752826 0.15) (0.402726782 -0.01693974109 0.15) (0.4029701377 -0.01140143313 0.15) (0.3975859318 -0.01086106314 0.15) (0.4136497597 -0.01266230099 0.15) (0.4133442119 -0.01855562289 0.15) (0.4145319455 0.00486384739 0.15) (0.414255447 -0.0009047302194 0.15) (0.4130908875 -0.02378198721 0.15) (0.4183402429 -0.02471000532 0.15) (0.3971863438 -0.02106626658 0.15) (0.4025156731 -0.02197602001 0.15) (0.4348976846 -0.02414639535 0.15) (0.4403596629 -0.02415419615 0.15) (0.4233659747 -0.02562482434 0.15) (0.3919642378 -0.01569599441 0.15) (0.3918497358 -0.02024506517 0.15) (0.3817506554 0.0004851579009 0.15) (0.3820495543 0.006365184957 0.15) (0.3794826242 -0.01839373495 0.15) (0.3811298742 -0.01141915572 0.15) (0.3921500406 -0.01058250533 0.15) (0.5902413591 -0.0502761971 0.15) (0.5898841565 -0.05632701128 0.15) (0.5953128381 -0.05642310915 0.15) (0.5956517748 -0.05046031654 0.15) (0.5848743688 -0.04985619732 0.15) (0.5845790148 -0.05568353403 0.15) (0.5905691296 -0.04429584559 0.15) (0.5851661071 -0.04397932864 0.15) (0.5914322949 -0.02695629707 0.15) (0.5860214372 -0.02667764634 0.15) (0.5857526183 -0.03237010573 0.15) (0.5911673363 -0.03265174609 0.15) (0.5698487565 -0.02586611072 0.15) (0.5695588633 -0.03164255155 0.15) (0.5749481841 -0.03186960369 0.15) (0.5752267201 -0.02614177173 0.15) (0.547526168 -0.04176354864 0.15) (0.5421132254 -0.04163176823 0.15) (0.5483214935 -0.02470936069 0.15) (0.5429311009 -0.02446303444 0.15) (0.5426520351 -0.03022257774 0.15) (0.5480451625 -0.03043299409 0.15) (0.526705873 -0.02366157658 0.15) (0.5264258055 -0.02948334396 0.15) (0.5318225077 -0.02982708781 0.15) (0.5321064536 -0.02396646225 0.15) (0.5644659 -0.02558811105 0.15) (0.5641720844 -0.03138358486 0.15) (0.5534189867 -0.03073218286 0.15) (0.5536991774 -0.02499081495 0.15) (0.5528500331 -0.04228879123 0.15) (0.7607059516 -0.09900266025 0.15) (0.7553062078 -0.09876339128 0.15) (0.7549593793 -0.1047237505 0.15) (0.7616260269 -0.08152119099 0.15) (0.7562459204 -0.0812277059 0.15) (0.7559642728 -0.08697851453 0.15) (0.7613516165 -0.08724651897 0.15) (0.7451656863 -0.0864605742 0.15) (0.7454645009 -0.08066524161 0.15) (0.9021738389 -0.2409832132 0.15) (0.9075432607 -0.2412284269 0.15) (0.9077945643 -0.2357121278 0.15) (0.9024240954 -0.2354678648 0.15) (0.9185458768 -0.2360479766 0.15) (0.9182869129 -0.2416399944 0.15) (0.9192961359 -0.2195332431 0.15) (0.9190634049 -0.2248929556 0.15) (0.8814798978 -0.2230013741 0.15) (0.8868476314 -0.2234267159 0.15) (0.8871084724 -0.2178372917 0.15) (0.8806807902 -0.2399265295 0.15) (0.8860661796 -0.2401935385 0.15) (0.8863252743 -0.2346195481 0.15) (0.880942234 -0.2343246198 0.15) (0.8970639662 -0.2351960683 0.15) (0.8968098934 -0.2407282523 0.15) (0.1097592922 -0.1336616305 0.15) (0.1100244267 -0.1283565441 0.15) (0.1047221565 -0.1275706396 0.15) (0.1043902413 -0.1330769397 0.15) (0.1151140581 -0.1343348353 0.15) (0.115370138 -0.1291136098 0.15) (0.1094354907 -0.1397256707 0.15) (0.1148107456 -0.1402648076 0.15) (0.1084879506 -0.157713805 0.15) (0.1138997161 -0.1580151259 0.15) (0.1141912676 -0.1521836009 0.15) (0.1087866181 -0.1518385724 0.15) (0.1300976898 -0.1589456196 0.15) (0.1303673442 -0.1532773286 0.15) (0.1249636447 -0.152912623 0.15) (0.1246863921 -0.15863461 0.15) (0.08679350807 -0.1567122737 0.15) (0.09221081699 -0.1569381741 0.15) (0.09249393279 -0.1511030382 0.15) (0.08704905303 -0.1509380791 0.15) (0.1033670693 -0.1515325707 0.15) (0.1030653481 -0.1574295814 0.15) (0.1040403972 -0.1392863933 0.15) (0.1524783529 -0.1434420404 0.15) (0.1579604635 -0.1430121028 0.15) (0.1517251944 -0.1599753558 0.15) (0.1571438165 -0.160113918 0.15) (0.1574248794 -0.154333747 0.15) (0.1519919638 -0.154325347 0.15) (0.1733855015 -0.1605330246 0.15) (0.1737056428 -0.154378903 0.15) (0.1683040497 -0.154260886 0.15) (0.1679910672 -0.1603496767 0.15) (0.1355223292 -0.1592498647 0.15) (0.135787734 -0.153628123 0.15) (0.1465871952 -0.1541901568 0.15) (0.1463262529 -0.1597816786 0.15) (0.1470696866 -0.1433461079 0.15) (0.06609908479 -0.132216533 0.15) (0.06578647598 -0.1382001194 0.15) (0.07123552107 -0.1386417012 0.15) (0.07151434732 -0.1328269822 0.15) (0.06499573568 -0.1556445826 0.15) (0.07046478899 -0.1559309486 0.15) (0.07073526328 -0.1502166436 0.15) (0.06526549087 -0.1499099192 0.15) (0.08161364508 -0.1507490488 0.15) (0.0813575368 -0.1564685525 0.15) (0.06643875251 -0.1262054195 0.15) (0.06103332117 -0.1256318873 0.15) (0.06066034008 -0.1317855603 0.15) (0.07179596603 -0.127062256 0.15) (0.136970406 -0.005144409535 0.15) (0.14234841 -0.004838596006 0.15) (0.1426284758 0.0008794507855 0.15) (0.1372210015 0.0008134373857 0.15) (0.153496582 0.0007853511136 0.15) (0.1531796255 -0.0044111099 0.15) (0.1543850334 0.01759105919 0.15) (0.1540867709 0.01189010979 0.15) (0.152845526 -0.009008747562 0.15) (0.1578013288 -0.008613970825 0.15) (0.1367712269 -0.01055570003 0.15) (0.1420796616 -0.00999042983 0.15) (0.115064379 -0.003413726737 0.15) (0.10967276 -0.003462384536 0.15) (0.1093748874 -0.009134519224 0.15) (0.1147170609 -0.008741376255 0.15) (0.09866953614 -0.009847807354 0.15) (0.09887980621 -0.003636520983 0.15) (0.1315614819 -0.00513676733 0.15) (0.1316734985 -0.01113214407 0.15) (0.1201676586 -0.008984902497 0.15) (0.120527676 -0.003788217738 0.15) (0.1162686981 0.01933316127 0.15) (0.1159869769 0.01362230266 0.15) (0.1214551492 0.01334879404 0.15) (0.1217405179 0.01907299227 0.15) (0.1208489481 0.001829425167 0.15) (0.1153992738 0.002175025634 0.15) (0.1317996246 0.0009364142752 0.15) (0.2818599305 -0.1459915447 0.15) (0.2816475362 -0.1508056031 0.15) (0.2870535737 -0.1509352481 0.15) (0.2871937628 -0.1464554967 0.15) (0.2809469872 -0.1665188014 0.15) (0.2863518414 -0.1666107454 0.15) (0.2866057088 -0.1611450288 0.15) (0.2811935662 -0.1611418366 0.15) (0.302564407 -0.1664302502 0.15) (0.3028860702 -0.160182393 0.15) (0.2974681074 -0.1604656534 0.15) (0.2971668432 -0.1664776199 0.15) (0.2594583534 -0.1654536207 0.15) (0.2648259676 -0.1657570149 0.15) (0.2650762845 -0.1603233644 0.15) (0.2597136295 -0.1599794622 0.15) (0.2758048012 -0.1609447461 0.15) (0.2755595586 -0.1663147673 0.15) (0.2764947961 -0.1455123656 0.15) (0.2762739127 -0.1504400468 0.15) (0.3240726942 -0.1673371946 0.15) (0.3294404495 -0.1676791404 0.15) (0.3297569661 -0.1614964108 0.15) (0.3243927173 -0.1611025737 0.15) (0.3455133312 -0.1687329453 0.15) (0.3458172007 -0.1627084899 0.15) (0.340472682 -0.1622999872 0.15) (0.3401652 -0.1683785313 0.15) (0.3079526378 -0.1665139831 0.15) (0.3082816086 -0.1601769745 0.15) (0.3190276487 -0.1607257167 0.15) (0.3187031686 -0.1670111819 0.15) (0.1961038533 -0.1383252301 0.15) (0.195847639 -0.1435699764 0.15) (0.2012084695 -0.1440553552 0.15) (0.2014628314 -0.1388282401 0.15) (0.1949286254 -0.1616930433 0.15) (0.2003055045 -0.1620119023 0.15) (0.2006058145 -0.1560404369 0.15) (0.1952333924 -0.1556707337 0.15) (0.2164563165 -0.1629653484 0.15) (0.2167425459 -0.1571403745 0.15) (0.2113578001 -0.1567770845 0.15) (0.2110673066 -0.1626489073 0.15) (0.1787689746 -0.1607775151 0.15) (0.1790891255 -0.1546231937 0.15) (0.1898528976 -0.1553023427 0.15) (0.1895426891 -0.1613751487 0.15) (0.1907424574 -0.1378100894 0.15) (0.1904831171 -0.1430781121 0.15) (0.2389842538 -0.1422338891 0.15) (0.2387474904 -0.1473245942 0.15) (0.2441134109 -0.1477874923 0.15) (0.244349982 -0.1427215067 0.15) (0.2379441114 -0.1642138019 0.15) (0.243323321 -0.1645258653 0.15) (0.243588736 -0.158924648 0.15) (0.2382136844 -0.1585679331 0.15) (0.2543451985 -0.1596307759 0.15) (0.2540869175 -0.1651464378 0.15) (0.2218384406 -0.1632792546 0.15) (0.2221194793 -0.157499583 0.15) (0.2328506238 -0.158211697 0.15) (0.2325778819 -0.1639024652 0.15) (0.2336373492 -0.1417503841 0.15) (0.2333945163 -0.1468631221 0.15) (0.3107954756 -0.01020752651 0.15) (0.3162315956 -0.01070945522 0.15) (0.316449424 -0.005762103786 0.15) (0.3110256826 -0.005314835594 0.15) (0.3272499502 -0.006758294054 0.15) (0.3270190418 -0.01174846454 0.15) (0.3279916124 0.009536898678 0.15) (0.327740433 0.004064644858 0.15) (0.295185014 0.004986529895 0.15) (0.2954574708 0.01069212914 0.15) (0.2950652706 -0.008961322602 0.15) (0.2946997807 -0.005499570281 0.15) (0.287777802 -0.008442697302 0.15) (0.3056078842 -0.004972576161 0.15) (0.3053842899 -0.009769774857 0.15) (0.4530778225 -0.1731011852 0.15) (0.4584357848 -0.17352155 0.15) (0.4587409955 -0.1674900511 0.15) (0.4533877217 -0.1670140476 0.15) (0.474501127 -0.1748144695 0.15) (0.4747913987 -0.1689472413 0.15) (0.4694387614 -0.1684580532 0.15) (0.4691438157 -0.1743806204 0.15) (0.4315530383 -0.1720589879 0.15) (0.4369560087 -0.1720862659 0.15) (0.4372899502 -0.165770722 0.15) (0.4318851227 -0.1657611751 0.15) (0.4480300475 -0.1665462415 0.15) (0.4477140704 -0.17269706 0.15) (0.5015798781 -0.1713669711 0.15) (0.496225755 -0.170887823 0.15) (0.5176236753 -0.1728158331 0.15) (0.512275931 -0.1723289836 0.15) (0.4798624143 -0.1752489111 0.15) (0.4801470179 -0.1694368737 0.15) (0.4908676655 -0.1704078828 0.15) (0.49059324 -0.1761127862 0.15) (0.3669419406 -0.1701911888 0.15) (0.3723053828 -0.1705602582 0.15) (0.3725804787 -0.1648414709 0.15) (0.3672240553 -0.1644099673 0.15) (0.3883946432 -0.1716688166 0.15) (0.3886525716 -0.1661397221 0.15) (0.3832952121 -0.1657068718 0.15) (0.383031201 -0.1712997472 0.15) (0.3508612068 -0.1690926532 0.15) (0.3511602238 -0.1631272325 0.15) (0.3618675645 -0.1639798621 0.15) (0.3615794538 -0.1698230665 0.15) (0.4098716679 -0.1729122448 0.15) (0.4152686646 -0.1729388339 0.15) (0.4155027585 -0.1676545749 0.15) (0.4101043049 -0.1676374266 0.15) (0.4264316005 -0.1663040227 0.15) (0.4261274748 -0.1723130478 0.15) (0.3937592869 -0.1720337391 0.15) (0.3940110987 -0.1665691247 0.15) (0.4047312295 -0.1673642041 0.15) (0.4044928666 -0.1726954119 0.15) (0.5051097702 -0.02274869061 0.15) (0.499697458 -0.02256237716 0.15) (0.4993635698 -0.02856576045 0.15) (0.5047982203 -0.02866264707 0.15) (0.483565099 -0.02164145871 0.15) (0.4833082842 -0.02729264895 0.15) (0.4886692809 -0.02769163525 0.15) (0.4889554199 -0.02191000735 0.15) (0.5213259877 -0.02334277271 0.15) (0.5210537588 -0.0290851257 0.15) (0.5102572545 -0.02864848035 0.15) (0.5105294635 -0.02288580275 0.15) (0.5103554794 -0.04324509865 0.15) (0.5098491013 -0.03948730791 0.15) (0.5028325161 -0.04156977145 0.15) (0.4562141161 -0.0265802643 0.15) (0.4614981474 -0.02739141862 0.15) (0.4456738092 -0.0248185319 0.15) (0.4781254556 -0.02158577925 0.15) (0.4778485459 -0.02732139869 0.15) (0.4668458573 -0.02785824312 0.15) (0.4672283049 -0.02161632398 0.15) (0.6462687888 -0.1851451008 0.15) (0.6409083171 -0.184714503 0.15) (0.6406743395 -0.190017089 0.15) (0.6460493651 -0.1903121308 0.15) (0.6299563209 -0.1891782605 0.15) (0.630206434 -0.1837073568 0.15) (0.62918972 -0.2057411621 0.15) (0.6294491384 -0.2001812035 0.15) (0.6304358801 -0.1787060028 0.15) (0.6250959847 -0.1781602634 0.15) (0.6464795382 -0.1803443786 0.15) (0.641128617 -0.1797989077 0.15) (0.6090937878 -0.1765962735 0.15) (0.6037423224 -0.1760828137 0.15) (0.6197718056 -0.1776207891 0.15) (0.6516521642 -0.1853501406 0.15) (0.6517757885 -0.1808817035 0.15) (0.66177545 -0.20101684 0.15) (0.6614806049 -0.2069165855 0.15) (0.6640161502 -0.1821234123 0.15) (0.6623808995 -0.1890568223 0.15) (0.651448712 -0.190352249 0.15) (0.5606490212 -0.1774756557 0.15) (0.5552482999 -0.1774640044 0.15) (0.5549197322 -0.1837304503 0.15) (0.5603185722 -0.1837603321 0.15) (0.5440578194 -0.1843582892 0.15) (0.5443141847 -0.1788408329 0.15) (0.5432329798 -0.2014846378 0.15) (0.5435069954 -0.1957882245 0.15) (0.5445217142 -0.1738372193 0.15) (0.5390729342 -0.1743440537 0.15) (0.5609670684 -0.1719662833 0.15) (0.5559007687 -0.171477003 0.15) (0.5229755982 -0.1732990798 0.15) (0.5336912436 -0.1741663269 0.15) (0.587685996 -0.1745409393 0.15) (0.5823346319 -0.1740253819 0.15) (0.598390857 -0.1755693538 0.15) (0.5660168584 -0.1778159035 0.15) (0.5662805394 -0.1724787097 0.15) (0.5769832677 -0.1735098245 0.15) (0.5767293404 -0.1787486743 0.15) (0.5757962214 -0.1969980079 0.15) (0.5755024909 -0.2028954044 0.15) (0.5764213702 -0.1847958584 0.15) (0.5656945616 -0.1840146731 0.15) (0.646887832 -0.07788616829 0.15) (0.6334191881 -0.05202648795 0.15) (0.6331195247 -0.05783940006 0.15) (0.6384822569 -0.0581817041 0.15) (0.6387945367 -0.05231483762 0.15) (0.6325269662 -0.07388719516 0.15) (0.6375527214 -0.0752577455 0.15) (0.6378529556 -0.06997217442 0.15) (0.6326216871 -0.06910499929 0.15) (0.6485540332 -0.07083010815 0.15) (0.6272705926 -0.06872901726 0.15) (0.6277956816 -0.07259693843 0.15) (0.6280306539 -0.05180387891 0.15) (0.6277224459 -0.05764861601 0.15) (0.8172150187 -0.131864215 0.15) (0.8087705588 -0.1124882178 0.15) (0.8090367867 -0.1067872136 0.15) (0.808165201 -0.1286766994 0.15) (0.8082991008 -0.1237465807 0.15) (0.8188513309 -0.1249295548 0.15) (0.8011363301 -0.213588734 0.15) (0.8014145038 -0.2078476691 0.15) (0.8335556501 -0.210299757 0.15) (0.8333356206 -0.2155415449 0.15) (0.7322563905 -0.1893637692 0.15) (0.726909657 -0.1887937718 0.15) (0.7266816196 -0.1937866839 0.15) (0.7320308035 -0.1943266646 0.15) (0.7159876089 -0.1926994241 0.15) (0.7162224434 -0.1876486725 0.15) (0.7151754177 -0.2097089468 0.15) (0.7154476967 -0.2040277674 0.15) (0.7476158071 -0.2061701953 0.15) (0.7473789072 -0.2115333108 0.15) (0.7482451241 -0.1910614653 0.15) (0.7480438411 -0.1958320089 0.15) (0.7373773235 -0.1948596086 0.15) (0.7376022553 -0.1899310215 0.15) (0.7542871958 -0.1105384607 0.15) (0.9727597436 -0.2278818191 0.15) (0.9729604294 -0.2226674303 0.15) (0.9720301363 -0.2442176404 0.15) (0.9722843399 -0.2387034836 0.15) (0.9890807535 -0.2424387989 0.15) (0.9894052758 -0.2367538344 0.15) (0.9833081517 -0.2381023831 0.15) (0.9830244098 -0.2436891999 0.15) (0.9934744366 -0.1867893322 0.15) (0.9883909935 -0.1858463975 0.15) (0.987831588 -0.1922490702 0.15) (0.9922547827 -0.1948194593 0.15) (0.9777649927 -0.1901107434 0.15) (0.9778982396 -0.1847171941 0.15) (0.973122277 -0.2181123357 0.15) (0.950891653 -0.1826469531 0.15) (0.9551732193 -0.1843767346 0.15) (0.9566713163 -0.1777749965 0.15) (0.9513338564 -0.1773447088 0.15) (0.9727775779 -0.1787802546 0.15) (0.9674490895 -0.1783922487 0.15) (0.9733630162 -0.1621541433 0.15) (0.9680166638 -0.1617421481 0.15) (0.967853262 -0.1672418667 0.15) (0.9732075653 -0.1676135985 0.15) (0.8873599978 -0.2123163979 0.15) (0.8939540974 -0.1600915256 0.15) (0.9305051797 -0.1593956104 0.15) (0.9302662764 -0.165049067 0.15) (0.9356525345 -0.1653188212 0.15) (0.9358909748 -0.1596749534 0.15) (0.9460516001 -0.1768285833 0.15) (0.9465894777 -0.1809085679 0.15) (0.9251102806 -0.1591596789 0.15) (0.9248447337 -0.1648673138 0.15) (0.9194649129 -0.2146687226 0.15) (-0.008713804536 0.1386710009 0.15) (-0.02179611973 0.3001189377 0.15) (-0.02422776229 0.2536722448 0.15) (-0.1541965798 0.2602977875 0.15) (-0.1110300842 0.2577635011 0.15) (0.7071989389 -0.09028816542 0.15) (0.7020297387 -0.08927591461 0.15) (0.7019596981 -0.09402386079 0.15) (0.7069106076 -0.09553456492 0.15) (0.6967268292 -0.08873136009 0.15) (0.6972764889 -0.09260877717 0.15) (0.8553724211 0.09385923472 0.15) (0.840747305 0.2585195955 0.15) (0.8390355634 0.2097536818 0.15) (0.8818395614 0.2078963689 0.15) (0.7532760636 0.2140714425 0.15) (0.6897809879 -0.09034388838 0.15) (0.8517453356 -0.1149397528 0.15) (0.8519653802 -0.1093658593 0.15) (0.8512308217 -0.126281186 0.15) (0.8673643739 -0.1271981274 0.15) (0.8619784823 -0.1269207821 0.15) (0.7112783045 0.0003250351695 0.15) (0.7869550888 0.007183670207 0.15) (0.7654872116 0.008471408891 0.15) (0.7644840726 -0.01408996475 0.15) (0.7899925188 0.07511622928 0.15) (0.7685249653 0.07638993603 0.15) (0.767514383 0.05375733847 0.15) (0.7889789883 0.05248477523 0.15) (-0.02474085034 -0.07451251709 0.15) (-0.0249470049 -0.0815240329 0.15) (-0.01949943285 -0.08259335397 0.15) (-0.01941924394 -0.07507832295 0.15) (-0.02440155177 -0.1021197271 0.15) (-0.01880118302 -0.1028216089 0.15) (-0.01929911651 -0.09595460818 0.15) (-0.02483509311 -0.09517564181 0.15) (-0.007712198283 -0.09821499121 0.15) (-0.007365695915 -0.1043722639 0.15) (-0.004691999395 -0.04637111869 0.15) (-0.005618156541 -0.05273055536 0.15) (-0.02223707994 -0.04708237376 0.15) (-0.0228911641 -0.05349268973 0.15) (-0.01737359091 -0.0536076962 0.15) (-0.01662391769 -0.04707134316 0.15) (-0.01884863679 -0.06731760543 0.15) (-0.02423622531 -0.06707540921 0.15) (-0.07519056822 0.1185202514 0.15) (-0.07677575495 0.09549290359 0.15) (-0.05487992271 0.09473514431 0.15) (-0.05347864975 0.117642221 0.15) (-0.05819385005 0.04855422444 0.15) (-0.08041866249 0.04889936803 0.15) (-0.003734684679 0.03552589548 0.15) (0.07260974715 0.02124183741 0.15) (0.07231585392 0.01552355714 0.15) (0.07774942316 0.01527985185 0.15) (0.07805029034 0.02099949741 0.15) (0.07721833971 0.003649131049 0.15) (0.07174640215 0.003925524597 0.15) (0.09367176763 0.002734336892 0.15) (0.08818330671 0.003062487456 0.15) (0.3867954689 -0.2053938355 0.15) (0.3975440943 -0.2059097642 0.15) (0.3980824537 -0.1946135835 0.15) (0.3851742113 -0.2393481562 0.15) (0.3959231742 -0.2398570931 0.15) (0.3964637863 -0.2285349908 0.15) (0.3857149198 -0.2280240563 0.15) (0.4281780537 -0.2413842895 0.15) (0.4287185212 -0.2300651838 0.15) (0.4179636134 -0.2295549587 0.15) (0.4174230978 -0.2408750633 0.15) (0.3422064716 -0.2373107624 0.15) (0.3529364085 -0.2378197819 0.15) (0.3534783569 -0.226490736 0.15) (0.3427484683 -0.2259807177 0.15) (0.3749670522 -0.22751317 0.15) (0.3744252966 -0.2388382205 0.15) (0.3765869252 -0.1935667917 0.15) (0.3760478906 -0.2048769561 0.15) (0.7831371211 -0.08270178906 0.15) (0.7777684454 -0.08239964513 0.15) (0.7775290538 -0.08802174172 0.15) (0.7829026556 -0.088304801 0.15) (0.7667457055 -0.08749923089 0.15) (0.7670067031 -0.08182361394 0.15) (0.7661531186 -0.09908913835 0.15) (0.7088390124 -0.0559233745 0.15) (0.7093167251 -0.04470135549 0.15) (0.7415655058 -0.04656224602 0.15) (0.730823232 -0.04593549465 0.15) (0.7430152983 -0.01282080442 0.15) (0.7322800357 -0.01219399108 0.15) (0.7317901357 -0.02346107481 0.15) (0.7425266673 -0.02408234289 0.15) (0.8592067194 -0.238870762 0.15) (0.8645632046 -0.23911435 0.15) (0.8648326324 -0.2334507535 0.15) (0.8594793022 -0.23318329 0.15) (0.8755572442 -0.2340285963 0.15) (0.8752938853 -0.2396494357 0.15) (0.8761103111 -0.2225729393 0.15) (0.09914046904 0.002484229982 0.15) (0.1099794068 0.002308541969 0.15) (0.1108097529 0.0195696819 0.15) (0.1105318872 0.01385573378 0.15) (0.4389410004 -0.2418939015 0.15) (0.4394814196 -0.2305757946 0.15) (0.4609872397 -0.2315960518 0.15) (0.4604470616 -0.2429091645 0.15) (0.4626106439 -0.197618007 0.15) (0.4620677888 -0.208965831 0.15) (0.4518700712 -0.1970804414 0.15) (0.4521520509 -0.1913020166 0.15) (0.4467762538 -0.1910229562 0.15) (0.4464943079 -0.1968006817 0.15) (0.4473883684 -0.1789456233 0.15) (0.4527580442 -0.1792892637 0.15) (0.4312264099 -0.1783060048 0.15) (0.4366227188 -0.1784090496 0.15) (0.4258216414 -0.1783367076 0.15) (0.4096237152 -0.1783384006 0.15) (0.4150129599 -0.1784426062 0.15) (0.4088314167 -0.1951225204 0.15) (0.4142079751 -0.1953650751 0.15) (0.4144780304 -0.1897092179 0.15) (0.4090994797 -0.189487191 0.15) (0.8384980503 -0.2210073504 0.15) (0.8439105677 -0.2209613034 0.15) (0.8376967521 -0.2379364048 0.15) (0.8430784632 -0.2381551803 0.15) (0.843345783 -0.2325145089 0.15) (0.8379606758 -0.2323246032 0.15) (0.8541101696 -0.2329320833 0.15) (0.8538389715 -0.2386116129 0.15) (0.781850585 -0.1159441627 0.15) (0.7871270788 -0.1165174368 0.15) (0.7923487604 -0.1172928629 0.15) (0.7926265308 -0.1115394142 0.15) (0.7928934807 -0.1058234574 0.15) (0.8609544432 -0.2041218154 0.15) (0.8556611917 -0.2035016386 0.15) (0.8506040279 -0.2029060753 0.15) (0.8499617215 -0.2087447942 0.15) (0.8496377241 -0.2148751021 0.15) (0.7713295952 -0.1049068407 0.15) (0.7710959881 -0.1105128074 0.15) (0.7705991124 -0.1159313606 0.15) (0.7749490568 -0.1173853686 0.15) (0.8039096214 -0.10079835 0.15) (0.7985247515 -0.1004791053 0.15) (0.8045877433 -0.08399440133 0.15) (0.7992184877 -0.08366279515 0.15) (0.7989939038 -0.08924776262 0.15) (0.8043649738 -0.08958326081 0.15) (0.7882651116 -0.08861135012 0.15) (0.788499336 -0.08301333237 0.15) (0.9569447671 -0.2210090814 0.15) (0.9571489615 -0.2161367598 0.15) (0.871051117 -0.2162545201 0.15) (0.8713368889 -0.2104597592 0.15) (0.8715646012 -0.2054113669 0.15) (0.8662546576 -0.204742929 0.15) (0.9356362757 -0.2186595935 0.15) (0.9359302577 -0.2134205751 0.15) (0.0373643402 -0.02431553259 0.15) (0.03838833883 -0.03167497457 0.15) (0.5578183033 -0.04889375917 0.15) (0.5574939459 -0.05428498989 0.15) (0.7394241973 -0.0921800577 0.15) (0.7340303453 -0.09194317562 0.15) (0.7286817065 -0.0915578011 0.15) (0.728428236 -0.09722266852 0.15) (0.7282679338 -0.1022019712 0.15) (0.702708886 -0.07255441127 0.15) (0.6973318724 -0.07225907318 0.15) (0.7188247068 -0.07356904123 0.15) (0.713444373 -0.07325952653 0.15) (0.7195948595 -0.05653856696 0.15) (0.714216504 -0.05622954825 0.15) (0.7139776532 -0.06186118201 0.15) (0.7193538711 -0.0621730009 0.15) (0.1419302745 -0.1375901748 0.15) (0.1421661772 -0.1326002454 0.15) (0.08590710138 0.06623684909 0.15) (0.08533294204 0.05487932336 0.15) (0.05320366118 0.06765955478 0.15) (0.05260081108 0.05628839674 0.15) (0.06349762608 0.05581637297 0.15) (0.06411485943 0.0671868366 0.15) (0.06226301127 0.03307445169 0.15) (0.05130326947 0.03352047972 0.15) (0.6816764773 -0.06009016941 0.15) (0.6819302522 -0.05443973345 0.15) (0.6811391921 -0.07148852081 0.15) (0.6919315831 -0.07201036692 0.15) (0.8666134438 -0.1441829756 0.15) (0.8612610569 -0.1438337624 0.15) (0.8617630644 -0.1479516613 0.15) (0.8661341317 -0.1495695285 0.15) (0.854349391 -0.14521537 0.15) (0.877856226 -0.1539355798 0.15) (0.8773361249 -0.1498606583 0.15) (0.8704440088 -0.1511691237 0.15) (0.8774433666 -0.144570275 0.15) (0.871994211 -0.1444627766 0.15) (-0.0375372879 0.02504936234 0.15) (-0.03850532187 0.01339288254 0.15) (-0.02736220251 0.013199105 0.15) (-0.02658096939 0.02470661956 0.15) (-0.02953725829 -0.01032557627 0.15) (-0.04077865003 -0.01033830001 0.15) (-0.001939011008 -0.01651083613 0.15) (0.05964867068 -0.02474053921 0.15) (0.05964724624 -0.01909430172 0.15) (0.05995092847 -0.01324584205 0.15) (0.05444502368 -0.01293477016 0.15) (0.04889280114 -0.01261465418 0.15) (0.09418783568 -0.0167571256 0.15) (0.08729423338 -0.01436991973 0.15) (0.0863890437 -0.01832316816 0.15) (0.08188746141 -0.01428659326 0.15) (0.08157807169 -0.01934706095 0.15) (0.6010818259 -0.05052804745 0.15) (0.6008099244 -0.05624288421 0.15) (0.6006413974 -0.06155844147 0.15) (0.6060083708 -0.06189584433 0.15) (0.611250114 -0.0627326893 0.15) (0.5743953903 -0.05845767886 0.15) (0.5792037268 -0.05964503153 0.15) (0.5792970686 -0.05489140238 0.15) (0.5795065429 -0.04941202914 0.15) (0.6129718133 -0.02808730816 0.15) (0.6075901727 -0.02780486194 0.15) (0.607331095 -0.03346144933 0.15) (0.6127138212 -0.03374214587 0.15) (0.5965683502 -0.03292691809 0.15) (0.5968315963 -0.02724620363 0.15) (0.5959772161 -0.04452820884 0.15) (0.5349635932 -0.04885479638 0.15) (0.5366052407 -0.04187183724 0.15) (0.5369281731 -0.03595022076 0.15) (0.5314975258 -0.03579115484 0.15) (0.5261188435 -0.03536448349 0.15) (0.7497142922 -0.1040183772 0.15) (0.749960589 -0.09835693786 0.15) (0.7502627853 -0.09253303511 0.15) (0.7448519151 -0.09231685645 0.15) (0.09897071303 -0.1328119868 0.15) (0.09965199261 -0.1267881319 0.15) (0.0875889212 -0.1247939972 0.15) (0.1204564474 -0.1350155521 0.15) (0.1207034426 -0.1298373385 0.15) (0.1201675012 -0.1408345881 0.15) (0.1198710339 -0.1467057221 0.15) (0.1252441584 -0.1471645629 0.15) (0.1306365839 -0.1476176276 0.15) (0.1651459014 -0.1352133315 0.15) (0.1634910526 -0.1422208826 0.15) (0.163182488 -0.1482389041 0.15) (0.1686338193 -0.1480110173 0.15) (0.1740427641 -0.1480597083 0.15) (0.1360471373 -0.1480477399 0.15) (0.1414472568 -0.1484243868 0.15) (0.1416906349 -0.1429893 0.15) (0.04304381133 -0.1545016703 0.15) (0.0485504705 -0.1547867483 0.15) (0.04882095443 -0.1490722436 0.15) (0.04330499917 -0.148797229 0.15) (0.05977737292 -0.1496099179 0.15) (0.0595058522 -0.1553458977 0.15) (0.06032677544 -0.1378465262 0.15) (0.05515662809 -0.1316405874 0.15) (0.05549048809 -0.1256294938 0.15) (0.05717357032 -0.1185804559 0.15) (0.05001359664 -0.1205306509 0.15) (0.04450481089 -0.1202751047 0.15) (0.08265166555 -0.1239149864 0.15) (0.077375839 -0.1229380348 0.15) (0.07716220217 -0.1279126201 0.15) (0.07692658379 -0.1334171618 0.15) (0.2921295024 -0.1468702943 0.15) (0.2925105933 -0.1503614331 0.15) (0.2994084379 -0.1474827172 0.15) (0.292295319 -0.1553595668 0.15) (0.2977675047 -0.1544716177 0.15) (0.3032111386 -0.153884742 0.15) (0.3038621975 -0.1478647343 0.15) (0.2599633002 -0.1545591961 0.15) (0.2653224295 -0.1549553891 0.15) (0.270678118 -0.1553399026 0.15) (0.2709203509 -0.1500114846 0.15) (0.2711515782 -0.145035446 0.15) (0.3354213783 -0.1558596066 0.15) (0.3407730589 -0.1563063993 0.15) (0.3410289549 -0.1510682453 0.15) (0.3356780363 -0.150605671 0.15) (0.3461154606 -0.156758751 0.15) (0.3463717767 -0.1515326312 0.15) (0.3086102467 -0.1538468579 0.15) (0.3089281336 -0.1482993334 0.15) (0.3139824976 -0.1541371605 0.15) (0.3142493089 -0.1487558663 0.15) (0.206816497 -0.1393376012 0.15) (0.2065692469 -0.1445418327 0.15) (0.2062764766 -0.1504400765 0.15) (0.211651043 -0.1508690521 0.15) (0.217030029 -0.1512894307 0.15) (0.1794228458 -0.1483329686 0.15) (0.184796552 -0.148717551 0.15) (0.1851137938 -0.1425820113 0.15) (0.1853719074 -0.1372771866 0.15) (0.2497285787 -0.1431914242 0.15) (0.2494878235 -0.1482403883 0.15) (0.2492285244 -0.1537564015 0.15) (0.2546003492 -0.1541592144 0.15) (0.2224022981 -0.1517037785 0.15) (0.2277667453 -0.1521142445 0.15) (0.2280421986 -0.14640879 0.15) (0.2282887561 -0.1412811141 0.15) (0.4688410746 -0.180381703 0.15) (0.4742044687 -0.1807517712 0.15) (0.4581219783 -0.179648145 0.15) (0.4572439279 -0.1973374827 0.15) (0.4575227526 -0.1915829336 0.15) (0.4897624526 -0.193300119 0.15) (0.489490815 -0.1989680139 0.15) (0.4903137058 -0.1818612941 0.15) (0.4795708399 -0.1811223837 0.15) (0.3827652748 -0.1769115522 0.15) (0.3881341922 -0.1772294261 0.15) (0.3666616059 -0.1759562773 0.15) (0.3720295052 -0.1762745025 0.15) (0.3658407315 -0.1930419699 0.15) (0.3712143759 -0.1933034061 0.15) (0.3714847158 -0.1876416557 0.15) (0.366111457 -0.1873722289 0.15) (0.3782056746 -0.1596436863 0.15) (0.3835574094 -0.1601308285 0.15) (0.3837961373 -0.1550616432 0.15) (0.3784464477 -0.1545528745 0.15) (0.3889100948 -0.1606190178 0.15) (0.3891457208 -0.1555726094 0.15) (0.3514529072 -0.1572307866 0.15) (0.3516999162 -0.1520315493 0.15) (0.3567990831 -0.1577086499 0.15) (0.3570469951 -0.1525321827 0.15) (0.4211591929 -0.1621208059 0.15) (0.4280725529 -0.1593147227 0.15) (0.4207611741 -0.1586070244 0.15) (0.3942618297 -0.1611061601 0.15) (0.3944962982 -0.1560837237 0.15) (0.3996148044 -0.1615883563 0.15) (0.3998458865 -0.15659459 0.15) (0.4037229985 -0.1892430381 0.15) (0.4034561947 -0.194873022 0.15) (0.4042448077 -0.1781237651 0.15) (0.3935032688 -0.1775440038 0.15) (0.4936711021 -0.03416156401 0.15) (0.4884021745 -0.03336936007 0.15) (0.4881821737 -0.0384446556 0.15) (0.4933480425 -0.03954665016 0.15) (0.4831060156 -0.03266424429 0.15) (0.4830172942 -0.03734290903 0.15) (0.520783102 -0.03479491662 0.15) (0.5154400873 -0.03433452602 0.15) (0.515254503 -0.03965086163 0.15) (0.5151692699 -0.0443194829 0.15) (0.4776675151 -0.0325848924 0.15) (0.4781559375 -0.03632059158 0.15) (0.4706449068 -0.03479211063 0.15) (0.4682122564 -0.003620536649 0.15) (0.4684878537 0.002108638575 0.15) (0.4675904889 -0.01546232998 0.15) (0.4838411918 -0.01586054719 0.15) (0.4784236504 -0.01572033521 0.15) (0.8161789526 -0.2369776414 0.15) (0.8215570265 -0.237230281 0.15) (0.821814833 -0.2316622353 0.15) (0.8164369521 -0.2314056004 0.15) (0.8325760026 -0.2321257079 0.15) (0.8323164739 -0.2377086879 0.15) (0.8330913745 -0.2209946107 0.15) (0.795513041 -0.2189751299 0.15) (0.8008600956 -0.2193103697 0.15) (0.7947060459 -0.2359599744 0.15) (0.8000631442 -0.2362116013 0.15) (0.800325635 -0.230608741 0.15) (0.7949701143 -0.2303451763 0.15) (0.8110604075 -0.2311420219 0.15) (0.8108009753 -0.2367230042 0.15) (0.817680079 -0.2039563131 0.15) (0.8123424357 -0.2033639279 0.15) (0.8070090867 -0.2027655429 0.15) (0.8067480769 -0.2083584631 0.15) (0.80648151 -0.2140042768 0.15) (0.8279385787 -0.2154536823 0.15) (0.8281607403 -0.2101884701 0.15) (0.8283681545 -0.2050420849 0.15) (0.8230206266 -0.2045300165 0.15) (0.7495580557 -0.1089964145 0.15) (0.9783984482 -0.2226116017 0.15) (0.9782085567 -0.2278305163 0.15) (0.9779751362 -0.2332045121 0.15) (0.9835965364 -0.232543823 0.15) (0.9897637724 -0.2310494857 0.15) (0.9919467785 -0.2007014496 0.15) (0.9865060099 -0.198699051 0.15) (0.992456021 -0.2039229545 0.15) (0.9785263105 -0.2185115976 0.15) (0.9785388084 -0.1679860191 0.15) (0.9786952781 -0.1625469367 0.15) (0.9781261424 -0.179104955 0.15) (0.9937922044 -0.1809746911 0.15) (0.9886828368 -0.1800917761 0.15) (0.9035343104 -0.2093199821 0.15) (0.8982325992 -0.20866766 0.15) (0.8929149651 -0.2080340918 0.15) (0.8926971348 -0.2129192708 0.15) (0.8924557495 -0.218354554 0.15) (0.8985098201 -0.156951462 0.15) (0.898402247 -0.1618132307 0.15) (0.9147212768 -0.1681578608 0.15) (0.9190357944 -0.1698687092 0.15) (0.9195052249 -0.1645002008 0.15) (0.919747487 -0.1588601217 0.15) (0.9138618023 -0.2198652707 0.15) (0.914034603 -0.2149796197 0.15) (0.914129762 -0.2106445651 0.15) (0.9088521917 -0.2099899045 0.15) (0.9307537428 -0.153728704 0.15) (0.9253824329 -0.1534396482 0.15) (0.9313593362 -0.1370998615 0.15) (0.9260280008 -0.1367086145 0.15) (0.9258443426 -0.142213162 0.15) (0.9311771543 -0.1425945686 0.15) (0.915137266 -0.1414794835 0.15) (0.9153398478 -0.1359355027 0.15) (0.7178033539 -0.09138561647 0.15) (0.712417815 -0.09112170382 0.15) (0.7117229392 -0.09703317236 0.15) (0.7074905447 -0.08449699004 0.15) (0.7077855225 -0.07867744426 0.15) (0.01070827626 -0.1066926404 0.15) (0.01042846365 -0.1017092494 0.15) (-0.001536438733 -0.09233986836 0.15) (0.6862592143 -0.07750091726 0.15) (0.6859747686 -0.08326821013 0.15) (0.6853326181 -0.0890000122 0.15) (0.675844604 -0.08622074048 0.15) (0.6805201829 -0.08758649877 0.15) (-0.01927037749 -0.02209726883 0.15) (-0.01988142497 -0.02808897315 0.15) (-0.01420210808 -0.02809084773 0.15) (-0.01366993793 -0.02217142382 0.15) (-0.01567363851 -0.04044846323 0.15) (-0.0213571803 -0.04049884571 0.15) (-0.003884659813 -0.04026134276 0.15) (0.2568708466 -0.001267630829 0.15) (0.2514765425 -0.0006046312096 0.15) (0.2515441975 -0.006668648565 0.15) (0.2566518548 -0.006840453832 0.15) (0.2460797858 0.0005882030951 0.15) (0.2676747679 -0.001882441125 0.15) (0.2622639157 -0.00162441465 0.15) (0.2619992769 -0.007043657751 0.15) (0.2674210186 -0.007262764069 0.15) (0.1913180039 -0.006671277666 0.15) (0.1915768031 -0.001538886685 0.15) (0.1918547936 0.004198382554 0.15) (0.186431424 0.004155662765 0.15) (0.1810121022 0.004134572945 0.15) (0.2027164972 0.004241250974 0.15) (0.1972857439 0.004232226449 0.15) (0.364625047 -0.01628460766 0.15) (0.3648832239 -0.01099920866 0.15) (0.365202428 -0.004968185103 0.15) (0.359820042 -0.004452331395 0.15) (0.3544388472 -0.003911806423 0.15) (0.3759902419 -0.005564096669 0.15) (0.3705828758 -0.005379023174 0.15) (0.1700064926 -0.007702276989 0.15) (0.1699056361 -0.001683110745 0.15) (0.1701480025 0.004498293087 0.15) (0.1646877543 0.005060355288 0.15) (0.1592328347 0.005732788935 0.15) (0.1755893901 0.00420915792 0.15) (0.3431788682 -0.01353131031 0.15) (0.3434137889 -0.008458036618 0.15) (0.3436772152 -0.002835798886 0.15) (0.3382836202 -0.002324009376 0.15) (0.3328972637 -0.0018281875 0.15) (0.3490647358 -0.003369721222 0.15) (0.278512667 -0.002270426031 0.15) (0.2730819521 -0.002112758479 0.15) (0.2728091339 -0.00751478712 0.15) (0.2782010872 -0.007832471645 0.15) (0.2894252641 -0.001463723191 0.15) (0.2839581477 -0.002122249814 0.15) (0.2833194799 -0.00813444604 0.15) (0.6141981199 -0.1821871229 0.15) (0.613928108 -0.1878420812 0.15) (0.6136542612 -0.1935349986 0.15) (0.6190024605 -0.1939087384 0.15) (0.6243495066 -0.1942856263 0.15) (0.6788432723 -0.1836606056 0.15) (0.6785811392 -0.1889657368 0.15) (0.678259594 -0.1951282003 0.15) (0.6836167063 -0.1955246964 0.15) (0.6889654772 -0.1959695465 0.15) (0.6674991185 -0.1947955133 0.15) (0.6728898864 -0.1948474315 0.15) (0.7869927129 -0.121415736 0.15) (0.7917139701 -0.1229966373 0.15) (0.7824103675 -0.1198814876 0.15) (0.8031642161 -0.1177931862 0.15) (0.7977207561 -0.1176506617 0.15) (0.7857032121 -0.2004655388 0.15) (0.791041665 -0.2010204193 0.15) (0.7912851929 -0.1959140222 0.15) (0.7859497208 -0.1953181377 0.15) (0.7963666025 -0.2015856602 0.15) (0.7966037378 -0.1965079881 0.15) (0.7749972342 -0.1995224697 0.15) (0.7803573581 -0.1999395349 0.15) (0.7806103595 -0.1947198628 0.15) (0.7753069997 -0.1941224251 0.15) (0.8391935179 -0.204963923 0.15) (0.8461232906 -0.2023777871 0.15) (0.838761637 -0.2015086767 0.15) (0.7001928871 -0.1859255782 0.15) (0.6999498956 -0.1910623366 0.15) (0.6996595799 -0.1969097396 0.15) (0.7050128103 -0.197386642 0.15) (0.710366031 -0.1978637442 0.15) (0.6943102195 -0.196435627 0.15) (0.7641429423 -0.1998887718 0.15) (0.7696012683 -0.1994330572 0.15) (0.770246599 -0.1935524354 0.15) (0.7657677201 -0.1930478644 0.15) (0.75320966 -0.2010409791 0.15) (0.758653772 -0.2006308321 0.15) (0.7661585226 -0.1144470763 0.15) (0.9949289467 -0.2388846801 0.15) (0.9952611847 -0.2330399018 0.15) (1.010567466 -0.2386705638 0.15) (1.010805758 -0.2329053476 0.15) (1.005426079 -0.2325615246 0.15) (1.005196281 -0.2383581869 0.15) (1.011228942 -0.215845107 0.15) (1.005636242 -0.2153514371 0.15) (1.005676687 -0.2209421918 0.15) (1.01113009 -0.2214179235 0.15) (0.9566938788 -0.2265375146 0.15) (0.9564290389 -0.2321682941 0.15) (0.9617876383 -0.2325961984 0.15) (0.9671524514 -0.2329783492 0.15) (0.9619965691 -0.1833520833 0.15) (0.9625503895 -0.1874336385 0.15) (1.011325022 -0.2105370649 0.15) (1.005352624 -0.2106500908 0.15) (1.012589147 -0.1932702364 0.15) (1.00709534 -0.1932166474 0.15) (1.006565931 -0.1992053851 0.15) (1.012155883 -0.1991338649 0.15) (0.9979274454 -0.1952328918 0.15) (0.9981151078 -0.1890647654 0.15) (0.8822355449 -0.2067483047 0.15) (0.8768920658 -0.2060901617 0.15) (0.02658168905 -0.03655470225 0.15) (0.03078476963 -0.03465537678 0.15) (0.01512889127 -0.04256791234 0.15) (0.01422946985 -0.035137295 0.15) (0.008318021121 -0.03483497685 0.15) (0.002444720838 -0.03452919429 0.15) (0.0197329915 -0.03513068238 0.15) (0.01914545235 -0.04027463406 0.15) (0.7232862335 -0.09133375578 0.15) (0.01077471237 -0.1124044893 0.15) (0.01069454253 -0.1181606199 0.15) (0.01641981224 -0.1185668809 0.15) (0.02206953401 -0.1189951244 0.15) (0.03341648011 -0.119419299 0.15) (0.03903398746 -0.1196936099 0.15) (0.03969827636 -0.1139304389 0.15) (0.03507603633 -0.1124718448 0.15) (0.04468229386 -0.1153360173 0.15) (0.02768839276 -0.1193119499 0.15) (0.664554886 -0.07694262488 0.15) (0.663896008 -0.08273058564 0.15) (0.8349223837 -0.1309359333 0.15) (0.8333735179 -0.1376353367 0.15) (0.8408011636 -0.1403103305 0.15) (0.8453278517 -0.1419398156 0.15) (0.8562831609 -0.1324512721 0.15) (0.8559657518 -0.1383206942 0.15) (0.8499942768 -0.1436195978 0.15) (0.8882217841 -0.1451119704 0.15) (0.8828478822 -0.1447936556 0.15) (0.8986974935 -0.151467432 0.15) (0.8989170447 -0.1458830225 0.15) (0.8935949338 -0.145445867 0.15) (0.07103861209 -0.01421044309 0.15) (0.06545485671 -0.01363310726 0.15) (0.08245184286 -0.002579989902 0.15) (0.08219038427 -0.008522294889 0.15) (0.07652561837 -0.01446503793 0.15) (0.07665704008 -0.0204338195 0.15) (0.2347148272 -0.006291050392 0.15) (0.2350075924 -0.001823771132 0.15) (0.2352707729 0.003150524643 0.15) (0.2298580878 0.003702381342 0.15) (0.2244308485 0.003973513294 0.15) (0.2406737372 0.002044792328 0.15) (0.2130262439 -0.006215378766 0.15) (0.2132845067 -0.001218519598 0.15) (0.2135655857 0.004188716747 0.15) (0.2081391496 0.004227639817 0.15) (0.2189982186 0.004112251173 0.15) (0.4080368313 -0.01775115037 0.15) (0.4083118885 -0.01203316211 0.15) (0.4085937869 -0.006277159531 0.15) (0.4032252557 -0.005806126082 0.15) (0.3978179797 -0.00541181351 0.15) (0.4077993066 -0.02287836124 0.15) (0.4295202684 -0.01946313295 0.15) (0.4278677012 -0.02644416328 0.15) (0.4353755231 -0.02781100142 0.15) (0.44027948 -0.02875968751 0.15) (0.3864811166 -0.01589801815 0.15) (0.3869295337 -0.01950844241 0.15) (0.3866624232 -0.01081544822 0.15) (0.3869136484 -0.005259298998 0.15) (0.3814411768 -0.00546884504 0.15) (0.3923747947 -0.005201383229 0.15) (0.5891997182 -0.062250397 0.15) (0.593660122 -0.06342796001 0.15) (0.6011623361 -0.06540864188 0.15) (0.6059153527 -0.06666350541 0.15) (0.6109535659 -0.06800412168 0.15) (0.5842875381 -0.06095360939 0.15) (0.5477709546 -0.03615412696 0.15) (0.5423686171 -0.03598931953 0.15) (0.1522468179 -0.1487769818 0.15) (0.157702522 -0.1485829452 0.15) (0.1468363571 -0.1486974819 0.15) (0.06676632422 -0.1207870121 0.15) (0.06173439901 -0.1196272094 0.15) (0.04950873307 -0.1166543954 0.15) (0.07203390616 -0.1219036286 0.15) (0.1477520255 -0.004499979378 0.15) (0.1480550101 0.0009462459748 0.15) (0.1483499568 0.006516303 0.15) (0.1429150549 0.006628719816 0.15) (0.137488371 0.006724721241 0.15) (0.1537945042 0.00625114335 0.15) (0.1474745032 -0.009439543145 0.15) (0.1042936227 -0.003625777718 0.15) (0.1040466911 -0.009632157783 0.15) (0.1038560337 -0.015053571 0.15) (0.1091042263 -0.01422228628 0.15) (0.1143359704 -0.01342064284 0.15) (0.09880802449 -0.01591284167 0.15) (0.1260724506 -0.004569511089 0.15) (0.1270539313 -0.01167530765 0.15) (0.1192878449 -0.01269248883 0.15) (0.2814241062 -0.1559311918 0.15) (0.2868403399 -0.1559118551 0.15) (0.2760405463 -0.1556884993 0.15) (0.3247046659 -0.1549729856 0.15) (0.3300635987 -0.1554147221 0.15) (0.3303211343 -0.1501426076 0.15) (0.3249631949 -0.1496802951 0.15) (0.3193443147 -0.1545398907 0.15) (0.3196052555 -0.1492179825 0.15) (0.1955456654 -0.1495759017 0.15) (0.2009110541 -0.1500083387 0.15) (0.1901723197 -0.1491423797 0.15) (0.2384825824 -0.152936048 0.15) (0.2438519369 -0.153348553 0.15) (0.2331242247 -0.1525238736 0.15) (0.3216158538 -0.01122800235 0.15) (0.321847197 -0.006249566467 0.15) (0.3220876534 -0.0008957333219 0.15) (0.3166826927 -0.000474200733 0.15) (0.3112609225 -0.0001105248504 0.15) (0.3274951386 -0.001347923318 0.15) (0.3000449047 -0.009337892454 0.15) (0.3001822088 -0.004876423192 0.15) (0.3003991975 7.427262336e-05 0.15) (0.2949240259 -0.0005229942836 0.15) (0.305834775 0.0001210083875 0.15) (0.4637894141 -0.1739487138 0.15) (0.4640910364 -0.1679708042 0.15) (0.4643442403 -0.162746937 0.15) (0.4589961916 -0.1622456561 0.15) (0.4536460295 -0.1617466759 0.15) (0.4750383263 -0.1637704262 0.15) (0.4696887959 -0.1632583612 0.15) (0.4423402009 -0.1723365978 0.15) (0.4426640216 -0.166106265 0.15) (0.4429287635 -0.1607470967 0.15) (0.4376101247 -0.160238025 0.15) (0.4325398924 -0.1597472534 0.15) (0.4482918816 -0.1612473031 0.15) (0.5066700371 -0.1773965475 0.15) (0.506929977 -0.1718465256 0.15) (0.507168773 -0.1667966661 0.15) (0.501819629 -0.1662973346 0.15) (0.4964664993 -0.1657976105 0.15) (0.5178541877 -0.1678131289 0.15) (0.5125107082 -0.1673001547 0.15) (0.485226756 -0.1756822987 0.15) (0.4855066952 -0.1699254006 0.15) (0.4857513564 -0.1647955308 0.15) (0.4803918521 -0.164282684 0.15) (0.4911113815 -0.1652975901 0.15) (0.3675010421 -0.1586727497 0.15) (0.3728538722 -0.1591579425 0.15) (0.3730956677 -0.1540459553 0.15) (0.3677458913 -0.1535389844 0.15) (0.3776687962 -0.1709299269 0.15) (0.3779378622 -0.1652738217 0.15) (0.3621501421 -0.1581890517 0.15) (0.3623960668 -0.1530330124 0.15) (0.4103284185 -0.1624562061 0.15) (0.4157111802 -0.1626324829 0.15) (0.4158422875 -0.1581334711 0.15) (0.4105437074 -0.1576236658 0.15) (0.4206907108 -0.1726954168 0.15) (0.4209504481 -0.1671495901 0.15) (0.3991236261 -0.1723842302 0.15) (0.3993692394 -0.1669857938 0.15) (0.4049675905 -0.1620537239 0.15) (0.4051933084 -0.1571088558 0.15) (0.5044798384 -0.03459369396 0.15) (0.4990083662 -0.03465811936 0.15) (0.498319692 -0.04060703051 0.15) (0.5100084201 -0.034279532 0.15) (0.4512155963 -0.01997974281 0.15) (0.450943207 -0.02568394368 0.15) (0.450707636 -0.03079142581 0.15) (0.4559594022 -0.03181467097 0.15) (0.461162921 -0.03286261824 0.15) (0.4454737187 -0.02977174552 0.15) (0.4726580661 -0.02166932377 0.15) (0.4723110212 -0.0277378484 0.15) (0.4661527653 -0.03387792356 0.15) (0.6355549366 -0.1842199728 0.15) (0.6353124018 -0.1896168558 0.15) (0.6350683232 -0.1950249775 0.15) (0.6404379164 -0.1953495918 0.15) (0.6458190585 -0.1955801536 0.15) (0.629704611 -0.1946615015 0.15) (0.635781754 -0.1792523313 0.15) (0.6144412675 -0.1771093407 0.15) (0.657102523 -0.1848728167 0.15) (0.6566964419 -0.1813808718 0.15) (0.6568990564 -0.1898752247 0.15) (0.6566436079 -0.1953944273 0.15) (0.6620785244 -0.1950295896 0.15) (0.6512183572 -0.1956212706 0.15) (0.5497959935 -0.1780024055 0.15) (0.5514343799 -0.1710455194 0.15) (0.5441219299 -0.1703392711 0.15) (0.5392011228 -0.1698640233 0.15) (0.5280963024 -0.1790485032 0.15) (0.5283313952 -0.1737642924 0.15) (0.5285551016 -0.1688403517 0.15) (0.5232046495 -0.1683266404 0.15) (0.5339055633 -0.1693538632 0.15) (0.5927909774 -0.180222025 0.15) (0.5930383975 -0.1750557459 0.15) (0.5713743198 -0.1782673804 0.15) (0.5716329024 -0.1729943153 0.15) (0.6424287765 -0.07661846544 0.15) (0.64312811 -0.07067687683 0.15) (0.6435082068 -0.06456659748 0.15) (0.6381644681 -0.0641004653 0.15) (0.6328397928 -0.06359200316 0.15) (0.6543625422 -0.0648422443 0.15) (0.6489192072 -0.06478007928 0.15) (0.6219516196 -0.0635402851 0.15) (0.6165324959 -0.06341211082 0.15) (0.6158439513 -0.06933760098 0.15) (0.6202965683 -0.07055203137 0.15) (0.6274423276 -0.06338848566 0.15) (0.8128434133 -0.1303197072 0.15) (0.8134946008 -0.1245666162 0.15) (0.8138129427 -0.1186986107 0.15) (0.8085117118 -0.118181499 0.15) (0.8245995648 -0.1192155229 0.15) (0.8191787118 -0.1190402204 0.15) (0.8125640081 -0.1984012392 0.15) (0.8072335386 -0.1977639478 0.15) (0.8178976139 -0.1990357787 0.15) (0.8016856392 -0.202169438 0.15) (0.8019160106 -0.1971281822 0.15) (0.8337422584 -0.2053354804 0.15) (0.8338469404 -0.2009276003 0.15) (0.8285649172 -0.2003029598 0.15) (0.8232312631 -0.1996694192 0.15) (0.7215660502 -0.1882212221 0.15) (0.7213345926 -0.1932435035 0.15) (0.721074581 -0.1988157477 0.15) (0.7264289549 -0.1992897019 0.15) (0.7317845591 -0.1997589098 0.15) (0.7157202891 -0.1983400956 0.15) (0.7429391548 -0.1904973405 0.15) (0.7427166968 -0.1953746872 0.15) (0.7424888219 -0.2006338169 0.15) (0.7478355479 -0.2009551247 0.15) (0.7371398058 -0.200214785 0.15) (0.9725309454 -0.233243023 0.15) (0.9830948283 -0.1854109952 0.15) (0.9828895496 -0.1909693626 0.15) (0.9825057115 -0.1962239661 0.15) (0.9783175972 -0.1941967451 0.15) (0.9620832741 -0.1780515979 0.15) (0.9622782883 -0.1724569933 0.15) (0.956883503 -0.1721564922 0.15) (0.9515292293 -0.1718048852 0.15) (0.8875796075 -0.2073943619 0.15) (0.9407640487 -0.1713000711 0.15) (0.9354403947 -0.1708948783 0.15) (0.9349938253 -0.176225345 0.15) (0.9392479402 -0.1779430886 0.15) (0.9301482953 -0.1703959983 0.15) (0.9306816857 -0.1744859781 0.15) (0.9461609208 -0.1715158743 0.15) (0.9233078003 -0.1715476705 0.15) (0.9190124531 -0.2112457214 0.15) (-0.900345 -0.871003 0.15) (-0.900294 -0.916832 0.15) (-0.900437 -0.733512 0.15) (-0.900417 -0.779343 0.15) (-0.8576 -0.779366 0.15) (-1.02885 -0.779272 0.15) (-0.986042 -0.779296 0.15) (-0.90049 -0.687683 0.15) (-0.90058 -0.550192 0.15) (-0.900562 -0.596024 0.15) (-0.857768 -0.596049 0.15) (-1.02893 -0.595946 0.15) (-0.986143 -0.595973 0.15) (-0.900632 -0.504364 0.15) (-0.9007768296 -0.366990551 0.15) (-0.9007055321 -0.4127173933 0.15) (-0.8581593617 -0.4131196161 0.15) (-1.029 -0.41262 0.15) (-0.986235 -0.412648 0.15) (-0.9009053317 -0.3213471084 0.15) (-0.9010974327 -0.1845763839 0.15) (-0.9010824382 -0.2301663936 0.15) (-0.8587474791 -0.2314930003 0.15) (-1.02906 -0.229292 0.15) (-0.986305 -0.229321 0.15) (-0.9011047914 -0.138958562 0.15) (-0.9008487865 -0.001765504838 0.15) (-0.9009697213 -0.04756346588 0.15) (-0.8583448083 -0.04934291686 0.15) (-1.02908 -0.0459608 0.15) (-0.9863400436 -0.04601311403 0.15) (-0.9007592477 0.04410135409 0.15) (-0.9005228737 0.182084863 0.15) (-0.9005854422 0.1360365293 0.15) (-0.8575527358 0.1344077486 0.15) (-1.02908 0.137373 0.15) (-0.986326434 0.1373405112 0.15) (-0.9005331967 0.2281605217 0.15) (-0.9006418763 0.3663390093 0.15) (-0.9006077582 0.3203149539 0.15) (-0.8574596981 0.3194006515 0.15) (-1.02904 0.32071 0.15) (-0.986274 0.320682 0.15) (-0.9006889694 0.412281321 0.15) (-0.90058 0.549808 0.15) (-0.900633 0.503969 0.15) (-0.8578476574 0.5039382804 0.15) (-1.02897 0.50405 0.15) (-0.986191 0.504023 0.15) (-0.900563 0.595643 0.15) (-0.900437 0.733155 0.15) (-0.90049 0.687316 0.15) (-0.857685 0.687292 0.15) (-1.02889 0.687391 0.15) (-0.986093 0.687366 0.15) (-0.900417 0.77899 0.15) (-0.900295 0.916502 0.15) (-0.900346 0.870664 0.15) (-0.857517 0.870642 0.15) (-1.02881 0.870732 0.15) (-0.985992 0.870709 0.15) (-0.729005 -0.871089 0.15) (-0.72894 -0.916916 0.15) (-0.729173 -0.733605 0.15) (-0.729122 -0.779433 0.15) (-0.686286 -0.779455 0.15) (-0.814778 -0.779389 0.15) (-0.729242 -0.687778 0.15) (-0.730406093 -0.5517711852 0.15) (-0.7298520597 -0.5967946397 0.15) (-0.6877373294 -0.5978621343 0.15) (-0.814971 -0.596074 0.15) (-0.7310321117 -0.5069830417 0.15) (-0.7324965028 -0.3733627372 0.15) (-0.732130809 -0.4178430757 0.15) (-0.6905426294 -0.4206394681 0.15) (-0.8159003199 -0.4140847859 0.15) (-0.7327176166 -0.3288657729 0.15) (-0.732284915 -0.1947692349 0.15) (-0.7326071125 -0.2396109655 0.15) (-0.6907492291 -0.2436419403 0.15) (-0.8165742056 -0.2335035604 0.15) (-0.7318343032 -0.1497407905 0.15) (-0.7298778063 -0.01333277459 0.15) (-0.7305948441 -0.05903646387 0.15) (-0.6880230054 -0.0636028218 0.15) (-0.815747055 -0.0518528107 0.15) (-0.7291737275 0.03261242796 0.15) (-0.7273659271 0.1718394028 0.15) (-0.7278819052 0.1252111046 0.15) (-0.6845148846 0.1207994351 0.15) (-0.814416607 0.1320596629 0.15) (-0.7270033835 0.2186575877 0.15) (-0.7268336277 0.3599111354 0.15) (-0.7267317195 0.3127369905 0.15) (-0.6828188581 0.3092026933 0.15) (-0.8140830228 0.3178497729 0.15) (-0.7271066841 0.4071048844 0.15) (-0.7284334601 0.548201181 0.15) (-0.7279567501 0.501314692 0.15) (-0.684113911 0.4993269548 0.15) (-0.8148543283 0.5035989864 0.15) (-0.7288775253 0.5948542722 0.15) (-0.729175 0.733074 0.15) (-0.729243 0.687221 0.15) (-0.6862839043 0.6870457597 0.15) (-0.814875 0.687268 0.15) (-0.729129 0.778979 0.15) (-0.72839 0.918285 0.15) (-0.728927 0.871522 0.15) (-0.685475 0.872713 0.15) (-0.814686 0.87063 0.15) (-0.557431 -0.871881 0.15) (-0.55714 -0.918199 0.15) (-0.5589032747 -0.7351740537 0.15) (-0.5580532611 -0.7800217084 0.15) (-0.5155160499 -0.7813861332 0.15) (-0.643444 -0.779476 0.15) (-0.5600568921 -0.6909653994 0.15) (-0.5639628734 -0.5608399047 0.15) (-0.5627087439 -0.6039074529 0.15) (-0.5213037904 -0.606755239 0.15) (-0.6458743918 -0.5994178586 0.15) (-0.5650491756 -0.5179320058 0.15) (-0.5666050943 -0.3891427564 0.15) (-0.5664085612 -0.4321765804 0.15) (-0.5250835177 -0.4367940397 0.15) (-0.6490907336 -0.4240071443 0.15) (-0.5664812804 -0.3459034546 0.15) (-0.5642930267 -0.214433869 0.15) (-0.5652923175 -0.2585849641 0.15) (-0.5234123267 -0.2640712615 0.15) (-0.6489314502 -0.2482261023 0.15) (-0.5630967339 -0.1699260619 0.15) (-0.5587230231 -0.03419544231 0.15) (-0.5602607305 -0.0798098936 0.15) (-0.5176513032 -0.08549082624 0.15) (-0.645446222 -0.06868600662 0.15) (-0.5571880835 0.01179252934 0.15) (-0.5530249756 0.1520092949 0.15) (-0.55428787 0.10489512 0.15) (-0.5109269361 0.09922372117 0.15) (-0.6411093254 0.1158514177 0.15) (-0.5519681114 0.1994932184 0.15) (-0.5503549304 0.3439239662 0.15) (-0.5506005454 0.295487589 0.15) (-0.5065165003 0.2902777381 0.15) (-0.6387973865 0.3050883116 0.15) (-0.5504366739 0.3925777607 0.15) (-0.5524279326 0.5393047125 0.15) (-0.551501758 0.490251503 0.15) (-0.5071209573 0.4867430391 0.15) (-0.6400583126 0.4967858513 0.15) (-0.5534983112 0.5885748177 0.15) (-0.5549296579 0.734711184 0.15) (-0.5547063616 0.6866208312 0.15) (-0.50975679 0.6855952005 0.15) (-0.643042772 0.6867110764 0.15) (-0.5554422888 0.7817631007 0.15) (-0.555747 0.919642 0.15) (-0.555785 0.873881 0.15) (-0.512818 0.874046 0.15) (-0.641892 0.873428 0.15) (-0.3840406974 -0.8755502801 0.15) (-0.3834109585 -0.9204954051 0.15) (-0.3889194222 -0.7458154335 0.15) (-0.3869306664 -0.7883329965 0.15) (-0.34492553 -0.7902379232 0.15) (-0.4723461723 -0.7843227822 0.15) (-0.3910720881 -0.7038289963 0.15) (-0.3981703888 -0.5773499709 0.15) (-0.3958873213 -0.620224111 0.15) (-0.3532119126 -0.6250619726 0.15) (-0.4799366171 -0.6100161284 0.15) (-0.3995945501 -0.5355351625 0.15) (-0.4003740944 -0.4096520771 0.15) (-0.4006339072 -0.4518413456 0.15) (-0.3585945842 -0.4583108431 0.15) (-0.4837126254 -0.4416212291 0.15) (-0.3996896794 -0.366965561 0.15) (-0.3956028332 -0.2356328002 0.15) (-0.397247165 -0.279865593 0.15) (-0.3549327337 -0.2846896202 0.15) (-0.4814584074 -0.2695469647 0.15) (-0.3937758256 -0.1909786872 0.15) (-0.3876446481 -0.05493501909 0.15) (-0.389757092 -0.100580408 0.15) (-0.3470990575 -0.1042940267 0.15) (-0.4750310382 -0.09098394852 0.15) (-0.3855167027 -0.009022432668 0.15) (-0.379365741 0.131214183 0.15) (-0.3813330259 0.08385434694 0.15) (-0.3383444344 0.08024799447 0.15) (-0.4676318438 0.09367347379 0.15) (-0.3775365197 0.1792050753 0.15) (-0.3735949986 0.3251589522 0.15) (-0.3745792464 0.275815969 0.15) (-0.3307995283 0.2714946962 0.15) (-0.4625055802 0.2851884692 0.15) (-0.372732762 0.3756897323 0.15) (-0.3718712949 0.5278676969 0.15) (-0.3712814765 0.4774857821 0.15) (-0.3265330854 0.4731197093 0.15) (-0.4625406265 0.4839812772 0.15) (-0.3731148265 0.578223886 0.15) (-0.3784167675 0.7282358621 0.15) (-0.3765211941 0.6785669775 0.15) (-0.3321382925 0.6757484592 0.15) (-0.4652757774 0.6836203138 0.15) (-0.380256451 0.7773639486 0.15) (-0.3837290426 0.9201420432 0.15) (-0.3830886215 0.8734199865 0.15) (-0.3395185173 0.8728086729 0.15) (-0.4697520003 0.8740866306 0.15) (-0.2138843472 -0.8793372196 0.15) (-0.2122388049 -0.9225710767 0.15) (-0.2213378124 -0.7559295861 0.15) (-0.2187550259 -0.796334173 0.15) (-0.1763122359 -0.7980640821 0.15) (-0.3029398597 -0.792243871 0.15) (-0.2238172039 -0.7160353496 0.15) (-0.2290371264 -0.5970725036 0.15) (-0.2277727361 -0.6368448253 0.15) (-0.1857120404 -0.6403517337 0.15) (-0.311355384 -0.6291922414 0.15) (-0.2297426553 -0.5568955621 0.15) (-0.2294997422 -0.4318978295 0.15) (-0.2298018223 -0.4744295045 0.15) (-0.1871068918 -0.4784810514 0.15) (-0.3157547905 -0.4647420183 0.15) (-0.2287884719 -0.3881379796 0.15) (-0.2248314312 -0.2507943101 0.15) (-0.226398991 -0.2974084885 0.15) (-0.1826163215 -0.3009573991 0.15) (-0.3123668826 -0.2894843731 0.15) (-0.2230352558 -0.204237763 0.15) (-0.1955137619 -0.0665128793 0.15) (-0.1966092814 -0.08941170869 0.15) (-0.3044220814 -0.1070604294 0.15) (-0.1944050122 -0.04348517398 0.15) (-0.2068626765 0.1212259932 0.15) (-0.2096039308 0.07458692443 0.15) (-0.166366791 0.07369186843 0.15) (-0.2954158454 0.07764272852 0.15) (-0.2038696124 0.1679812618 0.15) (-0.195815846 0.3112441263 0.15) (-0.1976634863 0.2631681559 0.15) (-0.286762651 0.2683363653 0.15) (-0.1946648589 0.3601162409 0.15) (-0.1945691744 0.5116163617 0.15) (-0.1940356548 0.4604073288 0.15) (-0.1501420166 0.456725392 0.15) (-0.2821833646 0.468697157 0.15) (-0.1956537195 0.5633091944 0.15) (-0.201222589 0.7194927547 0.15) (-0.1990212641 0.667307282 0.15) (-0.1545073643 0.6649061433 0.15) (-0.2878014125 0.6728478691 0.15) (-0.2034248828 0.770553316 0.15) (-0.209358331 0.9190185173 0.15) (-0.2076832576 0.8704898937 0.15) (-0.1639013272 0.8693002599 0.15) (-0.2956506199 0.8721545975 0.15) (-0.0432221247 -0.8839356521 0.15) (-0.04097224732 -0.9256155599 0.15) (-0.05149712123 -0.7649877729 0.15) (-0.04870285511 -0.8038623375 0.15) (-0.005859423181 -0.8052665306 0.15) (-0.1340820265 -0.8001474563 0.15) (-0.05406115315 -0.726521457 0.15) (-0.05891638314 -0.6105823951 0.15) (-0.05786904245 -0.6496127553 0.15) (-0.01504919528 -0.6521039166 0.15) (-0.1431963478 -0.6432017968 0.15) (-0.05942122455 -0.5707878362 0.15) (-0.05732633719 -0.444818836 0.15) (-0.05874180466 -0.4879906022 0.15) (-0.01524158867 -0.4908260425 0.15) (-0.1444821288 -0.4820160507 0.15) (-0.05548799638 -0.4003376648 0.15) (-0.02877170981 -0.2874735255 0.15) (-0.138574278 -0.3041549485 0.15) (-0.09339091736 -0.2608974899 0.15) (-0.09272602774 -0.2378437321 0.15) (-0.1144886375 -0.2364977128 0.15) (-0.1153083741 -0.2594699085 0.15) (-0.1137229617 -0.1649592083 0.15) (-0.1142488804 -0.1887717504 0.15) (-0.09181506949 -0.191216415 0.15) (-0.1782176317 -0.1606383697 0.15) (-0.1790692865 -0.1841265266 0.15) (-0.1576462533 -0.1853270012 0.15) (-0.1566849647 -0.1622638256 0.15) (-0.08731836579 -0.04605527888 0.15) (-0.1089135539 -0.04603587649 0.15) (-0.1101487725 -0.07035595567 0.15) (-0.1043280125 0.0254491613 0.15) (-0.1059577831 0.001770005152 0.15) (-0.1692554086 0.02669629117 0.15) (-0.1705601905 0.00332011566 0.15) (-0.149139414 0.002549850333 0.15) (-0.1477397482 0.02610796195 0.15) (-0.0738206002 0.1414238336 0.15) (-0.0954956341 0.1422840646 0.15) (-0.09707288179 0.1192573347 0.15) (-0.07018149342 0.2098930025 0.15) (-0.1133277086 0.2117257648 0.15) (-0.09417766421 0.1651661293 0.15) (-0.07260645096 0.1642478373 0.15) (-0.156669179 0.213540297 0.15) (-0.01995006773 0.3478499447 0.15) (-0.01813826214 0.4984746293 0.15) (-0.01803184802 0.4471533054 0.15) (0.0254451295 0.4441550687 0.15) (-0.1061057977 0.4535226115 0.15) (-0.01894034197 0.5506537422 0.15) (-0.02480740089 0.7096376081 0.15) (-0.02237518926 0.6565392742 0.15) (0.02125300647 0.6541990278 0.15) (-0.110143933 0.6619094793 0.15) (-0.02751709104 0.7624220019 0.15) (-0.03540939361 0.9161827343 0.15) (-0.03302186594 0.8659470036 0.15) (0.01054038367 0.8650406378 0.15) (-0.1201941746 0.868104066 0.15) (0.1287591074 -0.8868078945 0.15) (0.1312038847 -0.9276096204 0.15) (0.120177841 -0.7708610199 0.15) (0.1230243738 -0.8087150748 0.15) (0.1659669808 -0.8097732997 0.15) (0.03711080182 -0.8063155412 0.15) (0.117611946 -0.7333709112 0.15) (0.1130465283 -0.6196677076 0.15) (0.1139417309 -0.6581073887 0.15) (0.1569242051 -0.6599902191 0.15) (0.02791472642 -0.6540189803 0.15) (0.1128419268 -0.580283292 0.15) (0.1144374567 -0.4976947377 0.15) (0.1575367527 -0.499843147 0.15) (0.02804250412 -0.4931879678 0.15) (0.07295222837 -0.4520215125 0.15) (0.07500592899 -0.4069439621 0.15) (0.0771547492 -0.3613965946 0.15) (0.05543237451 -0.360332844 0.15) (0.03372228208 -0.359267684 0.15) (-0.009762738492 -0.357081172 0.15) (0.0120306578 -0.3581974086 0.15) (0.03801642639 -0.2682308477 0.15) (0.03905152531 -0.2454802952 0.15) (0.04003323125 -0.2227241614 0.15) (0.02910214267 -0.2221553723 0.15) (0.01807435304 -0.2215448715 0.15) (-0.003846771513 -0.2203543891 0.15) (0.1003218117 0.1339505095 0.15) (0.07857888834 0.1349411661 0.15) (0.1037517235 0.2021904997 0.15) (0.08209013997 0.2032152735 0.15) (0.08089182762 0.1804455693 0.15) (0.1025907333 0.1794390169 0.15) (0.01694724943 0.2061891039 0.15) (0.01573372234 0.1834041157 0.15) (0.03755355388 0.182451795 0.15) (0.03875305107 0.2052294513 0.15) (0.1537640555 0.3379274859 0.15) (0.1561777621 0.4876733817 0.15) (0.156035363 0.4362997445 0.15) (0.199218099 0.4341049889 0.15) (0.06887423181 0.4415878786 0.15) (0.1556170957 0.5402083246 0.15) (0.1501123622 0.7016782296 0.15) (0.1525008953 0.6475479269 0.15) (0.1957472821 0.6460169782 0.15) (0.06480228286 0.6522993525 0.15) (0.1473527724 0.7556496842 0.15) (0.1387740754 0.9131755121 0.15) (0.1414759392 0.8617072586 0.15) (0.1846847147 0.8610849453 0.15) (0.05452192672 0.8637599892 0.15) (0.3006396746 -0.8888809934 0.15) (0.3031929852 -0.9289186703 0.15) (0.2919276396 -0.7755827318 0.15) (0.2947862366 -0.8125347418 0.15) (0.3376891957 -0.8134505437 0.15) (0.2089257207 -0.8107253198 0.15) (0.2893763842 -0.738960952 0.15) (0.2849739092 -0.6273241386 0.15) (0.2857991708 -0.6651969496 0.15) (0.3287154183 -0.6669197509 0.15) (0.1999079569 -0.6617611014 0.15) (0.2848489203 -0.588350946 0.15) (0.2866127963 -0.5060613573 0.15) (0.3295827994 -0.508114813 0.15) (0.2006012565 -0.5019372875 0.15) (0.2453528047 -0.4603421594 0.15) (0.2474819038 -0.4150766932 0.15) (0.2496697646 -0.369552235 0.15) (0.2281513316 -0.368544384 0.15) (0.2066309491 -0.3675354377 0.15) (0.1635326855 -0.3655057587 0.15) (0.1850927322 -0.3665226269 0.15) (0.2109968062 -0.2765871627 0.15) (0.2120862554 -0.2538762773 0.15) (0.2131771237 -0.2311774743 0.15) (0.2024014333 -0.2306622412 0.15) (0.1916297383 -0.230147201 0.15) (0.1700754574 -0.2291145925 0.15) (0.1808520984 -0.2296308727 0.15) (0.273828489 0.125620846 0.15) (0.2521729675 0.1266923819 0.15) (0.2510739156 0.1039899694 0.15) (0.2771194382 0.1937654264 0.15) (0.2554733884 0.1948465166 0.15) (0.2543733239 0.1721231285 0.15) (0.2760225148 0.1710448901 0.15) (0.1904767968 0.1980405483 0.15) (0.1893632652 0.1753077987 0.15) (0.2110346854 0.1742545174 0.15) (0.2121430782 0.1969845116 0.15) (0.3267262843 0.3290966737 0.15) (0.3292734737 0.4795819243 0.15) (0.3290703475 0.4277736824 0.15) (0.3721763408 0.4260478393 0.15) (0.2425610055 0.4318039616 0.15) (0.3287736627 0.5327024735 0.15) (0.3233856814 0.6965756484 0.15) (0.3257503499 0.6415648925 0.15) (0.3687575401 0.6407671775 0.15) (0.2392203121 0.6441920551 0.15) (0.3206287054 0.7514266758 0.15) (0.3119106504 0.9113847268 0.15) (0.314676506 0.8591778816 0.15) (0.3576897664 0.8590624823 0.15) (0.2281514748 0.8601900615 0.15) (0.4722883011 -0.8911199713 0.15) (0.4749415049 -0.9303645172 0.15) (0.4634536622 -0.7804809684 0.15) (0.4663259285 -0.8165365926 0.15) (0.50921444 -0.8175996914 0.15) (0.3805607655 -0.8144520811 0.15) (0.4609141842 -0.7447144212 0.15) (0.456655276 -0.6350512493 0.15) (0.4574187829 -0.6723959499 0.15) (0.5003325302 -0.6742455215 0.15) (0.3716061448 -0.6687228925 0.15) (0.4565993635 -0.5964439647 0.15) (0.4585100744 -0.5143487449 0.15) (0.5014996854 -0.5164233846 0.15) (0.37254429 -0.5101913187 0.15) (0.4173182957 -0.4684655861 0.15) (0.4194754925 -0.4230710012 0.15) (0.4216606324 -0.3775614291 0.15) (0.4001537513 -0.3765631463 0.15) (0.3786519127 -0.3755641058 0.15) (0.335672304 -0.3735651844 0.15) (0.3571570659 -0.3745654028 0.15) (0.3830062106 -0.2846893589 0.15) (0.3840911685 -0.2620092927 0.15) (0.3733420609 -0.2615033524 0.15) (0.3738842987 -0.2501683135 0.15) (0.384632311 -0.2506762033 0.15) (0.3416632832 -0.2486447543 0.15) (0.3523943153 -0.2491518243 0.15) (0.4467821088 0.1167952756 0.15) (0.425217702 0.1179084661 0.15) (0.4499859248 0.1848769846 0.15) (0.4284247557 0.1859950246 0.15) (0.4273585689 0.163289023 0.15) (0.4489187875 0.1621720301 0.15) (0.3636557822 0.1893622814 0.15) (0.3625773201 0.1666508655 0.15) (0.384168792 0.1655383707 0.15) (0.3852451599 0.1882478853 0.15) (0.4991118212 0.3209785389 0.15) (0.5012214664 0.4742669219 0.15) (0.5011603165 0.4214663925 0.15) (0.544013477 0.4202803036 0.15) (0.4152170791 0.4242860119 0.15) (0.5005876395 0.5283950182 0.15) (0.4949194193 0.6950454961 0.15) (0.4973306092 0.6392140864 0.15) (0.5400234503 0.6391459644 0.15) (0.411736333 0.6397870236 0.15) (0.4921592074 0.7506129984 0.15) (0.4837198511 0.9116398022 0.15) (0.486342058 0.8592559717 0.15) (0.5290795647 0.8596167151 0.15) (0.4007054335 0.858741784 0.15) (0.6437957111 -0.8939668298 0.15) (0.6465613954 -0.9323268752 0.15) (0.6348523833 -0.7860770056 0.15) (0.637724185 -0.8212397589 0.15) (0.6806519995 -0.8222400375 0.15) (0.5520924456 -0.818704193 0.15) (0.6323436986 -0.7511294161 0.15) (0.6283001382 -0.6431657051 0.15) (0.6289774456 -0.6800956526 0.15) (0.6718907436 -0.6819698776 0.15) (0.5432376559 -0.6761307315 0.15) (0.6283379346 -0.6047983005 0.15) (0.6304321736 -0.52264162 0.15) (0.6734016931 -0.5247567249 0.15) (0.5444858777 -0.5185016185 0.15) (0.5893417286 -0.4765120216 0.15) (0.591524541 -0.4309949017 0.15) (0.5937108243 -0.3854823814 0.15) (0.5722082624 -0.3844983234 0.15) (0.5507008027 -0.3835120266 0.15) (0.5076911186 -0.38153468 0.15) (0.5291944383 -0.3825237804 0.15) (0.555047585 -0.2927100019 0.15) (0.5561286163 -0.2700697928 0.15) (0.545375224 -0.2695696525 0.15) (0.5459142586 -0.2582594881 0.15) (0.5566676026 -0.2587606272 0.15) (0.5136635052 -0.2567505119 0.15) (0.5244127575 -0.2572534557 0.15) (0.6191156427 0.1075681402 0.15) (0.5975816765 0.1087519449 0.15) (0.6222356872 0.1756358726 0.15) (0.600725018 0.1768045363 0.15) (0.599679242 0.1541065598 0.15) (0.6212032198 0.1529232373 0.15) (0.5361277967 0.1803076689 0.15) (0.5350699865 0.1576092722 0.15) (0.5566042558 0.1564524843 0.15) (0.5576552189 0.179154215 0.15) (0.67085135 0.314157237 0.15) (0.6721603603 0.4718258993 0.15) (0.6723698481 0.417624796 0.15) (0.714963183 0.4175679016 0.15) (0.5868097159 0.4195370994 0.15) (0.6713024531 0.5272646264 0.15) (0.6653176271 0.6966486542 0.15) (0.6677800183 0.6401076501 0.15) (0.710301513 0.6406017706 0.15) (0.5827329367 0.6390333857 0.15) (0.6625864616 0.7526354562 0.15) (0.6547669855 0.9133210737 0.15) (0.6570815258 0.8613136218 0.15) (0.6998206128 0.861726469 0.15) (0.5718710339 0.8597799541 0.15) (0.8151302859 -0.8975052497 0.15) (0.8180232072 -0.9348756252 0.15) (0.806066793 -0.7925340177 0.15) (0.8089378597 -0.8267751427 0.15) (0.8521012329 -0.8271539867 0.15) (0.7234828412 -0.8235440379 0.15) (0.8035944132 -0.7584050975 0.15) (0.799815419 -0.6519512303 0.15) (0.8003860478 -0.6885618593 0.15) (0.8432967007 -0.6905266878 0.15) (0.7147620996 -0.6840229196 0.15) (0.799971072 -0.6136968342 0.15) (0.8023041605 -0.5311270292 0.15) (0.8452792885 -0.5332628706 0.15) (0.7163791223 -0.5268640814 0.15) (0.7613147353 -0.4844828831 0.15) (0.763502748 -0.438872332 0.15) (0.7420043742 -0.4378844716 0.15) (0.765688012 -0.3933187147 0.15) (0.7441872548 -0.3923387485 0.15) (0.7430962485 -0.4151026205 0.15) (0.764595814 -0.4160865338 0.15) (0.6796937317 -0.3894042782 0.15) (0.7216055279 -0.4141221377 0.15) (0.7226983872 -0.3913613587 0.15) (0.7011955359 -0.3903832937 0.15) (0.727035119 -0.3005808744 0.15) (0.7281150756 -0.2779836634 0.15) (0.7173602022 -0.2774934633 0.15) (0.7178947454 -0.2662141181 0.15) (0.7286505694 -0.2667053653 0.15) (0.6856396453 -0.2647329647 0.15) (0.6963853363 -0.2652267261 0.15) (0.7910258609 0.09778477112 0.15) (0.7695561168 0.09905457897 0.15) (0.7941288909 0.1658733483 0.15) (0.751194996 0.1683836602 0.15) (0.7491121442 0.1229812802 0.15) (0.7705925036 0.121723975 0.15) (0.7920593477 0.1204563095 0.15) (0.708223586 0.1708427215 0.15) (0.7061390259 0.125446431 0.15) (0.7276334311 0.1242104733 0.15) (0.8420244027 0.3095469013 0.15) (0.8422414358 0.473233986 0.15) (0.8427944087 0.4171301978 0.15) (0.8853559953 0.4171181706 0.15) (0.7577065888 0.4168052718 0.15) (0.841248504 0.529400002 0.15) (0.8349797063 0.7008750781 0.15) (0.8374388225 0.6439869125 0.15) (0.8796537751 0.6457542426 0.15) (0.7526278243 0.641925011 0.15) (0.8323601387 0.7568087859 0.15) (0.8256709305 0.9155150149 0.15) (0.8274923892 0.8644820094 0.15) (0.8699575801 0.8656629236 0.15) (0.7422324768 0.8630296465 0.15) (0.9871459483 -0.9003814864 0.15) (0.9901774544 -0.9366200374 0.15) (0.9779897948 -0.7985356201 0.15) (0.9808409725 -0.8318258157 0.15) (1.023248553 -0.830208079 0.15) (0.8945379681 -0.8297428768 0.15) (0.9755820943 -0.7652098126 0.15) (0.9721939438 -0.6599484861 0.15) (0.9726078249 -0.6963897165 0.15) (1.015120775 -0.6953412176 0.15) (0.8861963558 -0.6925514475 0.15) (0.9725193585 -0.6216134148 0.15) (0.975205095 -0.5381120101 0.15) (1.017814158 -0.5369453775 0.15) (0.8882484201 -0.535425467 0.15) (0.9334255044 -0.4925799614 0.15) (0.9354894618 -0.4469053536 0.15) (0.9139738944 -0.44587962 0.15) (0.9376717226 -0.401289519 0.15) (0.9161609083 -0.4002690207 0.15) (0.9150672636 -0.4230668049 0.15) (0.9365779332 -0.4240902998 0.15) (0.8516889327 -0.3972615044 0.15) (0.8505959149 -0.4200463038 0.15) (0.8720876687 -0.4210468598 0.15) (0.8731809276 -0.3982570662 0.15) (0.8990181001 -0.3083594199 0.15) (0.8995539935 -0.2970521073 0.15) (0.8888111062 -0.2965624858 0.15) (0.8882743104 -0.3078677525 0.15) (0.889874475 -0.2740185369 0.15) (0.9006163635 -0.2745081101 0.15) (0.8576226469 -0.2725525589 0.15) (0.8683537411 -0.2730376063 0.15) (0.9111753829 -0.1024164848 0.15) (0.9005120115 -0.1016070258 0.15) (0.9124977471 -0.06892969456 0.15) (0.9018319055 -0.06812992767 0.15) (0.9013785453 -0.07932448908 0.15) (0.9120499694 -0.08011231127 0.15) (0.8800155811 -0.07777150101 0.15) (0.8804670745 -0.06659487044 0.15) (1.00611928 0.1066847245 0.15) (1.011502874 0.2549132692 0.15) (1.010045753 0.2030166035 0.15) (1.052841831 0.2019682534 0.15) (0.9246261977 0.2060847906 0.15) (1.012394091 0.3080740473 0.15) (1.01174717 0.4772815663 0.15) (1.012614036 0.4197976291 0.15) (1.054826587 0.4216434039 0.15) (0.9277597982 0.4179633071 0.15) (1.010336211 0.5353754418 0.15) (1.003874748 0.7080577924 0.15) (1.006278921 0.6514017975 0.15) (1.048596486 0.6528861562 0.15) (0.9220094056 0.6470477966 0.15) (1.00149083 0.7633757479 0.15) (0.9966694325 0.9171121921 0.15) (0.997844828 0.8678607248 0.15) (1.040395563 0.8688464566 0.15) (0.9126430125 0.8662235001 0.15) (1.159964308 -0.8958307745 0.15) (1.162789251 -0.9321726516 0.15) (1.151163909 -0.7945414687 0.15) (1.153948272 -0.8275019822 0.15) (1.197921216 -0.8250729775 0.15) (1.066589043 -0.83007802 0.15) (1.148762862 -0.7616916644 0.15) (1.145024323 -0.6587719327 0.15) (1.145616418 -0.6942725044 0.15) (1.189535903 -0.6919560554 0.15) (1.058403564 -0.6959046309 0.15) (1.145117349 -0.6215609413 0.15) (1.147201899 -0.5410075562 0.15) (1.190551459 -0.5409826371 0.15) (1.060862093 -0.5387423438 0.15) (1.105963611 -0.4957154523 0.15) (1.108173014 -0.4499401637 0.15) (1.110383208 -0.4041604856 0.15) (1.088878256 -0.4031222493 0.15) (1.067373304 -0.402084013 0.15) (1.066268183 -0.4249743515 0.15) (1.024373388 -0.4000080227 0.15) (1.023268267 -0.4228983612 0.15) (1.044773219 -0.4239365975 0.15) (1.04587834 -0.401046259 0.15) (1.071793741 -0.3105236579 0.15) (1.072898814 -0.2876343183 0.15) (1.062151332 -0.2871154413 0.15) (1.074003935 -0.2647439798 0.15) (1.063256453 -0.2642251028 0.15) (1.062703917 -0.2756697726 0.15) (1.073451399 -0.2761886496 0.15) (1.030451483 -0.2741126593 0.15) (1.041198965 -0.2746315363 0.15) (1.041751501 -0.2631868665 0.15) (1.124749577 -0.1065903802 0.15) (1.103244625 -0.105552144 0.15) (1.128064893 -0.03792036362 0.15) (1.106559941 -0.03688212736 0.15) (1.105454834 -0.05977216619 0.15) (1.126959786 -0.06081040246 0.15) (1.062454918 -0.05769617589 0.15) (1.063560025 -0.03480613705 0.15) (1.177560911 0.0995658205 0.15) (1.18185357 0.2560528017 0.15) (1.180850465 0.2017840899 0.15) (1.223533105 0.2032481732 0.15) (1.09526056 0.2012293234 0.15) (1.182323854 0.3121064324 0.15) (1.18034066 0.4869372018 0.15) (1.181546968 0.4280223212 0.15) (1.223930675 0.430663957 0.15) (1.097173801 0.4226875527 0.15) (1.178909046 0.5447300907 0.15) (1.172909034 0.715029684 0.15) (1.174995405 0.6594716231 0.15) (1.217044335 0.6631615706 0.15) (1.09061099 0.6555626773 0.15) (1.171122797 0.7692722662 0.15) (1.16818 0.91701 0.15) (1.168497614 0.8702198187 0.15) (1.211253592 0.8703723943 0.15) (1.083103718 0.8693147659 0.15) (1.335709905 -0.885869372 0.15) (1.337773273 -0.9245207624 0.15) (1.328318461 -0.7795471598 0.15) (1.330799202 -0.813793764 0.15) (1.375284827 -0.809023168 0.15) (1.24208028 -0.8219290452 0.15) (1.326038985 -0.7458949451 0.15) (1.321585049 -0.644039674 0.15) (1.322586318 -0.6785578754 0.15) (1.367305149 -0.6720005708 0.15) (1.233682832 -0.6885725509 0.15) (1.321124381 -0.6084877836 0.15) (1.322839263 -0.4935350459 0.15) (1.321794948 -0.5333484689 0.15) (1.365980689 -0.5277686063 0.15) (1.234089472 -0.5398358485 0.15) (1.324262823 -0.4522454476 0.15) (1.329975477 -0.3212852487 0.15) (1.327910326 -0.3658804547 0.15) (1.371374343 -0.3632203562 0.15) (1.241613127 -0.3646097428 0.15) (1.332118718 -0.2760943966 0.15) (1.338706864 -0.1382554681 0.15) (1.336502635 -0.1845723519 0.15) (1.379634833 -0.1829963969 0.15) (1.207444082 -0.1794128597 0.15) (1.250453986 -0.1814893322 0.15) (1.340896662 -0.09136457606 0.15) (1.346992116 0.05533313697 0.15) (1.345094624 0.005178630895 0.15) (1.38793441 0.009321912443 0.15) (1.259266888 0.002589940229 0.15) (1.348659866 0.1069772369 0.15) (1.3515429 0.2708776699 0.15) (1.351000492 0.2148507654 0.15) (1.393276052 0.2213233529 0.15) (1.266129029 0.2058484169 0.15) (1.351611227 0.3279921128 0.15) (1.349065836 0.5022179655 0.15) (1.350329226 0.4440843002 0.15) (1.392248766 0.4501634288 0.15) (1.266187604 0.4342497974 0.15) (1.347503914 0.5597983338 0.15) (1.342425809 0.724743852 0.15) (1.344021241 0.6714762962 0.15) (1.386274541 0.6747135807 0.15) (1.25943579 0.6655808751 0.15) (1.341164673 0.7758415008 0.15) (1.34028 0.916667 0.15) (1.34028 0.870833 0.15) (1.38333 0.870833 0.15) (1.254183764 0.8707881686 0.15) (1.511539262 -0.8741919775 0.15) (1.512316594 -0.917276888 0.15) (1.506995846 -0.7560094409 0.15) (1.50872594 -0.7938490906 0.15) (1.553019151 -0.7892038017 0.15) (1.419809036 -0.8039802053 0.15) (1.505242079 -0.7192681103 0.15) (1.500990671 -0.6119452381 0.15) (1.502145729 -0.6475971524 0.15) (1.547150042 -0.6385969607 0.15) (1.412174718 -0.6645366809 0.15) (1.500182296 -0.5759765991 0.15) (1.500047587 -0.4636694422 0.15) (1.499711939 -0.5020335706 0.15) (1.544545966 -0.491063815 0.15) (1.410389447 -0.5206094884 0.15) (1.500731836 -0.4242107082 0.15) (1.50443789 -0.2988876565 0.15) (1.502976841 -0.3418234283 0.15) (1.547144057 -0.3308593857 0.15) (1.415061886 -0.3582468445 0.15) (1.506055066 -0.2548188228 0.15) (1.511336488 -0.1159444268 0.15) (1.50955418 -0.1633479499 0.15) (1.552983325 -0.1525426775 0.15) (1.422867971 -0.1788390318 0.15) (1.513073551 -0.06740241765 0.15) (1.5174817 0.085254162 0.15) (1.516200516 0.03319424398 0.15) (1.558876217 0.04436145365 0.15) (1.430737664 0.01544415053 0.15) (1.518504669 0.1384346912 0.15) (1.51963528 0.3033595133 0.15) (1.519606837 0.247677904 0.15) (1.561608825 0.2581048933 0.15) (1.435466093 0.2290531287 0.15) (1.519313233 0.3593960543 0.15) (1.516652628 0.526277593 0.15) (1.51775504 0.4712190869 0.15) (1.55961833 0.4784432855 0.15) (1.434111928 0.4568417829 0.15) (1.515465136 0.5802715114 0.15) (1.51269345 0.7325145923 0.15) (1.513344236 0.6836839034 0.15) (1.555932052 0.6857958902 0.15) (1.428560399 0.6779468159 0.15) (1.5125 0.779167 0.15) (1.5125 0.916667 0.15) (1.5125 0.870833 0.15) (1.55556 0.870833 0.15) (1.42639 0.870833 0.15) (1.68472 -0.870833 0.15) (1.68472 -0.916667 0.15) (1.684017134 -0.7364098861 0.15) (1.684541253 -0.7799044544 0.15) (1.72778 -0.779167 0.15) (1.597114281 -0.7851642861 0.15) (1.683260735 -0.694300443 0.15) (1.680623755 -0.5736220289 0.15) (1.681473227 -0.6131868225 0.15) (1.725832708 -0.606406908 0.15) (1.5920734 -0.6296371653 0.15) (1.679899777 -0.534343222 0.15) (1.678905006 -0.4156874883 0.15) (1.679014877 -0.4556036018 0.15) (1.723641354 -0.4443670834 0.15) (1.589407814 -0.4794008363 0.15) (1.679024891 -0.3751535309 0.15) (1.680602623 -0.2485332128 0.15) (1.679899731 -0.2916776454 0.15) (1.724092705 -0.2781778761 0.15) (1.591378852 -0.3185399728 0.15) (1.681435483 -0.2043658802 0.15) (1.684286423 -0.06548366069 0.15) (1.683322427 -0.112843061 0.15) (1.726734264 -0.09890663565 0.15) (1.596428568 -0.140203171 0.15) (1.685203279 -0.01709184512 0.15) (1.687253631 0.1335972458 0.15) (1.686724052 0.08254531221 0.15) (1.729334219 0.09526729982 0.15) (1.601508935 0.05660023727 0.15) (1.687592123 0.1852909915 0.15) (1.687383443 0.3422664395 0.15) (1.687650304 0.2898508638 0.15) (1.729805535 0.2992767812 0.15) (1.603588183 0.2688585372 0.15) (1.68695613 0.3944253085 0.15) (1.685295604 0.546555834 0.15) (1.685837135 0.4968521468 0.15) (1.72827374 0.5008972881 0.15) (1.601551183 0.4853226309 0.15) (1.6848889 0.5949020776 0.15) (1.68472 0.733333 0.15) (1.68472 0.6875 0.15) (1.72778 0.6875 0.15) (1.598689818 0.6871295271 0.15) (1.68472 0.779167 0.15) (1.68472 0.916667 0.15) (1.68472 0.870833 0.15) (1.72778 0.870833 0.15) (1.59861 0.870833 0.15) (1.85694 -0.870833 0.15) (1.85694 -0.916667 0.15) (1.85694 -0.733333 0.15) (1.85694 -0.779167 0.15) (1.9 -0.779167 0.15) (1.77083 -0.779167 0.15) (1.85694 -0.6875 0.15) (1.856814694 -0.5507683215 0.15) (1.856931004 -0.595883984 0.15) (1.9 -0.595833 0.15) (1.769882223 -0.6010578991 0.15) (1.856613246 -0.5063486132 0.15) (1.855988842 -0.3753152022 0.15) (1.856162269 -0.4188108767 0.15) (1.899771766 -0.4143801222 0.15) (1.768063754 -0.4341955545 0.15) (1.855882118 -0.3317700294 0.15) (1.856022613 -0.1994758137 0.15) (1.855901915 -0.2439639244 0.15) (1.899506351 -0.2363457145 0.15) (1.768171868 -0.2653693583 0.15) (1.856201302 -0.1544934005 0.15) (1.856888441 -0.01627030909 0.15) (1.856656151 -0.06289222363 0.15) (1.899861069 -0.05458459606 0.15) (1.770091385 -0.08556499878 0.15) (1.857094815 0.03085388609 0.15) (1.857394971 0.174411178 0.15) (1.857358984 0.1263045559 0.15) (1.900178884 0.1327158927 0.15) (1.771956561 0.1071316157 0.15) (1.85736495 0.2225859162 0.15) (1.857034764 0.3657662958 0.15) (1.857158445 0.3184506357 0.15) (1.900016506 0.3206510167 0.15) (1.772079743 0.3074378859 0.15) (1.856950962 0.4124076353 0.15) (1.85694 0.55 0.15) (1.85694 0.504167 0.15) (1.9 0.504167 0.15) (1.770942336 0.5034142293 0.15) (1.85694 0.595833 0.15) (1.85694 0.733333 0.15) (1.85694 0.6875 0.15) (1.9 0.6875 0.15) (1.77083 0.6875 0.15) (1.85694 0.779167 0.15) (1.85694 0.916667 0.15) (1.85694 0.870833 0.15) (1.9 0.870833 0.15) (1.77083 0.870833 0.15) (2.02917 -0.870833 0.15) (2.02917 -0.916667 0.15) (2.02917 -0.733333 0.15) (2.02917 -0.779167 0.15) (2.07222 -0.779167 0.15) (1.94306 -0.779167 0.15) (2.02917 -0.6875 0.15) (2.02917 -0.55 0.15) (2.02917 -0.595833 0.15) (2.07222 -0.595833 0.15) (1.94306 -0.595833 0.15) (2.02917 -0.504167 0.15) (2.02917 -0.366667 0.15) (2.02917 -0.4125 0.15) (2.07222 -0.4125 0.15) (1.943055315 -0.4125391145 0.15) (2.02917 -0.320833 0.15) (2.02917 -0.183333 0.15) (2.02917 -0.229167 0.15) (2.07222 -0.229167 0.15) (1.942913782 -0.2313307053 0.15) (2.02917 -0.1375 0.15) (2.02917 0 0.15) (2.02917 -0.0458333 0.15) (2.07222 -0.0458333 0.15) (1.943013516 -0.04887265481 0.15) (2.02917 0.0458333 0.15) (2.02917 0.183333 0.15) (2.02917 0.1375 0.15) (2.07222 0.1375 0.15) (1.94309653 0.1365177426 0.15) (2.02917 0.229167 0.15) (2.02917 0.366667 0.15) (2.02917 0.320833 0.15) (2.07222 0.320833 0.15) (1.94306 0.320833 0.15) (2.02917 0.4125 0.15) (2.02917 0.55 0.15) (2.02917 0.504167 0.15) (2.07222 0.504167 0.15) (1.94306 0.504167 0.15) (2.02917 0.595833 0.15) (2.02917 0.733333 0.15) (2.02917 0.6875 0.15) (2.07222 0.6875 0.15) (1.94306 0.6875 0.15) (2.02917 0.779167 0.15) (2.02917 0.916667 0.15) (2.02917 0.870833 0.15) (2.07222 0.870833 0.15) (1.94306 0.870833 0.15) (2.20139 -0.870833 0.15) (2.20139 -0.916667 0.15) (2.20139 -0.733333 0.15) (2.20139 -0.779167 0.15) (2.24444 -0.779167 0.15) (2.11528 -0.779167 0.15) (2.20139 -0.6875 0.15) (2.20139 -0.55 0.15) (2.20139 -0.595833 0.15) (2.24444 -0.595833 0.15) (2.11528 -0.595833 0.15) (2.20139 -0.504167 0.15) (2.20139 -0.366667 0.15) (2.20139 -0.4125 0.15) (2.24444 -0.4125 0.15) (2.11528 -0.4125 0.15) (2.20139 -0.320833 0.15) (2.20139 -0.183333 0.15) (2.20139 -0.229167 0.15) (2.24444 -0.229167 0.15) (2.11528 -0.229167 0.15) (2.20139 -0.1375 0.15) (2.20139 0 0.15) (2.20139 -0.0458333 0.15) (2.24444 -0.0458333 0.15) (2.11528 -0.0458333 0.15) (2.20139 0.0458333 0.15) (2.20139 0.183333 0.15) (2.20139 0.1375 0.15) (2.24444 0.1375 0.15) (2.11528 0.1375 0.15) (2.20139 0.229167 0.15) (2.20139 0.366667 0.15) (2.20139 0.320833 0.15) (2.24444 0.320833 0.15) (2.11528 0.320833 0.15) (2.20139 0.4125 0.15) (2.20139 0.55 0.15) (2.20139 0.504167 0.15) (2.24444 0.504167 0.15) (2.11528 0.504167 0.15) (2.20139 0.595833 0.15) (2.20139 0.733333 0.15) (2.20139 0.6875 0.15) (2.24444 0.6875 0.15) (2.11528 0.6875 0.15) (2.20139 0.779167 0.15) (2.20139 0.916667 0.15) (2.20139 0.870833 0.15) (2.24444 0.870833 0.15) (2.11528 0.870833 0.15) (2.37361 -0.870833 0.15) (2.37361 -0.916667 0.15) (2.37361 -0.733333 0.15) (2.37361 -0.779167 0.15) (2.41667 -0.779167 0.15) (2.2875 -0.779167 0.15) (2.37361 -0.6875 0.15) (2.37361 -0.55 0.15) (2.37361 -0.595833 0.15) (2.41667 -0.595833 0.15) (2.2875 -0.595833 0.15) (2.37361 -0.504167 0.15) (2.37361 -0.366667 0.15) (2.37361 -0.4125 0.15) (2.41667 -0.4125 0.15) (2.2875 -0.4125 0.15) (2.37361 -0.320833 0.15) (2.37361 -0.183333 0.15) (2.37361 -0.229167 0.15) (2.41667 -0.229167 0.15) (2.2875 -0.229167 0.15) (2.37361 -0.1375 0.15) (2.37361 -1.38778e-17 0.15) (2.37361 -0.0458333 0.15) (2.41667 -0.0458333 0.15) (2.2875 -0.0458333 0.15) (2.37361 0.0458333 0.15) (2.37361 0.183333 0.15) (2.37361 0.1375 0.15) (2.41667 0.1375 0.15) (2.2875 0.1375 0.15) (2.37361 0.229167 0.15) (2.37361 0.366667 0.15) (2.37361 0.320833 0.15) (2.41667 0.320833 0.15) (2.2875 0.320833 0.15) (2.37361 0.4125 0.15) (2.37361 0.55 0.15) (2.37361 0.504167 0.15) (2.41667 0.504167 0.15) (2.2875 0.504167 0.15) (2.37361 0.595833 0.15) (2.37361 0.733333 0.15) (2.37361 0.6875 0.15) (2.41667 0.6875 0.15) (2.2875 0.6875 0.15) (2.37361 0.779167 0.15) (2.37361 0.916667 0.15) (2.37361 0.870833 0.15) (2.41667 0.870833 0.15) (2.2875 0.870833 0.15) (2.54583 -0.870833 0.15) (2.54583 -0.916667 0.15) (2.54583 -0.733333 0.15) (2.54583 -0.779167 0.15) (2.58889 -0.779167 0.15) (2.45972 -0.779167 0.15) (2.54583 -0.6875 0.15) (2.54583 -0.55 0.15) (2.54583 -0.595833 0.15) (2.58889 -0.595833 0.15) (2.45972 -0.595833 0.15) (2.54583 -0.504167 0.15) (2.54583 -0.366667 0.15) (2.54583 -0.4125 0.15) (2.58889 -0.4125 0.15) (2.45972 -0.4125 0.15) (2.54583 -0.320833 0.15) (2.54583 -0.183333 0.15) (2.54583 -0.229167 0.15) (2.58889 -0.229167 0.15) (2.45972 -0.229167 0.15) (2.54583 -0.1375 0.15) (2.54583 -1.85037e-17 0.15) (2.54583 -0.0458333 0.15) (2.58889 -0.0458333 0.15) (2.45972 -0.0458333 0.15) (2.54583 0.0458333 0.15) (2.54583 0.183333 0.15) (2.54583 0.1375 0.15) (2.58889 0.1375 0.15) (2.45972 0.1375 0.15) (2.54583 0.229167 0.15) (2.54583 0.366667 0.15) (2.54583 0.320833 0.15) (2.58889 0.320833 0.15) (2.45972 0.320833 0.15) (2.54583 0.4125 0.15) (2.54583 0.55 0.15) (2.54583 0.504167 0.15) (2.58889 0.504167 0.15) (2.45972 0.504167 0.15) (2.54583 0.595833 0.15) (2.54583 0.733333 0.15) (2.54583 0.6875 0.15) (2.58889 0.6875 0.15) (2.45972 0.6875 0.15) (2.54583 0.779167 0.15) (2.54583 0.916667 0.15) (2.54583 0.870833 0.15) (2.58889 0.870833 0.15) (2.45972 0.870833 0.15) (2.71806 -0.870833 0.15) (2.71806 -0.916667 0.15) (2.71806 -0.733333 0.15) (2.71806 -0.779167 0.15) (2.76111 -0.779167 0.15) (2.63194 -0.779167 0.15) (2.71806 -0.6875 0.15) (2.71806 -0.55 0.15) (2.71806 -0.595833 0.15) (2.76111 -0.595833 0.15) (2.63194 -0.595833 0.15) (2.71806 -0.504167 0.15) (2.71806 -0.366667 0.15) (2.71806 -0.4125 0.15) (2.76111 -0.4125 0.15) (2.63194 -0.4125 0.15) (2.71806 -0.320833 0.15) (2.71806 -0.183333 0.15) (2.71806 -0.229167 0.15) (2.76111 -0.229167 0.15) (2.63194 -0.229167 0.15) (2.71806 -0.1375 0.15) (2.71806 9.25186e-18 0.15) (2.71806 -0.0458333 0.15) (2.76111 -0.0458333 0.15) (2.63194 -0.0458333 0.15) (2.71806 0.0458333 0.15) (2.71806 0.183333 0.15) (2.71806 0.1375 0.15) (2.76111 0.1375 0.15) (2.63194 0.1375 0.15) (2.71806 0.229167 0.15) (2.71806 0.366667 0.15) (2.71806 0.320833 0.15) (2.76111 0.320833 0.15) (2.63194 0.320833 0.15) (2.71806 0.4125 0.15) (2.71806 0.55 0.15) (2.71806 0.504167 0.15) (2.76111 0.504167 0.15) (2.63194 0.504167 0.15) (2.71806 0.595833 0.15) (2.71806 0.733333 0.15) (2.71806 0.6875 0.15) (2.76111 0.6875 0.15) (2.63194 0.6875 0.15) (2.71806 0.779167 0.15) (2.71806 0.916667 0.15) (2.71806 0.870833 0.15) (2.76111 0.870833 0.15) (2.63194 0.870833 0.15) (2.89028 -0.870833 0.15) (2.89028 -0.916667 0.15) (2.89028 -0.733333 0.15) (2.89028 -0.779167 0.15) (2.93333 -0.779167 0.15) (2.80417 -0.779167 0.15) (2.89028 -0.6875 0.15) (2.89028 -0.55 0.15) (2.89028 -0.595833 0.15) (2.93333 -0.595833 0.15) (2.80417 -0.595833 0.15) (2.89028 -0.504167 0.15) (2.89028 -0.366667 0.15) (2.89028 -0.4125 0.15) (2.93333 -0.4125 0.15) (2.80417 -0.4125 0.15) (2.89028 -0.320833 0.15) (2.89028 -0.183333 0.15) (2.89028 -0.229167 0.15) (2.93333 -0.229167 0.15) (2.80417 -0.229167 0.15) (2.89028 -0.1375 0.15) (2.89028 1.85037e-17 0.15) (2.89028 -0.0458333 0.15) (2.93333 -0.0458333 0.15) (2.80417 -0.0458333 0.15) (2.89028 0.0458333 0.15) (2.89028 0.183333 0.15) (2.89028 0.1375 0.15) (2.93333 0.1375 0.15) (2.80417 0.1375 0.15) (2.89028 0.229167 0.15) (2.89028 0.366667 0.15) (2.89028 0.320833 0.15) (2.93333 0.320833 0.15) (2.80417 0.320833 0.15) (2.89028 0.4125 0.15) (2.89028 0.55 0.15) (2.89028 0.504167 0.15) (2.93333 0.504167 0.15) (2.80417 0.504167 0.15) (2.89028 0.595833 0.15) (2.89028 0.733333 0.15) (2.89028 0.6875 0.15) (2.93333 0.6875 0.15) (2.80417 0.6875 0.15) (2.89028 0.779167 0.15) (2.89028 0.916667 0.15) (2.89028 0.870833 0.15) (2.93333 0.870833 0.15) (2.80417 0.870833 0.15) (3.0625 -0.870833 0.15) (3.0625 -0.916667 0.15) (3.0625 -0.733333 0.15) (3.0625 -0.779167 0.15) (3.10556 -0.779167 0.15) (2.97639 -0.779167 0.15) (3.0625 -0.6875 0.15) (3.0625 -0.55 0.15) (3.0625 -0.595833 0.15) (3.10556 -0.595833 0.15) (2.97639 -0.595833 0.15) (3.0625 -0.504167 0.15) (3.0625 -0.366667 0.15) (3.0625 -0.4125 0.15) (3.10556 -0.4125 0.15) (2.97639 -0.4125 0.15) (3.0625 -0.320833 0.15) (3.0625 -0.183333 0.15) (3.0625 -0.229167 0.15) (3.10556 -0.229167 0.15) (2.97639 -0.229167 0.15) (3.0625 -0.1375 0.15) (3.0625 4.62593e-18 0.15) (3.0625 -0.0458333 0.15) (3.10556 -0.0458333 0.15) (2.97639 -0.0458333 0.15) (3.0625 0.0458333 0.15) (3.0625 0.183333 0.15) (3.0625 0.1375 0.15) (3.10556 0.1375 0.15) (2.97639 0.1375 0.15) (3.0625 0.229167 0.15) (3.0625 0.366667 0.15) (3.0625 0.320833 0.15) (3.10556 0.320833 0.15) (2.97639 0.320833 0.15) (3.0625 0.4125 0.15) (3.0625 0.55 0.15) (3.0625 0.504167 0.15) (3.10556 0.504167 0.15) (2.97639 0.504167 0.15) (3.0625 0.595833 0.15) (3.0625 0.733333 0.15) (3.0625 0.6875 0.15) (3.10556 0.6875 0.15) (2.97639 0.6875 0.15) (3.0625 0.779167 0.15) (3.0625 0.916667 0.15) (3.0625 0.870833 0.15) (3.10556 0.870833 0.15) (2.97639 0.870833 0.15) (3.23472 -0.870833 0.15) (3.23472 -0.916667 0.15) (3.23472 -0.733333 0.15) (3.23472 -0.779167 0.15) (3.27778 -0.779167 0.15) (3.14861 -0.779167 0.15) (3.23472 -0.6875 0.15) (3.23472 -0.55 0.15) (3.23472 -0.595833 0.15) (3.27778 -0.595833 0.15) (3.14861 -0.595833 0.15) (3.23472 -0.504167 0.15) (3.23472 -0.366667 0.15) (3.23472 -0.4125 0.15) (3.27778 -0.4125 0.15) (3.14861 -0.4125 0.15) (3.23472 -0.320833 0.15) (3.23472 -0.183333 0.15) (3.23472 -0.229167 0.15) (3.27778 -0.229167 0.15) (3.14861 -0.229167 0.15) (3.23472 -0.1375 0.15) (3.23472 0 0.15) (3.23472 -0.0458333 0.15) (3.27778 -0.0458333 0.15) (3.14861 -0.0458333 0.15) (3.23472 0.0458333 0.15) (3.23472 0.183333 0.15) (3.23472 0.1375 0.15) (3.27778 0.1375 0.15) (3.14861 0.1375 0.15) (3.23472 0.229167 0.15) (3.23472 0.366667 0.15) (3.23472 0.320833 0.15) (3.27778 0.320833 0.15) (3.14861 0.320833 0.15) (3.23472 0.4125 0.15) (3.23472 0.55 0.15) (3.23472 0.504167 0.15) (3.27778 0.504167 0.15) (3.14861 0.504167 0.15) (3.23472 0.595833 0.15) (3.23472 0.733333 0.15) (3.23472 0.6875 0.15) (3.27778 0.6875 0.15) (3.14861 0.6875 0.15) (3.23472 0.779167 0.15) (3.23472 0.916667 0.15) (3.23472 0.870833 0.15) (3.27778 0.870833 0.15) (3.14861 0.870833 0.15) (3.40694 -0.870833 0.15) (3.40694 -0.916667 0.15) (3.40694 -0.733333 0.15) (3.40694 -0.779167 0.15) (3.45 -0.779167 0.15) (3.32083 -0.779167 0.15) (3.40694 -0.6875 0.15) (3.40694 -0.55 0.15) (3.40694 -0.595833 0.15) (3.45 -0.595833 0.15) (3.32083 -0.595833 0.15) (3.40694 -0.504167 0.15) (3.40694 -0.366667 0.15) (3.40694 -0.4125 0.15) (3.45 -0.4125 0.15) (3.32083 -0.4125 0.15) (3.40694 -0.320833 0.15) (3.40694 -0.183333 0.15) (3.40694 -0.229167 0.15) (3.45 -0.229167 0.15) (3.32083 -0.229167 0.15) (3.40694 -0.1375 0.15) (3.40694 0 0.15) (3.40694 -0.0458333 0.15) (3.45 -0.0458333 0.15) (3.32083 -0.0458333 0.15) (3.40694 0.0458333 0.15) (3.40694 0.183333 0.15) (3.40694 0.1375 0.15) (3.45 0.1375 0.15) (3.32083 0.1375 0.15) (3.40694 0.229167 0.15) (3.40694 0.366667 0.15) (3.40694 0.320833 0.15) (3.45 0.320833 0.15) (3.32083 0.320833 0.15) (3.40694 0.4125 0.15) (3.40694 0.55 0.15) (3.40694 0.504167 0.15) (3.45 0.504167 0.15) (3.32083 0.504167 0.15) (3.40694 0.595833 0.15) (3.40694 0.733333 0.15) (3.40694 0.6875 0.15) (3.45 0.6875 0.15) (3.32083 0.6875 0.15) (3.40694 0.779167 0.15) (3.40694 0.916667 0.15) (3.40694 0.870833 0.15) (3.45 0.870833 0.15) (3.32083 0.870833 0.15) (3.57917 -0.870833 0.15) (3.57917 -0.916667 0.15) (3.57917 -0.733333 0.15) (3.57917 -0.779167 0.15) (3.62222 -0.779167 0.15) (3.49306 -0.779167 0.15) (3.57917 -0.6875 0.15) (3.57917 -0.55 0.15) (3.57917 -0.595833 0.15) (3.62222 -0.595833 0.15) (3.49306 -0.595833 0.15) (3.57917 -0.504167 0.15) (3.57917 -0.366667 0.15) (3.57917 -0.4125 0.15) (3.62222 -0.4125 0.15) (3.49306 -0.4125 0.15) (3.57917 -0.320833 0.15) (3.57917 -0.183333 0.15) (3.57917 -0.229167 0.15) (3.62222 -0.229167 0.15) (3.49306 -0.229167 0.15) (3.57917 -0.1375 0.15) (3.57917 0 0.15) (3.57917 -0.0458333 0.15) (3.62222 -0.0458333 0.15) (3.49306 -0.0458333 0.15) (3.57917 0.0458333 0.15) (3.57917 0.183333 0.15) (3.57917 0.1375 0.15) (3.62222 0.1375 0.15) (3.49306 0.1375 0.15) (3.57917 0.229167 0.15) (3.57917 0.366667 0.15) (3.57917 0.320833 0.15) (3.62222 0.320833 0.15) (3.49306 0.320833 0.15) (3.57917 0.4125 0.15) (3.57917 0.55 0.15) (3.57917 0.504167 0.15) (3.62222 0.504167 0.15) (3.49306 0.504167 0.15) (3.57917 0.595833 0.15) (3.57917 0.733333 0.15) (3.57917 0.6875 0.15) (3.62222 0.6875 0.15) (3.49306 0.6875 0.15) (3.57917 0.779167 0.15) (3.57917 0.916667 0.15) (3.57917 0.870833 0.15) (3.62222 0.870833 0.15) (3.49306 0.870833 0.15) (3.75139 -0.870833 0.15) (3.75139 -0.916667 0.15) (3.75139 -0.733333 0.15) (3.75139 -0.779167 0.15) (3.79444 -0.779167 0.15) (3.66528 -0.779167 0.15) (3.75139 -0.6875 0.15) (3.75139 -0.55 0.15) (3.75139 -0.595833 0.15) (3.79444 -0.595833 0.15) (3.66528 -0.595833 0.15) (3.75139 -0.504167 0.15) (3.75139 -0.366667 0.15) (3.75139 -0.4125 0.15) (3.79444 -0.4125 0.15) (3.66528 -0.4125 0.15) (3.75139 -0.320833 0.15) (3.75139 -0.183333 0.15) (3.75139 -0.229167 0.15) (3.79444 -0.229167 0.15) (3.66528 -0.229167 0.15) (3.75139 -0.1375 0.15) (3.75139 -6.93889e-18 0.15) (3.75139 -0.0458333 0.15) (3.79444 -0.0458333 0.15) (3.66528 -0.0458333 0.15) (3.75139 0.0458333 0.15) (3.75139 0.183333 0.15) (3.75139 0.1375 0.15) (3.79444 0.1375 0.15) (3.66528 0.1375 0.15) (3.75139 0.229167 0.15) (3.75139 0.366667 0.15) (3.75139 0.320833 0.15) (3.79444 0.320833 0.15) (3.66528 0.320833 0.15) (3.75139 0.4125 0.15) (3.75139 0.55 0.15) (3.75139 0.504167 0.15) (3.79444 0.504167 0.15) (3.66528 0.504167 0.15) (3.75139 0.595833 0.15) (3.75139 0.733333 0.15) (3.75139 0.6875 0.15) (3.79444 0.6875 0.15) (3.66528 0.6875 0.15) (3.75139 0.779167 0.15) (3.75139 0.916667 0.15) (3.75139 0.870833 0.15) (3.79444 0.870833 0.15) (3.66528 0.870833 0.15) (3.92361 -0.870833 0.15) (3.92361 -0.916667 0.15) (3.92361 -0.733333 0.15) (3.92361 -0.779167 0.15) (3.96667 -0.779167 0.15) (3.8375 -0.779167 0.15) (3.92361 -0.6875 0.15) (3.92361 -0.55 0.15) (3.92361 -0.595833 0.15) (3.96667 -0.595833 0.15) (3.8375 -0.595833 0.15) (3.92361 -0.504167 0.15) (3.92361 -0.366667 0.15) (3.92361 -0.4125 0.15) (3.96667 -0.4125 0.15) (3.8375 -0.4125 0.15) (3.92361 -0.320833 0.15) (3.92361 -0.183333 0.15) (3.92361 -0.229167 0.15) (3.96667 -0.229167 0.15) (3.8375 -0.229167 0.15) (3.92361 -0.1375 0.15) (3.92361 -9.25186e-18 0.15) (3.92361 -0.0458333 0.15) (3.96667 -0.0458333 0.15) (3.8375 -0.0458333 0.15) (3.92361 0.0458333 0.15) (3.92361 0.183333 0.15) (3.92361 0.1375 0.15) (3.96667 0.1375 0.15) (3.8375 0.1375 0.15) (3.92361 0.229167 0.15) (3.92361 0.366667 0.15) (3.92361 0.320833 0.15) (3.96667 0.320833 0.15) (3.8375 0.320833 0.15) (3.92361 0.4125 0.15) (3.92361 0.55 0.15) (3.92361 0.504167 0.15) (3.96667 0.504167 0.15) (3.8375 0.504167 0.15) (3.92361 0.595833 0.15) (3.92361 0.733333 0.15) (3.92361 0.6875 0.15) (3.96667 0.6875 0.15) (3.8375 0.6875 0.15) (3.92361 0.779167 0.15) (3.92361 0.916667 0.15) (3.92361 0.870833 0.15) (3.96667 0.870833 0.15) (3.8375 0.870833 0.15) (4.09583 -0.870833 0.15) (4.09583 -0.916667 0.15) (4.09583 -0.733333 0.15) (4.09583 -0.779167 0.15) (4.13889 -0.779167 0.15) (4.00972 -0.779167 0.15) (4.09583 -0.6875 0.15) (4.09583 -0.55 0.15) (4.09583 -0.595833 0.15) (4.13889 -0.595833 0.15) (4.00972 -0.595833 0.15) (4.09583 -0.504167 0.15) (4.09583 -0.366667 0.15) (4.09583 -0.4125 0.15) (4.13889 -0.4125 0.15) (4.00972 -0.4125 0.15) (4.09583 -0.320833 0.15) (4.09583 -0.183333 0.15) (4.09583 -0.229167 0.15) (4.13889 -0.229167 0.15) (4.00972 -0.229167 0.15) (4.09583 -0.1375 0.15) (4.09583 -1.61908e-17 0.15) (4.09583 -0.0458333 0.15) (4.13889 -0.0458333 0.15) (4.00972 -0.0458333 0.15) (4.09583 0.0458333 0.15) (4.09583 0.183333 0.15) (4.09583 0.1375 0.15) (4.13889 0.1375 0.15) (4.00972 0.1375 0.15) (4.09583 0.229167 0.15) (4.09583 0.366667 0.15) (4.09583 0.320833 0.15) (4.13889 0.320833 0.15) (4.00972 0.320833 0.15) (4.09583 0.4125 0.15) (4.09583 0.55 0.15) (4.09583 0.504167 0.15) (4.13889 0.504167 0.15) (4.00972 0.504167 0.15) (4.09583 0.595833 0.15) (4.09583 0.733333 0.15) (4.09583 0.6875 0.15) (4.13889 0.6875 0.15) (4.00972 0.6875 0.15) (4.09583 0.779167 0.15) (4.09583 0.916667 0.15) (4.09583 0.870833 0.15) (4.13889 0.870833 0.15) (4.00972 0.870833 0.15) (4.26806 -0.870833 0.15) (4.26806 -0.916667 0.15) (4.26806 -0.733333 0.15) (4.26806 -0.779167 0.15) (4.31111 -0.779167 0.15) (4.18194 -0.779167 0.15) (4.26806 -0.6875 0.15) (4.26806 -0.55 0.15) (4.26806 -0.595833 0.15) (4.31111 -0.595833 0.15) (4.18194 -0.595833 0.15) (4.26806 -0.504167 0.15) (4.26806 -0.366667 0.15) (4.26806 -0.4125 0.15) (4.31111 -0.4125 0.15) (4.18194 -0.4125 0.15) (4.26806 -0.320833 0.15) (4.26806 -0.183333 0.15) (4.26806 -0.229167 0.15) (4.31111 -0.229167 0.15) (4.18194 -0.229167 0.15) (4.26806 -0.1375 0.15) (4.26806 9.25186e-18 0.15) (4.26806 -0.0458333 0.15) (4.31111 -0.0458333 0.15) (4.18194 -0.0458333 0.15) (4.26806 0.0458333 0.15) (4.26806 0.183333 0.15) (4.26806 0.1375 0.15) (4.31111 0.1375 0.15) (4.18194 0.1375 0.15) (4.26806 0.229167 0.15) (4.26806 0.366667 0.15) (4.26806 0.320833 0.15) (4.31111 0.320833 0.15) (4.18194 0.320833 0.15) (4.26806 0.4125 0.15) (4.26806 0.55 0.15) (4.26806 0.504167 0.15) (4.31111 0.504167 0.15) (4.18194 0.504167 0.15) (4.26806 0.595833 0.15) (4.26806 0.733333 0.15) (4.26806 0.6875 0.15) (4.31111 0.6875 0.15) (4.18194 0.6875 0.15) (4.26806 0.779167 0.15) (4.26806 0.916667 0.15) (4.26806 0.870833 0.15) (4.31111 0.870833 0.15) (4.18194 0.870833 0.15) (4.44028 -0.870833 0.15) (4.44028 -0.916667 0.15) (4.44028 -0.733333 0.15) (4.44028 -0.779167 0.15) (4.48333 -0.779167 0.15) (4.35417 -0.779167 0.15) (4.44028 -0.6875 0.15) (4.44028 -0.55 0.15) (4.44028 -0.595833 0.15) (4.48333 -0.595833 0.15) (4.35417 -0.595833 0.15) (4.44028 -0.504167 0.15) (4.44028 -0.366667 0.15) (4.44028 -0.4125 0.15) (4.48333 -0.4125 0.15) (4.35417 -0.4125 0.15) (4.44028 -0.320833 0.15) (4.44028 -0.183333 0.15) (4.44028 -0.229167 0.15) (4.48333 -0.229167 0.15) (4.35417 -0.229167 0.15) (4.44028 -0.1375 0.15) (4.44028 -1.27213e-17 0.15) (4.44028 -0.0458333 0.15) (4.48333 -0.0458333 0.15) (4.35417 -0.0458333 0.15) (4.44028 0.0458333 0.15) (4.44028 0.183333 0.15) (4.44028 0.1375 0.15) (4.48333 0.1375 0.15) (4.35417 0.1375 0.15) (4.44028 0.229167 0.15) (4.44028 0.366667 0.15) (4.44028 0.320833 0.15) (4.48333 0.320833 0.15) (4.35417 0.320833 0.15) (4.44028 0.4125 0.15) (4.44028 0.55 0.15) (4.44028 0.504167 0.15) (4.48333 0.504167 0.15) (4.35417 0.504167 0.15) (4.44028 0.595833 0.15) (4.44028 0.733333 0.15) (4.44028 0.6875 0.15) (4.48333 0.6875 0.15) (4.35417 0.6875 0.15) (4.44028 0.779167 0.15) (4.44028 0.916667 0.15) (4.44028 0.870833 0.15) (4.48333 0.870833 0.15) (4.35417 0.870833 0.15) (4.6125 -0.870833 0.15) (4.6125 -0.916667 0.15) (4.6125 -0.733333 0.15) (4.6125 -0.779167 0.15) (4.65556 -0.779167 0.15) (4.52639 -0.779167 0.15) (4.6125 -0.6875 0.15) (4.6125 -0.55 0.15) (4.6125 -0.595833 0.15) (4.65556 -0.595833 0.15) (4.52639 -0.595833 0.15) (4.6125 -0.504167 0.15) (4.6125 -0.366667 0.15) (4.6125 -0.4125 0.15) (4.65556 -0.4125 0.15) (4.52639 -0.4125 0.15) (4.6125 -0.320833 0.15) (4.6125 -0.183333 0.15) (4.6125 -0.229167 0.15) (4.65556 -0.229167 0.15) (4.52639 -0.229167 0.15) (4.6125 -0.1375 0.15) (4.6125 1.15648e-18 0.15) (4.6125 -0.0458333 0.15) (4.65556 -0.0458333 0.15) (4.52639 -0.0458333 0.15) (4.6125 0.0458333 0.15) (4.6125 0.183333 0.15) (4.6125 0.1375 0.15) (4.65556 0.1375 0.15) (4.52639 0.1375 0.15) (4.6125 0.229167 0.15) (4.6125 0.366667 0.15) (4.6125 0.320833 0.15) (4.65556 0.320833 0.15) (4.52639 0.320833 0.15) (4.6125 0.4125 0.15) (4.6125 0.55 0.15) (4.6125 0.504167 0.15) (4.65556 0.504167 0.15) (4.52639 0.504167 0.15) (4.6125 0.595833 0.15) (4.6125 0.733333 0.15) (4.6125 0.6875 0.15) (4.65556 0.6875 0.15) (4.52639 0.6875 0.15) (4.6125 0.779167 0.15) (4.6125 0.916667 0.15) (4.6125 0.870833 0.15) (4.65556 0.870833 0.15) (4.52639 0.870833 0.15) (4.78472 -0.870833 0.15) (4.78472 -0.916667 0.15) (4.78472 -0.733333 0.15) (4.78472 -0.779167 0.15) (4.82778 -0.779167 0.15) (4.69861 -0.779167 0.15) (4.78472 -0.6875 0.15) (4.78472 -0.55 0.15) (4.78472 -0.595833 0.15) (4.82778 -0.595833 0.15) (4.69861 -0.595833 0.15) (4.78472 -0.504167 0.15) (4.78472 -0.366667 0.15) (4.78472 -0.4125 0.15) (4.82778 -0.4125 0.15) (4.69861 -0.4125 0.15) (4.78472 -0.320833 0.15) (4.78472 -0.183333 0.15) (4.78472 -0.229167 0.15) (4.82778 -0.229167 0.15) (4.69861 -0.229167 0.15) (4.78472 -0.1375 0.15) (4.78472 -2.19732e-17 0.15) (4.78472 -0.0458333 0.15) (4.82778 -0.0458333 0.15) (4.69861 -0.0458333 0.15) (4.78472 0.0458333 0.15) (4.78472 0.183333 0.15) (4.78472 0.1375 0.15) (4.82778 0.1375 0.15) (4.69861 0.1375 0.15) (4.78472 0.229167 0.15) (4.78472 0.366667 0.15) (4.78472 0.320833 0.15) (4.82778 0.320833 0.15) (4.69861 0.320833 0.15) (4.78472 0.4125 0.15) (4.78472 0.55 0.15) (4.78472 0.504167 0.15) (4.82778 0.504167 0.15) (4.69861 0.504167 0.15) (4.78472 0.595833 0.15) (4.78472 0.733333 0.15) (4.78472 0.6875 0.15) (4.82778 0.6875 0.15) (4.69861 0.6875 0.15) (4.78472 0.779167 0.15) (4.78472 0.916667 0.15) (4.78472 0.870833 0.15) (4.82778 0.870833 0.15) (4.69861 0.870833 0.15) (5 -0.916667 0.15) (5 -0.870833 0.15) (4.95694 -0.870833 0.15) (4.95694 -0.916667 0.15) (5 -0.733333 0.15) (4.95694 -0.733333 0.15) (4.95694 -0.779167 0.15) (5 -0.779167 0.15) (4.87083 -0.779167 0.15) (5 -0.6875 0.15) (4.95694 -0.6875 0.15) (5 -0.55 0.15) (4.95694 -0.55 0.15) (4.95694 -0.595833 0.15) (5 -0.595833 0.15) (4.87083 -0.595833 0.15) (5 -0.504167 0.15) (4.95694 -0.504167 0.15) (5 -0.366667 0.15) (4.95694 -0.366667 0.15) (4.95694 -0.4125 0.15) (5 -0.4125 0.15) (4.87083 -0.4125 0.15) (5 -0.320833 0.15) (4.95694 -0.320833 0.15) (5 -0.183333 0.15) (4.95694 -0.183333 0.15) (4.95694 -0.229167 0.15) (5 -0.229167 0.15) (4.87083 -0.229167 0.15) (5 -0.1375 0.15) (4.95694 -0.1375 0.15) (5 0 0.15) (4.95694 -8.09538e-18 0.15) (4.95694 -0.0458333 0.15) (5 -0.0458333 0.15) (4.87083 -0.0458333 0.15) (5 0.0458333 0.15) (4.95694 0.0458333 0.15) (5 0.183333 0.15) (4.95694 0.183333 0.15) (4.95694 0.1375 0.15) (5 0.1375 0.15) (4.87083 0.1375 0.15) (5 0.229167 0.15) (4.95694 0.229167 0.15) (5 0.366667 0.15) (4.95694 0.366667 0.15) (4.95694 0.320833 0.15) (5 0.320833 0.15) (4.87083 0.320833 0.15) (5 0.4125 0.15) (4.95694 0.4125 0.15) (5 0.55 0.15) (4.95694 0.55 0.15) (4.95694 0.504167 0.15) (5 0.504167 0.15) (4.87083 0.504167 0.15) (5 0.595833 0.15) (4.95694 0.595833 0.15) (5 0.733333 0.15) (4.95694 0.733333 0.15) (4.95694 0.6875 0.15) (5 0.6875 0.15) (4.87083 0.6875 0.15) (5 0.779167 0.15) (4.95694 0.779167 0.15) (5 0.916667 0.15) (4.95694 0.916667 0.15) (4.95694 0.870833 0.15) (5 0.870833 0.15) (4.87083 0.870833 0.15) (0.1592868785 -0.2285967349 0.15) (0.148482463 -0.2280751092 0.15) (0.1268607434 -0.2270292332 0.15) (0.1257730989 -0.2497442104 0.15) (0.1376839922 -0.2275547716 0.15) (0.1246880169 -0.2724683219 0.15) (0.1426138444 0.1091972727 0.15) (0.1414691697 0.0864830465 0.15) (0.1523515084 0.08597868319 0.15) (0.1517813857 0.0746259684 0.15) (0.1408989989 0.07512933287 0.15) (0.1843100911 0.07308855546 0.15) (0.1734522068 0.07360174978 0.15) (0.009365626592 0.06940657877 0.15) (0.02040721872 0.06900565617 0.15) (0.03138585237 0.06857974052 0.15) (0.05389321727 0.07905155586 0.15) (0.05446701155 0.0904181097 0.15) (0.04225834398 0.06810989222 0.15) (0.05569820625 0.1131742124 0.15) (0.3314764866 -0.2368027418 0.15) (0.3309332017 -0.2481387313 0.15) (0.299232739 -0.2352730793 0.15) (0.2986893094 -0.2466120654 0.15) (0.3094392712 -0.2471210505 0.15) (0.3099826525 -0.2357830633 0.15) (0.2970529174 -0.2806517556 0.15) (0.308895697 -0.258463033 0.15) (0.2981446881 -0.2579549985 0.15) (0.3160467004 0.1007590428 0.15) (0.3154862424 0.0894198777 0.15) (0.3149618389 0.07808097427 0.15) (0.3257941599 0.07753597569 0.15) (0.3252520667 0.06620393328 0.15) (0.314421647 0.06674683775 0.15) (0.3577306164 0.06456081602 0.15) (0.3469095238 0.06511027833 0.15) (0.195175918 0.07257397652 0.15) (0.2277395206 0.07101285316 0.15) (0.2168921068 0.07153555362 0.15) (0.2294027847 0.1050492437 0.15) (0.2174457659 0.08287905161 0.15) (0.2282951291 0.08235525587 0.15) (0.2288699083 0.09370073769 0.15) (0.5029192954 -0.2562468103 0.15) (0.4706547994 -0.2547321647 0.15) (0.4814118977 -0.2552384909 0.15) (0.4690331422 -0.2887155 0.15) (0.4808713821 -0.2665585955 0.15) (0.4701151862 -0.2660543152 0.15) (0.4888322192 0.09185248439 0.15) (0.4877862298 0.06919156131 0.15) (0.4985554173 0.06862458162 0.15) (0.4975073476 0.0459827811 0.15) (0.49802779 0.05730185247 0.15) (0.4872606967 0.05787073338 0.15) (0.529834501 0.04427288689 0.15) (0.5303351596 0.05559691806 0.15) (0.5195781028 0.05616631559 0.15) (0.5190618486 0.04485104667 0.15) (0.3685526114 0.06400930781 0.15) (0.4009493873 0.06235211753 0.15) (0.3901288734 0.06291356588 0.15) (0.4025277226 0.09635055942 0.15) (0.3906687278 0.07424071054 0.15) (0.4014832005 0.07367855269 0.15) (0.6748969509 -0.2642393479 0.15) (0.6426531274 -0.2627527319 0.15) (0.6534038125 -0.2632467344 0.15) (0.6410399364 -0.296664392 0.15) (0.6528665965 -0.2745399668 0.15) (0.6421169102 -0.2740460125 0.15) (0.6610792191 0.08253341497 0.15) (0.6600468414 0.05988484986 0.15) (0.659023226 0.03725188036 0.15) (0.6805310639 0.03604530909 0.15) (0.702038454 0.0348087245 0.15) (0.5406235205 0.04370194624 0.15) (0.5514121061 0.04312201606 0.15) (0.5729422836 0.04196342334 0.15) (0.5739777403 0.06459281766 0.15) (0.5621778148 0.04254519268 0.15) (0.5750149331 0.08725817009 0.15) (0.8468764737 -0.2720687858 0.15) (0.8146063291 -0.2706089316 0.15) (0.8253633447 -0.2710962317 0.15) (0.8130071151 -0.3044591943 0.15) (0.8237631801 -0.3049454473 0.15) (0.8242988324 -0.2936431289 0.15) (0.8135417203 -0.2931578265 0.15) (0.8571049502 -0.1152844192 0.15) (0.856864078 -0.120916446 0.15) (0.862237801 -0.1212384664 0.15) (0.8676043707 -0.1215634954 0.15) (0.8688827826 -0.088199078 0.15) (0.8581853617 -0.08747277374 0.15) (0.8474895913 -0.08675375755 0.15) (0.8470562927 -0.09788531308 0.15) (0.8104346384 0.05119262103 0.15) (0.8114512137 0.07382492926 0.15) (0.8074169187 -0.01670494782 0.15) (0.8084052626 0.005881768761 0.15) (0.8727148792 0.001833871527 0.15) (0.8513001403 0.00320614608 0.15) (0.7235311646 0.03359988007 0.15) (0.7450228006 0.03234803744 0.15) (0.746040485 0.05500331891 0.15) (0.74704546 0.0776441965 0.15) (1.019694061 -0.2735923012 0.15) (0.9879427404 -0.2762752859 0.15) (0.9981991451 -0.2725535484 0.15) (0.9863145941 -0.310289344 0.15) (0.9965413909 -0.3068905543 0.15) (0.9970939274 -0.2954458845 0.15) (0.9868215007 -0.2989395842 0.15) (1.006004413 -0.1326572554 0.15) (1.006170385 -0.1219614857 0.15) (1.005364927 -0.1651883942 0.15) (1.005926789 -0.1541726731 0.15) (1.035976877 -0.1596653618 0.15) (1.025219262 -0.159148999 0.15) (0.8727418311 -0.1274842762 0.15) (0.8888396764 -0.12845649 0.15) (0.8834766694 -0.1281198793 0.15) (0.8894226694 -0.1119017638 0.15) (0.8785318758 -0.1166738524 0.15) (0.8783271242 -0.1222213016 0.15) (0.8836781887 -0.1225771688 0.15) (0.8890333108 -0.1229319403 0.15) (1.039844859 -0.07954797846 0.15) (1.018339907 -0.07850974219 0.15) (0.9973717271 -0.07626568774 0.15) (0.9963269686 -0.09894258877 0.15) (1.006813876 -0.1001306787 0.15) (1.006421339 -0.1111644862 0.15) (0.9958991953 -0.1100841224 0.15) (0.961302343 0.06413642097 0.15) (0.9602827435 0.04146220983 0.15) (0.9816127255 0.03995186186 0.15) (0.9826342744 0.06262497772 0.15) (0.9795030011 -0.005592387319 0.15) (0.9582074689 -0.003990594223 0.15) (1.04316016 -0.01087826149 0.15) (1.022014475 -0.00903441282 0.15) (0.8941090145 0.0004495765542 0.15) (0.9368773217 -0.002442194012 0.15) (0.9399458813 0.06559598679 0.15) (0.9389276664 0.04292971812 0.15) (-0.01351660359 -0.1854995331 0.15) (-0.0694227157 -0.1931614993 0.15) (-0.07137198554 -0.2622678981 0.15) (-0.07082661875 -0.2392013617 0.15) (-0.0141594371 -0.07539793124 0.15) (-0.01413513019 -0.08333238529 0.15) (-0.007443161004 -0.08275913367 0.15) (-0.008943765305 -0.07535658329 0.15) (-0.0138850999 -0.09043816927 0.15) (-0.008142334292 -0.09183492633 0.15) (-0.155823688 -0.1387837422 0.15) (-0.1773285915 -0.1369564903 0.15) (-0.1128537984 -0.1417097735 0.15) (-0.111156537 -0.09434031074 0.15) (-0.08959312506 -0.0963865388 0.15) (-0.01241204225 -0.06011963177 0.15) (-0.01341921307 -0.06731745712 0.15) (-0.008035649314 -0.06762580621 0.15) (-0.005450191834 -0.06126678609 0.15) (-0.03181939078 0.1167206794 0.15) (-0.03312235388 0.09388194144 0.15) (-0.03464493743 0.07092365509 0.15) (-0.01267461605 0.07017631586 0.15) (-0.001685108746 0.06978691834 0.15) (-0.1462071631 0.04976487878 0.15) (-0.1677236959 0.05048029793 0.15) (-0.102587606 0.04907662214 0.15) (-0.09878516576 0.09608795065 0.15) (0.08321542565 0.01503398002 0.15) (0.08293760659 0.009246343918 0.15) (0.08842970413 0.008972781493 0.15) (0.09391917437 0.008696642767 0.15) (0.005014116219 0.0007759761895 0.15) (0.01614081603 0.0004542415856 0.15) (0.02802971333 0.01157276124 0.15) (0.02178444918 0.00030011064 0.15) (0.02865713973 0.02297186665 0.15) (0.1688305886 0.1990976182 0.15) (0.1677209076 0.1763616793 0.15) (0.1243089268 0.1784255263 0.15) (0.1254369726 0.201168588 0.15) (0.1220622104 0.1329469597 0.15) (0.1083564524 0.2933533501 0.15) (0.1060486091 0.2477086931 0.15) (0.1471158187 0.2001239587 0.15) (0.06044280533 0.2042303489 0.15) (0.314186495 -0.3725659166 0.15) (0.2926868469 -0.3715629772 0.15) (0.2711772587 -0.3705585567 0.15) (0.2529450151 -0.3013388175 0.15) (0.274452268 -0.3023501334 0.15) (0.2722694429 -0.3478117614 0.15) (0.250761997 -0.3468044408 0.15) (0.336764247 -0.3508233833 0.15) (0.3152795333 -0.349822166 0.15) (0.1861862527 -0.3437688879 0.15) (0.1646252555 -0.3427509726 0.15) (0.2292426616 -0.3457945439 0.15) (0.2314259207 -0.3003239265 0.15) (0.2574691044 0.01155954258 0.15) (0.2571678431 0.00513289351 0.15) (0.1921281502 0.009984832462 0.15) (0.1924008511 0.01575769819 0.15) (0.3420431902 0.1904727925 0.15) (0.3409586386 0.1677596682 0.15) (0.2976792624 0.1699572764 0.15) (0.2987720458 0.192675009 0.15) (0.2944088342 0.1018437426 0.15) (0.2954945637 0.1245397902 0.15) (0.2815032019 0.2847355342 0.15) (0.279306548 0.2392328544 0.15) (0.3204093332 0.1915783232 0.15) (0.2338139198 0.1959192442 0.15) (0.4861898448 -0.3805446773 0.15) (0.4646817238 -0.3795513404 0.15) (0.4431756487 -0.3785571012 0.15) (0.4249275751 -0.3093956665 0.15) (0.4464432527 -0.3103983786 0.15) (0.4442672542 -0.3558222919 0.15) (0.4227513354 -0.3548245739 0.15) (0.5087815806 -0.358802819 0.15) (0.4872813538 -0.3578118656 0.15) (0.3582469631 -0.3518245041 0.15) (0.4012435038 -0.3538252441 0.15) (0.4034209834 -0.3083913907 0.15) (0.4168823892 -0.2521991632 0.15) (0.4276373934 -0.2527073906 0.15) (0.395382321 -0.2511841895 0.15) (0.3948402279 -0.2625162319 0.15) (0.4082929608 -0.2064206988 0.15) (0.4077539744 -0.2177298644 0.15) (0.4185039362 -0.2182388495 0.15) (0.4292588921 -0.2187480757 0.15) (0.3432902722 -0.2146546683 0.15) (0.3540190655 -0.2151666361 0.15) (0.3647598448 -0.2156791825 0.15) (0.3653013111 -0.204360125 0.15) (0.3604682305 -0.1927775854 0.15) (0.430447999 -0.001740151875 0.15) (0.4301493791 -0.007593661538 0.15) (0.4355862974 -0.007685051124 0.15) (0.4410055856 -0.007830553498 0.15) (0.3655264947 0.001101348763 0.15) (0.3658379607 0.007075779631 0.15) (0.5145984251 0.181462218 0.15) (0.5135325278 0.1587622095 0.15) (0.4704761886 0.1610381533 0.15) (0.4715431812 0.1837401113 0.15) (0.468344697 0.115665153 0.15) (0.4542218595 0.2758851574 0.15) (0.4520852196 0.2303296301 0.15) (0.4930760316 0.1825954058 0.15) (0.4068067149 0.187137836 0.15) (0.6581979687 -0.3884245531 0.15) (0.6366992092 -0.3874446834 0.15) (0.6152015449 -0.3864628642 0.15) (0.5969739851 -0.3173534792 0.15) (0.6184616128 -0.318335815 0.15) (0.616289961 -0.3637319055 0.15) (0.5948002392 -0.362751471 0.15) (0.6807823406 -0.3666693242 0.15) (0.6592864812 -0.3656915968 0.15) (0.5302838532 -0.35979287 0.15) (0.5732976773 -0.361767413 0.15) (0.5754715679 -0.3163664248 0.15) (0.5889296325 -0.2602641408 0.15) (0.5996820742 -0.260763234 0.15) (0.5674218973 -0.2592628133 0.15) (0.5668820086 -0.270569933 0.15) (0.5805975283 -0.2089276191 0.15) (0.5859729294 -0.2091941459 0.15) (0.5797884047 -0.2258943399 0.15) (0.5905413148 -0.2264044685 0.15) (0.5910788062 -0.2151262668 0.15) (0.5857022617 -0.2148626883 0.15) (0.5803253795 -0.2146061016 0.15) (0.601293226 -0.2269145488 0.15) (0.601831234 -0.2156463838 0.15) (0.5964556401 -0.2153838523 0.15) (0.5152801611 -0.2228500319 0.15) (0.5260281252 -0.2233589205 0.15) (0.5367782317 -0.2238649091 0.15) (0.5373150136 -0.2125806662 0.15) (0.592425686 -0.004368722887 0.15) (0.5919229079 -0.01565370642 0.15) (0.6022147035 -0.02751900936 0.15) (0.532383488 -0.01820752169 0.15) (0.5269822419 -0.01791641997 0.15) (0.5485902497 -0.01901819979 0.15) (0.5432038711 -0.01875094276 0.15) (0.5493526456 -0.002065441891 0.15) (0.5434655686 -0.01308156682 0.15) (0.5488505626 -0.01335676632 0.15) (0.830184566 -0.3962733547 0.15) (0.8290926917 -0.4190552058 0.15) (0.7860933335 -0.4170713495 0.15) (0.7871857244 -0.3942995351 0.15) (0.7850001228 -0.4398601443 0.15) (0.7689442912 -0.3251664535 0.15) (0.7904425341 -0.3261362867 0.15) (0.7915198111 -0.3034908904 0.15) (0.7882741061 -0.3715485515 0.15) (0.7667761525 -0.3705727253 0.15) (0.8527789884 -0.3744965854 0.15) (0.8312744287 -0.373512431 0.15) (0.7022842413 -0.3676463421 0.15) (0.7452762495 -0.3695958038 0.15) (0.7485173323 -0.3015509348 0.15) (0.7474440988 -0.3241955251 0.15) (0.7608732383 -0.2681739402 0.15) (0.7716282081 -0.2686621426 0.15) (0.739396405 -0.2671961302 0.15) (0.7490510834 -0.2902465223 0.15) (0.7495931006 -0.2789575263 0.15) (0.7388610559 -0.2784714318 0.15) (0.7524947594 -0.2171966 0.15) (0.757877573 -0.2173303298 0.15) (0.7517148713 -0.2339725086 0.15) (0.7624598528 -0.2344602288 0.15) (0.7627257879 -0.2288274999 0.15) (0.7629938793 -0.2231708471 0.15) (0.7576114931 -0.2229660552 0.15) (0.7522354236 -0.2227755847 0.15) (0.7732167238 -0.2349505254 0.15) (0.7734830448 -0.2293098057 0.15) (0.7681045369 -0.2290661557 0.15) (0.7678385535 -0.2346998835 0.15) (0.6872416353 -0.2309288896 0.15) (0.6979833652 -0.2314424831 0.15) (0.6985141885 -0.2201779758 0.15) (0.6931444568 -0.2198977064 0.15) (0.6877766124 -0.2196405549 0.15) (0.7087350836 -0.2319565588 0.15) (0.7092646531 -0.2207180213 0.15) (0.7038897343 -0.2204415061 0.15) (0.7041591138 -0.2147789085 0.15) (0.7095332611 -0.215071405 0.15) (0.7826613579 -0.09392490335 0.15) (0.7772782369 -0.09367312141 0.15) (0.7718776057 -0.09345223103 0.15) (0.7715975694 -0.09919040266 0.15) (0.7532627407 -0.02471309992 0.15) (0.753752279 -0.01345350747 0.15) (0.7523007589 -0.04718925913 0.15) (0.7845244555 -0.04913423786 0.15) (0.7737896455 -0.04847731131 0.15) (0.699046682 -0.03284170811 0.15) (0.7097942635 -0.03346220815 0.15) (0.7205579854 -0.03408018361 0.15) (0.7210446918 -0.02283777458 0.15) (0.7215350601 -0.01158172627 0.15) (1.002868436 -0.3989697865 0.15) (1.001763315 -0.4218601249 0.15) (0.9582241071 -0.4251273448 0.15) (0.9593169458 -0.402325517 0.15) (0.9571704503 -0.4479470829 0.15) (0.9409352076 -0.33302948 0.15) (0.9625857143 -0.334059726 0.15) (0.9635170443 -0.3113682381 0.15) (0.9604118648 -0.3795428117 0.15) (0.9387625498 -0.3785086186 0.15) (1.025478509 -0.3771176842 0.15) (1.003973557 -0.376079448 0.15) (0.8742712244 -0.375487153 0.15) (0.9172515908 -0.3774911168 0.15) (0.9205022008 -0.3093525982 0.15) (0.919422864 -0.3320199206 0.15) (0.9328601388 -0.275995725 0.15) (0.9436053957 -0.276498476 0.15) (0.9113581555 -0.274999681 0.15) (0.9097597957 -0.3088529884 0.15) (0.9102957373 -0.297544677 0.15) (0.9353308124 -0.2246341139 0.15) (0.9350208721 -0.230639154 0.15) (0.9403846935 -0.2309381602 0.15) (0.9457386157 -0.2313177828 0.15) (0.8597671435 -0.2273664031 0.15) (0.8651158858 -0.2276666836 0.15) (0.8704622791 -0.2279948834 0.15) (0.8707535165 -0.2221491267 0.15) (1.205233868 -0.2251929374 0.15) (1.183728916 -0.2241547011 0.15) (1.182623828 -0.2470443404 0.15) (1.204128781 -0.2480825767 0.15) (1.139623913 -0.2449683501 0.15) (1.140729 -0.2220787108 0.15) (1.136308597 -0.3136383667 0.15) (1.13741367 -0.2907490271 0.15) (1.144044316 -0.1534086942 0.15) (1.145149422 -0.1305186554 0.15) (1.141834107 -0.199188672 0.15) (1.206338975 -0.2023028985 0.15) (1.184834023 -0.2012646623 0.15) (1.046171798 -0.171629408 0.15) (1.046724436 -0.1601826406 0.15) (1.078424353 -0.1731840242 0.15) (1.078976908 -0.1617389549 0.15) (1.068229422 -0.1612201777 0.15) (1.067676866 -0.1726652471 0.15) (1.080634566 -0.1274039476 0.15) (1.058587047 -0.1378112619 0.15) (1.058034496 -0.1492562313 0.15) (1.068781977 -0.1497751084 0.15) (1.079529459 -0.1502939854 0.15) (0.107382915 -0.1805608973 0.15) (0.1079284766 -0.1691984868 0.15) (0.1025054062 -0.168923952 0.15) (0.1027802224 -0.1632109579 0.15) (0.1082042578 -0.1634862402 0.15) (0.08654057401 -0.1624365361 0.15) (0.09193523336 -0.1626898762 0.15) (0.1676955566 -0.1662632062 0.15) (0.1730859245 -0.1664893077 0.15) (0.15145403 -0.1656541862 0.15) (0.1568662607 -0.1658629218 0.15) (0.1506480735 -0.1826797282 0.15) (0.1565927472 -0.1715696714 0.15) (0.1511848632 -0.1713331131 0.15) (0.01997342749 -0.176019386 0.15) (0.02041146822 -0.1646278567 0.15) (0.02089787808 -0.1532505765 0.15) (0.009668376818 -0.1525276177 0.15) (-0.00153044872 -0.1517808105 0.15) (0.07591572615 -0.1562151385 0.15) (0.06450426684 -0.1670333322 0.15) (0.06398349771 -0.1784006439 0.15) (0.1706592394 0.01658059631 0.15) (0.1703988492 0.01060650283 0.15) (0.09938977911 0.00845485375 0.15) (0.1048306662 0.008265258523 0.15) (0.105093976 0.01407171619 0.15) (0.1082690939 0.0766235757 0.15) (0.09737829268 0.07711232893 0.15) (0.1300508135 0.07563605194 0.15) (0.1306149914 0.08699005491 0.15) (0.1168539136 0.03070817418 0.15) (0.1174453976 0.04206786699 0.15) (0.106546306 0.04255702047 0.15) (0.09565676183 0.04304070718 0.15) (0.1826375 0.03904560707 0.15) (0.1717723344 0.03955314593 0.15) (0.1712058557 0.0281722226 0.15) (0.1766474211 0.02790750726 0.15) (0.1820832484 0.02766909924 0.15) (0.1609367138 0.04007127237 0.15) (0.1603692501 0.02871142105 0.15) (0.1657751329 0.02843341097 0.15) (0.1654947728 0.02270927127 0.15) (0.1600857627 0.0230054533 0.15) (0.3008633031 -0.201271152 0.15) (0.3116111225 -0.2017830372 0.15) (0.3121550343 -0.1904340628 0.15) (0.3105258409 -0.2244490714 0.15) (0.2997759756 -0.2239380886 0.15) (0.3320185315 -0.2254716982 0.15) (0.2562152986 -0.2332282802 0.15) (0.2669631662 -0.2337391666 0.15) (0.2675065958 -0.2224001805 0.15) (0.2567597752 -0.2218883436 0.15) (0.2890233549 -0.223421967 0.15) (0.2884789747 -0.234759906 0.15) (0.2906584792 -0.1894292703 0.15) (0.2901113437 -0.2007620705 0.15) (0.2873907792 -0.2574448217 0.15) (0.2879354487 -0.2461008897 0.15) (0.2771744515 -0.245592373 0.15) (0.2777160281 -0.234250294 0.15) (0.2798879138 -0.1889323057 0.15) (0.2804242708 -0.1776361284 0.15) (0.275039307 -0.1774017778 0.15) (0.2753042446 -0.1718104489 0.15) (0.2806886725 -0.1720351624 0.15) (0.259197545 -0.1710008974 0.15) (0.2645663068 -0.1712805193 0.15) (0.3398641866 -0.1743853038 0.15) (0.3452154866 -0.1746948184 0.15) (0.3237606684 -0.1734683808 0.15) (0.3291323455 -0.1737705695 0.15) (0.3229045621 -0.1909520374 0.15) (0.3282794465 -0.1912085276 0.15) (0.3285551409 -0.1854980789 0.15) (0.3231806953 -0.1852324992 0.15) (0.1938035324 -0.1847482105 0.15) (0.1943545264 -0.1733562276 0.15) (0.1889649481 -0.1730722968 0.15) (0.1892469278 -0.1672938721 0.15) (0.1946362795 -0.1675824973 0.15) (0.1784691517 -0.1667388922 0.15) (0.2538228431 -0.1707198875 0.15) (0.2376741284 -0.1698681608 0.15) (0.2430556726 -0.1701526047 0.15) (0.2368660718 -0.1868542556 0.15) (0.242786032 -0.1757998719 0.15) (0.2374048984 -0.175527662 0.15) (0.3442172094 0.008494242405 0.15) (0.3439464501 0.002823802211 0.15) (0.2788289121 0.00411405142 0.15) (0.2791454507 0.01052534591 0.15) (0.2819367047 0.06836122987 0.15) (0.2710879201 0.06889701165 0.15) (0.3035970757 0.06728645636 0.15) (0.3052293138 0.1013023192 0.15) (0.3046827431 0.08996048131 0.15) (0.2903076242 0.01652225175 0.15) (0.2848798353 0.01661610395 0.15) (0.2911385097 0.03381530279 0.15) (0.2857233824 0.0340677289 0.15) (0.2854474517 0.02835238584 0.15) (0.2908568753 0.02810624209 0.15) (0.2694384469 0.03485595064 0.15) (0.2691612624 0.02911463783 0.15) (0.2745939347 0.02885235417 0.15) (0.2748707816 0.03458667513 0.15) (0.3561182863 0.03058403865 0.15) (0.3452945829 0.03114163632 0.15) (0.3447572567 0.01982538242 0.15) (0.3501723563 0.01953090872 0.15) (0.3555788038 0.01924386088 0.15) (0.3344687373 0.03169633394 0.15) (0.3339323755 0.02040005676 0.15) (0.339341916 0.02011486193 0.15) (0.3390735492 0.01447323989 0.15) (0.3336669707 0.01477831501 0.15) (0.2035498626 0.02106723905 0.15) (0.1981148756 0.02128157855 0.15) (0.2043784463 0.03804303199 0.15) (0.1935079972 0.03854481895 0.15) (0.1929519065 0.02719242787 0.15) (0.1983918256 0.02695582464 0.15) (0.2038267023 0.02671846367 0.15) (0.1875167405 0.02742379581 0.15) (0.264018663 0.03511560972 0.15) (0.2637417678 0.02938028993 0.15) (0.2477831665 0.0359324807 0.15) (0.2475173206 0.03021865309 0.15) (0.2529260552 0.02993750182 0.15) (0.2532010835 0.03565489078 0.15) (0.2523597131 0.01818614094 0.15) (0.2469403293 0.01861998337 0.15) (0.2396870194 0.09317249206 0.15) (0.2402358772 0.1045202265 0.15) (0.2385817473 0.07048639847 0.15) (0.2602569218 0.06942793007 0.15) (0.4943267806 -0.2105322714 0.15) (0.4937885176 -0.2218264544 0.15) (0.5045373359 -0.2223383878 0.15) (0.4400217906 -0.2192586865 0.15) (0.450780549 -0.219772101 0.15) (0.451322401 -0.2084450527 0.15) (0.4593659821 -0.2655503725 0.15) (0.4599066424 -0.2542272714 0.15) (0.4383994377 -0.2532149567 0.15) (0.4413937645 -0.1907580895 0.15) (0.4416924584 -0.184799361 0.15) (0.4363046042 -0.1845626683 0.15) (0.4309157192 -0.1843887991 0.15) (0.5168727747 -0.1891779582 0.15) (0.5115076356 -0.188864772 0.15) (0.5061446292 -0.1885488854 0.15) (0.50587989 -0.1941568432 0.15) (0.3607402008 -0.1871027986 0.15) (0.3612946765 -0.1756386996 0.15) (0.3505666565 -0.1750070299 0.15) (0.4255250121 -0.18427341 0.15) (0.4201342525 -0.1841798438 0.15) (0.4198576853 -0.1899083715 0.15) (0.5062091328 0.0002090039381 0.15) (0.5059395555 -0.005457688899 0.15) (0.5056785296 -0.01115462929 0.15) (0.511075987 -0.01142051898 0.15) (0.5108075111 -0.01712661077 0.15) (0.5054045978 -0.01691151708 0.15) (0.5215989508 -0.01762668568 0.15) (0.4464031781 -0.008093646445 0.15) (0.4517777082 -0.00844042462 0.15) (0.4520534598 -0.002708053119 0.15) (0.4549464661 0.05955797806 0.15) (0.444160815 0.06011574095 0.15) (0.4764961176 0.05842948126 0.15) (0.4770218918 0.06975530337 0.15) (0.4636149679 0.01373765177 0.15) (0.4641393575 0.02505553141 0.15) (0.4533657888 0.02561471329 0.15) (0.4425821836 0.02617337856 0.15) (0.5185449331 0.03354281784 0.15) (0.5293196314 0.03296556045 0.15) (0.4969973757 0.03467321587 0.15) (0.4954474972 0.0007665084285 0.15) (0.4959621257 0.01206884069 0.15) (0.3769299035 0.01238527245 0.15) (0.371530854 0.01263892467 0.15) (0.3777393512 0.02948313019 0.15) (0.3669440355 0.03002734336 0.15) (0.3664095816 0.01866689953 0.15) (0.3718100844 0.01838113987 0.15) (0.3772080868 0.01812653703 0.15) (0.3609928081 0.01894743774 0.15) (0.4317863513 0.02672762833 0.15) (0.4209848153 0.02728816045 0.15) (0.4204574292 0.01597042548 0.15) (0.4258621202 0.01568846827 0.15) (0.4255959644 0.01000969639 0.15) (0.4201901781 0.01028970415 0.15) (0.4122882152 0.07312786427 0.15) (0.4117524044 0.06180152555 0.15) (0.4333625166 0.06068112258 0.15) (0.6665721279 -0.2128971707 0.15) (0.6719458483 -0.2131155604 0.15) (0.6657581133 -0.2299237252 0.15) (0.6765006148 -0.2304213373 0.15) (0.6770394083 -0.2191161671 0.15) (0.6716678579 -0.2188528297 0.15) (0.6662954739 -0.2186274963 0.15) (0.6824117784 -0.2193625243 0.15) (0.6120361959 -0.2274231964 0.15) (0.6125747688 -0.216164069 0.15) (0.6072050714 -0.2159038246 0.15) (0.6227651821 -0.2279311688 0.15) (0.6232953303 -0.2166806452 0.15) (0.6179355249 -0.2164228807 0.15) (0.6182020731 -0.2107981906 0.15) (0.6235604939 -0.2110638976 0.15) (0.6313652745 -0.2735509629 0.15) (0.6319015881 -0.2622556846 0.15) (0.6104265734 -0.2612609426 0.15) (0.6131111843 -0.2048874173 0.15) (0.6133816735 -0.1992225706 0.15) (0.6082959915 -0.1931624746 0.15) (0.6029326843 -0.1927906085 0.15) (0.6779296598 -0.2013607409 0.15) (0.677614236 -0.2074586245 0.15) (0.5273595307 -0.1952631381 0.15) (0.527615351 -0.1897569686 0.15) (0.5222413925 -0.1894813007 0.15) (0.5975673601 -0.1924190454 0.15) (0.5922020311 -0.1920475822 0.15) (0.5919081945 -0.1979471761 0.15) (0.5916251683 -0.2037472756 0.15) (0.6785228715 -0.009117091995 0.15) (0.6780273209 -0.02037679465 0.15) (0.6775391962 -0.03162784533 0.15) (0.6882880658 -0.03224240058 0.15) (0.6183598816 -0.02838177833 0.15) (0.6237431052 -0.02867291099 0.15) (0.6344901646 -0.02926275019 0.15) (0.6349914134 -0.01798870564 0.15) (0.6354954417 -0.006719300516 0.15) (0.8493174845 -0.220969049 0.15) (0.8490141919 -0.2269193459 0.15) (0.854398252 -0.2271102022 0.15) (0.7785951352 -0.235196173 0.15) (0.7788622139 -0.2295604958 0.15) (0.7896095993 -0.2300813705 0.15) (0.7893441946 -0.2357031123 0.15) (0.79016175 -0.2186446914 0.15) (0.8027916 -0.2926728617 0.15) (0.8022569466 -0.3039752283 0.15) (0.8038563052 -0.2701219692 0.15) (0.7823821791 -0.2691502968 0.15) (0.7850972357 -0.2123949956 0.15) (0.785405294 -0.2063874619 0.15) (0.6990686691 -0.208713777 0.15) (0.6993613917 -0.2028372562 0.15) (0.7638508948 -0.2057513089 0.15) (0.7635569804 -0.2116317769 0.15) (0.8288601162 -0.01804766034 0.15) (0.8283650003 -0.0293190976 0.15) (0.8278896579 -0.0405749703 0.15) (0.838607624 -0.0412697286 0.15) (0.8381375404 -0.05249962466 0.15) (0.8274222043 -0.05181260219 0.15) (0.8702384249 -0.05464511433 0.15) (0.8595470549 -0.0539179008 0.15) (0.7952507003 -0.04978194065 0.15) (0.8167019609 -0.05112354069 0.15) (0.8181414853 -0.01738741012 0.15) (0.8176516433 -0.02865329525 0.15) (0.7931501112 -0.1001553486 0.15) (0.793393773 -0.0945277515 0.15) (0.7880295652 -0.09421601186 0.15) (1.016619091 -0.2217784377 0.15) (1.016800845 -0.2161474513 0.15) (1.015949845 -0.2389584519 0.15) (1.016196871 -0.2332196878 0.15) (1.032099393 -0.2397721746 0.15) (1.021589335 -0.2335060605 0.15) (1.021332561 -0.2392393482 0.15) (0.9510847125 -0.2317350719 0.15) (0.9749911844 -0.3003196992 0.15) (0.9744996599 -0.3116411678 0.15) (0.9760593201 -0.2777599617 0.15) (0.9543443703 -0.2770069306 0.15) (0.9526335632 -0.1388111545 0.15) (0.9632489495 -0.1397020944 0.15) (0.9738722928 -0.1405941192 0.15) (0.9741470401 -0.1298019628 0.15) (0.9744611263 -0.1189207798 0.15) (1.034287643 -0.1940322845 0.15) (1.023487437 -0.1935686292 0.15) (1.023159014 -0.1993343996 0.15) (1.017700052 -0.1991811751 0.15) (1.018039004 -0.1934047 0.15) (1.017018959 -0.2105928071 0.15) (0.932062615 -0.1151712038 0.15) (0.9316979623 -0.1261666012 0.15) (0.9366806357 -0.1375123491 0.15) (0.9419979887 -0.1379443693 0.15) (0.1419439138 -0.3644824978 0.15) (0.1203452983 -0.3634557582 0.15) (0.09875291692 -0.3624243138 0.15) (0.08040613449 -0.2931279621 0.15) (0.1020063653 -0.2941647913 0.15) (0.09983678666 -0.3396631007 0.15) (0.07823901504 -0.3386333984 0.15) (0.1430335836 -0.3417255694 0.15) (0.01312140576 -0.3354285183 0.15) (-0.008659341823 -0.3343148947 0.15) (0.05651189072 -0.3375664149 0.15) (0.05867101261 -0.2920565879 0.15) (0.08357307657 -0.2249183261 0.15) (0.07271010168 -0.2243778546 0.15) (0.06184442993 -0.2238372528 0.15) (0.05092529636 -0.2232800537 0.15) (0.04154800988 -0.1886175288 0.15) (0.05251332065 -0.1891949783 0.15) (0.05145605109 -0.211917429 0.15) (0.04055498958 -0.2113570977 0.15) (0.08410358675 -0.213558693 0.15) (0.07324510663 -0.2130184385 0.15) (0.01857882118 -0.210170966 0.15) (0.01902033511 -0.1987780025 0.15) (0.008009267399 -0.1981633032 0.15) (-0.003062080664 -0.1975046458 0.15) (0.02963239111 -0.2107887185 0.15) (0.03051252921 -0.1880066566 0.15) (0.01447118702 -0.02906058166 0.15) (0.01472021552 -0.02303357872 0.15) (0.2454584896 -0.2327159611 0.15) (0.2346946888 -0.2322033043 0.15) (0.2239418752 -0.2316911781 0.15) (0.2148079911 -0.1971485301 0.15) (0.2255724532 -0.1976682269 0.15) (0.2244865447 -0.2203472461 0.15) (0.2137218415 -0.2198325435 0.15) (0.2460030144 -0.2213750256 0.15) (0.1813949631 -0.2182828489 0.15) (0.1706193692 -0.2177656181 0.15) (0.2029442016 -0.2193162151 0.15) (0.2040295935 -0.1966271594 0.15) (0.6652319306 0.1732557055 0.15) (0.6641904254 0.1505425054 0.15) (0.6631579719 0.1278508939 0.15) (0.6846563519 0.126655792 0.15) (0.6427066078 0.1517489181 0.15) (0.6437434907 0.1744493263 0.15) (0.6406157931 0.1063889715 0.15) (0.6263475902 0.2673426661 0.15) (0.6243309385 0.2210877122 0.15) (0.5792018944 0.1779848141 0.15) (0.719102432 -0.06783726559 0.15) (0.7244757932 -0.06814604319 0.15) (0.7242067621 -0.07384289745 0.15) (0.7403534737 -0.07467390342 0.15) (0.7349748007 -0.07439220117 0.15) (0.6975917507 -0.0665859051 0.15) (0.7029696907 -0.06688278967 0.15) (0.7083435638 -0.06720170374 0.15) (0.7085975171 -0.06154757209 0.15) (0.955043421 -0.07232691717 0.15) (0.9444280347 -0.07143597731 0.15) (0.9439717269 -0.08265011935 0.15) (0.954585265 -0.08353786637 0.15) (0.9226997338 -0.08093402841 0.15) (0.9231521482 -0.06973832006 0.15) (0.921822856 -0.1032649226 0.15) (0.9144530061 -0.02376463778 0.15) (0.9134480799 -0.04642524068 0.15) (0.9337928128 -0.07058262465 0.15) (0.8809302633 -0.05538336328 0.15) (0.8916075876 -0.05613192432 0.15) (0.8911453982 -0.06736420384 0.15) (0.1284827797 -0.1929758347 0.15) (0.1393098792 -0.1935045626 0.15) (0.138227098 -0.2162017537 0.15) (0.1274018516 -0.2156761188 0.15) (0.1598308385 -0.2172467617 0.15) (0.0943963288 -0.2254458671 0.15) (0.09493263567 -0.2140885162 0.15) (0.1165846923 -0.215148872 0.15) (0.1160445347 -0.2265030334 0.15) (0.1176647662 -0.1924455432 0.15) (0.1052263283 -0.2259767373 0.15) (0.01037208211 -0.1296362206 0.15) (0.01055170777 -0.1239062164 0.15) (0.004914762334 -0.1176970636 0.15) (-0.000877074046 -0.1171949811 0.15) (0.03319912232 -0.1252195654 0.15) (0.0330146855 -0.1310181174 0.15) (0.04035606135 0.0339669038 0.15) (0.04165963733 0.05673953531 0.15) (0.008640665421 0.05797924391 0.15) (0.01966633609 0.05757908998 0.15) (0.08475309277 0.04352007001 0.15) (0.07386720987 0.04399456948 0.15) (0.07322571166 0.03262127267 0.15) (0.06540611524 0.08995105243 0.15) (0.06480182198 0.07857696057 0.15) (0.08650387233 0.07760029131 0.15) (0.6870626534 -0.06036162155 0.15) (0.6867996291 -0.06603774136 0.15) (0.6921978154 -0.06630927276 0.15) (0.6597855214 -0.0649735081 0.15) (0.665186789 -0.06518121384 0.15) (0.6654878804 -0.0593594603 0.15) (0.6657703581 -0.05361219582 0.15) (0.6160195568 0.03962339547 0.15) (0.6267751669 0.03902403285 0.15) (0.6375246532 0.03844298684 0.15) (0.657514169 0.003361223062 0.15) (0.6467515188 0.003959924405 0.15) (0.6370126354 0.02713251922 0.15) (0.6365084293 0.01583869427 0.15) (0.6472591416 0.01524157043 0.15) (0.6580177964 0.01464306198 0.15) (0.6155058307 0.02831901731 0.15) (0.626264582 0.02772250653 0.15) (0.6795255379 0.01343449304 0.15) (0.6902791985 0.0128362257 0.15) (0.7010305583 0.012211038 0.15) (0.6687746465 0.01404864532 0.15) (0.6682678779 0.002763954561 0.15) (0.5714010227 0.008069314988 0.15) (0.5606362645 0.008645091312 0.15) (0.5616579028 0.03123710851 0.15) (0.5724256092 0.03066018869 0.15) (0.5401027061 0.03239590797 0.15) (0.6052590834 0.04020497192 0.15) (0.6047464526 0.02890254321 0.15) (0.5831872262 0.03008156052 0.15) (0.5837048512 0.04138374811 0.15) (0.5821599324 0.007496824511 0.15) (0.5944760707 0.04079664702 0.15) (0.8300189735 -0.1194000064 0.15) (0.8354179475 -0.1196344827 0.15) (0.8356721603 -0.1139749773 0.15) (0.8359093917 -0.1083561503 0.15) (0.9095252993 -0.1467765215 0.15) (0.9042049408 -0.1463652806 0.15) (0.8943851765 -0.1233126851 0.15) (0.8941959194 -0.1288295168 0.15) (0.9102011782 -0.1299982945 0.15) (0.904879112 -0.1296016883 0.15) (-0.09043137708 -0.1199413195 0.15) (-0.07966353957 -0.1206731258 0.15) (-0.07922358444 -0.109032499 0.15) (-0.08993387629 -0.108435925 0.15) (-0.05775518372 -0.1103487962 0.15) (-0.0579082898 -0.1225490066 0.15) (-0.05676252276 -0.07287881967 0.15) (-0.05721065084 -0.08561568068 0.15) (-0.04676200289 -0.1715959724 0.15) (-0.04639284161 -0.1600965961 0.15) (-0.05747099395 -0.159255999 0.15) (-0.05769536633 -0.1708918162 0.15) (-0.05764604095 -0.1351873564 0.15) (-0.04638082759 -0.1363941001 0.15) (-0.09084595917 -0.1316370339 0.15) (-0.07989083264 -0.1327427068 0.15) (-0.01245034175 -0.1277715908 0.15) (-0.01275634524 -0.1392835274 0.15) (-0.001151162532 -0.1403439952 0.15) (-0.03502845696 -0.13755199 0.15) (-0.0357474238 -0.1723390905 0.15) (-0.03546326133 -0.1607961646 0.15) (-0.01559905793 0.02436103931 0.15) (-0.01634812771 0.01288931539 0.15) (-0.01724090079 0.001317304563 0.15) (-0.006121153714 0.001063284017 0.15) (-0.08559873665 -0.02178606949 0.15) (-0.07481925905 -0.02211917331 0.15) (-0.0741434574 -0.01053718792 0.15) (-0.08489967844 -0.01014333492 0.15) (-0.05206073006 -0.0105115484 0.15) (-0.05310345066 -0.02255788016 0.15) (-0.04878387459 0.02516543896 0.15) (-0.04976493147 0.01345902907 0.15) (-0.05597048932 -0.05948448382 0.15) (-0.05397934371 -0.03445628471 0.15) (-0.08631085501 -0.03349194773 0.15) (-0.07558046186 -0.03390027207 0.15) (0.05523597826 0.004748460391 0.15) (0.04972179531 0.004991752619 0.15) (0.06625042915 0.004207984258 0.15) (0.06653610942 0.01000084735 0.15) (0.07200743884 0.009761626374 0.15) (0.0207018766 -0.01728314097 0.15) (0.02145506884 -0.005466814937 0.15) (0.004112812308 -0.01082135271 0.15) (0.009685343278 -0.01102731521 0.15) (0.01536144386 -0.01115988674 0.15) (0.01581504325 -0.005302245814 0.15) (0.04330595584 -0.01239578639 0.15) (0.03777801445 -0.01214922689 0.15) (0.03757406719 -0.01819222238 0.15) (0.03837025755 -0.0003445530013 0.15) (0.03881390425 0.005466613805 0.15) (0.0442656441 0.005238450357 0.15) (0.2355418636 0.008392350207 0.15) (0.2358174684 0.01387283575 0.15) (0.2141230754 0.01507239506 0.15) (0.2138447827 0.009598446745 0.15) (0.4088741125 -0.0005329948815 0.15) (0.4091428971 0.005179489457 0.15) (0.3874682735 0.006207896311 0.15) (0.3871888213 0.0004610864641 0.15) (0.5806178608 -0.02639334015 0.15) (0.5701180191 -0.02016446204 0.15) (0.5797651793 -0.0436816346 0.15) (0.5800565771 -0.03787403007 0.15) (0.5746492833 -0.03768745832 0.15) (0.5692424585 -0.03753264614 0.15) (0.6124448432 -0.03943790142 0.15) (0.6070608722 -0.03916225072 0.15) (0.6016765352 -0.03891491533 0.15) (0.6013830138 -0.04470429624 0.15) (0.5638481145 -0.03730595219 0.15) (0.558480214 -0.03694627871 0.15) (0.5581542188 -0.04291059717 0.15) (0.5542301525 -0.01364021482 0.15) (0.5539690192 -0.01929790437 0.15) (0.5647395678 -0.01987816514 0.15) (0.7302436109 -0.2329829537 0.15) (0.7409868219 -0.2334866071 0.15) (0.7415140629 -0.2223170375 0.15) (0.7361450268 -0.2220638331 0.15) (0.7307706728 -0.2217963557 0.15) (0.746872594 -0.222559723 0.15) (0.7471304349 -0.2170117023 0.15) (0.7506588391 -0.2564267069 0.15) (0.7511883604 -0.2451891682 0.15) (0.7625761722 -0.05904135671 0.15) (0.7621124427 -0.0702433267 0.15) (0.772392315 -0.08210675247 0.15) (0.7618708895 -0.07586872289 0.15) (0.7457340143 -0.07495839898 0.15) (0.7564978272 -0.0755537525 0.15) (0.7567352983 -0.06992996132 0.15) (0.9026678008 -0.2300052617 0.15) (0.9080368851 -0.2302574673 0.15) (0.9134198294 -0.2304092243 0.15) (0.9136546346 -0.225027286 0.15) (0.9226227042 -0.2642694052 0.15) (0.9231390201 -0.2530772825 0.15) (0.9129168847 -0.2414488143 0.15) (0.923397612 -0.2474722317 0.15) (0.939542497 -0.2482166488 0.15) (0.9449109545 -0.2484818392 0.15) (0.928789153 -0.2477155097 0.15) (0.9285285634 -0.2533204642 0.15) (0.8796398441 -0.2622963571 0.15) (0.8801625387 -0.2510965331 0.15) (0.8699182432 -0.239387903 0.15) (0.8914433854 -0.2404641572 0.15) (0.8922066166 -0.2238466295 0.15) (0.8919549272 -0.2293709193 0.15) (0.8973123077 -0.2296996495 0.15) (0.1244133319 -0.1643319706 0.15) (0.1298279245 -0.1646162079 0.15) (0.1136190384 -0.163766582 0.15) (0.1133447721 -0.1694681894 0.15) (0.0873215391 -0.1451157455 0.15) (0.09280006488 -0.145160287 0.15) (0.09826094553 -0.1452530337 0.15) (0.09860965154 -0.1390671526 0.15) (0.1457905572 -0.1710848959 0.15) (0.1460598934 -0.1654231973 0.15) (0.1352556418 -0.1648981755 0.15) (0.03752028634 -0.1542009607 0.15) (0.032000207 -0.153897314 0.15) (0.02152973277 -0.1361296278 0.15) (0.02716002228 -0.1364668283 0.15) (0.03229305376 -0.1482152253 0.15) (0.0325118627 -0.142501029 0.15) (0.02694070289 -0.1421833026 0.15) (0.02137804422 -0.141863684 0.15) (0.03778935668 -0.1485095147 0.15) (0.01007724951 -0.1411160585 0.15) (0.004431813679 -0.1407205599 0.15) (0.01574648936 -0.1415049975 0.15) (0.01591956056 -0.1357821856 0.15) (0.07667097725 -0.1390536933 0.15) (0.07642163352 -0.1447720219 0.15) (0.08186164081 -0.1450047249 0.15) (0.0435784342 -0.1430651461 0.15) (0.04909481597 -0.143306442 0.15) (0.05457007603 -0.1435285326 0.15) (0.05485020448 -0.1376287774 0.15) (0.0540356595 -0.1550706896 0.15) (0.1486552221 0.01217566633 0.15) (0.1489660694 0.0178676985 0.15) (0.1271925057 0.01881678424 0.15) (0.1268962185 0.01305306655 0.15) (0.1266108047 0.00722424878 0.15) (0.1320580847 0.006912002579 0.15) (0.2968723851 -0.1724108229 0.15) (0.3022564717 -0.1725181834 0.15) (0.2860856783 -0.1722067206 0.15) (0.290933938 -0.18374444 0.15) (0.2912057823 -0.178051526 0.15) (0.2858160426 -0.1778538879 0.15) (0.3178061918 -0.1849681182 0.15) (0.3175301117 -0.1906865576 0.15) (0.3183884899 -0.17317658 0.15) (0.3076388085 -0.1726825258 0.15) (0.2107845023 -0.1684444121 0.15) (0.2161759046 -0.1687320351 0.15) (0.2000167284 -0.1678688907 0.15) (0.1997370784 -0.1736197958 0.15) (0.2320327108 -0.1752567851 0.15) (0.2323045558 -0.1695845952 0.15) (0.221560426 -0.1690170232 0.15) (0.3223276372 0.004448311225 0.15) (0.3225751559 0.009865477487 0.15) (0.300889159 0.01074125523 0.15) (0.3006358462 0.005287025256 0.15) (0.3127960565 0.03278571805 0.15) (0.3019673795 0.03330250809 0.15) (0.3014236263 0.02197755399 0.15) (0.3068375412 0.0217622295 0.15) (0.3122577109 0.02151056111 0.15) (0.2905894863 0.0223604517 0.15) (0.2960083128 0.02216391222 0.15) (0.2957330916 0.01644252792 0.15) (0.2922282688 0.05649113252 0.15) (0.2916840816 0.04515718889 0.15) (0.2803007467 0.03433052916 0.15) (0.3355464827 0.05433069475 0.15) (0.3350079165 0.04300949489 0.15) (0.3236306644 0.03224661604 0.15) (0.3282503075 0.01508187468 0.15) (0.3230951224 0.02096731908 0.15) (0.3285150854 0.02069063156 0.15) (0.3176804913 0.02125075736 0.15) (0.2260832278 0.0370171738 0.15) (0.2152316258 0.03753607181 0.15) (0.2146769474 0.02623367078 0.15) (0.2201055417 0.02599060614 0.15) (0.225533027 0.02572456825 0.15) (0.2092515907 0.02648158494 0.15) (0.2089746201 0.0208483876 0.15) (0.2054870387 0.06071494898 0.15) (0.2049326219 0.04937649339 0.15) (0.248875502 0.05862020002 0.15) (0.2483260794 0.04728150332 0.15) (0.2586105897 0.0353897209 0.15) (0.2369287747 0.03647654251 0.15) (0.2415115841 0.01906729291 0.15) (0.2363724085 0.0251391822 0.15) (0.2417912346 0.02479747385 0.15) (0.2472246231 0.02446707642 0.15) (0.2309560828 0.02544973373 0.15) (0.4739120842 -0.1866420243 0.15) (0.4685432054 -0.1863233514 0.15) (0.4631792628 -0.1860061181 0.15) (0.4628892178 -0.1918686518 0.15) (0.4843819941 -0.1930139254 0.15) (0.4846598254 -0.1872799524 0.15) (0.4792839547 -0.1869609419 0.15) (0.3878700075 -0.1828258973 0.15) (0.3824985337 -0.1825402376 0.15) (0.3771270888 -0.1822539786 0.15) (0.3768569612 -0.1879113341 0.15) (0.3983492286 -0.1889841989 0.15) (0.3986134278 -0.1833874281 0.15) (0.3932415682 -0.1831097591 0.15) (0.4892407572 -0.01610351186 0.15) (0.5000057853 -0.0166736947 0.15) (0.5008272221 0.0004858566747 0.15) (0.5005616113 -0.005181628356 0.15) (0.4736041789 -0.003876648054 0.15) (0.4733125593 -0.009688847229 0.15) (0.4787136383 -0.009879724289 0.15) (0.4841199146 -0.01008737149 0.15) (0.6348174428 -0.2004910385 0.15) (0.6345614976 -0.2060205291 0.15) (0.6560919973 -0.2068199195 0.15) (0.6563694862 -0.2010930381 0.15) (0.5599868158 -0.1900513528 0.15) (0.5545955975 -0.1899465514 0.15) (0.5491919484 -0.1899748054 0.15) (0.5488975958 -0.1958850868 0.15) (0.548614589 -0.2016847868 0.15) (0.5701285998 -0.2026183381 0.15) (0.5704245975 -0.1966947204 0.15) (0.570737155 -0.1905939953 0.15) (0.5653658878 -0.1902833165 0.15) (0.6337076437 -0.04625908831 0.15) (0.6283275336 -0.04600715139 0.15) (0.6234872651 -0.03432464887 0.15) (0.6232237876 -0.04001015775 0.15) (0.6286002797 -0.04029555913 0.15) (0.6339778279 -0.04055908599 0.15) (0.6181040849 -0.03403261726 0.15) (0.6560203862 -0.03044116811 0.15) (0.6452455185 -0.02984668251 0.15) (0.6447437247 -0.04113201391 0.15) (0.6501386547 -0.0414295185 0.15) (0.6555284837 -0.04170825528 0.15) (0.6393540597 -0.0408498811 0.15) (0.6390863939 -0.04653919243 0.15) (0.6441813554 -0.05261445352 0.15) (0.6438579064 -0.05852603341 0.15) (0.6222973836 -0.05756050195 0.15) (0.6226295364 -0.05161380092 0.15) (0.8166942281 -0.2258485419 0.15) (0.8220694363 -0.2261190641 0.15) (0.8274501347 -0.2263588152 0.15) (0.8276996197 -0.2208594481 0.15) (0.8366503158 -0.2603370034 0.15) (0.8371744432 -0.2491282381 0.15) (0.8269365332 -0.2374739792 0.15) (0.8484585003 -0.2383878914 0.15) (0.7936521698 -0.2583902488 0.15) (0.7941791148 -0.2471645997 0.15) (0.7839720173 -0.2354527597 0.15) (0.805427992 -0.2364686081 0.15) (0.8062139491 -0.2196499424 0.15) (0.8059504938 -0.2252727794 0.15) (0.8113197433 -0.2255630372 0.15) (0.8144055885 -0.1071282188 0.15) (0.8141212391 -0.1128727799 0.15) (0.7208098417 -0.2044237055 0.15) (0.7205446878 -0.2100402533 0.15) (0.7420208445 -0.2113016606 0.15) (0.7422596064 -0.2059207142 0.15) (0.8260589234 -0.08535888857 0.15) (0.8153230512 -0.08468248814 0.15) (0.8148879492 -0.09585140017 0.15) (0.820258247 -0.09618215561 0.15) (0.8256224409 -0.09651491904 0.15) (0.8041449212 -0.09517805822 0.15) (0.8095167055 -0.09551949778 0.15) (0.8092868291 -0.1011311411 0.15) (0.8055030205 -0.06165615033 0.15) (0.8050425858 -0.07283134806 0.15) (0.7938535319 -0.08334581334 0.15) (0.9656303148 -0.2662897018 0.15) (0.9661384814 -0.2551212136 0.15) (0.9607614064 -0.2548686223 0.15) (0.9610183105 -0.2492985307 0.15) (0.966395048 -0.2495581139 0.15) (0.9502772213 -0.2487509285 0.15) (0.982751414 -0.2492815414 0.15) (0.988787643 -0.248095245 0.15) (0.9717745824 -0.2497597645 0.15) (0.9715181122 -0.2553208666 0.15) (0.983866949 -0.1683604925 0.15) (0.98367298 -0.1738919741 0.15) (0.9889226961 -0.1744599908 0.15) (0.9940505485 -0.1753125619 0.15) (0.9624848159 -0.166872756 0.15) (0.9626663071 -0.1613508839 0.15) (0.9412580778 -0.1599889352 0.15) (0.9410099583 -0.1656466524 0.15) (0.9206901268 -0.1363076409 0.15) (0.9200145391 -0.1531420473 0.15) (0.9202708801 -0.1474591974 0.15) (0.9148959449 -0.1471208094 0.15) (0.9418332058 -0.1434104822 0.15) (0.9416693977 -0.1488771428 0.15) (0.9470016886 -0.1492693369 0.15) (0.9523292216 -0.1496563956 0.15) (0.9365108249 -0.1429789202 0.15) (0.9361193599 -0.1540527259 0.15) (1.196393028 -0.4083129484 0.15) (1.153393112 -0.4062369581 0.15) (1.113698524 -0.3354904689 0.15) (1.135203476 -0.3365287052 0.15) (1.134098355 -0.3594190437 0.15) (1.112593403 -0.3583808074 0.15) (1.111488329 -0.3812701471 0.15) (1.046983461 -0.3781559205 0.15) (1.089983377 -0.3802319108 0.15) (1.092193572 -0.3344522327 0.15) (1.117013839 -0.2668204523 0.15) (1.095508887 -0.2657822161 0.15) (1.076214139 -0.2189641019 0.15) (1.075661593 -0.2304089715 0.15) (1.075109056 -0.2418536413 0.15) (1.074556472 -0.25329931 0.15) (1.042304086 -0.2517411978 0.15) (1.06380899 -0.2527804329 0.15) (1.065466633 -0.2184457243 0.15) (1.064914111 -0.2298900945 0.15) (1.214074713 -0.04207282645 0.15) (1.171074797 -0.03999683615 0.15) (1.125854679 -0.08370044129 0.15) (1.147359631 -0.08473867756 0.15) (1.146254529 -0.1076286165 0.15) (1.132485296 0.0536392923 0.15) (1.130275101 0.007859614165 0.15) (1.064665112 -0.01191649775 0.15) (1.086160076 -0.01295425179 0.15) (1.085054988 -0.03584389109 0.15) (0.8483822672 -0.06442743053 0.15) (0.8479340548 -0.07559831263 0.15) (0.8367724746 -0.08606214386 0.15) (0.8363478424 -0.0972008256 0.15) (0.8361299846 -0.1027709001 0.15) (0.830987624 -0.09684793046 0.15) (0.9997342847 -0.03000519761 0.15) (0.9985482598 -0.05311969548 0.15) (0.976234277 -0.0742097895 0.15) (0.9853744214 -0.1089752986 0.15) (0.9752687605 -0.09675916343 0.15) (0.9858134031 -0.09780897667 0.15) (0.9541172906 -0.0947862857 0.15) (0.9647061014 -0.09575072953 0.15) (-0.0466142108 -0.09931020252 0.15) (-0.03567460361 -0.1004718922 0.15) (-0.03568327817 -0.0941339003 0.15) (-0.03031235639 -0.09451394318 0.15) (-0.03017617791 -0.1010747429 0.15) (-0.030076754 -0.07414123808 0.15) (-0.03030857341 -0.08093366638 0.15) (-0.02374413728 -0.1267668037 0.15) (-0.02393571819 -0.1206733761 0.15) (-0.02414873664 -0.1144931137 0.15) (-0.02968066159 -0.113997272 0.15) (-0.02969460953 -0.1079530676 0.15) (-0.02412505005 -0.1085341232 0.15) (-0.03516645422 -0.107492264 0.15) (-0.00697078691 -0.110559806 0.15) (-0.01861651578 -0.1090271336 0.15) (-0.01806544063 -0.1273061737 0.15) (-0.01816367131 -0.1213300842 0.15) (-0.008074963839 -0.02228205769 0.15) (-0.008513326531 -0.02815174739 0.15) (-0.009073339663 -0.03414811815 0.15) (-0.003307271747 -0.03426591096 0.15) (-0.04407764275 -0.04677450312 0.15) (-0.03319179254 -0.04690129649 0.15) (-0.03265525372 -0.04076903564 0.15) (-0.02713400311 -0.04077469223 0.15) (-0.02777228873 -0.04705892337 0.15) (-0.02636089151 -0.03441437425 0.15) (-0.02060267283 -0.03422733391 0.15) (-0.02960650233 -0.06681058147 0.15) (-0.028311991 -0.05327122478 0.15) (-0.03370435044 -0.05307185833 0.15) (0.4193375016 -0.007164383423 0.15) (0.4247330247 -0.00744960232 0.15) (0.4298370867 -0.01352300009 0.15) (0.5582825363 -0.2248750815 0.15) (0.5690354946 -0.2253842113 0.15) (0.5695738541 -0.2140880305 0.15) (0.5641982602 -0.2138254991 0.15) (0.5588209923 -0.2135769031 0.15) (0.5749498338 -0.2143425713 0.15) (0.5752221755 -0.2086600934 0.15) (0.5787136491 -0.2484667728 0.15) (0.579251671 -0.2371775839 0.15) (0.5357018021 -0.2464512775 0.15) (0.5362402098 -0.235154098 0.15) (0.5475293852 -0.2243699471 0.15) (0.5480666011 -0.2130767146 0.15) (0.5483387981 -0.2073972332 0.15) (0.5534440619 -0.2133213153 0.15) (0.7076720318 -0.2544524671 0.15) (0.7082043223 -0.2431990435 0.15) (0.7194897984 -0.2324707792 0.15) (0.7149075048 -0.2153619039 0.15) (0.7200171153 -0.2212581632 0.15) (0.7146410047 -0.2209855951 0.15) (0.7253933223 -0.2215287336 0.15) (0.9242092571 -0.2304325476 0.15) (0.9296267133 -0.2304708369 0.15) (0.9344429369 -0.2422988492 0.15) (0.9347241306 -0.2365367054 0.15) (1.076766685 -0.2075192323 0.15) (1.066019165 -0.2070011543 0.15) (1.067124296 -0.1841106161 0.15) (1.077871797 -0.1846290936 0.15) (1.045619064 -0.1830781731 0.15) (1.121434262 -0.1752603969 0.15) (1.099929309 -0.1742221606 0.15) (1.077319241 -0.1960741629 0.15) (0.1392041921 0.04108245119 0.15) (0.128339495 0.04157895462 0.15) (0.127761237 0.0302236291 0.15) (0.1331925385 0.02997442677 0.15) (0.13863212 0.02973083168 0.15) (0.1274945508 0.02453387002 0.15) (0.1186140443 0.06478093586 0.15) (0.118038831 0.05342646451 0.15) (0.1620645873 0.06276928993 0.15) (0.1615027447 0.05142218238 0.15) (0.1500907673 0.04058288918 0.15) (0.1546762704 0.02329164697 0.15) (0.1495370118 0.02923739351 0.15) (0.1549577463 0.02897668737 0.15) (0.1440886336 0.02948541796 0.15) (0.4722740937 -0.2207977725 0.15) (0.4830308062 -0.2213120894 0.15) (0.4927102212 -0.2444307537 0.15) (0.4932500135 -0.2331256317 0.15) (0.506408351 -0.1829620031 0.15) (0.49540968 -0.1879155796 0.15) (0.5007796445 -0.1882325029 0.15) (0.4514990915 -0.01421140288 0.15) (0.4625229816 -0.009170941363 0.15) (0.4571438286 -0.008816231032 0.15) (0.4856963866 0.02393468774 0.15) (0.474922818 0.02449386962 0.15) (0.4651915533 0.04767911176 0.15) (0.4646654072 0.03636632274 0.15) (0.3993365062 0.0284054017 0.15) (0.3885219232 0.02894453809 0.15) (0.3880050421 0.0176162843 0.15) (0.393406041 0.0173615368 0.15) (0.3988164977 0.01709531986 0.15) (0.3826077492 0.01786484589 0.15) (0.382335008 0.01215335352 0.15) (0.3788079763 0.05213595229 0.15) (0.378273309 0.04081256186 0.15) (0.4220314039 0.04992002083 0.15) (0.421504066 0.0386032847 0.15) (0.4101721956 0.02784722535 0.15) (0.4147947177 0.01057622153 0.15) (0.4096570366 0.01653390589 0.15) (0.4150585865 0.01624909684 0.15) (0.4042394089 0.01681748883 0.15) (0.6442594502 -0.2289418578 0.15) (0.6550122294 -0.2294339591 0.15) (0.6555489011 -0.2181727377 0.15) (0.6501708134 -0.2179411219 0.15) (0.6447920644 -0.2177024661 0.15) (0.6609245709 -0.2183922227 0.15) (0.6611972502 -0.212702753 0.15) (0.6646868502 -0.2524652907 0.15) (0.665222957 -0.2411950315 0.15) (0.6216950143 -0.2504707848 0.15) (0.6222314105 -0.2391945326 0.15) (0.6335072496 -0.2284377704 0.15) (0.6289268572 -0.2113309893 0.15) (0.6340358685 -0.2171981858 0.15) (0.6286620312 -0.216940745 0.15) (0.6394127507 -0.2174547725 0.15) (0.5383824899 -0.1900760611 0.15) (0.5329932645 -0.189971456 0.15) (0.5278602356 -0.1843528905 0.15) (0.5925003681 -0.1860962451 0.15) (0.581470273 -0.1913067051 0.15) (0.5868356888 -0.1916763704 0.15) (0.6667791856 -0.03103668005 0.15) (0.6768034914 -0.04850470206 0.15) (0.6714222559 -0.04821386561 0.15) (0.6662872102 -0.04228454133 0.15) (0.6716722 -0.04258056486 0.15) (0.677053262 -0.04287499712 0.15) (0.6609057046 -0.04199929837 0.15) (0.9956680188 -0.2271016119 0.15) (1.00032218 -0.2262981137 0.15) (1.000408933 -0.2203537815 0.15) (0.9984933469 -0.21254332 0.15) (1.009499453 -0.2616217625 0.15) (1.010042821 -0.2501596303 0.15) (0.9998435773 -0.2380777385 0.15) (0.9995837656 -0.2438739529 0.15) (0.9946200611 -0.2446605044 0.15) (0.9559002615 -0.243431899 0.15) (0.9561635239 -0.2378130573 0.15) (0.9734876786 -0.1567517698 0.15) (0.9681632946 -0.1562994871 0.15) (0.9629709567 -0.1504785261 0.15) (0.9682944956 -0.1509068402 0.15) (0.973615463 -0.151346944 0.15) (0.9576383669 -0.1500925247 0.15) (0.9951545805 -0.1423872963 0.15) (0.9844889733 -0.1415204627 0.15) (1.013897902 -0.1701020945 0.15) (1.013302143 -0.1816125565 0.15) (1.012960804 -0.187438474 0.15) (0.9984318104 -0.1831270298 0.15) (1.00753254 -0.1872715138 0.15) (1.003566826 -0.1738152212 0.15) (1.003427675 -0.1796006416 0.15) (1.007895095 -0.1814208907 0.15) (1.000171231 -0.2053696865 0.15) (0.996316638 -0.2037129799 0.15) (0.9955158979 -0.208271169 0.15) (0.9968963021 -0.2116140249 0.15) (0.7293026393 -0.07987845651 0.15) (0.7289895143 -0.08572135435 0.15) (0.6648750643 -0.07105731784 0.15) (0.6760097586 -0.06556737668 0.15) (0.6705962644 -0.06538481059 0.15) (0.8351599372 -0.1253104341 0.15) (0.8461542902 -0.120218188 0.15) (0.8407984927 -0.1198981442 0.15) (0.8778853249 -0.1333837732 0.15) (0.8776521434 -0.1390016643 0.15) (0.8993464925 -0.1347482776 0.15) (0.8991386369 -0.1402978105 0.15) (0.06045552007 -0.001373762941 0.15) (0.06021360978 -0.00730309551 0.15) (0.03805843651 -0.006193620901 0.15) (0.02671459176 -0.01156343648 0.15) (0.03227356585 -0.0118515408 0.15) (0.4139581491 -0.0067515959 0.15) (0.590878736 -0.03842214224 0.15) (0.5854651712 -0.03813735382 0.15) (0.580344246 -0.03210218733 0.15) (0.5375231349 -0.0242281741 0.15) (0.5372398827 -0.03005369227 0.15) (0.5590809054 -0.02529218741 0.15) (0.5587909447 -0.0310700266 0.15) (0.5531297258 -0.03651626306 0.15) (0.7610433066 -0.09307262948 0.15) (0.7556478861 -0.0928267613 0.15) (0.750859546 -0.08093962485 0.15) (0.7505723448 -0.08670177887 0.15) (0.9131714397 -0.235906642 0.15) (0.9188073688 -0.2304450681 0.15) (0.8812085067 -0.228684899 0.15) (0.8865861394 -0.2290296244 0.15) (0.8917004204 -0.2349120928 0.15) (0.1091046744 -0.1458313211 0.15) (0.1144975478 -0.1462543726 0.15) (0.1192941156 -0.1583236177 0.15) (0.1195780834 -0.1525454891 0.15) (0.09763747224 -0.1571716341 0.15) (0.09793653996 -0.1512881111 0.15) (0.1036933417 -0.1454795624 0.15) (0.162575881 -0.160222894 0.15) (0.1628741457 -0.1542730551 0.15) (0.1409339301 -0.1595338575 0.15) (0.1411948435 -0.153942935 0.15) (0.06553454089 -0.14410484 0.15) (0.07099342241 -0.1444525869 0.15) (0.0761770745 -0.1505052987 0.15) (0.1157052129 0.00788982096 0.15) (0.1211649033 0.007585785848 0.15) (0.1263334076 0.001333372224 0.15) (0.2917607306 -0.1665776385 0.15) (0.2920360585 -0.1608747809 0.15) (0.2701901072 -0.1660494287 0.15) (0.2704376121 -0.1606532863 0.15) (0.3348059033 -0.1680272825 0.15) (0.3351179146 -0.1618963959 0.15) (0.3133318009 -0.1667233248 0.15) (0.3136593726 -0.1603945583 0.15) (0.2056813849 -0.162330713 0.15) (0.2059772619 -0.1564095925 0.15) (0.1841543502 -0.1610655479 0.15) (0.1844698554 -0.1549452421 0.15) (0.2487075778 -0.1648370712 0.15) (0.2489698962 -0.159279255 0.15) (0.2272116427 -0.1635913283 0.15) (0.227489527 -0.1578562565 0.15) (0.3562178886 -0.1694565906 0.15) (0.3565119664 -0.1635520025 0.15) (0.4943196144 -0.02226349492 0.15) (0.4939988442 -0.02820253594 0.15) (0.515941954 -0.0230684205 0.15) (0.5156789497 -0.02876486492 0.15) (0.5494943471 -0.1839808145 0.15) (0.543783688 -0.1900570998 0.15) (0.5761045871 -0.1909426333 0.15) (0.5710600642 -0.1843825405 0.15) (0.9774547567 -0.2442112231 0.15) (0.9777177226 -0.2386814708 0.15) (0.9730099921 -0.1731575208 0.15) (0.9676580826 -0.1727984191 0.15) (-0.00484952551 0.2071383091 0.15) (-0.006065820444 0.1843424417 0.15) (-0.05106343612 0.1632618263 0.15) (-0.02933207833 0.1623468155 0.15) (-0.02788536175 0.1852537006 0.15) (-0.0266850482 0.2080503396 0.15) (-0.05225874173 0.1404569362 0.15) (-0.06569091876 0.3024108582 0.15) (-0.06784176591 0.2555972841 0.15) (0.879909868 0.1607317927 0.15) (0.8370330823 0.1633284285 0.15) (0.8349533922 0.1178878516 0.15) (0.8563945144 0.1165643616 0.15) (0.8135164789 0.1191740954 0.15) (0.8124847969 0.09649846528 0.15) (0.7979472475 0.2600141935 0.15) (0.7961624279 0.2119297683 0.15) (0.8515024329 -0.1205723623 0.15) (0.8565910512 -0.1266338515 0.15) (0.7435075576 -0.001546325863 0.15) (0.7327732263 -0.0009209591095 0.15) (0.7225186468 0.01098940158 0.15) (0.7332700548 0.01036521271 0.15) (0.7440123286 0.009738461343 0.15) (0.7117750848 0.01161020816 0.15) (0.7879665735 0.02981422187 0.15) (0.7664990682 0.03108892746 0.15) (-0.02491179943 -0.08859819064 0.15) (-0.01946261065 -0.08935614743 0.15) (-0.01314243756 -0.1035668564 0.15) (-0.01349750714 -0.09716648776 0.15) (-0.01067933476 -0.04669046431 0.15) (-0.01154554266 -0.05324131459 0.15) (-0.02367078987 -0.06042756201 0.15) (-0.01815482152 -0.06048041878 0.15) (-0.03674096748 0.0365707655 0.15) (-0.03610728418 0.04798748969 0.15) (-0.05652523605 0.07167966326 0.15) (-0.07851413271 0.07230976185 0.15) (-0.002418748829 0.05834198152 0.15) (-0.02514907828 0.047621629 0.15) (-0.01406921734 0.04730996481 0.15) (-0.01333541949 0.05876190216 0.15) (-0.02584493753 0.03617787165 0.15) (0.07746753302 0.00950742977 0.15) (0.08268850347 0.00337332372 0.15) (0.386255339 -0.2167059494 0.15) (0.3970041091 -0.2172188816 0.15) (0.406673136 -0.2403660782 0.15) (0.4072136517 -0.2290459736 0.15) (0.3636783795 -0.2383283812 0.15) (0.3642192327 -0.2270012848 0.15) (0.3755075678 -0.2161930654 0.15) (0.7721436451 -0.08775513222 0.15) (0.7664585188 -0.09326108526 0.15) (0.7200758001 -0.04531189821 0.15) (0.7420455006 -0.03533443032 0.15) (0.7313073958 -0.03470427603 0.15) (0.8701850946 -0.2337361962 0.15) (0.8758289728 -0.2283380795 0.15) (0.10457079 0.002364025009 0.15) (0.1102599193 0.008098050362 0.15) (0.4496990011 -0.2424022735 0.15) (0.4502403227 -0.2310862125 0.15) (0.4615273214 -0.2202849367 0.15) (0.452446987 -0.1853796492 0.15) (0.4470732738 -0.1850781631 0.15) (0.4420099069 -0.178638802 0.15) (0.4204142304 -0.1784221466 0.15) (0.4093641563 -0.1838805317 0.15) (0.4147468746 -0.1840577074 0.15) (0.8382272379 -0.2266788893 0.15) (0.8436221959 -0.2267891775 0.15) (0.8487295538 -0.2327113583 0.15) (0.798765465 -0.0948503647 0.15) (0.7936260431 -0.08892873835 0.15) (0.7080731191 -0.07290709978 0.15) (0.7137232128 -0.06752540191 0.15) (0.07504950971 0.06672500016 0.15) (0.07446212782 0.05536110465 0.15) (0.06289990795 0.04445197532 0.15) (0.05198757651 0.04491573772 0.15) (0.6814097814 -0.06578012826 0.15) (0.6865297108 -0.07175297422 0.15) (-0.03963515272 0.001578621465 0.15) (-0.02838600612 0.001507273436 0.15) (-0.01830000611 -0.01039444783 0.15) (-0.00709631997 -0.0105634172 0.15) (-0.001505788349 -0.01069265849 0.15) (-0.007587045768 -0.01641656256 0.15) (0.6019528855 -0.03319088239 0.15) (0.5962845989 -0.03867982771 0.15) (0.05429975507 -0.1493350523 0.15) (0.06005212738 -0.1437882945 0.15) (0.4634806096 -0.1800131778 0.15) (0.4578152335 -0.1856906828 0.15) (0.4900367335 -0.187598212 0.15) (0.4849422343 -0.181492638 0.15) (0.37739739 -0.1765930274 0.15) (0.3663851882 -0.1816817086 0.15) (0.3717556439 -0.1819677196 0.15) (0.4039870192 -0.183649963 0.15) (0.3988728661 -0.1778477941 0.15) (0.4679160007 -0.009466551599 0.15) (0.4729980039 -0.01562358294 0.15) (0.8271943879 -0.2319049347 0.15) (0.8328353866 -0.2265457244 0.15) (0.7952380127 -0.2246925188 0.15) (0.800590282 -0.2249819568 0.15) (0.805688003 -0.2308756397 0.15) (0.9783494906 -0.1735041094 0.15) (0.9833373604 -0.1797653226 0.15) (0.9309782489 -0.1481246105 0.15) (0.9256281786 -0.1477896256 0.15) (0.9204932004 -0.1418589029 0.15) (-0.01491001966 -0.03420181974 0.15) (-0.009809164423 -0.04031260637 0.15) (1.000106282 -0.2322215938 0.15) (1.010994156 -0.2271367215 0.15) (1.005597442 -0.226731005 0.15) (1.011705578 -0.2049356998 0.15) (1.005951251 -0.2050939943 0.15) (1.002852999 -0.1915038773 0.15) (1.000992131 -0.1993570775 0.15) (-1.02877 -0.962597 0.15) (-1.0288 -0.8251 0.15) (-1.02888 -0.641775 0.15) (-1.02895 -0.458448 0.15) (-1.02901 -0.275121 0.15) (-1.02904 -0.0917902 0.15) (-1.02904 0.0915431 0.15) (-1.02901 0.274879 0.15) (-1.02895 0.458218 0.15) (-1.02888 0.641559 0.15) (-1.0288 0.8249 0.15) (-1.02872 1.00824 0.15) (-0.900226 -1.00849 0.15) (-0.900275 -0.962663 0.15) (-0.857436 -0.962684 0.15) (-0.985942 -0.96262 0.15) (-0.943121 -0.916809 0.15) (-0.94317 -0.870981 0.15) (-0.943181 -0.825148 0.15) (-0.985993 -0.825125 0.15) (-0.943242 -0.733488 0.15) (-0.943293 -0.687659 0.15) (-0.943302 -0.641827 0.15) (-0.986092 -0.641801 0.15) (-0.943362 -0.550166 0.15) (-0.943412 -0.504337 0.15) (-0.943418 -0.458504 0.15) (-0.986186 -0.458477 0.15) (-0.943469 -0.366843 0.15) (-0.9435148665 -0.3210156273 0.15) (-0.9435320731 -0.2752238257 0.15) (-0.986262 -0.27515 0.15) (-0.9436142112 -0.1837410126 0.15) (-0.9436552693 -0.138008093 0.15) (-0.9436293158 -0.09225431882 0.15) (-0.9863071339 -0.09183347913 0.15) (-0.9435771802 -0.0006603500727 0.15) (-0.9435650641 0.04518922673 0.15) (-0.9435093564 0.09107755735 0.15) (-0.986303141 0.09149959299 0.15) (-0.9434802291 0.1829237757 0.15) (-0.9435071854 0.2288559389 0.15) (-0.9434923243 0.2747747513 0.15) (-0.986262 0.27485 0.15) (-0.943469 0.366491 0.15) (-0.943467 0.412324 0.15) (-0.943418 0.458162 0.15) (-0.986187 0.45819 0.15) (-0.943362 0.549834 0.15) (-0.943354 0.595668 0.15) (-0.943303 0.641507 0.15) (-0.986093 0.641532 0.15) (-0.943242 0.733179 0.15) (-0.943231 0.779013 0.15) (-0.943181 0.824852 0.15) (-0.985993 0.824875 0.15) (-0.900276 0.962338 0.15) (-0.943063 1.0082 0.15) (-0.900227 1.00818 0.15) (-0.857392 1.00825 0.15) (-0.985895 1.00822 0.15) (-0.728831 -1.00857 0.15) (-0.728893 -0.962745 0.15) (-0.686035 -0.962769 0.15) (-0.814593 -0.962705 0.15) (-0.771786 -0.916895 0.15) (-0.771847 -0.871068 0.15) (-0.771889 -0.825239 0.15) (-0.814719 -0.825217 0.15) (-0.857544 -0.825194 0.15) (-0.771996 -0.733582 0.15) (-0.772061 -0.687755 0.15) (-0.772105 -0.641926 0.15) (-0.814911 -0.641902 0.15) (-0.857712 -0.641877 0.15) (-0.772572002 -0.5507773759 0.15) (-0.7730132361 -0.5055773537 0.15) (-0.7734633206 -0.4605541961 0.15) (-0.8155665063 -0.459336712 0.15) (-0.8579571629 -0.4586853531 0.15) (-0.7742398033 -0.3708193103 0.15) (-0.7744835875 -0.3259996079 0.15) (-0.7745706597 -0.2811447386 0.15) (-0.8165343881 -0.2786687988 0.15) (-0.8586641018 -0.2768764875 0.15) (-0.7743449485 -0.1911709257 0.15) (-0.7740507131 -0.1459844939 0.15) (-0.7736335021 -0.1006314663 0.15) (-0.8160500255 -0.09745696959 0.15) (-0.8585121435 -0.09501125285 0.15) (-0.7726374023 -0.009366222199 0.15) (-0.7721240705 0.0365598432 0.15) (-0.7716152273 0.08268043227 0.15) (-0.81469139 0.08586379105 0.15) (-0.8577015969 0.08831504917 0.15) (-0.7708265659 0.1754598215 0.15) (-0.7705976166 0.2220789955 0.15) (-0.7704715354 0.268814831 0.15) (-0.8140133802 0.2713078641 0.15) (-0.8573764435 0.273111048 0.15) (-0.770625824 0.3624791658 0.15) (-0.7708824814 0.4093157288 0.15) (-0.7711902683 0.45608724 0.15) (-0.8146352306 0.4573169786 0.15) (-0.8577913471 0.4579769105 0.15) (-0.7718547711 0.5492090977 0.15) (-0.7720813825 0.5954471251 0.15) (-0.772106 0.641407 0.15) (-0.814911 0.641431 0.15) (-0.857712 0.641456 0.15) (-0.771997 0.733084 0.15) (-0.771954 0.778925 0.15) (-0.771892 0.82478 0.15) (-0.81472 0.824783 0.15) (-0.857545 0.824806 0.15) (-0.728055 0.964401 0.15) (-0.771406 1.00946 0.15) (-0.727837 1.01033 0.15) (-0.68461 1.01067 0.15) (-0.814541 1.00851 0.15) (-0.556084 -1.01091 0.15) (-0.556399 -0.964912 0.15) (-0.512556 -0.965648 0.15) (-0.643164 -0.962856 0.15) (-0.600338 -0.917186 0.15) (-0.600435 -0.871234 0.15) (-0.600512 -0.825335 0.15) (-0.643366 -0.825301 0.15) (-0.686213 -0.825281 0.15) (-0.6011444028 -0.7342868096 0.15) (-0.6020005797 -0.6895658282 0.15) (-0.6030573408 -0.6453141585 0.15) (-0.644934532 -0.6438000326 0.15) (-0.6870403269 -0.6427307033 0.15) (-0.6053365772 -0.5578640211 0.15) (-0.6063513279 -0.5144725651 0.15) (-0.607158498 -0.4711748618 0.15) (-0.6485100793 -0.467710648 0.15) (-0.6899800208 -0.4647561598 0.15) (-0.6080050283 -0.3845062215 0.15) (-0.6079990196 -0.3409814615 0.15) (-0.6076898595 -0.2972454734 0.15) (-0.6493392564 -0.2924330864 0.15) (-0.6910109093 -0.288083193 0.15) (-0.606304801 -0.2089675269 0.15) (-0.605299414 -0.1643636682 0.15) (-0.6041262372 -0.1194265859 0.15) (-0.6465052607 -0.114021092 0.15) (-0.6888751422 -0.1090006628 0.15) (-0.6015209772 -0.02851338923 0.15) (-0.6001888668 0.01747139404 0.15) (-0.5988866756 0.0638090018 0.15) (-0.6421009951 0.06923950046 0.15) (-0.6853057395 0.07428135617 0.15) (-0.5966240464 0.1575274163 0.15) (-0.5957551859 0.2048859266 0.15) (-0.595098324 0.2525480008 0.15) (-0.6390512409 0.2574179121 0.15) (-0.6829559814 0.2618146764 0.15) (-0.5945831056 0.3486294222 0.15) (-0.5947488055 0.3969393846 0.15) (-0.5951688242 0.4453349165 0.15) (-0.6394278039 0.4488480752 0.15) (-0.6835476873 0.4518405036 0.15) (-0.5966767008 0.5420494308 0.15) (-0.5976488575 0.5902532899 0.15) (-0.5986325133 0.6383038225 0.15) (-0.6423846653 0.6395256418 0.15) (-0.6859130936 0.6405814338 0.15) (-0.5992800418 0.7348792695 0.15) (-0.5989973055 0.7819038491 0.15) (-0.598865 0.827889 0.15) (-0.642315 0.827359 0.15) (-0.686094 0.82587 0.15) (-0.555714 0.965414 0.15) (-0.598649 1.01102 0.15) (-0.555678 1.01118 0.15) (-0.512702 1.01133 0.15) (-0.641617 1.01086 0.15) (-0.383309 -1.01194 0.15) (-0.383341 -0.966197 0.15) (-0.340336 -0.966337 0.15) (-0.469354 -0.965893 0.15) (-0.426375 -0.920295 0.15) (-0.4266859343 -0.8748865321 0.15) (-0.4276768537 -0.830308285 0.15) (-0.4707469482 -0.8290190857 0.15) (-0.5145306517 -0.8268645627 0.15) (-0.4314087819 -0.7431454311 0.15) (-0.4337889499 -0.7002184185 0.15) (-0.4363389811 -0.6565556569 0.15) (-0.4782647823 -0.6524449832 0.15) (-0.519793741 -0.649567508 0.15) (-0.4400361102 -0.5720130602 0.15) (-0.4412104015 -0.530276187 0.15) (-0.4419508126 -0.4885184706 0.15) (-0.4833152657 -0.4838287983 0.15) (-0.5246075096 -0.4793279299 0.15) (-0.4421147253 -0.4043088123 0.15) (-0.4415690767 -0.3616252543 0.15) (-0.4406471967 -0.3184620033 0.15) (-0.4825332951 -0.3131537203 0.15) (-0.5243178074 -0.3077513683 0.15) (-0.4379050635 -0.2307773803 0.15) (-0.4362047139 -0.18626844 0.15) (-0.4343490962 -0.1413581452 0.15) (-0.4768452556 -0.1362179347 0.15) (-0.5193036276 -0.1307159569 0.15) (-0.430385898 -0.05046458807 0.15) (-0.4283618524 -0.004516353604 0.15) (-0.4263548081 0.04177484998 0.15) (-0.4694010841 0.04693702173 0.15) (-0.5125164958 0.05246481803 0.15) (-0.4226222232 0.1356275823 0.15) (-0.4210102313 0.1833999445 0.15) (-0.4196332312 0.2316674603 0.15) (-0.463373147 0.2365363223 0.15) (-0.5072169878 0.2419107996 0.15) (-0.4177222404 0.3295235125 0.15) (-0.417357554 0.3792275547 0.15) (-0.4171590316 0.4299734925 0.15) (-0.4620689812 0.4331742399 0.15) (-0.5064350345 0.4371247077 0.15) (-0.4167777178 0.5318299432 0.15) (-0.4177326383 0.5818965033 0.15) (-0.4192264358 0.6316910091 0.15) (-0.4638334227 0.6346014181 0.15) (-0.5089251513 0.6368144171 0.15) (-0.4226273984 0.7303247551 0.15) (-0.4242377974 0.7788866809 0.15) (-0.4255790251 0.8267634776 0.15) (-0.4691654718 0.8274909649 0.15) (-0.5125832744 0.8279367158 0.15) (-0.383744 0.966037 0.15) (-0.426704 1.01164 0.15) (-0.383585 1.01184 0.15) (-0.340202 1.01213 0.15) (-0.469724 1.01148 0.15) (-0.211093 -1.01252 0.15) (-0.2112890117 -0.9669767168 0.15) (-0.1684347444 -0.9673335168 0.15) (-0.2973033034 -0.9664806899 0.15) (-0.2549215661 -0.921850298 0.15) (-0.2565578606 -0.8784170602 0.15) (-0.2585713546 -0.8359001366 0.15) (-0.3008156525 -0.8343514971 0.15) (-0.343024637 -0.8328776762 0.15) (-0.2633450684 -0.7534182273 0.15) (-0.2657171415 -0.7130761679 0.15) (-0.2678570615 -0.6730426234 0.15) (-0.3095746693 -0.6695344782 0.15) (-0.3512861059 -0.6659276612 0.15) (-0.2709476808 -0.5930455599 0.15) (-0.2717979282 -0.5526432061 0.15) (-0.2723817882 -0.5115991305 0.15) (-0.3152761976 -0.5067993384 0.15) (-0.3582141362 -0.5004057355 0.15) (-0.2728105677 -0.4271247711 0.15) (-0.2723677502 -0.382990253 0.15) (-0.2711357213 -0.3387290394 0.15) (-0.3139544415 -0.3340848428 0.15) (-0.3564240385 -0.3288084463 0.15) (-0.2678296838 -0.2478007715 0.15) (-0.265911837 -0.2013697988 0.15) (-0.263863837 -0.1550510721 0.15) (-0.3065673261 -0.1527821116 0.15) (-0.3492159676 -0.1497957196 0.15) (-0.2595430608 -0.06337758749 0.15) (-0.2573169036 -0.01745390359 0.15) (-0.2550222194 0.02899748167 0.15) (-0.2977479362 0.03074905195 0.15) (-0.3405256744 0.03343568074 0.15) (-0.2500318758 0.1223686965 0.15) (-0.2474779394 0.1694011948 0.15) (-0.2448042985 0.2173189869 0.15) (-0.2888268691 0.2193295086 0.15) (-0.3323359412 0.222872927 0.15) (-0.2396570175 0.3149028211 0.15) (-0.2384014878 0.3641092954 0.15) (-0.2379220984 0.4139365879 0.15) (-0.2819872041 0.4182941939 0.15) (-0.3264761614 0.4227501967 0.15) (-0.2386835106 0.5154581294 0.15) (-0.2398704723 0.5668626911 0.15) (-0.2415012885 0.6184402889 0.15) (-0.2858237123 0.6217815841 0.15) (-0.3302292397 0.6251691672 0.15) (-0.2456042613 0.7212843503 0.15) (-0.2477982648 0.7720936132 0.15) (-0.2499198912 0.8225351629 0.15) (-0.2940471798 0.8234298227 0.15) (-0.3380540891 0.8246439953 0.15) (-0.2104472394 0.9664248064 0.15) (-0.253793 1.01252 0.15) (-0.210761 1.01264 0.15) (-0.1677153246 1.012745227 0.15) (-0.296897 1.01235 0.15) (-0.03852093207 -1.013146691 0.15) (-0.03934151287 -0.9686443548 0.15) (0.003754439028 -0.9689815947 0.15) (-0.1255777062 -0.9677342473 0.15) (-0.08411796381 -0.9248662656 0.15) (-0.08627096784 -0.8828681739 0.15) (-0.08883819173 -0.8420098521 0.15) (-0.1314103458 -0.8404777143 0.15) (-0.1737428521 -0.8388543276 0.15) (-0.09435486409 -0.7628546921 0.15) (-0.09690197519 -0.7240452217 0.15) (-0.09907323292 -0.6853759457 0.15) (-0.1414749118 -0.6822974408 0.15) (-0.1839450533 -0.6796038765 0.15) (-0.1018612409 -0.607343856 0.15) (-0.102377999 -0.5674531746 0.15) (-0.1024885937 -0.5268869545 0.15) (-0.1451569536 -0.5236684436 0.15) (-0.1875964901 -0.5200851283 0.15) (-0.1004518535 -0.4421999583 0.15) (-0.09870457575 -0.3979665615 0.15) (-0.09668260344 -0.3525503841 0.15) (-0.1400828317 -0.3501045338 0.15) (-0.1838097515 -0.3471948574 0.15) (-0.1314882902 -0.06952007153 0.15) (-0.130358303 -0.04588657757 0.15) (-0.1290408782 -0.02173010393 0.15) (-0.1504500827 -0.02098973141 0.15) (-0.171851865 -0.02028225509 0.15) (-0.06394529062 0.3505905072 0.15) (-0.06251839575 0.4001055907 0.15) (-0.1065712311 0.4028809563 0.15) (-0.1503459233 0.406139362 0.15) (-0.06189870141 0.5017669114 0.15) (-0.06271067252 0.5537901531 0.15) (-0.06415374193 0.6063190471 0.15) (-0.1081929917 0.6094610906 0.15) (-0.1527115681 0.6127909549 0.15) (-0.06855739118 0.7118184483 0.15) (-0.07122129787 0.7642218334 0.15) (-0.07395659006 0.8160184781 0.15) (-0.117715534 0.8175913547 0.15) (-0.1615877268 0.8192623537 0.15) (-0.03725881412 0.9651432011 0.15) (-0.0814650592 1.012757377 0.15) (-0.03834865532 1.012698054 0.15) (0.004944018058 1.012650117 0.15) (-0.1246259432 1.012770067 0.15) (0.1341599757 -1.013542158 0.15) (0.1330736606 -0.9697686359 0.15) (0.1761343703 -0.9700077312 0.15) (0.04684689251 -0.9691994684 0.15) (0.08808153852 -0.9273586161 0.15) (0.08565112027 -0.8864418596 0.15) (0.08286460382 -0.8466920476 0.15) (0.04000924579 -0.8453279077 0.15) (-0.002983961455 -0.8445240256 0.15) (0.0771061234 -0.7698427863 0.15) (0.0745454355 -0.7321189075 0.15) (0.07242591184 -0.6944222371 0.15) (0.02952487077 -0.6921476388 0.15) (-0.0134305838 -0.690444275 0.15) (0.06997052449 -0.6178050595 0.15) (0.06975474201 -0.578279788 0.15) (0.07021738478 -0.5375976846 0.15) (0.02702032158 -0.5351379492 0.15) (-0.01618125601 -0.5327940714 0.15) (0.0568761664 0.1359308829 0.15) (0.05804039082 0.1586892177 0.15) (0.03622573015 0.159637284 0.15) (0.01443055818 0.1605894153 0.15) (0.1104169001 0.3403632175 0.15) (0.1118535615 0.3889057343 0.15) (0.06820597945 0.3914128313 0.15) (0.02483109737 0.3939719388 0.15) (0.1127165479 0.49023925 0.15) (0.1121159582 0.5426474078 0.15) (0.1108411296 0.5958678699 0.15) (0.06677018397 0.5986947124 0.15) (0.02323169026 0.6008389041 0.15) (0.1065718768 0.7034312321 0.15) (0.1038506834 0.7571217745 0.15) (0.1010126673 0.8102816371 0.15) (0.05697864196 0.8123363482 0.15) (0.01330265205 0.8133476265 0.15) (0.1365347302 0.9632852233 0.15) (0.09180641286 1.012089996 0.15) (0.1349767692 1.011853239 0.15) (0.1781272959 1.011693645 0.15) (0.04848636152 1.012352944 0.15) (0.3064369804 -1.013838011 0.15) (0.3051963801 -0.9705448232 0.15) (0.3481733192 -0.9706958355 0.15) (0.2191818331 -0.9702117415 0.15) (0.2602259449 -0.9286180587 0.15) (0.2576949926 -0.8883965581 0.15) (0.2548335528 -0.8494971518 0.15) (0.2118824832 -0.8488124561 0.15) (0.1689131353 -0.848084447 0.15) (0.2490118611 -0.7744538147 0.15) (0.2464580459 -0.7376180181 0.15) (0.2443693295 -0.700747835 0.15) (0.2014210199 -0.6992079311 0.15) (0.1584522314 -0.6976123877 0.15) (0.2420276134 -0.6254605067 0.15) (0.2418884986 -0.5863802712 0.15) (0.2424370137 -0.545965384 0.15) (0.1994340942 -0.5439241039 0.15) (0.1563910461 -0.5418457299 0.15) (0.2305020295 0.1277556516 0.15) (0.2316059447 0.1504758503 0.15) (0.2099257278 0.151533561 0.15) (0.1882511181 0.1525829916 0.15) (0.283484774 0.3312444948 0.15) (0.284970006 0.3796020155 0.15) (0.2416861035 0.3817771858 0.15) (0.1983769451 0.3840785374 0.15) (0.2860662577 0.4813360014 0.15) (0.2855737609 0.534271985 0.15) (0.2843864316 0.5881729506 0.15) (0.2410551225 0.5898569193 0.15) (0.1976071859 0.5918643442 0.15) (0.2801995199 0.6975062264 0.15) (0.2774443353 0.7521500883 0.15) (0.2744714756 0.8062883429 0.15) (0.2311252212 0.8071250508 0.15) (0.1876378157 0.8082605885 0.15) (0.3095884562 0.9621141936 0.15) (0.2647191574 1.011262034 0.15) (0.3079289813 1.011164716 0.15) (0.3510412659 1.011147677 0.15) (0.2214410066 1.011443817 0.15) (0.478469152 -1.014150633 0.15) (0.4770731523 -0.9713050937 0.15) (0.5200466724 -0.9715313011 0.15) (0.3911319807 -0.9708839699 0.15) (0.4319980557 -0.9299736339 0.15) (0.4293702204 -0.8905256656 0.15) (0.4264407706 -0.8524753038 0.15) (0.3835555225 -0.8516603941 0.15) (0.3406745254 -0.8508846491 0.15) (0.4205649319 -0.7792137755 0.15) (0.4180220695 -0.7432349904 0.15) (0.415962158 -0.7071505211 0.15) (0.3730785357 -0.7054753905 0.15) (0.3301996331 -0.7038391992 0.15) (0.4137239168 -0.6330907622 0.15) (0.4136495321 -0.5943993555 0.15) (0.4142679102 -0.5542019985 0.15) (0.3713117123 -0.5521112911 0.15) (0.3283684525 -0.5500372742 0.15) (0.403589046 0.1190387748 0.15) (0.404662693 0.1417334034 0.15) (0.383091005 0.1428409385 0.15) (0.3614964402 0.1439515803 0.15) (0.4560849383 0.322933914 0.15) (0.4574511351 0.3719833865 0.15) (0.4143883965 0.3736959168 0.15) (0.3713319288 0.3756241387 0.15) (0.4582131009 0.4758436805 0.15) (0.457570284 0.5297659001 0.15) (0.4563983874 0.5840400566 0.15) (0.41359122 0.5845845764 0.15) (0.3706043036 0.5857778832 0.15) (0.4521449526 0.6949722725 0.15) (0.4494109267 0.7503246152 0.15) (0.4464854914 0.8050582164 0.15) (0.4036576651 0.8050689711 0.15) (0.3606545362 0.805528334 0.15) (0.4815886664 0.9623471365 0.15) (0.4371421171 1.01102514 0.15) (0.4801585061 1.011160267 0.15) (0.5231306763 1.011217689 0.15) (0.3941146004 1.011040922 0.15) (0.6504314204 -1.014621258 0.15) (0.6488466635 -0.9724628559 0.15) (0.6918415847 -0.9726487232 0.15) (0.5630123475 -0.9717785657 0.15) (0.603739247 -0.9316564854 0.15) (0.6010093411 -0.8930425537 0.15) (0.5980107793 -0.8558875179 0.15) (0.5551272883 -0.8549971729 0.15) (0.5122395085 -0.8541242011 0.15) (0.5920869009 -0.7844461805 0.15) (0.5895606773 -0.7493139288 0.15) (0.5875393508 -0.7139860006 0.15) (0.5446533005 -0.7122424014 0.15) (0.5017635503 -0.7105124941 0.15) (0.5854266413 -0.6410380049 0.15) (0.5854304023 -0.6026541672 0.15) (0.5861303016 -0.5625772985 0.15) (0.5431711752 -0.5604734943 0.15) (0.5002061116 -0.5583719884 0.15) (0.5760601166 0.1099231367 0.15) (0.5771100187 0.1326028931 0.15) (0.5555805025 0.1337544457 0.15) (0.5340258362 0.1349242324 0.15) (0.6279765895 0.3157585932 0.15) (0.6290883033 0.3662643572 0.15) (0.5862383858 0.3675433563 0.15) (0.5433416927 0.3687580172 0.15) (0.6294222191 0.4725792702 0.15) (0.6285860429 0.5277913822 0.15) (0.6271064302 0.583860846 0.15) (0.5847282485 0.582947748 0.15) (0.5419849819 0.5832168431 0.15) (0.6228609172 0.6958186147 0.15) (0.6201633463 0.7516147866 0.15) (0.6173289108 0.8065448501 0.15) (0.5746898488 0.8059623262 0.15) (0.5319288969 0.805813793 0.15) (0.6530404758 0.9633847428 0.15) (0.609111766 1.011198755 0.15) (0.6520915105 1.011297896 0.15) (0.6951086141 1.011221486 0.15) (0.5661307999 1.011183362 0.15) (0.822274465 -1.015415781 0.15) (0.8204784421 -0.9740838211 0.15) (0.8634725707 -0.9743188994 0.15) (0.7347715702 -0.973007012 0.15) (0.7755269528 -0.9332913053 0.15) (0.7727281771 -0.8954601289 0.15) (0.7693702304 -0.8600134688 0.15) (0.7265565462 -0.8588890084 0.15) (0.6837158336 -0.8578279821 0.15) (0.7634052523 -0.7904526424 0.15) (0.7609063757 -0.7561512498 0.15) (0.7589388857 -0.7215320844 0.15) (0.7161098924 -0.7195537089 0.15) (0.6732582073 -0.7176364792 0.15) (0.7569928192 -0.6495178672 0.15) (0.7570970769 -0.6113155843 0.15) (0.7579027096 -0.571214058 0.15) (0.7149686531 -0.5690184948 0.15) (0.6720181187 -0.5668465382 0.15) (0.7480747103 0.1003109336 0.15) (0.7993045557 0.3103687634 0.15) (0.8001061935 0.3626843748 0.15) (0.7574314663 0.3632648925 0.15) (0.7146538092 0.3643213938 0.15) (0.7998514796 0.4722949908 0.15) (0.7987661952 0.5288759319 0.15) (0.7970959588 0.5859907144 0.15) (0.7547357957 0.5848762814 0.15) (0.7123354063 0.5838882443 0.15) (0.7924597213 0.7001645594 0.15) (0.7897866345 0.7561539692 0.15) (0.7871480482 0.8109142192 0.15) (0.7447402187 0.809648644 0.15) (0.7024222524 0.8081374827 0.15) (0.8245172396 0.9642711845 0.15) (0.7811572152 1.010987167 0.15) (0.824205 1.01078 0.15) (0.867232 1.01058 0.15) (0.7381150427 1.011128125 0.15) (0.9949777014 -1.01502496 0.15) (0.9928395977 -0.974728153 0.15) (1.035255045 -0.9722206246 0.15) (0.9062224854 -0.9751776061 0.15) (0.9465924072 -0.9374221958 0.15) (0.9435931044 -0.9008850074 0.15) (0.9404266377 -0.8658091258 0.15) (0.8976180133 -0.8641573783 0.15) (0.8551299524 -0.8619931173 0.15) (0.9344570538 -0.7981851241 0.15) (0.9320312361 -0.7646322982 0.15) (0.9301750171 -0.7305742106 0.15) (0.8874098581 -0.7277501493 0.15) (0.84457367 -0.7256902354 0.15) (0.9285256446 -0.6590437679 0.15) (0.9287938864 -0.6207522499 0.15) (0.9297606626 -0.5803496217 0.15) (0.8867095285 -0.5779664037 0.15) (0.843775541 -0.5756889049 0.15) (0.8780502398 -0.2960719964 0.15) (0.8785829782 -0.2847885594 0.15) (0.8678240613 -0.2842991653 0.15) (0.85709192 -0.2838150685 0.15) (0.8898334943 -0.1008209636 0.15) (0.8902591741 -0.08970205539 0.15) (0.8795735017 -0.08893977582 0.15) (0.9634039663 0.1096580345 0.15) (0.9654779673 0.1557721145 0.15) (0.9227282732 0.1582201525 0.15) (0.9689406409 0.2552710892 0.15) (0.9699016941 0.308046052 0.15) (0.9703031298 0.3627618177 0.15) (0.9277819832 0.3625586576 0.15) (0.8853166819 0.362099695 0.15) (0.9693173734 0.4765738865 0.15) (0.9679040873 0.5345269161 0.15) (0.9663134729 0.5915227746 0.15) (0.9241503471 0.5894854211 0.15) (0.8818223801 0.588200048 0.15) (0.9618368362 0.7055135236 0.15) (0.9594233638 0.760948772 0.15) (0.9571590408 0.8148977938 0.15) (0.9146906148 0.8137803179 0.15) (0.8721218583 0.8129812638 0.15) (0.996255 0.964048 0.15) (0.953252 1.01014 0.15) (0.996254 1.00991 0.15) (1.03926 1.00967 0.15) (0.91025 1.01035 0.15) (1.166988205 -1.011207323 0.15) (1.165202357 -0.9705242623 0.15) (1.208686055 -0.9694155371 0.15) (1.078459464 -0.9719621289 0.15) (1.119246957 -0.9333206679 0.15) (1.116316961 -0.8972148588 0.15) (1.113216926 -0.8626586347 0.15) (1.069679792 -0.8635532898 0.15) (1.026357432 -0.8637725657 0.15) (1.107350635 -0.7962532398 0.15) (1.104952655 -0.7633580471 0.15) (1.103104757 -0.7299633074 0.15) (1.059553405 -0.7305360899 0.15) (1.016236736 -0.7301930954 0.15) (1.101402841 -0.6597271707 0.15) (1.101611593 -0.6220568491 0.15) (1.102495989 -0.5822661019 0.15) (1.059260288 -0.5814250121 0.15) (1.016142148 -0.5800027508 0.15) (1.081739673 -0.1045139077 0.15) (1.082844775 -0.08162396876 0.15) (1.061349811 -0.08058621472 0.15) (1.13462441 0.1004852441 0.15) (1.136526249 0.149722232 0.15) (1.093609092 0.1506114432 0.15) (1.05072984 0.1512374394 0.15) (1.139150905 0.2551075498 0.15) (1.139690884 0.3108039486 0.15) (1.139794939 0.3670717046 0.15) (1.097654682 0.3653227902 0.15) (1.055151207 0.3641781778 0.15) (1.138271527 0.4828680309 0.15) (1.136944668 0.5419179877 0.15) (1.135011454 0.599998443 0.15) (1.092805274 0.5980775615 0.15) (1.050773345 0.5953828747 0.15) (1.130670288 0.7132432875 0.15) (1.128635813 0.7677301954 0.15) (1.126942545 0.8201420929 0.15) (1.084520424 0.8187781588 0.15) (1.041968342 0.8177526867 0.15) (1.16822 0.962976 0.15) (1.12529 1.00921 0.15) (1.16826 1.00895 0.15) (1.21123 1.00864 0.15) (1.08228 1.00943 0.15) (1.340170289 -1.008643312 0.15) (1.339321237 -0.9653656148 0.15) (1.382796199 -0.9641196439 0.15) (1.252228683 -0.9681263239 0.15) (1.293960161 -0.9267232818 0.15) (1.291654607 -0.8888590584 0.15) (1.289061765 -0.8528019085 0.15) (1.244896145 -0.8561038466 0.15) (1.200840947 -0.8588944218 0.15) (1.283784459 -0.7844108349 0.15) (1.281445046 -0.7511434218 0.15) (1.279493374 -0.7178584603 0.15) (1.235085403 -0.7223833376 0.15) (1.190870154 -0.7259117492 0.15) (1.277122644 -0.6494696374 0.15) (1.276796756 -0.6136191722 0.15) (1.277044712 -0.5762949599 0.15) (1.233116423 -0.5795495751 0.15) (1.189390139 -0.5815187246 0.15) (1.279068701 -0.4967273275 0.15) (1.280687218 -0.4545222509 0.15) (1.282582073 -0.4109307075 0.15) (1.239413977 -0.4102957652 0.15) (1.286827044 -0.3208605858 0.15) (1.289033479 -0.275125378 0.15) (1.291243688 -0.2293454002 0.15) (1.248243772 -0.2272694099 0.15) (1.295664688 -0.1377566725 0.15) (1.29787578 -0.09164687828 0.15) (1.300068144 -0.04485972916 0.15) (1.257083969 -0.04409885291 0.15) (1.304200755 0.05219952524 0.15) (1.305994508 0.1030121075 0.15) (1.307492623 0.1555178682 0.15) (1.264880524 0.1522878417 0.15) (1.222169081 0.1503611505 0.15) (1.309284798 0.2653980449 0.15) (1.309463613 0.3223789326 0.15) (1.309132255 0.3802975712 0.15) (1.266960424 0.3757074864 0.15) (1.22465255 0.3721308366 0.15) (1.307049277 0.4972581695 0.15) (1.305446089 0.5553556664 0.15) (1.303626345 0.6125536199 0.15) (1.261424112 0.6091683041 0.15) (1.219119141 0.6063104898 0.15) (1.299979985 0.7224425374 0.15) (1.298515753 0.7743666332 0.15) (1.297538845 0.8238861447 0.15) (1.254712465 0.8231331381 0.15) (1.212064656 0.8217637337 0.15) (1.34028 0.9625 0.15) (1.29722 1.00833 0.15) (1.34028 1.00833 0.15) (1.38333 1.00833 0.15) (1.25417 1.00833 0.15) (1.5125 -1.00833 0.15) (1.5125 -0.9625 0.15) (1.55556 -0.9625 0.15) (1.426182042 -0.9631403717 0.15) (1.468871349 -0.9185308289 0.15) (1.467729566 -0.8767252091 0.15) (1.466151275 -0.8369319074 0.15) (1.421915413 -0.8409860254 0.15) (1.377615458 -0.8450997183 0.15) (1.462336157 -0.7621378142 0.15) (1.460404822 -0.7264086106 0.15) (1.458634792 -0.6912697857 0.15) (1.413706595 -0.698932728 0.15) (1.368837438 -0.7060278727 0.15) (1.455974686 -0.6212316141 0.15) (1.455216583 -0.5856427454 0.15) (1.454882568 -0.5492921133 0.15) (1.410148037 -0.5580698615 0.15) (1.365571424 -0.5655596005 0.15) (1.455466589 -0.4735356881 0.15) (1.456325234 -0.4339076521 0.15) (1.457499214 -0.393070418 0.15) (1.413453735 -0.4006682158 0.15) (1.369600607 -0.4062124795 0.15) (1.460569503 -0.3079021717 0.15) (1.462354653 -0.263688099 0.15) (1.464238 -0.2184541031 0.15) (1.420807085 -0.2249990771 0.15) (1.377484021 -0.2290542638 0.15) (1.468113273 -0.1249626703 0.15) (1.470013119 -0.07663976947 0.15) (1.47182206 -0.02718497634 0.15) (1.428919 -0.03478039963 0.15) (1.385985293 -0.04029493337 0.15) (1.474946313 0.07533484767 0.15) (1.476146517 0.1284251277 0.15) (1.477033253 0.1826603206 0.15) (1.434783839 0.1738117622 0.15) (1.39244255 0.1662742021 0.15) (1.477711298 0.2939513242 0.15) (1.477470196 0.3505285072 0.15) (1.476860287 0.4073110159 0.15) (1.435038849 0.3995195441 0.15) (1.39315361 0.3923097174 0.15) (1.474753449 0.5200006883 0.15) (1.473435868 0.5751179261 0.15) (1.472102645 0.6289022152 0.15) (1.429973439 0.6247086393 0.15) (1.387868945 0.6204679841 0.15) (1.469972297 0.731111653 0.15) (1.469481829 0.7790029125 0.15) (1.46944 0.825 0.15) (1.42639 0.825 0.15) (1.383351526 0.8249225547 0.15) (1.5125 0.9625 0.15) (1.46944 1.00833 0.15) (1.5125 1.00833 0.15) (1.55556 1.00833 0.15) (1.42639 1.00833 0.15) (1.68472 -1.00833 0.15) (1.68472 -0.9625 0.15) (1.72778 -0.9625 0.15) (1.59861 -0.9625 0.15) (1.64167 -0.916667 0.15) (1.64167 -0.870833 0.15) (1.64153157 -0.8255325354 0.15) (1.598027062 -0.8272112704 0.15) (1.554270367 -0.8298216354 0.15) (1.64011846 -0.7400270461 0.15) (1.639074352 -0.6994149446 0.15) (1.637959557 -0.6598566772 0.15) (1.593307991 -0.6672437249 0.15) (1.548504912 -0.6751473253 0.15) (1.635905078 -0.5826856612 0.15) (1.635116918 -0.5444734423 0.15) (1.634558168 -0.5061369089 0.15) (1.589645586 -0.5174830273 0.15) (1.54469697 -0.5287001729 0.15) (1.634227805 -0.4281527561 0.15) (1.63446367 -0.3881220196 0.15) (1.634948234 -0.3472080338 0.15) (1.590494542 -0.3602694523 0.15) (1.546075917 -0.3725442124 0.15) (1.636543805 -0.2623541769 0.15) (1.63757712 -0.2182984016 0.15) (1.638707968 -0.1731145703 0.15) (1.595036002 -0.1865325591 0.15) (1.551389358 -0.1988616112 0.15) (1.641069042 -0.07933980523 0.15) (1.64220074 -0.03077638838 0.15) (1.643235301 0.01885547881 0.15) (1.600413936 0.005730189045 0.15) (1.557580357 -0.006598341905 0.15) (1.644836724 0.1210277663 0.15) (1.645330548 0.1733416297 0.15) (1.645586716 0.2262594456 0.15) (1.603470769 0.214785739 0.15) (1.561365599 0.2034496961 0.15) (1.645368414 0.3330471313 0.15) (1.64492822 0.3863998538 0.15) (1.644322264 0.4393396044 0.15) (1.602353852 0.4317869727 0.15) (1.56048977 0.4237245683 0.15) (1.642894432 0.5427591548 0.15) (1.642255773 0.5926444076 0.15) (1.641810424 0.6409585301 0.15) (1.599124586 0.6391039847 0.15) (1.55664642 0.636324273 0.15) (1.64167 0.733333 0.15) (1.64167 0.779167 0.15) (1.64167 0.825 0.15) (1.59861 0.825 0.15) (1.55556 0.825 0.15) (1.68472 0.9625 0.15) (1.64167 1.00833 0.15) (1.68472 1.00833 0.15) (1.72778 1.00833 0.15) (1.59861 1.00833 0.15) (1.85694 -1.00833 0.15) (1.85694 -0.9625 0.15) (1.9 -0.9625 0.15) (1.77083 -0.9625 0.15) (1.81389 -0.916667 0.15) (1.81389 -0.870833 0.15) (1.81389 -0.825 0.15) (1.77083 -0.825 0.15) (1.72778 -0.825 0.15) (1.81389 -0.733333 0.15) (1.81389 -0.6875 0.15) (1.813830054 -0.6419787137 0.15) (1.770359361 -0.644081102 0.15) (1.72653628 -0.6479549953 0.15) (1.813266431 -0.5537703088 0.15) (1.812897068 -0.5106994599 0.15) (1.812546379 -0.4680247775 0.15) (1.768396393 -0.4755975208 0.15) (1.723989736 -0.4847563779 0.15) (1.812057997 -0.3830353644 0.15) (1.811967339 -0.3403424978 0.15) (1.811990742 -0.2973044977 0.15) (1.767926597 -0.3083720315 0.15) (1.72371166 -0.3207296002 0.15) (1.812354191 -0.209700451 0.15) (1.812661696 -0.1649604889 0.15) (1.813021741 -0.1195254237 0.15) (1.769531311 -0.1317718516 0.15) (1.725978139 -0.1451645824 0.15) (1.813786558 -0.02653458971 0.15) (1.814133748 0.02096760641 0.15) (1.81442228 0.06905767344 0.15) (1.771609907 0.05791282016 0.15) (1.72882355 0.04547879836 0.15) (1.814746331 0.1665795547 0.15) (1.814762171 0.2157338743 0.15) (1.814683604 0.2649216059 0.15) (1.772239715 0.2572085193 0.15) (1.729937607 0.2479104178 0.15) (1.814322215 0.362602246 0.15) (1.814110354 0.4106648603 0.15) (1.813945469 0.4579183139 0.15) (1.771194652 0.4556384453 0.15) (1.728702929 0.451587218 0.15) (1.81389 0.55 0.15) (1.81389 0.595833 0.15) (1.81389 0.641667 0.15) (1.77083 0.641667 0.15) (1.72778 0.641667 0.15) (1.81389 0.733333 0.15) (1.81389 0.779167 0.15) (1.81389 0.825 0.15) (1.77083 0.825 0.15) (1.72778 0.825 0.15) (1.85694 0.9625 0.15) (1.81389 1.00833 0.15) (1.85694 1.00833 0.15) (1.9 1.00833 0.15) (1.77083 1.00833 0.15) (2.02917 -1.00833 0.15) (2.02917 -0.9625 0.15) (2.07222 -0.9625 0.15) (1.94306 -0.9625 0.15) (1.98611 -0.916667 0.15) (1.98611 -0.870833 0.15) (1.98611 -0.825 0.15) (1.94306 -0.825 0.15) (1.9 -0.825 0.15) (1.98611 -0.733333 0.15) (1.98611 -0.6875 0.15) (1.98611 -0.641667 0.15) (1.94306 -0.641667 0.15) (1.9 -0.641667 0.15) (1.98611 -0.55 0.15) (1.98611 -0.504167 0.15) (1.98611 -0.458333 0.15) (1.94306 -0.458333 0.15) (1.899892439 -0.4591323234 0.15) (1.98611 -0.366667 0.15) (1.98611 -0.320833 0.15) (1.986109987 -0.275000161 0.15) (1.942935333 -0.2765463505 0.15) (1.899509724 -0.2809838975 0.15) (1.986101736 -0.1834869208 0.15) (1.986100219 -0.1377399026 0.15) (1.986102331 -0.09194210281 0.15) (1.942970874 -0.09480640329 0.15) (1.899739961 -0.1005915006 0.15) (1.986109671 -0.000165533664 0.15) (1.98611071 0.0457684539 0.15) (1.986110041 0.09166498646 0.15) (1.943099003 0.0900456839 0.15) (1.900147528 0.0855325443 0.15) (1.98611 0.183333 0.15) (1.98611 0.229167 0.15) (1.98611 0.275 0.15) (1.94306 0.275 0.15) (1.900070216 0.2740928705 0.15) (1.98611 0.366667 0.15) (1.98611 0.4125 0.15) (1.98611 0.458333 0.15) (1.94306 0.458333 0.15) (1.9 0.458333 0.15) (1.98611 0.55 0.15) (1.98611 0.595833 0.15) (1.98611 0.641667 0.15) (1.94306 0.641667 0.15) (1.9 0.641667 0.15) (1.98611 0.733333 0.15) (1.98611 0.779167 0.15) (1.98611 0.825 0.15) (1.94306 0.825 0.15) (1.9 0.825 0.15) (2.02917 0.9625 0.15) (1.98611 1.00833 0.15) (2.02917 1.00833 0.15) (2.07222 1.00833 0.15) (1.94306 1.00833 0.15) (2.20139 -1.00833 0.15) (2.20139 -0.9625 0.15) (2.24444 -0.9625 0.15) (2.11528 -0.9625 0.15) (2.15833 -0.916667 0.15) (2.15833 -0.870833 0.15) (2.15833 -0.825 0.15) (2.11528 -0.825 0.15) (2.07222 -0.825 0.15) (2.15833 -0.733333 0.15) (2.15833 -0.6875 0.15) (2.15833 -0.641667 0.15) (2.11528 -0.641667 0.15) (2.07222 -0.641667 0.15) (2.15833 -0.55 0.15) (2.15833 -0.504167 0.15) (2.15833 -0.458333 0.15) (2.11528 -0.458333 0.15) (2.07222 -0.458333 0.15) (2.15833 -0.366667 0.15) (2.15833 -0.320833 0.15) (2.15833 -0.275 0.15) (2.11528 -0.275 0.15) (2.07222 -0.275 0.15) (2.15833 -0.183333 0.15) (2.15833 -0.1375 0.15) (2.15833 -0.0916667 0.15) (2.11528 -0.0916667 0.15) (2.07222 -0.0916667 0.15) (2.15833 0 0.15) (2.15833 0.0458333 0.15) (2.15833 0.0916667 0.15) (2.11528 0.0916667 0.15) (2.07222 0.0916667 0.15) (2.15833 0.183333 0.15) (2.15833 0.229167 0.15) (2.15833 0.275 0.15) (2.11528 0.275 0.15) (2.07222 0.275 0.15) (2.15833 0.366667 0.15) (2.15833 0.4125 0.15) (2.15833 0.458333 0.15) (2.11528 0.458333 0.15) (2.07222 0.458333 0.15) (2.15833 0.55 0.15) (2.15833 0.595833 0.15) (2.15833 0.641667 0.15) (2.11528 0.641667 0.15) (2.07222 0.641667 0.15) (2.15833 0.733333 0.15) (2.15833 0.779167 0.15) (2.15833 0.825 0.15) (2.11528 0.825 0.15) (2.07222 0.825 0.15) (2.20139 0.9625 0.15) (2.15833 1.00833 0.15) (2.20139 1.00833 0.15) (2.24444 1.00833 0.15) (2.11528 1.00833 0.15) (2.37361 -1.00833 0.15) (2.37361 -0.9625 0.15) (2.41667 -0.9625 0.15) (2.2875 -0.9625 0.15) (2.33056 -0.916667 0.15) (2.33056 -0.870833 0.15) (2.33056 -0.825 0.15) (2.2875 -0.825 0.15) (2.24444 -0.825 0.15) (2.33056 -0.733333 0.15) (2.33056 -0.6875 0.15) (2.33056 -0.641667 0.15) (2.2875 -0.641667 0.15) (2.24444 -0.641667 0.15) (2.33056 -0.55 0.15) (2.33056 -0.504167 0.15) (2.33056 -0.458333 0.15) (2.2875 -0.458333 0.15) (2.24444 -0.458333 0.15) (2.33056 -0.366667 0.15) (2.33056 -0.320833 0.15) (2.33056 -0.275 0.15) (2.2875 -0.275 0.15) (2.24444 -0.275 0.15) (2.33056 -0.183333 0.15) (2.33056 -0.1375 0.15) (2.33056 -0.0916667 0.15) (2.2875 -0.0916667 0.15) (2.24444 -0.0916667 0.15) (2.33056 -9.25186e-18 0.15) (2.33056 0.0458333 0.15) (2.33056 0.0916667 0.15) (2.2875 0.0916667 0.15) (2.24444 0.0916667 0.15) (2.33056 0.183333 0.15) (2.33056 0.229167 0.15) (2.33056 0.275 0.15) (2.2875 0.275 0.15) (2.24444 0.275 0.15) (2.33056 0.366667 0.15) (2.33056 0.4125 0.15) (2.33056 0.458333 0.15) (2.2875 0.458333 0.15) (2.24444 0.458333 0.15) (2.33056 0.55 0.15) (2.33056 0.595833 0.15) (2.33056 0.641667 0.15) (2.2875 0.641667 0.15) (2.24444 0.641667 0.15) (2.33056 0.733333 0.15) (2.33056 0.779167 0.15) (2.33056 0.825 0.15) (2.2875 0.825 0.15) (2.24444 0.825 0.15) (2.37361 0.9625 0.15) (2.33056 1.00833 0.15) (2.37361 1.00833 0.15) (2.41667 1.00833 0.15) (2.2875 1.00833 0.15) (2.54583 -1.00833 0.15) (2.54583 -0.9625 0.15) (2.58889 -0.9625 0.15) (2.45972 -0.9625 0.15) (2.50278 -0.916667 0.15) (2.50278 -0.870833 0.15) (2.50278 -0.825 0.15) (2.45972 -0.825 0.15) (2.41667 -0.825 0.15) (2.50278 -0.733333 0.15) (2.50278 -0.6875 0.15) (2.50278 -0.641667 0.15) (2.45972 -0.641667 0.15) (2.41667 -0.641667 0.15) (2.50278 -0.55 0.15) (2.50278 -0.504167 0.15) (2.50278 -0.458333 0.15) (2.45972 -0.458333 0.15) (2.41667 -0.458333 0.15) (2.50278 -0.366667 0.15) (2.50278 -0.320833 0.15) (2.50278 -0.275 0.15) (2.45972 -0.275 0.15) (2.41667 -0.275 0.15) (2.50278 -0.183333 0.15) (2.50278 -0.1375 0.15) (2.50278 -0.0916667 0.15) (2.45972 -0.0916667 0.15) (2.41667 -0.0916667 0.15) (2.50278 -1.85037e-17 0.15) (2.50278 0.0458333 0.15) (2.50278 0.0916667 0.15) (2.45972 0.0916667 0.15) (2.41667 0.0916667 0.15) (2.50278 0.183333 0.15) (2.50278 0.229167 0.15) (2.50278 0.275 0.15) (2.45972 0.275 0.15) (2.41667 0.275 0.15) (2.50278 0.366667 0.15) (2.50278 0.4125 0.15) (2.50278 0.458333 0.15) (2.45972 0.458333 0.15) (2.41667 0.458333 0.15) (2.50278 0.55 0.15) (2.50278 0.595833 0.15) (2.50278 0.641667 0.15) (2.45972 0.641667 0.15) (2.41667 0.641667 0.15) (2.50278 0.733333 0.15) (2.50278 0.779167 0.15) (2.50278 0.825 0.15) (2.45972 0.825 0.15) (2.41667 0.825 0.15) (2.54583 0.9625 0.15) (2.50278 1.00833 0.15) (2.54583 1.00833 0.15) (2.58889 1.00833 0.15) (2.45972 1.00833 0.15) (2.71806 -1.00833 0.15) (2.71806 -0.9625 0.15) (2.76111 -0.9625 0.15) (2.63194 -0.9625 0.15) (2.675 -0.916667 0.15) (2.675 -0.870833 0.15) (2.675 -0.825 0.15) (2.63194 -0.825 0.15) (2.58889 -0.825 0.15) (2.675 -0.733333 0.15) (2.675 -0.6875 0.15) (2.675 -0.641667 0.15) (2.63194 -0.641667 0.15) (2.58889 -0.641667 0.15) (2.675 -0.55 0.15) (2.675 -0.504167 0.15) (2.675 -0.458333 0.15) (2.63194 -0.458333 0.15) (2.58889 -0.458333 0.15) (2.675 -0.366667 0.15) (2.675 -0.320833 0.15) (2.675 -0.275 0.15) (2.63194 -0.275 0.15) (2.58889 -0.275 0.15) (2.675 -0.183333 0.15) (2.675 -0.1375 0.15) (2.675 -0.0916667 0.15) (2.63194 -0.0916667 0.15) (2.58889 -0.0916667 0.15) (2.675 0 0.15) (2.675 0.0458333 0.15) (2.675 0.0916667 0.15) (2.63194 0.0916667 0.15) (2.58889 0.0916667 0.15) (2.675 0.183333 0.15) (2.675 0.229167 0.15) (2.675 0.275 0.15) (2.63194 0.275 0.15) (2.58889 0.275 0.15) (2.675 0.366667 0.15) (2.675 0.4125 0.15) (2.675 0.458333 0.15) (2.63194 0.458333 0.15) (2.58889 0.458333 0.15) (2.675 0.55 0.15) (2.675 0.595833 0.15) (2.675 0.641667 0.15) (2.63194 0.641667 0.15) (2.58889 0.641667 0.15) (2.675 0.733333 0.15) (2.675 0.779167 0.15) (2.675 0.825 0.15) (2.63194 0.825 0.15) (2.58889 0.825 0.15) (2.71806 0.9625 0.15) (2.675 1.00833 0.15) (2.71806 1.00833 0.15) (2.76111 1.00833 0.15) (2.63194 1.00833 0.15) (2.89028 -1.00833 0.15) (2.89028 -0.9625 0.15) (2.93333 -0.9625 0.15) (2.80417 -0.9625 0.15) (2.84722 -0.916667 0.15) (2.84722 -0.870833 0.15) (2.84722 -0.825 0.15) (2.80417 -0.825 0.15) (2.76111 -0.825 0.15) (2.84722 -0.733333 0.15) (2.84722 -0.6875 0.15) (2.84722 -0.641667 0.15) (2.80417 -0.641667 0.15) (2.76111 -0.641667 0.15) (2.84722 -0.55 0.15) (2.84722 -0.504167 0.15) (2.84722 -0.458333 0.15) (2.80417 -0.458333 0.15) (2.76111 -0.458333 0.15) (2.84722 -0.366667 0.15) (2.84722 -0.320833 0.15) (2.84722 -0.275 0.15) (2.80417 -0.275 0.15) (2.76111 -0.275 0.15) (2.84722 -0.183333 0.15) (2.84722 -0.1375 0.15) (2.84722 -0.0916667 0.15) (2.80417 -0.0916667 0.15) (2.76111 -0.0916667 0.15) (2.84722 1.85037e-17 0.15) (2.84722 0.0458333 0.15) (2.84722 0.0916667 0.15) (2.80417 0.0916667 0.15) (2.76111 0.0916667 0.15) (2.84722 0.183333 0.15) (2.84722 0.229167 0.15) (2.84722 0.275 0.15) (2.80417 0.275 0.15) (2.76111 0.275 0.15) (2.84722 0.366667 0.15) (2.84722 0.4125 0.15) (2.84722 0.458333 0.15) (2.80417 0.458333 0.15) (2.76111 0.458333 0.15) (2.84722 0.55 0.15) (2.84722 0.595833 0.15) (2.84722 0.641667 0.15) (2.80417 0.641667 0.15) (2.76111 0.641667 0.15) (2.84722 0.733333 0.15) (2.84722 0.779167 0.15) (2.84722 0.825 0.15) (2.80417 0.825 0.15) (2.76111 0.825 0.15) (2.89028 0.9625 0.15) (2.84722 1.00833 0.15) (2.89028 1.00833 0.15) (2.93333 1.00833 0.15) (2.80417 1.00833 0.15) (3.0625 -1.00833 0.15) (3.0625 -0.9625 0.15) (3.10556 -0.9625 0.15) (2.97639 -0.9625 0.15) (3.01944 -0.916667 0.15) (3.01944 -0.870833 0.15) (3.01944 -0.825 0.15) (2.97639 -0.825 0.15) (2.93333 -0.825 0.15) (3.01944 -0.733333 0.15) (3.01944 -0.6875 0.15) (3.01944 -0.641667 0.15) (2.97639 -0.641667 0.15) (2.93333 -0.641667 0.15) (3.01944 -0.55 0.15) (3.01944 -0.504167 0.15) (3.01944 -0.458333 0.15) (2.97639 -0.458333 0.15) (2.93333 -0.458333 0.15) (3.01944 -0.366667 0.15) (3.01944 -0.320833 0.15) (3.01944 -0.275 0.15) (2.97639 -0.275 0.15) (2.93333 -0.275 0.15) (3.01944 -0.183333 0.15) (3.01944 -0.1375 0.15) (3.01944 -0.0916667 0.15) (2.97639 -0.0916667 0.15) (2.93333 -0.0916667 0.15) (3.01944 9.25186e-18 0.15) (3.01944 0.0458333 0.15) (3.01944 0.0916667 0.15) (2.97639 0.0916667 0.15) (2.93333 0.0916667 0.15) (3.01944 0.183333 0.15) (3.01944 0.229167 0.15) (3.01944 0.275 0.15) (2.97639 0.275 0.15) (2.93333 0.275 0.15) (3.01944 0.366667 0.15) (3.01944 0.4125 0.15) (3.01944 0.458333 0.15) (2.97639 0.458333 0.15) (2.93333 0.458333 0.15) (3.01944 0.55 0.15) (3.01944 0.595833 0.15) (3.01944 0.641667 0.15) (2.97639 0.641667 0.15) (2.93333 0.641667 0.15) (3.01944 0.733333 0.15) (3.01944 0.779167 0.15) (3.01944 0.825 0.15) (2.97639 0.825 0.15) (2.93333 0.825 0.15) (3.0625 0.9625 0.15) (3.01944 1.00833 0.15) (3.0625 1.00833 0.15) (3.10556 1.00833 0.15) (2.97639 1.00833 0.15) (3.23472 -1.00833 0.15) (3.23472 -0.9625 0.15) (3.27778 -0.9625 0.15) (3.14861 -0.9625 0.15) (3.19167 -0.916667 0.15) (3.19167 -0.870833 0.15) (3.19167 -0.825 0.15) (3.14861 -0.825 0.15) (3.10556 -0.825 0.15) (3.19167 -0.733333 0.15) (3.19167 -0.6875 0.15) (3.19167 -0.641667 0.15) (3.14861 -0.641667 0.15) (3.10556 -0.641667 0.15) (3.19167 -0.55 0.15) (3.19167 -0.504167 0.15) (3.19167 -0.458333 0.15) (3.14861 -0.458333 0.15) (3.10556 -0.458333 0.15) (3.19167 -0.366667 0.15) (3.19167 -0.320833 0.15) (3.19167 -0.275 0.15) (3.14861 -0.275 0.15) (3.10556 -0.275 0.15) (3.19167 -0.183333 0.15) (3.19167 -0.1375 0.15) (3.19167 -0.0916667 0.15) (3.14861 -0.0916667 0.15) (3.10556 -0.0916667 0.15) (3.19167 0 0.15) (3.19167 0.0458333 0.15) (3.19167 0.0916667 0.15) (3.14861 0.0916667 0.15) (3.10556 0.0916667 0.15) (3.19167 0.183333 0.15) (3.19167 0.229167 0.15) (3.19167 0.275 0.15) (3.14861 0.275 0.15) (3.10556 0.275 0.15) (3.19167 0.366667 0.15) (3.19167 0.4125 0.15) (3.19167 0.458333 0.15) (3.14861 0.458333 0.15) (3.10556 0.458333 0.15) (3.19167 0.55 0.15) (3.19167 0.595833 0.15) (3.19167 0.641667 0.15) (3.14861 0.641667 0.15) (3.10556 0.641667 0.15) (3.19167 0.733333 0.15) (3.19167 0.779167 0.15) (3.19167 0.825 0.15) (3.14861 0.825 0.15) (3.10556 0.825 0.15) (3.23472 0.9625 0.15) (3.19167 1.00833 0.15) (3.23472 1.00833 0.15) (3.27778 1.00833 0.15) (3.14861 1.00833 0.15) (3.40694 -1.00833 0.15) (3.40694 -0.9625 0.15) (3.45 -0.9625 0.15) (3.32083 -0.9625 0.15) (3.36389 -0.916667 0.15) (3.36389 -0.870833 0.15) (3.36389 -0.825 0.15) (3.32083 -0.825 0.15) (3.27778 -0.825 0.15) (3.36389 -0.733333 0.15) (3.36389 -0.6875 0.15) (3.36389 -0.641667 0.15) (3.32083 -0.641667 0.15) (3.27778 -0.641667 0.15) (3.36389 -0.55 0.15) (3.36389 -0.504167 0.15) (3.36389 -0.458333 0.15) (3.32083 -0.458333 0.15) (3.27778 -0.458333 0.15) (3.36389 -0.366667 0.15) (3.36389 -0.320833 0.15) (3.36389 -0.275 0.15) (3.32083 -0.275 0.15) (3.27778 -0.275 0.15) (3.36389 -0.183333 0.15) (3.36389 -0.1375 0.15) (3.36389 -0.0916667 0.15) (3.32083 -0.0916667 0.15) (3.27778 -0.0916667 0.15) (3.36389 0 0.15) (3.36389 0.0458333 0.15) (3.36389 0.0916667 0.15) (3.32083 0.0916667 0.15) (3.27778 0.0916667 0.15) (3.36389 0.183333 0.15) (3.36389 0.229167 0.15) (3.36389 0.275 0.15) (3.32083 0.275 0.15) (3.27778 0.275 0.15) (3.36389 0.366667 0.15) (3.36389 0.4125 0.15) (3.36389 0.458333 0.15) (3.32083 0.458333 0.15) (3.27778 0.458333 0.15) (3.36389 0.55 0.15) (3.36389 0.595833 0.15) (3.36389 0.641667 0.15) (3.32083 0.641667 0.15) (3.27778 0.641667 0.15) (3.36389 0.733333 0.15) (3.36389 0.779167 0.15) (3.36389 0.825 0.15) (3.32083 0.825 0.15) (3.27778 0.825 0.15) (3.40694 0.9625 0.15) (3.36389 1.00833 0.15) (3.40694 1.00833 0.15) (3.45 1.00833 0.15) (3.32083 1.00833 0.15) (3.57917 -1.00833 0.15) (3.57917 -0.9625 0.15) (3.62222 -0.9625 0.15) (3.49306 -0.9625 0.15) (3.53611 -0.916667 0.15) (3.53611 -0.870833 0.15) (3.53611 -0.825 0.15) (3.49306 -0.825 0.15) (3.45 -0.825 0.15) (3.53611 -0.733333 0.15) (3.53611 -0.6875 0.15) (3.53611 -0.641667 0.15) (3.49306 -0.641667 0.15) (3.45 -0.641667 0.15) (3.53611 -0.55 0.15) (3.53611 -0.504167 0.15) (3.53611 -0.458333 0.15) (3.49306 -0.458333 0.15) (3.45 -0.458333 0.15) (3.53611 -0.366667 0.15) (3.53611 -0.320833 0.15) (3.53611 -0.275 0.15) (3.49306 -0.275 0.15) (3.45 -0.275 0.15) (3.53611 -0.183333 0.15) (3.53611 -0.1375 0.15) (3.53611 -0.0916667 0.15) (3.49306 -0.0916667 0.15) (3.45 -0.0916667 0.15) (3.53611 0 0.15) (3.53611 0.0458333 0.15) (3.53611 0.0916667 0.15) (3.49306 0.0916667 0.15) (3.45 0.0916667 0.15) (3.53611 0.183333 0.15) (3.53611 0.229167 0.15) (3.53611 0.275 0.15) (3.49306 0.275 0.15) (3.45 0.275 0.15) (3.53611 0.366667 0.15) (3.53611 0.4125 0.15) (3.53611 0.458333 0.15) (3.49306 0.458333 0.15) (3.45 0.458333 0.15) (3.53611 0.55 0.15) (3.53611 0.595833 0.15) (3.53611 0.641667 0.15) (3.49306 0.641667 0.15) (3.45 0.641667 0.15) (3.53611 0.733333 0.15) (3.53611 0.779167 0.15) (3.53611 0.825 0.15) (3.49306 0.825 0.15) (3.45 0.825 0.15) (3.57917 0.9625 0.15) (3.53611 1.00833 0.15) (3.57917 1.00833 0.15) (3.62222 1.00833 0.15) (3.49306 1.00833 0.15) (3.75139 -1.00833 0.15) (3.75139 -0.9625 0.15) (3.79444 -0.9625 0.15) (3.66528 -0.9625 0.15) (3.70833 -0.916667 0.15) (3.70833 -0.870833 0.15) (3.70833 -0.825 0.15) (3.66528 -0.825 0.15) (3.62222 -0.825 0.15) (3.70833 -0.733333 0.15) (3.70833 -0.6875 0.15) (3.70833 -0.641667 0.15) (3.66528 -0.641667 0.15) (3.62222 -0.641667 0.15) (3.70833 -0.55 0.15) (3.70833 -0.504167 0.15) (3.70833 -0.458333 0.15) (3.66528 -0.458333 0.15) (3.62222 -0.458333 0.15) (3.70833 -0.366667 0.15) (3.70833 -0.320833 0.15) (3.70833 -0.275 0.15) (3.66528 -0.275 0.15) (3.62222 -0.275 0.15) (3.70833 -0.183333 0.15) (3.70833 -0.1375 0.15) (3.70833 -0.0916667 0.15) (3.66528 -0.0916667 0.15) (3.62222 -0.0916667 0.15) (3.70833 -4.62593e-18 0.15) (3.70833 0.0458333 0.15) (3.70833 0.0916667 0.15) (3.66528 0.0916667 0.15) (3.62222 0.0916667 0.15) (3.70833 0.183333 0.15) (3.70833 0.229167 0.15) (3.70833 0.275 0.15) (3.66528 0.275 0.15) (3.62222 0.275 0.15) (3.70833 0.366667 0.15) (3.70833 0.4125 0.15) (3.70833 0.458333 0.15) (3.66528 0.458333 0.15) (3.62222 0.458333 0.15) (3.70833 0.55 0.15) (3.70833 0.595833 0.15) (3.70833 0.641667 0.15) (3.66528 0.641667 0.15) (3.62222 0.641667 0.15) (3.70833 0.733333 0.15) (3.70833 0.779167 0.15) (3.70833 0.825 0.15) (3.66528 0.825 0.15) (3.62222 0.825 0.15) (3.75139 0.9625 0.15) (3.70833 1.00833 0.15) (3.75139 1.00833 0.15) (3.79444 1.00833 0.15) (3.66528 1.00833 0.15) (3.92361 -1.00833 0.15) (3.92361 -0.9625 0.15) (3.96667 -0.9625 0.15) (3.8375 -0.9625 0.15) (3.88056 -0.916667 0.15) (3.88056 -0.870833 0.15) (3.88056 -0.825 0.15) (3.8375 -0.825 0.15) (3.79444 -0.825 0.15) (3.88056 -0.733333 0.15) (3.88056 -0.6875 0.15) (3.88056 -0.641667 0.15) (3.8375 -0.641667 0.15) (3.79444 -0.641667 0.15) (3.88056 -0.55 0.15) (3.88056 -0.504167 0.15) (3.88056 -0.458333 0.15) (3.8375 -0.458333 0.15) (3.79444 -0.458333 0.15) (3.88056 -0.366667 0.15) (3.88056 -0.320833 0.15) (3.88056 -0.275 0.15) (3.8375 -0.275 0.15) (3.79444 -0.275 0.15) (3.88056 -0.183333 0.15) (3.88056 -0.1375 0.15) (3.88056 -0.0916667 0.15) (3.8375 -0.0916667 0.15) (3.79444 -0.0916667 0.15) (3.88056 -9.25186e-18 0.15) (3.88056 0.0458333 0.15) (3.88056 0.0916667 0.15) (3.8375 0.0916667 0.15) (3.79444 0.0916667 0.15) (3.88056 0.183333 0.15) (3.88056 0.229167 0.15) (3.88056 0.275 0.15) (3.8375 0.275 0.15) (3.79444 0.275 0.15) (3.88056 0.366667 0.15) (3.88056 0.4125 0.15) (3.88056 0.458333 0.15) (3.8375 0.458333 0.15) (3.79444 0.458333 0.15) (3.88056 0.55 0.15) (3.88056 0.595833 0.15) (3.88056 0.641667 0.15) (3.8375 0.641667 0.15) (3.79444 0.641667 0.15) (3.88056 0.733333 0.15) (3.88056 0.779167 0.15) (3.88056 0.825 0.15) (3.8375 0.825 0.15) (3.79444 0.825 0.15) (3.92361 0.9625 0.15) (3.88056 1.00833 0.15) (3.92361 1.00833 0.15) (3.96667 1.00833 0.15) (3.8375 1.00833 0.15) (4.09583 -1.00833 0.15) (4.09583 -0.9625 0.15) (4.13889 -0.9625 0.15) (4.00972 -0.9625 0.15) (4.05278 -0.916667 0.15) (4.05278 -0.870833 0.15) (4.05278 -0.825 0.15) (4.00972 -0.825 0.15) (3.96667 -0.825 0.15) (4.05278 -0.733333 0.15) (4.05278 -0.6875 0.15) (4.05278 -0.641667 0.15) (4.00972 -0.641667 0.15) (3.96667 -0.641667 0.15) (4.05278 -0.55 0.15) (4.05278 -0.504167 0.15) (4.05278 -0.458333 0.15) (4.00972 -0.458333 0.15) (3.96667 -0.458333 0.15) (4.05278 -0.366667 0.15) (4.05278 -0.320833 0.15) (4.05278 -0.275 0.15) (4.00972 -0.275 0.15) (3.96667 -0.275 0.15) (4.05278 -0.183333 0.15) (4.05278 -0.1375 0.15) (4.05278 -0.0916667 0.15) (4.00972 -0.0916667 0.15) (3.96667 -0.0916667 0.15) (4.05278 -1.38778e-17 0.15) (4.05278 0.0458333 0.15) (4.05278 0.0916667 0.15) (4.00972 0.0916667 0.15) (3.96667 0.0916667 0.15) (4.05278 0.183333 0.15) (4.05278 0.229167 0.15) (4.05278 0.275 0.15) (4.00972 0.275 0.15) (3.96667 0.275 0.15) (4.05278 0.366667 0.15) (4.05278 0.4125 0.15) (4.05278 0.458333 0.15) (4.00972 0.458333 0.15) (3.96667 0.458333 0.15) (4.05278 0.55 0.15) (4.05278 0.595833 0.15) (4.05278 0.641667 0.15) (4.00972 0.641667 0.15) (3.96667 0.641667 0.15) (4.05278 0.733333 0.15) (4.05278 0.779167 0.15) (4.05278 0.825 0.15) (4.00972 0.825 0.15) (3.96667 0.825 0.15) (4.09583 0.9625 0.15) (4.05278 1.00833 0.15) (4.09583 1.00833 0.15) (4.13889 1.00833 0.15) (4.00972 1.00833 0.15) (4.26806 -1.00833 0.15) (4.26806 -0.9625 0.15) (4.31111 -0.9625 0.15) (4.18194 -0.9625 0.15) (4.225 -0.916667 0.15) (4.225 -0.870833 0.15) (4.225 -0.825 0.15) (4.18194 -0.825 0.15) (4.13889 -0.825 0.15) (4.225 -0.733333 0.15) (4.225 -0.6875 0.15) (4.225 -0.641667 0.15) (4.18194 -0.641667 0.15) (4.13889 -0.641667 0.15) (4.225 -0.55 0.15) (4.225 -0.504167 0.15) (4.225 -0.458333 0.15) (4.18194 -0.458333 0.15) (4.13889 -0.458333 0.15) (4.225 -0.366667 0.15) (4.225 -0.320833 0.15) (4.225 -0.275 0.15) (4.18194 -0.275 0.15) (4.13889 -0.275 0.15) (4.225 -0.183333 0.15) (4.225 -0.1375 0.15) (4.225 -0.0916667 0.15) (4.18194 -0.0916667 0.15) (4.13889 -0.0916667 0.15) (4.225 0 0.15) (4.225 0.0458333 0.15) (4.225 0.0916667 0.15) (4.18194 0.0916667 0.15) (4.13889 0.0916667 0.15) (4.225 0.183333 0.15) (4.225 0.229167 0.15) (4.225 0.275 0.15) (4.18194 0.275 0.15) (4.13889 0.275 0.15) (4.225 0.366667 0.15) (4.225 0.4125 0.15) (4.225 0.458333 0.15) (4.18194 0.458333 0.15) (4.13889 0.458333 0.15) (4.225 0.55 0.15) (4.225 0.595833 0.15) (4.225 0.641667 0.15) (4.18194 0.641667 0.15) (4.13889 0.641667 0.15) (4.225 0.733333 0.15) (4.225 0.779167 0.15) (4.225 0.825 0.15) (4.18194 0.825 0.15) (4.13889 0.825 0.15) (4.26806 0.9625 0.15) (4.225 1.00833 0.15) (4.26806 1.00833 0.15) (4.31111 1.00833 0.15) (4.18194 1.00833 0.15) (4.44028 -1.00833 0.15) (4.44028 -0.9625 0.15) (4.48333 -0.9625 0.15) (4.35417 -0.9625 0.15) (4.39722 -0.916667 0.15) (4.39722 -0.870833 0.15) (4.39722 -0.825 0.15) (4.35417 -0.825 0.15) (4.31111 -0.825 0.15) (4.39722 -0.733333 0.15) (4.39722 -0.6875 0.15) (4.39722 -0.641667 0.15) (4.35417 -0.641667 0.15) (4.31111 -0.641667 0.15) (4.39722 -0.55 0.15) (4.39722 -0.504167 0.15) (4.39722 -0.458333 0.15) (4.35417 -0.458333 0.15) (4.31111 -0.458333 0.15) (4.39722 -0.366667 0.15) (4.39722 -0.320833 0.15) (4.39722 -0.275 0.15) (4.35417 -0.275 0.15) (4.31111 -0.275 0.15) (4.39722 -0.183333 0.15) (4.39722 -0.1375 0.15) (4.39722 -0.0916667 0.15) (4.35417 -0.0916667 0.15) (4.31111 -0.0916667 0.15) (4.39722 -2.31296e-18 0.15) (4.39722 0.0458333 0.15) (4.39722 0.0916667 0.15) (4.35417 0.0916667 0.15) (4.31111 0.0916667 0.15) (4.39722 0.183333 0.15) (4.39722 0.229167 0.15) (4.39722 0.275 0.15) (4.35417 0.275 0.15) (4.31111 0.275 0.15) (4.39722 0.366667 0.15) (4.39722 0.4125 0.15) (4.39722 0.458333 0.15) (4.35417 0.458333 0.15) (4.31111 0.458333 0.15) (4.39722 0.55 0.15) (4.39722 0.595833 0.15) (4.39722 0.641667 0.15) (4.35417 0.641667 0.15) (4.31111 0.641667 0.15) (4.39722 0.733333 0.15) (4.39722 0.779167 0.15) (4.39722 0.825 0.15) (4.35417 0.825 0.15) (4.31111 0.825 0.15) (4.44028 0.9625 0.15) (4.39722 1.00833 0.15) (4.44028 1.00833 0.15) (4.48333 1.00833 0.15) (4.35417 1.00833 0.15) (4.6125 -1.00833 0.15) (4.6125 -0.9625 0.15) (4.65556 -0.9625 0.15) (4.52639 -0.9625 0.15) (4.56944 -0.916667 0.15) (4.56944 -0.870833 0.15) (4.56944 -0.825 0.15) (4.52639 -0.825 0.15) (4.48333 -0.825 0.15) (4.56944 -0.733333 0.15) (4.56944 -0.6875 0.15) (4.56944 -0.641667 0.15) (4.52639 -0.641667 0.15) (4.48333 -0.641667 0.15) (4.56944 -0.55 0.15) (4.56944 -0.504167 0.15) (4.56944 -0.458333 0.15) (4.52639 -0.458333 0.15) (4.48333 -0.458333 0.15) (4.56944 -0.366667 0.15) (4.56944 -0.320833 0.15) (4.56944 -0.275 0.15) (4.52639 -0.275 0.15) (4.48333 -0.275 0.15) (4.56944 -0.183333 0.15) (4.56944 -0.1375 0.15) (4.56944 -0.0916667 0.15) (4.52639 -0.0916667 0.15) (4.48333 -0.0916667 0.15) (4.56944 -6.93889e-18 0.15) (4.56944 0.0458333 0.15) (4.56944 0.0916667 0.15) (4.52639 0.0916667 0.15) (4.48333 0.0916667 0.15) (4.56944 0.183333 0.15) (4.56944 0.229167 0.15) (4.56944 0.275 0.15) (4.52639 0.275 0.15) (4.48333 0.275 0.15) (4.56944 0.366667 0.15) (4.56944 0.4125 0.15) (4.56944 0.458333 0.15) (4.52639 0.458333 0.15) (4.48333 0.458333 0.15) (4.56944 0.55 0.15) (4.56944 0.595833 0.15) (4.56944 0.641667 0.15) (4.52639 0.641667 0.15) (4.48333 0.641667 0.15) (4.56944 0.733333 0.15) (4.56944 0.779167 0.15) (4.56944 0.825 0.15) (4.52639 0.825 0.15) (4.48333 0.825 0.15) (4.6125 0.9625 0.15) (4.56944 1.00833 0.15) (4.6125 1.00833 0.15) (4.65556 1.00833 0.15) (4.52639 1.00833 0.15) (4.78472 -1.00833 0.15) (4.78472 -0.9625 0.15) (4.82778 -0.9625 0.15) (4.69861 -0.9625 0.15) (4.74167 -0.916667 0.15) (4.74167 -0.870833 0.15) (4.74167 -0.825 0.15) (4.69861 -0.825 0.15) (4.65556 -0.825 0.15) (4.74167 -0.733333 0.15) (4.74167 -0.6875 0.15) (4.74167 -0.641667 0.15) (4.69861 -0.641667 0.15) (4.65556 -0.641667 0.15) (4.74167 -0.55 0.15) (4.74167 -0.504167 0.15) (4.74167 -0.458333 0.15) (4.69861 -0.458333 0.15) (4.65556 -0.458333 0.15) (4.74167 -0.366667 0.15) (4.74167 -0.320833 0.15) (4.74167 -0.275 0.15) (4.69861 -0.275 0.15) (4.65556 -0.275 0.15) (4.74167 -0.183333 0.15) (4.74167 -0.1375 0.15) (4.74167 -0.0916667 0.15) (4.69861 -0.0916667 0.15) (4.65556 -0.0916667 0.15) (4.74167 -1.15648e-17 0.15) (4.74167 0.0458333 0.15) (4.74167 0.0916667 0.15) (4.69861 0.0916667 0.15) (4.65556 0.0916667 0.15) (4.74167 0.183333 0.15) (4.74167 0.229167 0.15) (4.74167 0.275 0.15) (4.69861 0.275 0.15) (4.65556 0.275 0.15) (4.74167 0.366667 0.15) (4.74167 0.4125 0.15) (4.74167 0.458333 0.15) (4.69861 0.458333 0.15) (4.65556 0.458333 0.15) (4.74167 0.55 0.15) (4.74167 0.595833 0.15) (4.74167 0.641667 0.15) (4.69861 0.641667 0.15) (4.65556 0.641667 0.15) (4.74167 0.733333 0.15) (4.74167 0.779167 0.15) (4.74167 0.825 0.15) (4.69861 0.825 0.15) (4.65556 0.825 0.15) (4.78472 0.9625 0.15) (4.74167 1.00833 0.15) (4.78472 1.00833 0.15) (4.82778 1.00833 0.15) (4.69861 1.00833 0.15) (5 -1.375 0.15) (5 -1.28333 0.15) (5 -1.19167 0.15) (5 -1.1 0.15) (5 -1.00833 0.15) (4.95694 -1.00833 0.15) (4.95694 -0.9625 0.15) (5 -0.9625 0.15) (4.87083 -0.9625 0.15) (4.91389 -0.916667 0.15) (4.91389 -0.870833 0.15) (4.91389 -0.825 0.15) (4.87083 -0.825 0.15) (4.82778 -0.825 0.15) (4.91389 -0.733333 0.15) (4.91389 -0.6875 0.15) (4.91389 -0.641667 0.15) (4.87083 -0.641667 0.15) (4.82778 -0.641667 0.15) (4.91389 -0.55 0.15) (4.91389 -0.504167 0.15) (4.91389 -0.458333 0.15) (4.87083 -0.458333 0.15) (4.82778 -0.458333 0.15) (4.91389 -0.366667 0.15) (4.91389 -0.320833 0.15) (4.91389 -0.275 0.15) (4.87083 -0.275 0.15) (4.82778 -0.275 0.15) (4.91389 -0.183333 0.15) (4.91389 -0.1375 0.15) (4.91389 -0.0916667 0.15) (4.87083 -0.0916667 0.15) (4.82778 -0.0916667 0.15) (4.91389 -1.61908e-17 0.15) (4.91389 0.0458333 0.15) (4.91389 0.0916667 0.15) (4.87083 0.0916667 0.15) (4.82778 0.0916667 0.15) (4.91389 0.183333 0.15) (4.91389 0.229167 0.15) (4.91389 0.275 0.15) (4.87083 0.275 0.15) (4.82778 0.275 0.15) (4.91389 0.366667 0.15) (4.91389 0.4125 0.15) (4.91389 0.458333 0.15) (4.87083 0.458333 0.15) (4.82778 0.458333 0.15) (4.91389 0.55 0.15) (4.91389 0.595833 0.15) (4.91389 0.641667 0.15) (4.87083 0.641667 0.15) (4.82778 0.641667 0.15) (4.91389 0.733333 0.15) (4.91389 0.779167 0.15) (4.91389 0.825 0.15) (4.87083 0.825 0.15) (4.82778 0.825 0.15) (5 0.9625 0.15) (4.95694 0.9625 0.15) (5 1.1 0.15) (4.91389 1.00833 0.15) (4.95694 1.00833 0.15) (5 1.00833 0.15) (4.87083 1.00833 0.15) (5 1.19167 0.15) (5 1.28333 0.15) (5 1.375 0.15) (0.8463457469 -0.2833312954 0.15) (0.8355906806 -0.2828450907 0.15) (0.835056847 -0.2941304771 0.15) (0.8328959592 0.0725142794 0.15) (0.8318797559 0.04986893807 0.15) (0.8308785351 0.02722287341 0.15) (0.8523327385 0.02590075412 0.15) (0.8737476703 0.02453247491 0.15) (1.019141476 -0.2850379699 0.15) (1.008393994 -0.2845190929 0.15) (1.007841409 -0.2959647615 0.15) (1.017102605 -0.1335845999 0.15) (1.015024466 -0.1471823558 0.15) (1.025772006 -0.1477000342 0.15) (1.036529515 -0.1482185944 0.15) (0.8729700519 -0.1218861889 0.15) (0.8951398079 0.02314827638 0.15) (0.9165218812 0.02172151366 0.15) (0.9175431409 0.0443886365 0.15) (-0.02576001753 -0.2191222382 0.15) (-0.04784465905 -0.2177566669 0.15) (-0.04864744277 -0.2406555949 0.15) (-0.04947767722 -0.2635341755 0.15) (-0.1763327371 -0.1134884105 0.15) (-0.1549547623 -0.1148549055 0.15) (-0.1335510858 -0.1162904202 0.15) (-0.132562409 -0.09274290186 0.15) (0.1666075688 0.153632925 0.15) (0.1448483197 0.1546504 0.15) (0.1437325975 0.1319137516 0.15) (0.2959625175 -0.303361594 0.15) (0.2948715389 -0.3260834184 0.15) (0.3163710423 -0.3270893544 0.15) (0.3378546608 -0.3280925211 0.15) (0.165715442 -0.3200040809 0.15) (0.1872772934 -0.3210250409 0.15) (0.2088163162 -0.3220418952 0.15) (0.2099068264 -0.2993090354 0.15) (0.3398736187 0.1450575794 0.15) (0.3182314817 0.1461575029 0.15) (0.3171412747 0.1234516598 0.15) (0.4679480879 -0.3113975638 0.15) (0.4668610702 -0.3340995562 0.15) (0.4883700936 -0.3350949389 0.15) (0.5098702239 -0.33608789 0.15) (0.3593372804 -0.3290956395 0.15) (0.380831886 -0.3300993367 0.15) (0.3819204329 -0.3073864053 0.15) (0.5124732503 0.1360748965 0.15) (0.4909509049 0.1372090831 0.15) (0.489890918 0.1145278114 0.15) (0.6399592288 -0.3193186331 0.15) (0.6388750768 -0.3420027428 0.15) (0.6603738846 -0.3429816137 0.15) (0.6818687934 -0.3439582941 0.15) (0.5313724483 -0.3370789398 0.15) (0.5528787645 -0.3380681849 0.15) (0.5539642528 -0.3153771315 0.15) (0.5913492328 -0.2094627186 0.15) (0.8119357346 -0.3271068776 0.15) (0.810855144 -0.3498001697 0.15) (0.8323620389 -0.3507774287 0.15) (0.8538657443 -0.3517585384 0.15) (0.7033697435 -0.3449342649 0.15) (0.7248727877 -0.3459083345 0.15) (0.7259558925 -0.3232251754 0.15) (0.7632702922 -0.2174455156 0.15) (0.7683772644 -0.2233756871 0.15) (0.7737576391 -0.2236014063 0.15) (0.6987868195 -0.2144895049 0.15) (0.7639984476 -0.02535144811 0.15) (0.7635145546 -0.03659779739 0.15) (0.7742624169 -0.03725395247 0.15) (0.7849978876 -0.03789719496 0.15) (0.9851398302 -0.3330461688 0.15) (0.9840098072 -0.3558301827 0.15) (1.00507863 -0.3531901083 0.15) (1.026583582 -0.3542283446 0.15) (0.8753582215 -0.3527441119 0.15) (0.8968504575 -0.3537346795 0.15) (0.8979340102 -0.331021507 0.15) (0.943076763 -0.2877590844 0.15) (0.9323315543 -0.2872553346 0.15) (0.921569076 -0.286756758 0.15) (0.9210371918 -0.2980432397 0.15) (0.1709293325 0.02242386971 0.15) (0.3223597961 -0.2022979671 0.15) (0.321817703 -0.2136300095 0.15) (0.3325614788 -0.2141427006 0.15) (0.2573030601 -0.2105523541 0.15) (0.2680497842 -0.2110661887 0.15) (0.2788035485 -0.211579362 0.15) (0.2793464476 -0.2002513632 0.15) (0.344928071 -0.1805443638 0.15) (0.3395733941 -0.1802633195 0.15) (0.3342087 -0.1799823922 0.15) (0.3339274973 -0.1857654598 0.15) (0.2794504141 0.01675909204 0.15) (0.2797424717 0.02276699778 0.15) (0.2743114457 0.02300116934 0.15) (0.2688783876 0.0232554623 0.15) (0.3444878772 0.01416278481 0.15) (0.1926757486 0.02149311443 0.15) (0.2634591824 0.02352710742 0.15) (0.2580529759 0.02381914944 0.15) (0.2577645761 0.01780405896 0.15) (0.3553699145 -0.1868340158 0.15) (0.3556462214 -0.1811108818 0.15) (0.3502816815 -0.1808267583 0.15) (0.5288041487 0.02166627292 0.15) (0.5180300152 0.02223449256 0.15) (0.5072529817 0.02280485454 0.15) (0.5067335519 0.01150675874 0.15) (0.3661312536 0.01292263844 0.15) (0.6773190726 -0.2133649623 0.15) (0.6128427017 -0.2105314365 0.15) (0.7791367117 -0.2238540941 0.15) (0.7845119199 -0.2241246162 0.15) (0.7847969437 -0.2183246132 0.15) (0.7920554152 -0.2921895709 0.15) (0.7925902959 -0.2809032338 0.15) (0.781849117 -0.2804197019 0.15) (0.7710960966 -0.2799325947 0.15) (0.7957256479 -0.03855498255 0.15) (0.8064441685 -0.03923825424 0.15) (0.8069278391 -0.02797577547 0.15) (0.9640451399 -0.3000565444 0.15) (0.9645771205 -0.288768065 0.15) (0.953815834 -0.2882655413 0.15) (0.1236034515 -0.2952024699 0.15) (0.1225174533 -0.3179455593 0.15) (0.1441228677 -0.3189766318 0.15) (-0.007766289324 -0.3114924086 0.15) (0.01417694301 -0.3126569268 0.15) (0.03587252816 -0.3137364039 0.15) (0.03694811787 -0.2909807981 0.15) (0.06344994418 -0.1897590288 0.15) (0.06291488758 -0.2011174412 0.15) (0.07378151338 -0.2016610925 0.15) (0.08464014505 -0.2022023555 0.15) (0.01948908281 -0.1873953643 0.15) (0.2363239786 -0.198186298 0.15) (0.2357817408 -0.2095213369 0.15) (0.2465463476 -0.2100380372 0.15) (0.1711622821 -0.2064165955 0.15) (0.1819377796 -0.2069358239 0.15) (0.1927163219 -0.2074541982 0.15) (0.1932591866 -0.1961061744 0.15) (0.6621178308 0.1051866849 0.15) (0.9435123019 -0.09386661382 0.15) (0.9328898997 -0.09297583582 0.15) (0.9324626472 -0.104106582 0.15) (0.1501082535 -0.1940268978 0.15) (0.1495663876 -0.2053749698 0.15) (0.1603737515 -0.205897739 0.15) (0.09547084376 -0.2027332594 0.15) (0.1063037434 -0.203266272 0.15) (0.1068428056 -0.1919140599 0.15) (0.0293283262 0.03437116206 0.15) (0.03007326271 0.04579252671 0.15) (0.01899522057 0.04617919044 0.15) (0.008001662172 0.04658380102 0.15) (0.63600071 0.004555050566 0.15) (0.6257544311 0.01642996975 0.15) (0.6149934892 0.01702258163 0.15) (0.6790229093 0.002152605901 0.15) (0.5498637086 0.009225248765 0.15) (0.5503769043 0.02051863972 0.15) (0.5395852258 0.02109671689 0.15) (0.6042342557 0.01760910404 0.15) (0.5934481983 0.01819992498 0.15) (0.5929363391 0.006913477657 0.15) (-0.07885901648 -0.09709739426 0.15) (-0.06816373813 -0.09767522247 0.15) (-0.06792820178 -0.08478168041 0.15) (-0.06743751488 -0.07230384004 0.15) (-0.01301920455 -0.1508146668 0.15) (-0.02419260633 -0.1499808844 0.15) (-0.02432243296 -0.16161596 0.15) (-0.02430140163 -0.1733011687 0.15) (-0.06670014649 -0.05920814853 0.15) (-0.06583441836 -0.0467032482 0.15) (-0.07659922431 -0.04644573985 0.15) (0.01504811689 -0.01704222072 0.15) (0.7417705674 -0.2167759604 0.15) (0.03276819418 -0.1367748282 0.15) (0.0380557068 -0.1427956113 0.15) (0.0102687289 -0.1353997419 0.15) (0.3019639432 -0.1784321572 0.15) (0.2965870147 -0.1782387417 0.15) (0.3124324075 -0.1847095786 0.15) (0.3127163933 -0.1788896023 0.15) (0.3073408 -0.178647795 0.15) (0.3011541159 0.01633298366 0.15) (0.3228313091 0.01537853894 0.15) (0.2144000388 0.02062249607 0.15) (0.2360952794 0.01948196456 0.15) (0.489522028 -0.01033977001 0.15) (0.4949089618 -0.01061626456 0.15) (0.4951827067 -0.00490472052 0.15) (0.6229401037 -0.045761669 0.15) (0.6178352081 -0.03972627525 0.15) (0.6444757407 -0.04682791757 0.15) (0.8146591294 -0.1014618931 0.15) (0.9414800751 -0.154395333 0.15) (1.048088535 -0.3552665809 0.15) (1.069583498 -0.3563043349 0.15) (1.07068862 -0.3334139964 0.15) (1.042856671 -0.2402955292 0.15) (1.053604104 -0.240815405 0.15) (1.054156641 -0.2293707352 0.15) (1.054709081 -0.2179280631 0.15) (0.974832167 -0.1079174912 0.15) (-0.006716158225 -0.116601714 0.15) (-0.01257031562 -0.1159229206 0.15) (-0.01240621624 -0.1219344277 0.15) (0.5698466298 -0.2083965631 0.15) (0.7202807496 -0.2156523546 0.15) (1.055261545 -0.2064848915 0.15) (1.055814134 -0.1950391229 0.15) (1.045056259 -0.1945281539 0.15) (0.1492567759 0.02355729907 0.15) (0.3877414488 0.01192837822 0.15) (0.4093984996 0.01086778132 0.15) (0.6558190384 -0.2125151825 0.15) (0.634300357 -0.211595422 0.15) (0.6660337681 -0.04792808532 0.15) (0.9628248509 -0.1558895756 0.15) (0.9994825289 -0.1756721254 0.15) (-0.007457129009 0.161477934 0.15) (-0.03061732411 0.1395142303 0.15) (0.7220271362 -0.0003110432914 0.15) (-0.003085778455 0.04692987075 0.15) (-0.01477916019 0.0358668874 0.15) (-0.900365 -0.825172 0.15) (-0.943231 -0.77932 0.15) (-0.900509 -0.641852 0.15) (-0.943354 -0.595998 0.15) (-0.900647 -0.458532 0.15) (-0.943466 -0.412676 0.15) (-0.9009904897 -0.2757464876 0.15) (-0.9436009492 -0.229476021 0.15) (-0.9010346726 -0.09329011046 0.15) (-0.9436328571 -0.04647655258 0.15) (-0.900642498 0.09003962872 0.15) (-0.9435114774 0.1369898809 0.15) (-0.9005402 0.2742477085 0.15) (-0.9435130043 0.3206510445 0.15) (-0.900648 0.458135 0.15) (-0.943413 0.503996 0.15) (-0.90051 0.641481 0.15) (-0.943293 0.687341 0.15) (-0.900365 0.824828 0.15) (-0.943121 0.916525 0.15) (-0.94317 0.870686 0.15) (-0.729054 -0.82526 0.15) (-0.771953 -0.779411 0.15) (-0.7294194809 -0.6421105425 0.15) (-0.7722567107 -0.5962122082 0.15) (-0.7316151323 -0.4623606517 0.15) (-0.7739028592 -0.4156533357 0.15) (-0.7327418932 -0.2842964961 0.15) (-0.7745377279 -0.2362142676 0.15) (-0.7312471349 -0.1045023912 0.15) (-0.7731675457 -0.05509557975 0.15) (-0.7284818444 0.07879652963 0.15) (-0.7711879585 0.1289853702 0.15) (-0.7267755799 0.2656373929 0.15) (-0.7704977694 0.3156284501 0.15) (-0.7274828383 0.4542616105 0.15) (-0.77154876 0.5027358502 0.15) (-0.7291653778 0.6412133766 0.15) (-0.772062 0.687245 0.15) (-0.729068 0.824984 0.15) (-0.77178 0.916958 0.15) (-0.771858 0.870764 0.15) (-0.5576244824 -0.8255809873 0.15) (-0.6006422528 -0.7795576122 0.15) (-0.5613614862 -0.6472444384 0.15) (-0.6042143502 -0.6014454846 0.15) (-0.5658741495 -0.4750770714 0.15) (-0.6077287163 -0.4278809657 0.15) (-0.5660274697 -0.3023982463 0.15) (-0.6071230388 -0.2532521678 0.15) (-0.5617278616 -0.1250531558 0.15) (-0.6028589765 -0.07414481374 0.15) (-0.5556857402 0.0581554009 0.15) (-0.5976918589 0.1104973124 0.15) (-0.5511401176 0.2473288 0.15) (-0.5947103268 0.3004784453 0.15) (-0.5508191783 0.4413734913 0.15) (-0.5958372194 0.4937300627 0.15) (-0.5545150799 0.6376013614 0.15) (-0.5994170995 0.6867120252 0.15) (-0.5557929582 0.8280732783 0.15) (-0.598713 0.919474 0.15) (-0.598763 0.873702 0.15) (-0.3852675156 -0.8315241379 0.15) (-0.4292065362 -0.7865000266 0.15) (-0.3935603731 -0.6619837552 0.15) (-0.4383823205 -0.6141858328 0.15) (-0.4004055216 -0.4936759556 0.15) (-0.4422543345 -0.4465797153 0.15) (-0.3986316704 -0.3236199037 0.15) (-0.4394097268 -0.2748498497 0.15) (-0.3918077708 -0.1459429644 0.15) (-0.4323999608 -0.09608132465 0.15) (-0.3833932503 0.03718845149 0.15) (-0.4244273638 0.08845240374 0.15) (-0.375887606 0.2271446236 0.15) (-0.418469336 0.280377569 0.15) (-0.3717065225 0.4268661643 0.15) (-0.4167868886 0.4812522897 0.15) (-0.3747083317 0.6285022504 0.15) (-0.4209094277 0.6812179957 0.15) (-0.3818679379 0.8257949046 0.15) (-0.4268262487 0.920107068 0.15) (-0.4264961647 0.8738672159 0.15) (-0.2160146678 -0.8371538355 0.15) (-0.2609076822 -0.7942933635 0.15) (-0.2260004351 -0.676419042 0.15) (-0.2696310121 -0.633107558 0.15) (-0.2299445737 -0.5160870398 0.15) (-0.2727394267 -0.4700433782 0.15) (-0.2275437167 -0.3435068371 0.15) (-0.2695940645 -0.2936395725 0.15) (-0.1997612942 -0.1585770765 0.15) (-0.2211426295 -0.1573009246 0.15) (-0.2617307829 -0.1091687547 0.15) (-0.219037789 -0.111256458 0.15) (-0.2179536578 -0.08836540645 0.15) (-0.2168564236 -0.06547253668 0.15) (-0.2201028494 -0.1341879762 0.15) (-0.1987436851 -0.1353427177 0.15) (-0.1907497111 0.02725005025 0.15) (-0.1919890227 0.004006471836 0.15) (-0.21462464 -0.01916273089 0.15) (-0.2133753102 0.004848257213 0.15) (-0.2121577982 0.02805504406 0.15) (-0.2157476157 -0.04250583514 0.15) (-0.2525721277 0.07578536422 0.15) (-0.2004598873 0.215538222 0.15) (-0.2419734957 0.2660337633 0.15) (-0.1940652346 0.4098591107 0.15) (-0.2380269564 0.4644285895 0.15) (-0.1971335956 0.6153011912 0.15) (-0.2434868255 0.6699780929 0.15) (-0.2056081012 0.8209522213 0.15) (-0.2529339728 0.919628695 0.15) (-0.2516434143 0.8715740562 0.15) (-0.0458727598 -0.8434237151 0.15) (-0.09160391836 -0.8020887489 0.15) (-0.05622764504 -0.688160362 0.15) (-0.1007483055 -0.6465697885 0.15) (-0.05950507167 -0.5299401532 0.15) (-0.1017737043 -0.4851396837 0.15) (-0.0534476824 -0.3547708751 0.15) (-0.09376158445 -0.2840615642 0.15) (-0.07204500681 -0.2852391678 0.15) (-0.05147493619 -0.3091399196 0.15) (-0.07303389768 -0.3080570269 0.15) (-0.09468919506 -0.3069124168 0.15) (-0.02979881125 -0.3102575026 0.15) (-0.1352502721 -0.1635131193 0.15) (-0.1361337387 -0.1867270231 0.15) (-0.1142815235 -0.2129222728 0.15) (-0.09202788718 -0.2147855726 0.15) (-0.1074610383 -0.02194299128 0.15) (-0.1261149889 0.02570568812 0.15) (-0.1276420372 0.001976820587 0.15) (-0.01861201116 0.3969019713 0.15) (-0.06187690219 0.450468989 0.15) (-0.02038127063 0.6034491717 0.15) (-0.0661507509 0.6590904955 0.15) (-0.03031517768 0.8146139879 0.15) (-0.0788323354 0.9168383845 0.15) (-0.0765654376 0.8669653777 0.15) (0.1259572709 -0.8472622541 0.15) (0.07994416307 -0.8079272521 0.15) (0.1154918668 -0.695899963 0.15) (0.07087336925 -0.6564226885 0.15) (0.1133218351 -0.539694445 0.15) (0.07131251 -0.4955597228 0.15) (0.1014517002 0.1566964857 0.15) (0.07971866533 0.1576866648 0.15) (0.05925946866 0.1814639263 0.15) (0.1552149911 0.3863271125 0.15) (0.1126240339 0.4389179467 0.15) (0.1543698336 0.5936123747 0.15) (0.1089575355 0.6495697273 0.15) (0.1444133391 0.8090937015 0.15) (0.09548753249 0.9138244593 0.15) (0.09813712081 0.8626175549 0.15) (0.2977624453 -0.8501875341 0.15) (0.2518669114 -0.8116275469 0.15) (0.2872927518 -0.7022910962 0.15) (0.2428661562 -0.6634778866 0.15) (0.2854125607 -0.5480027596 0.15) (0.2436208683 -0.5040030476 0.15) (0.2749250266 0.1483333916 0.15) (0.2532736933 0.1494087299 0.15) (0.2327107141 0.1731930043 0.15) (0.3281970283 0.3775480985 0.15) (0.2858547472 0.429695321 0.15) (0.3275799667 0.5868120769 0.15) (0.2825622101 0.6427073646 0.15) (0.3176561301 0.8057646196 0.15) (0.2687181784 0.9116301125 0.15) (0.2714891406 0.8595537369 0.15) (0.4693413015 -0.8532899062 0.15) (0.4234343806 -0.8154949916 0.15) (0.4588630807 -0.7088220746 0.15) (0.4145047438 -0.6705614317 0.15) (0.4572372982 -0.5562851017 0.15) (0.4155211015 -0.5122737222 0.15) (0.3631362864 -0.2496604236 0.15) (0.4478493288 0.1394812039 0.15) (0.4262880149 0.1405962475 0.15) (0.405737387 0.1644289826 0.15) (0.5004343102 0.3702870003 0.15) (0.4582201194 0.4228921401 0.15) (0.4992528068 0.583516247 0.15) (0.4545144513 0.6394197265 0.15) (0.4892308274 0.8054751479 0.15) (0.4408951517 0.9111986674 0.15) (0.4435724769 0.8587856492 0.15) (0.6407750072 -0.8570634237 0.15) (0.5949664225 -0.8198256708 0.15) (0.6303482472 -0.7159482346 0.15) (0.5861380881 -0.6780284016 0.15) (0.629070146 -0.5646976551 0.15) (0.5874660835 -0.5205779277 0.15) (0.5351630086 -0.2577564478 0.15) (0.6201608744 0.1302341057 0.15) (0.5986309518 0.1314187164 0.15) (0.6719163766 0.3649907539 0.15) (0.6295896497 0.4186344086 0.15) (0.6698189142 0.5835084425 0.15) (0.6250460683 0.6403051655 0.15) (0.6597715378 0.8076379621 0.15) (0.6121307883 0.9124860701 0.15) (0.6145577677 0.8602925375 0.15) (0.8120269775 -0.8616115669 0.15) (0.766287675 -0.8249148259 0.15) (0.8016651165 -0.7239033432 0.15) (0.7576126512 -0.686130277 0.15) (0.8008236678 -0.573494872 0.15) (0.7593429841 -0.5289823943 0.15) (0.7071390179 -0.2657208733 0.15) (0.8427114423 0.3624530308 0.15) (0.8002968602 0.4167488388 0.15) (0.8395687325 0.5866467155 0.15) (0.7949495417 0.643255751 0.15) (0.8297935919 0.811471351 0.15) (0.7830345896 0.9147638974 0.15) (0.7847565986 0.8640626659 0.15) (0.9839604177 -0.8656054315 0.15) (0.9373137454 -0.8317395996 0.15) (0.9737555399 -0.731326081 0.15) (0.9289890105 -0.695524869 0.15) (0.9735483952 -0.5810740384 0.15) (0.9313476357 -0.5376283514 0.15) (0.9000868283 -0.2857666726 0.15) (0.8893438928 -0.28527805 0.15) (0.8791136086 -0.2735280475 0.15) (0.9116033931 -0.09129078109 0.15) (0.9009355538 -0.09049091776 0.15) (0.8906999991 -0.07853902619 0.15) (1.008173837 0.1534504345 0.15) (0.9673688958 0.2042688454 0.15) (1.012711987 0.3635149281 0.15) (0.9701295833 0.4191654719 0.15) (1.008483508 0.5936641015 0.15) (0.9642027614 0.6489677412 0.15) (0.9995682123 0.816273656 0.15) (0.9538947741 0.916786244 0.15) (0.9552610012 0.866987138 0.15) (1.156946689 -0.8610960793 0.15) (1.110162322 -0.8291765272 0.15) (1.14688117 -0.7284326415 0.15) (1.101903622 -0.695569098 0.15) (1.145865953 -0.58236107 0.15) (1.10398247 -0.5401723202 0.15) (1.051956435 -0.2751508956 0.15) (1.052508971 -0.2637062258 0.15) (1.104349727 -0.08266220503 0.15) (1.083949882 -0.05873392993 0.15) (1.179387068 0.1495720189 0.15) (1.138069871 0.2013185968 0.15) (1.182221872 0.369577805 0.15) (1.13930537 0.4246365108 0.15) (1.177051526 0.6025543774 0.15) (1.132873184 0.6572605734 0.15) (1.169531698 0.8209291807 0.15) (1.125223682 0.917328141 0.15) (1.12572648 0.8699926316 0.15) (1.333322267 -0.8490899473 0.15) (1.286377407 -0.8181381845 0.15) (1.324094017 -0.7123780544 0.15) (1.278030804 -0.6841023584 0.15) (1.32120456 -0.571644907 0.15) (1.277825011 -0.5373447051 0.15) (1.325981238 -0.4096212528 0.15) (1.284656463 -0.3662544057 0.15) (1.33430178 -0.2304981137 0.15) (1.293453902 -0.1835653225 0.15) (1.343041685 -0.04364333798 0.15) (1.302198343 0.002982559613 0.15) (1.350020089 0.1601659593 0.15) (1.308612355 0.2096936946 0.15) (1.351198083 0.3858604136 0.15) (1.30830893 0.438744562 0.15) (1.345771136 0.6163644033 0.15) (1.301745664 0.6683877701 0.15) (1.340415185 0.8245207094 0.15) (1.29722 0.916667 0.15) (1.29722 0.870833 0.15) (1.510290869 -0.8331375468 0.15) (1.464300527 -0.7988524857 0.15) (1.503590251 -0.6832542673 0.15) (1.457131522 -0.6563319432 0.15) (1.499753019 -0.5394135038 0.15) (1.454972988 -0.5119711184 0.15) (1.501724271 -0.3836011549 0.15) (1.458932879 -0.3510506081 0.15) (1.507777164 -0.2096363216 0.15) (1.466172678 -0.1722180705 0.15) (1.514712964 -0.01769485647 0.15) (1.473485646 0.02346179194 0.15) (1.519224241 0.1926296168 0.15) (1.477563785 0.237904123 0.15) (1.518668542 0.4154670599 0.15) (1.475929281 0.4639330497 0.15) (1.514316348 0.6328474394 0.15) (1.470897155 0.681000039 0.15) (1.5125 0.825 0.15) (1.46944 0.916667 0.15) (1.46944 0.870833 0.15) (1.68472 -0.825 0.15) (1.64097826 -0.7819811935 0.15) (1.682380213 -0.653318695 0.15) (1.636874857 -0.6210481492 0.15) (1.679352226 -0.4950840218 0.15) (1.634257949 -0.4674334258 0.15) (1.679363705 -0.3338556641 0.15) (1.635653591 -0.3053093208 0.15) (1.682356871 -0.1591399856 0.15) (1.639888347 -0.1267931385 0.15) (1.686029195 0.0322783169 0.15) (1.644127407 0.06948911821 0.15) (1.687724736 0.2374456949 0.15) (1.645596719 0.2795751856 0.15) (1.686418266 0.4460485192 0.15) (1.643616329 0.4915615796 0.15) (1.684720291 0.6416655145 0.15) (1.64167 0.6875 0.15) (1.68472 0.825 0.15) (1.64167 0.916667 0.15) (1.64167 0.870833 0.15) (1.85694 -0.825 0.15) (1.81389 -0.779167 0.15) (1.85694 -0.641667 0.15) (1.813599571 -0.5974571353 0.15) (1.856381199 -0.4624268892 0.15) (1.812256795 -0.4255363319 0.15) (1.855852757 -0.2880284096 0.15) (1.812123969 -0.2537913294 0.15) (1.856419609 -0.1089708384 0.15) (1.813406413 -0.07337925494 0.15) (1.857256389 0.07841115013 0.15) (1.814631202 0.1176371108 0.15) (1.857279155 0.2706597178 0.15) (1.814527239 0.3139476215 0.15) (1.85694 0.458333 0.15) (1.81389 0.504167 0.15) (1.85694 0.641667 0.15) (1.81389 0.6875 0.15) (1.85694 0.825 0.15) (1.81389 0.916667 0.15) (1.81389 0.870833 0.15) (2.02917 -0.825 0.15) (1.98611 -0.779167 0.15) (2.02917 -0.641667 0.15) (1.98611 -0.595833 0.15) (2.02917 -0.458333 0.15) (1.98611 -0.4125 0.15) (2.02917 -0.275 0.15) (1.986106385 -0.2292212705 0.15) (2.02917 -0.0916667 0.15) (1.986106314 -0.04608039485 0.15) (2.02917 0.0916667 0.15) (1.98611 0.1375 0.15) (2.02917 0.275 0.15) (1.98611 0.320833 0.15) (2.02917 0.458333 0.15) (1.98611 0.504167 0.15) (2.02917 0.641667 0.15) (1.98611 0.6875 0.15) (2.02917 0.825 0.15) (1.98611 0.916667 0.15) (1.98611 0.870833 0.15) (2.20139 -0.825 0.15) (2.15833 -0.779167 0.15) (2.20139 -0.641667 0.15) (2.15833 -0.595833 0.15) (2.20139 -0.458333 0.15) (2.15833 -0.4125 0.15) (2.20139 -0.275 0.15) (2.15833 -0.229167 0.15) (2.20139 -0.0916667 0.15) (2.15833 -0.0458333 0.15) (2.20139 0.0916667 0.15) (2.15833 0.1375 0.15) (2.20139 0.275 0.15) (2.15833 0.320833 0.15) (2.20139 0.458333 0.15) (2.15833 0.504167 0.15) (2.20139 0.641667 0.15) (2.15833 0.6875 0.15) (2.20139 0.825 0.15) (2.15833 0.916667 0.15) (2.15833 0.870833 0.15) (2.37361 -0.825 0.15) (2.33056 -0.779167 0.15) (2.37361 -0.641667 0.15) (2.33056 -0.595833 0.15) (2.37361 -0.458333 0.15) (2.33056 -0.4125 0.15) (2.37361 -0.275 0.15) (2.33056 -0.229167 0.15) (2.37361 -0.0916667 0.15) (2.33056 -0.0458333 0.15) (2.37361 0.0916667 0.15) (2.33056 0.1375 0.15) (2.37361 0.275 0.15) (2.33056 0.320833 0.15) (2.37361 0.458333 0.15) (2.33056 0.504167 0.15) (2.37361 0.641667 0.15) (2.33056 0.6875 0.15) (2.37361 0.825 0.15) (2.33056 0.916667 0.15) (2.33056 0.870833 0.15) (2.54583 -0.825 0.15) (2.50278 -0.779167 0.15) (2.54583 -0.641667 0.15) (2.50278 -0.595833 0.15) (2.54583 -0.458333 0.15) (2.50278 -0.4125 0.15) (2.54583 -0.275 0.15) (2.50278 -0.229167 0.15) (2.54583 -0.0916667 0.15) (2.50278 -0.0458333 0.15) (2.54583 0.0916667 0.15) (2.50278 0.1375 0.15) (2.54583 0.275 0.15) (2.50278 0.320833 0.15) (2.54583 0.458333 0.15) (2.50278 0.504167 0.15) (2.54583 0.641667 0.15) (2.50278 0.6875 0.15) (2.54583 0.825 0.15) (2.50278 0.916667 0.15) (2.50278 0.870833 0.15) (2.71806 -0.825 0.15) (2.675 -0.779167 0.15) (2.71806 -0.641667 0.15) (2.675 -0.595833 0.15) (2.71806 -0.458333 0.15) (2.675 -0.4125 0.15) (2.71806 -0.275 0.15) (2.675 -0.229167 0.15) (2.71806 -0.0916667 0.15) (2.675 -0.0458333 0.15) (2.71806 0.0916667 0.15) (2.675 0.1375 0.15) (2.71806 0.275 0.15) (2.675 0.320833 0.15) (2.71806 0.458333 0.15) (2.675 0.504167 0.15) (2.71806 0.641667 0.15) (2.675 0.6875 0.15) (2.71806 0.825 0.15) (2.675 0.916667 0.15) (2.675 0.870833 0.15) (2.89028 -0.825 0.15) (2.84722 -0.779167 0.15) (2.89028 -0.641667 0.15) (2.84722 -0.595833 0.15) (2.89028 -0.458333 0.15) (2.84722 -0.4125 0.15) (2.89028 -0.275 0.15) (2.84722 -0.229167 0.15) (2.89028 -0.0916667 0.15) (2.84722 -0.0458333 0.15) (2.89028 0.0916667 0.15) (2.84722 0.1375 0.15) (2.89028 0.275 0.15) (2.84722 0.320833 0.15) (2.89028 0.458333 0.15) (2.84722 0.504167 0.15) (2.89028 0.641667 0.15) (2.84722 0.6875 0.15) (2.89028 0.825 0.15) (2.84722 0.916667 0.15) (2.84722 0.870833 0.15) (3.0625 -0.825 0.15) (3.01944 -0.779167 0.15) (3.0625 -0.641667 0.15) (3.01944 -0.595833 0.15) (3.0625 -0.458333 0.15) (3.01944 -0.4125 0.15) (3.0625 -0.275 0.15) (3.01944 -0.229167 0.15) (3.0625 -0.0916667 0.15) (3.01944 -0.0458333 0.15) (3.0625 0.0916667 0.15) (3.01944 0.1375 0.15) (3.0625 0.275 0.15) (3.01944 0.320833 0.15) (3.0625 0.458333 0.15) (3.01944 0.504167 0.15) (3.0625 0.641667 0.15) (3.01944 0.6875 0.15) (3.0625 0.825 0.15) (3.01944 0.916667 0.15) (3.01944 0.870833 0.15) (3.23472 -0.825 0.15) (3.19167 -0.779167 0.15) (3.23472 -0.641667 0.15) (3.19167 -0.595833 0.15) (3.23472 -0.458333 0.15) (3.19167 -0.4125 0.15) (3.23472 -0.275 0.15) (3.19167 -0.229167 0.15) (3.23472 -0.0916667 0.15) (3.19167 -0.0458333 0.15) (3.23472 0.0916667 0.15) (3.19167 0.1375 0.15) (3.23472 0.275 0.15) (3.19167 0.320833 0.15) (3.23472 0.458333 0.15) (3.19167 0.504167 0.15) (3.23472 0.641667 0.15) (3.19167 0.6875 0.15) (3.23472 0.825 0.15) (3.19167 0.916667 0.15) (3.19167 0.870833 0.15) (3.40694 -0.825 0.15) (3.36389 -0.779167 0.15) (3.40694 -0.641667 0.15) (3.36389 -0.595833 0.15) (3.40694 -0.458333 0.15) (3.36389 -0.4125 0.15) (3.40694 -0.275 0.15) (3.36389 -0.229167 0.15) (3.40694 -0.0916667 0.15) (3.36389 -0.0458333 0.15) (3.40694 0.0916667 0.15) (3.36389 0.1375 0.15) (3.40694 0.275 0.15) (3.36389 0.320833 0.15) (3.40694 0.458333 0.15) (3.36389 0.504167 0.15) (3.40694 0.641667 0.15) (3.36389 0.6875 0.15) (3.40694 0.825 0.15) (3.36389 0.916667 0.15) (3.36389 0.870833 0.15) (3.57917 -0.825 0.15) (3.53611 -0.779167 0.15) (3.57917 -0.641667 0.15) (3.53611 -0.595833 0.15) (3.57917 -0.458333 0.15) (3.53611 -0.4125 0.15) (3.57917 -0.275 0.15) (3.53611 -0.229167 0.15) (3.57917 -0.0916667 0.15) (3.53611 -0.0458333 0.15) (3.57917 0.0916667 0.15) (3.53611 0.1375 0.15) (3.57917 0.275 0.15) (3.53611 0.320833 0.15) (3.57917 0.458333 0.15) (3.53611 0.504167 0.15) (3.57917 0.641667 0.15) (3.53611 0.6875 0.15) (3.57917 0.825 0.15) (3.53611 0.916667 0.15) (3.53611 0.870833 0.15) (3.75139 -0.825 0.15) (3.70833 -0.779167 0.15) (3.75139 -0.641667 0.15) (3.70833 -0.595833 0.15) (3.75139 -0.458333 0.15) (3.70833 -0.4125 0.15) (3.75139 -0.275 0.15) (3.70833 -0.229167 0.15) (3.75139 -0.0916667 0.15) (3.70833 -0.0458333 0.15) (3.75139 0.0916667 0.15) (3.70833 0.1375 0.15) (3.75139 0.275 0.15) (3.70833 0.320833 0.15) (3.75139 0.458333 0.15) (3.70833 0.504167 0.15) (3.75139 0.641667 0.15) (3.70833 0.6875 0.15) (3.75139 0.825 0.15) (3.70833 0.916667 0.15) (3.70833 0.870833 0.15) (3.92361 -0.825 0.15) (3.88056 -0.779167 0.15) (3.92361 -0.641667 0.15) (3.88056 -0.595833 0.15) (3.92361 -0.458333 0.15) (3.88056 -0.4125 0.15) (3.92361 -0.275 0.15) (3.88056 -0.229167 0.15) (3.92361 -0.0916667 0.15) (3.88056 -0.0458333 0.15) (3.92361 0.0916667 0.15) (3.88056 0.1375 0.15) (3.92361 0.275 0.15) (3.88056 0.320833 0.15) (3.92361 0.458333 0.15) (3.88056 0.504167 0.15) (3.92361 0.641667 0.15) (3.88056 0.6875 0.15) (3.92361 0.825 0.15) (3.88056 0.916667 0.15) (3.88056 0.870833 0.15) (4.09583 -0.825 0.15) (4.05278 -0.779167 0.15) (4.09583 -0.641667 0.15) (4.05278 -0.595833 0.15) (4.09583 -0.458333 0.15) (4.05278 -0.4125 0.15) (4.09583 -0.275 0.15) (4.05278 -0.229167 0.15) (4.09583 -0.0916667 0.15) (4.05278 -0.0458333 0.15) (4.09583 0.0916667 0.15) (4.05278 0.1375 0.15) (4.09583 0.275 0.15) (4.05278 0.320833 0.15) (4.09583 0.458333 0.15) (4.05278 0.504167 0.15) (4.09583 0.641667 0.15) (4.05278 0.6875 0.15) (4.09583 0.825 0.15) (4.05278 0.916667 0.15) (4.05278 0.870833 0.15) (4.26806 -0.825 0.15) (4.225 -0.779167 0.15) (4.26806 -0.641667 0.15) (4.225 -0.595833 0.15) (4.26806 -0.458333 0.15) (4.225 -0.4125 0.15) (4.26806 -0.275 0.15) (4.225 -0.229167 0.15) (4.26806 -0.0916667 0.15) (4.225 -0.0458333 0.15) (4.26806 0.0916667 0.15) (4.225 0.1375 0.15) (4.26806 0.275 0.15) (4.225 0.320833 0.15) (4.26806 0.458333 0.15) (4.225 0.504167 0.15) (4.26806 0.641667 0.15) (4.225 0.6875 0.15) (4.26806 0.825 0.15) (4.225 0.916667 0.15) (4.225 0.870833 0.15) (4.44028 -0.825 0.15) (4.39722 -0.779167 0.15) (4.44028 -0.641667 0.15) (4.39722 -0.595833 0.15) (4.44028 -0.458333 0.15) (4.39722 -0.4125 0.15) (4.44028 -0.275 0.15) (4.39722 -0.229167 0.15) (4.44028 -0.0916667 0.15) (4.39722 -0.0458333 0.15) (4.44028 0.0916667 0.15) (4.39722 0.1375 0.15) (4.44028 0.275 0.15) (4.39722 0.320833 0.15) (4.44028 0.458333 0.15) (4.39722 0.504167 0.15) (4.44028 0.641667 0.15) (4.39722 0.6875 0.15) (4.44028 0.825 0.15) (4.39722 0.916667 0.15) (4.39722 0.870833 0.15) (4.6125 -0.825 0.15) (4.56944 -0.779167 0.15) (4.6125 -0.641667 0.15) (4.56944 -0.595833 0.15) (4.6125 -0.458333 0.15) (4.56944 -0.4125 0.15) (4.6125 -0.275 0.15) (4.56944 -0.229167 0.15) (4.6125 -0.0916667 0.15) (4.56944 -0.0458333 0.15) (4.6125 0.0916667 0.15) (4.56944 0.1375 0.15) (4.6125 0.275 0.15) (4.56944 0.320833 0.15) (4.6125 0.458333 0.15) (4.56944 0.504167 0.15) (4.6125 0.641667 0.15) (4.56944 0.6875 0.15) (4.6125 0.825 0.15) (4.56944 0.916667 0.15) (4.56944 0.870833 0.15) (4.78472 -0.825 0.15) (4.74167 -0.779167 0.15) (4.78472 -0.641667 0.15) (4.74167 -0.595833 0.15) (4.78472 -0.458333 0.15) (4.74167 -0.4125 0.15) (4.78472 -0.275 0.15) (4.74167 -0.229167 0.15) (4.78472 -0.0916667 0.15) (4.74167 -0.0458333 0.15) (4.78472 0.0916667 0.15) (4.74167 0.1375 0.15) (4.78472 0.275 0.15) (4.74167 0.320833 0.15) (4.78472 0.458333 0.15) (4.74167 0.504167 0.15) (4.78472 0.641667 0.15) (4.74167 0.6875 0.15) (4.78472 0.825 0.15) (4.74167 0.916667 0.15) (4.74167 0.870833 0.15) (5 -0.825 0.15) (4.95694 -0.825 0.15) (4.91389 -0.779167 0.15) (5 -0.641667 0.15) (4.95694 -0.641667 0.15) (4.91389 -0.595833 0.15) (5 -0.458333 0.15) (4.95694 -0.458333 0.15) (4.91389 -0.4125 0.15) (5 -0.275 0.15) (4.95694 -0.275 0.15) (4.91389 -0.229167 0.15) (5 -0.0916667 0.15) (4.95694 -0.0916667 0.15) (4.91389 -0.0458333 0.15) (5 0.0916667 0.15) (4.95694 0.0916667 0.15) (4.91389 0.1375 0.15) (5 0.275 0.15) (4.95694 0.275 0.15) (4.91389 0.320833 0.15) (5 0.458333 0.15) (4.95694 0.458333 0.15) (4.91389 0.504167 0.15) (5 0.641667 0.15) (4.95694 0.641667 0.15) (4.91389 0.6875 0.15) (5 0.825 0.15) (4.95694 0.825 0.15) (4.91389 0.916667 0.15) (4.91389 0.870833 0.15) (0.1626284758 0.07411729988 0.15) (0.3360863371 0.06565783942 0.15) (0.2060416001 0.07205640107 0.15) (0.4921700913 -0.2557428676 0.15) (0.5082855728 0.04541636625 0.15) (0.508806773 0.05673039521 0.15) (0.3793446895 0.06346024512 0.15) (0.6641513082 -0.2637445876 0.15) (0.8361225028 -0.2715806316 0.15) (0.8140755057 -0.2818734389 0.15) (0.8248326179 -0.2823587413 0.15) (0.8094240423 0.02853899968 0.15) (0.8298582261 0.004554703509 0.15) (1.008946627 -0.2730724254 0.15) (0.9873780598 -0.2875982285 0.15) (0.9976465122 -0.2840002159 0.15) (1.006024728 -0.1434345032 0.15) (1.014471558 -0.1586347167 0.15) (0.8781135804 -0.1277849667 0.15) (1.000769608 -0.007274879447 0.15) (0.9805731077 0.0172155438 0.15) (0.9592511303 0.01874652978 0.15) (0.9154961784 -0.0009754296058 0.15) (0.9379047811 0.02024965863 0.15) (-0.04714634505 -0.1830779965 0.15) (-0.03603715077 -0.1838666302 0.15) (-0.02488566219 -0.1962878366 0.15) (-0.03615494238 -0.1954784591 0.15) (-0.04738070424 -0.1946531616 0.15) (-0.01399012336 -0.196894956 0.15) (-0.07004305042 -0.2162504466 0.15) (-0.1343573983 -0.1402287873 0.15) (-0.1120281586 -0.1181590894 0.15) (-0.1245171351 0.04930438979 0.15) (-0.122816526 0.07287480339 0.15) (-0.1447082025 0.07316081344 0.15) (-0.1006789701 0.07268404717 0.15) (-0.1209321171 0.0964573678 0.15) (0.1459728386 0.1773826192 0.15) (0.1231851656 0.1556882648 0.15) (0.2518537954 -0.3240656362 0.15) (0.2733610966 -0.3250759532 0.15) (0.2937799335 -0.3488182278 0.15) (0.2303345082 -0.3230547404 0.15) (0.3193196428 0.1688624436 0.15) (0.2965869613 0.1472495321 0.15) (0.4238403163 -0.332102653 0.15) (0.4453561387 -0.3331023687 0.15) (0.4657722822 -0.3568174817 0.15) (0.3797427122 -0.3528252529 0.15) (0.4023325812 -0.3311013255 0.15) (0.406132331 -0.2516921758 0.15) (0.4920141295 0.1598952044 0.15) (0.4694098228 0.1383491802 0.15) (0.5958886897 -0.3400405373 0.15) (0.6173773644 -0.3410219225 0.15) (0.6377886723 -0.3647127741 0.15) (0.5517902176 -0.3607811162 0.15) (0.574386176 -0.3390554805 0.15) (0.5781752896 -0.2597629535 0.15) (0.5377984326 -0.01848446752 0.15) (0.7678619923 -0.3478536563 0.15) (0.7893601387 -0.3488254871 0.15) (0.8086792968 -0.395283159 0.15) (0.8097688703 -0.3725282283 0.15) (0.723787189 -0.3686224094 0.15) (0.7463619446 -0.3468797313 0.15) (0.7501274027 -0.2676831753 0.15) (0.7603400315 -0.2794463418 0.15) (0.7527786499 -0.03596354443 0.15) (0.7630372717 -0.04783165089 0.15) (0.9398512208 -0.355751642 0.15) (0.9615036288 -0.3567839821 0.15) (0.9817820684 -0.4014548345 0.15) (0.9828948012 -0.378634945 0.15) (0.8946726332 -0.399258621 0.15) (0.8957631711 -0.3764837136 0.15) (0.9183390701 -0.3547380873 0.15) (0.9220976605 -0.2754971484 0.15) (0.9108286204 -0.2862582435 0.15) (1.138518791 -0.2678586886 0.15) (1.160023744 -0.2688969248 0.15) (1.161128865 -0.2460065864 0.15) (1.162233952 -0.2231169471 0.15) (1.158918622 -0.2917872633 0.15) (1.142939214 -0.1762986331 0.15) (1.164444166 -0.1773368694 0.15) (1.165549268 -0.1544469304 0.15) (1.163339059 -0.2002269082 0.15) (1.056929355 -0.1721469694 0.15) (1.05748193 -0.1607015005 0.15) (1.047277016 -0.1487370719 0.15) (0.09735367811 -0.1629461668 0.15) (0.1622879922 -0.1660615038 0.15) (0.1191802198 0.07613484239 0.15) (0.3003201147 -0.2126051439 0.15) (0.3110689329 -0.2131170772 0.15) (0.320731519 -0.2362939978 0.15) (0.3212746592 -0.2249610048 0.15) (0.2782593612 -0.2229133056 0.15) (0.289567301 -0.2120930176 0.15) (0.2699324483 -0.1715522056 0.15) (0.3345018126 -0.1740770567 0.15) (0.3234641314 -0.1794239096 0.15) (0.3288379694 -0.1797020746 0.15) (0.1838552361 -0.1670122421 0.15) (0.2484422496 -0.1704364907 0.15) (0.2927734549 0.06782502792 0.15) (0.2933187375 0.079160921 0.15) (0.2824830825 0.0796990724 0.15) (0.2716352968 0.08023480595 0.15) (0.3041413112 0.07862139883 0.15) (0.2851685656 0.02255508996 0.15) (0.2800250915 0.02860015533 0.15) (0.258333791 0.02965639879 0.15) (0.2526448821 0.02413430937 0.15) (0.2494249246 0.06995889672 0.15) (0.2499754424 0.08129954287 0.15) (0.2391333122 0.08182799523 0.15) (0.2608053937 0.08076767383 0.15) (0.4491585337 -0.2537213793 0.15) (0.361014718 -0.1813959973 0.15) (0.3559287026 -0.1753220691 0.15) (0.5162126542 -0.01735773063 0.15) (0.4657179406 0.05899689495 0.15) (0.5077696561 0.03410808919 0.15) (0.4964816519 0.02336893416 0.15) (0.4225638806 0.06123951236 0.15) (0.6211590865 -0.2617580725 0.15) (0.7842389995 -0.2298190801 0.15) (0.7898805564 -0.2244068351 0.15) (0.8033244348 -0.2813874271 0.15) (0.7931222145 -0.2696367771 0.15) (0.8488407511 -0.05320968923 0.15) (0.8059715224 -0.0504590161 0.15) (0.8171727733 -0.03989928633 0.15) (1.016423776 -0.2274829557 0.15) (0.9755244532 -0.289025275 0.15) (0.9651056568 -0.2775094543 0.15) (1.017342271 -0.2049329134 0.15) (0.0793230432 -0.3158771988 0.15) (0.1009222683 -0.3169099748 0.15) (0.05759192009 -0.3148080199 0.15) (0.04106985937 -0.1999917037 0.15) (0.05198825585 -0.2005558754 0.15) (0.0623790319 -0.212475815 0.15) (0.03010983212 -0.1994085023 0.15) (0.2142654157 -0.2084905609 0.15) (0.2250300707 -0.2090062624 0.15) (0.2352383112 -0.220860323 0.15) (0.1921735536 -0.2188002243 0.15) (0.2034868734 -0.2079721867 0.15) (0.6416611694 0.1290579335 0.15) (0.7295920551 -0.07411190417 0.15) (0.9333435347 -0.08177558104 0.15) (0.92224552 -0.09214626922 0.15) (0.1279428633 -0.204325002 0.15) (0.1387690121 -0.2048526828 0.15) (0.1490244735 -0.2167240407 0.15) (0.1057645846 -0.2146204817 0.15) (0.1171247534 -0.2037967082 0.15) (0.04104810422 0.04536479181 0.15) (0.03073295015 0.05718797215 0.15) (0.07567153404 0.07809723482 0.15) (0.57191127 0.01936384945 0.15) (0.5611422754 0.01993482448 0.15) (0.5508933375 0.03181688018 0.15) (0.5939614422 0.02949431477 0.15) (0.5826719364 0.01878626834 0.15) (0.8995438149 -0.1292095493 0.15) (-0.06881542917 -0.1215754015 0.15) (-0.0685109333 -0.1096361951 0.15) (-0.05744824354 -0.09832370776 0.15) (-0.06869885597 -0.1341454469 0.15) (-0.05753308496 -0.1473201186 0.15) (-0.04625618825 -0.1483947721 0.15) (-0.02388510212 -0.1384500983 0.15) (-0.03515170596 -0.1492602679 0.15) (-0.0640428152 -0.02246534603 0.15) (-0.06321070866 -0.01065062733 0.15) (-0.0508928097 0.0015545689 0.15) (-0.0549180513 -0.04661476273 0.15) (-0.06484364374 -0.03429579133 0.15) (0.06073794226 0.004484333155 0.15) (0.02101519062 -0.0113554536 0.15) (0.5593523248 -0.01958733901 0.15) (0.7511169244 -0.07525602408 0.15) (0.9341745562 -0.247961495 0.15) (0.1190167039 -0.1640489009 0.15) (0.1406678648 -0.1651692833 0.15) (0.2914823061 -0.1723238973 0.15) (0.3180910366 -0.1791510867 0.15) (0.3130151878 -0.1729080521 0.15) (0.2053950735 -0.168157385 0.15) (0.2269359627 -0.1693014774 0.15) (0.4946229192 -0.01639589478 0.15) (0.5002899797 -0.01089087163 0.15) (0.9556412494 -0.2490249156 0.15) (0.9771936299 -0.2497650922 0.15) (0.936322776 -0.1484914652 0.15) (1.068478425 -0.3791936745 0.15) (1.09108845 -0.3573425712 0.15) (1.053061556 -0.2522605571 0.15) (1.064361574 -0.2413347643 0.15) (-0.03027571743 -0.088149806 0.15) (-0.01290434136 -0.1097233004 0.15) (-0.01847416719 -0.1151241913 0.15) (-0.02907673473 -0.06018609144 0.15) (1.066571725 -0.1955559851 0.15) (1.056366763 -0.1835925553 0.15) (1.003125416 -0.185446567 0.15) (-0.94311 0.962359 0.15) (-0.771676 0.963108 0.15) (-0.598684 0.965251 0.15) (-0.426783 0.965869 0.15) (-0.2537050985 0.9665849168 0.15) (-0.08054260981 0.9654725179 0.15) (0.09330542155 0.9637049527 0.15) (0.2663874508 0.9622672102 0.15) (0.438679239 0.9620185316 0.15) (0.6102532436 0.9628667826 0.15) (0.7816932394 0.9639547061 0.15) (0.9532745056 0.96425605 0.15) (1.12524 0.963225 0.15) (1.29722 0.9625 0.15) (1.46944 0.9625 0.15) (1.64167 0.9625 0.15) (1.81389 0.9625 0.15) (1.98611 0.9625 0.15) (2.15833 0.9625 0.15) (2.33056 0.9625 0.15) (2.50278 0.9625 0.15) (2.675 0.9625 0.15) (2.84722 0.9625 0.15) (3.01944 0.9625 0.15) (3.19167 0.9625 0.15) (3.36389 0.9625 0.15) (3.53611 0.9625 0.15) (3.70833 0.9625 0.15) (3.88056 0.9625 0.15) (4.05278 0.9625 0.15) (4.225 0.9625 0.15) (4.39722 0.9625 0.15) (4.56944 0.9625 0.15) (4.74167 0.9625 0.15) (4.91389 0.9625 0.15) (1.181518707 -0.2699346789 0.15) (1.18593913 -0.1783746234 0.15) (0.2938632141 0.09050085765 0.15) (0.2505251061 0.09264323375 0.15) (0.8339282681 0.09520289441 0.15) (-0.1976890213 -0.1123154868 0.15) (-0.1932655937 -0.01992591118 0.15) (-0.05044035379 -0.2863502967 0.15) (0.5781491266 0.1552871752 0.15) (0.8935791814 -0.4220524099 0.15) (0.3201882341 -0.2476299873 0.15) (-0.02457228498 -0.1848095948 0.15) (0.2077243732 -0.3447836964 0.15) (0.8075877119 -0.4180590171 0.15) (0.9806777464 -0.424287144 0.15) (0.1214310692 -0.3406966393 0.15) (0.03479664912 -0.3364980028 0.15) (-0.94311 -0.962641 0.15) (-0.771746 -0.962725 0.15) (-0.600176 -0.963422 0.15) (-0.426342 -0.966051 0.15) (-0.2542221888 -0.9666858355 0.15) (-0.08258159648 -0.9681767153 0.15) (0.08993587576 -0.9696459254 0.15) (0.262200742 -0.9703997759 0.15) (0.4340977993 -0.9710929692 0.15) (0.6059700907 -0.9720377251 0.15) (0.7778532396 -0.9729850199 0.15) (0.9492018459 -0.975815943 0.15) (1.121783353 -0.9713881872 0.15) (1.295778886 -0.9667419212 0.15) (1.469415332 -0.9625770688 0.15) (1.64167 -0.9625 0.15) (1.81389 -0.9625 0.15) (1.98611 -0.9625 0.15) (2.15833 -0.9625 0.15) (2.33056 -0.9625 0.15) (2.50278 -0.9625 0.15) (2.675 -0.9625 0.15) (2.84722 -0.9625 0.15) (3.01944 -0.9625 0.15) (3.19167 -0.9625 0.15) (3.36389 -0.9625 0.15) (3.53611 -0.9625 0.15) (3.70833 -0.9625 0.15) (3.88056 -0.9625 0.15) (4.05278 -0.9625 0.15) (4.225 -0.9625 0.15) (4.39722 -0.9625 0.15) (4.56944 -0.9625 0.15) (4.74167 -0.9625 0.15) (4.91389 -0.9625 0.15) (0.9470019116 -0.2110405119 0.15) (0.9416928842 -0.2103530962 0.15) (0.9473679679 -0.2081657197 0.15) (0.9420579417 -0.2074782557 0.15) (0.947648931 -0.2059543958 0.15) (0.9423389096 -0.205266832 0.15) (0.9523212258 -0.211701493 0.15) (0.9526912629 -0.2088271933 0.15) (0.9529752177 -0.206616114 0.15) (0.1372457065 -0.1282401942 0.15) (0.1318765319 -0.1275543799 0.15) (0.1375968284 -0.1253636798 0.15) (0.1322505499 -0.1246805727 0.15) (0.1378678465 -0.1231509748 0.15) (0.1325384807 -0.1224700859 0.15) (0.0440983719 -0.03362239381 0.15) (0.04850969996 -0.03205890131 0.15) (0.04507116577 -0.03635218044 0.15) (0.04942965117 -0.03480696099 0.15) (0.04581957668 -0.03845201383 0.15) (0.05013733705 -0.03692084685 0.15) (0.5615146263 -0.05915814765 0.15) (0.5659826278 -0.06026129045 0.15) (0.5608201396 -0.06197173088 0.15) (0.5652881459 -0.0630747738 0.15) (0.5602861514 -0.06413599838 0.15) (0.5647541576 -0.0652390413 0.15) (0.1265368003 -0.1268393514 0.15) (0.1269247394 -0.1239675178 0.15) (0.1272236188 -0.1217583605 0.15) (0.7362902524 -0.1086929812 0.15) (0.7437820679 -0.1110756817 0.15) (0.7354130438 -0.111454914 0.15) (0.742893022 -0.1138339561 0.15) (0.7347378066 -0.1135794629 0.15) (0.7422089104 -0.1159556847 0.15) (0.901639978 -0.1670811918 0.15) (0.9059791464 -0.1687376656 0.15) (0.9006012952 -0.1697868513 0.15) (0.9049296742 -0.1714386995 0.15) (0.8998029992 -0.1718681767 0.15) (0.9041215441 -0.1735163464 0.15) (0.9891790657 -0.2146677311 0.15) (0.9843554916 -0.2151024307 0.15) (0.9894201969 -0.2128044914 0.15) (0.9846687384 -0.2126578924 0.15) (0.9896055316 -0.2113711612 0.15) (0.9849096953 -0.2107775244 0.15) (0.0562014592 -0.02964280839 0.15) (0.05703488076 -0.03241842743 0.15) (0.05767597103 -0.03455342642 0.15) (0.003544827389 -0.05587878247 0.15) (0.0100772549 -0.05026426232 0.15) (0.005647656442 -0.05787280655 0.15) (0.01182628949 -0.05257479368 0.15) (0.00726520517 -0.05940679386 0.15) (0.01317174125 -0.05435224297 0.15) (0.6899210227 -0.1810298448 0.15) (0.6845767456 -0.180471179 0.15) (0.6902273417 -0.1781481638 0.15) (0.6848790837 -0.1775890055 0.15) (0.6904625174 -0.1759313256 0.15) (0.6851112677 -0.1753719227 0.15) (0.6739279471 -0.1793598715 0.15) (0.6688705152 -0.1788320741 0.15) (0.6742272936 -0.1764774535 0.15) (0.6691678736 -0.1759493598 0.15) (0.6744584836 -0.1742602226 0.15) (0.6693960671 -0.1737319843 0.15) (0.6952565134 -0.1816046056 0.15) (0.6955658193 -0.1787232691 0.15) (0.6958039818 -0.1765067753 0.15) (0.7112809357 -0.1833303554 0.15) (0.7059384483 -0.1827553569 0.15) (0.7115902464 -0.180448919 0.15) (0.706248753 -0.1798740686 0.15) (0.7118284089 -0.1782324252 0.15) (0.7064869107 -0.1776576747 0.15) (0.7588393719 -0.1884709355 0.15) (0.7539275084 -0.187914124 0.15) (0.7591656098 -0.1855914176 0.15) (0.7542517535 -0.1850344098 0.15) (0.7594167138 -0.1833764496 0.15) (0.7545018683 -0.1828191939 0.15) (0.794896743 -0.1280550343 0.15) (0.8023613576 -0.1306486161 0.15) (0.793957443 -0.1307966282 0.15) (0.8014112391 -0.1333861836 0.15) (0.7932349049 -0.1329055389 0.15) (0.8006798369 -0.1354920633 0.15) (0.9313335258 -0.2090737508 0.15) (0.9268592673 -0.2084942155 0.15) (0.9316956012 -0.206198466 0.15) (0.9272322865 -0.2056203601 0.15) (0.9319735822 -0.2039866979 0.15) (0.9275192281 -0.2034096252 0.15) (0.9974627301 -0.2129459893 0.15) (0.9972695471 -0.2123852211 0.15) (0.9682862782 -0.2137652731 0.15) (0.9629578299 -0.2131068545 0.15) (0.9686560309 -0.2108968665 0.15) (0.9633298165 -0.2102336501 0.15) (0.9689407675 -0.2086903302 0.15) (0.9636167292 -0.2080235145 0.15) (0.9653541879 -0.1927312086 0.15) (0.9695767711 -0.1945006919 0.15) (0.964228147 -0.1954007135 0.15) (0.9684528435 -0.197167896 0.15) (0.9633621127 -0.19745424 0.15) (0.9675888985 -0.1992196211 0.15) (0.1753436291 -0.0111668792 0.15) (0.1806782207 -0.01088930506 0.15) (0.1755042876 -0.01406029278 0.15) (0.1808198048 -0.01378380008 0.15) (0.1756280945 -0.01628615264 0.15) (0.1809285617 -0.01601033498 0.15) (0.1860654764 -0.01064070424 0.15) (0.1861869922 -0.0135361326 0.15) (0.1862816978 -0.01576339074 0.15) (0.1968525081 -0.01025743892 0.15) (0.202258215 -0.01014508637 0.15) (0.1969309003 -0.0131543895 0.15) (0.2023155593 -0.01304252254 0.15) (0.1969915105 -0.01538280482 0.15) (0.2023591314 -0.01527131667 0.15) (0.3480939409 -0.0179409589 0.15) (0.353431934 -0.01860904897 0.15) (0.3477378344 -0.02081703247 0.15) (0.3530688645 -0.02148418567 0.15) (0.3474648283 -0.02302944126 0.15) (0.3527888907 -0.02369575749 0.15) (0.3320166634 -0.01608651057 0.15) (0.3373693326 -0.01667872009 0.15) (0.3317023729 -0.01896740623 0.15) (0.3370480745 -0.01955877877 0.15) (0.3314612235 -0.02118355559 0.15) (0.3367999525 -0.02177419104 0.15) (0.3587848517 -0.01927906099 0.15) (0.3584058635 -0.02215212764 0.15) (0.3581139519 -0.02436212194 0.15) (0.3693927428 -0.02076072665 0.15) (0.3744452971 -0.0214725029 0.15) (0.368987891 -0.02363034207 0.15) (0.374034486 -0.0243411298 0.15) (0.3686770834 -0.02583772212 0.15) (0.3737187036 -0.0265478692 0.15) (0.1581638632 -0.1306701527 0.15) (0.1532304979 -0.1301024918 0.15) (0.1584851214 -0.1277900941 0.15) (0.1535627095 -0.1272236627 0.15) (0.1587322445 -0.1255746336 0.15) (0.1538187981 -0.1250091357 0.15) (0.1479382308 -0.1294826629 0.15) (0.1482734293 -0.1266041783 0.15) (0.1485324999 -0.1243900955 0.15) (0.8233882524 -0.1380427936 0.15) (0.8277810614 -0.1396250678 0.15) (0.8224135103 -0.1407719639 0.15) (0.8268004178 -0.142352051 0.15) (0.821663405 -0.142871234 0.15) (0.8260463799 -0.1444498298 0.15) (0.880891239 -0.1591098563 0.15) (0.8851977827 -0.1607370228 0.15) (0.8798663422 -0.1618202862 0.15) (0.8841620482 -0.1634438259 0.15) (0.8790768814 -0.1639052418 0.15) (0.8833667101 -0.165526095 0.15) (0.5415918013 -0.05431908407 0.15) (0.5463760198 -0.05546682763 0.15) (0.5409151248 -0.05713703124 0.15) (0.5456983494 -0.05828462669 0.15) (0.5403949853 -0.05930477061 0.15) (0.5451772255 -0.06045201818 0.15) (0.5514838585 -0.05669246767 0.15) (0.5508012565 -0.05950872713 0.15) (0.5502761711 -0.06167522654 0.15) (0.6533577842 -0.08364226393 0.15) (0.6580430079 -0.0849741479 0.15) (0.6525654494 -0.08642959812 0.15) (0.6572467115 -0.08776059002 0.15) (0.6519553417 -0.08857377155 0.15) (0.656634635 -0.0899040677 0.15) (0.110564848 -0.1246281671 0.15) (0.1052854402 -0.1238456691 0.15) (0.110980634 -0.1217601809 0.15) (0.1057181244 -0.1209802006 0.15) (0.1113003925 -0.1195540339 0.15) (0.1060517992 -0.1187761271 0.15) (0.1158896755 -0.1253823224 0.15) (0.1162905512 -0.1225121146 0.15) (0.1165983767 -0.1203042902 0.15) (0.5613283213 -0.1682163412 0.15) (0.5562630253 -0.1677270093 0.15) (0.56160675 -0.1653317119 0.15) (0.5565414492 -0.1648424798 0.15) (0.5618209983 -0.1631128621 0.15) (0.5567556975 -0.1626236301 0.15) (0.6041025861 -0.1723326237 0.15) (0.5987511207 -0.1718191638 0.15) (0.6043790171 -0.1694478979 0.15) (0.5990275517 -0.168934438 0.15) (0.6045922715 -0.1672289 0.15) (0.5992408061 -0.1667154401 0.15) (0.5880472537 -0.1707908974 0.15) (0.5826958896 -0.17027534 0.15) (0.5883246836 -0.1679062198 0.15) (0.5829733195 -0.1673906624 0.15) (0.5885389319 -0.1656873701 0.15) (0.5831875678 -0.1651718127 0.15) (0.566642796 -0.168728716 0.15) (0.5669202211 -0.1658441383 0.15) (0.5671344742 -0.1636251887 0.15) (0.5773445254 -0.1697597826 0.15) (0.5776229493 -0.1668752531 0.15) (0.5778362037 -0.1646562553 0.15) (0.6643983304 -0.1783754818 0.15) (0.6646926972 -0.1754925229 0.15) (0.6649189026 -0.1732748512 0.15) (0.6521569747 -0.1771336249 0.15) (0.6468607244 -0.1765962999 0.15) (0.6524493486 -0.1742504697 0.15) (0.6471540971 -0.173713193 0.15) (0.65267456 -0.1720326499 0.15) (0.6473793037 -0.171495473 0.15) (0.6094530526 -0.1728460353 0.15) (0.6097304825 -0.1699613577 0.15) (0.609942738 -0.1677423116 0.15) (0.6254761769 -0.1744120366 0.15) (0.6201420335 -0.1738715807 0.15) (0.6257685508 -0.1715288814 0.15) (0.620426436 -0.1709876402 0.15) (0.6259927634 -0.1693110133 0.15) (0.6206456689 -0.1687692313 0.15) (0.6415117961 -0.1760510254 0.15) (0.641805164 -0.1731680183 0.15) (0.6420323683 -0.1709503948 0.15) (0.6308180603 -0.1749580723 0.15) (0.631112427 -0.1720751135 0.15) (0.6313396313 -0.1698574899 0.15) (0.7326555075 -0.1856175574 0.15) (0.7273107669 -0.1850477563 0.15) (0.7329618265 -0.1827358764 0.15) (0.7276180847 -0.1821661235 0.15) (0.7331979962 -0.1805191863 0.15) (0.7278552484 -0.1799495815 0.15) (0.7166245473 -0.1839028051 0.15) (0.7169328592 -0.1810213205 0.15) (0.7171710217 -0.1788048267 0.15) (0.7531181359 -0.1141197519 0.15) (0.7575220179 -0.1155556198 0.15) (0.7522182449 -0.1168745516 0.15) (0.7566172007 -0.11830877 0.15) (0.7515262512 -0.1189936471 0.15) (0.7559212647 -0.1204265738 0.15) (0.7379993795 -0.1861846134 0.15) (0.7383056985 -0.1833029324 0.15) (0.7385408742 -0.1810860942 0.15) (0.7486571874 -0.1873166795 0.15) (0.7489734707 -0.1844359802 0.15) (0.7492166081 -0.182220127 0.15) (0.8069222556 -0.1322330986 0.15) (0.8059662213 -0.1349687787 0.15) (0.8052308863 -0.137073167 0.15) (0.8159592765 -0.1354160919 0.15) (0.8149933984 -0.1381482932 0.15) (0.8142501837 -0.1402499984 0.15) (0.9736060071 -0.2144176641 0.15) (0.9739784868 -0.2115757198 0.15) (0.974265241 -0.2093896046 0.15) (0.1580945495 -0.01236988035 0.15) (0.1656635936 -0.01178429937 0.15) (0.1583204941 -0.01525893713 0.15) (0.1658734507 -0.01467478203 0.15) (0.1584945225 -0.01748141488 0.15) (0.1660344219 -0.01689813114 0.15) (0.1371831205 -0.01430051938 0.15) (0.1424653926 -0.01373799074 0.15) (0.1374985739 -0.01718118277 0.15) (0.1427627271 -0.01662068274 0.15) (0.1377419995 -0.01939709941 0.15) (0.1429910592 -0.01883817336 0.15) (0.1531518088 -0.01276368584 0.15) (0.1533867959 -0.01565207791 0.15) (0.1535678644 -0.01787389439 0.15) (0.132107545 -0.01487432863 0.15) (0.1324411173 -0.0177529634 0.15) (0.1326986326 -0.01996735772 0.15) (0.2184801318 -0.009957533959 0.15) (0.2238886117 -0.009953641319 0.15) (0.2184873896 -0.01285555549 0.15) (0.2238768531 -0.01285154569 0.15) (0.2184928998 -0.0150847146 0.15) (0.2238693398 -0.01508087697 0.15) (0.2076589718 -0.01005231791 0.15) (0.2077012853 -0.01295002956 0.15) (0.2077338364 -0.01517899243 0.15) (0.2293136584 -0.01000060674 0.15) (0.2292868834 -0.01289848696 0.15) (0.2292653672 -0.01512754266 0.15) (0.3104691049 -0.01396075449 0.15) (0.315881301 -0.01446052702 0.15) (0.3102175917 -0.01684778458 0.15) (0.3156118425 -0.01734598991 0.15) (0.3100242707 -0.01906864585 0.15) (0.3154045715 -0.01956547687 0.15) (0.3266328758 -0.01549600242 0.15) (0.3263355174 -0.01837871671 0.15) (0.3261063203 -0.02059614393 0.15) (0.305078861 -0.0135247147 0.15) (0.304844299 -0.01641316388 0.15) (0.3046629448 -0.01863500336 0.15) (0.3789362339 -0.02212132315 0.15) (0.3785164719 -0.02498871698 0.15) (0.3781937362 -0.02719431975 0.15) (0.391279494 -0.02396899894 0.15) (0.3965843031 -0.02478526117 0.15) (0.3908408457 -0.02683357874 0.15) (0.3961208141 -0.02764593854 0.15) (0.3905031949 -0.0290370598 0.15) (0.3957642819 -0.0298465057 0.15) (0.4176766361 -0.02841851883 0.15) (0.4226934411 -0.02933160535 0.15) (0.4171664766 -0.03127123636 0.15) (0.4221753391 -0.03218293826 0.15) (0.4167742033 -0.03346557273 0.15) (0.4217771065 -0.03437628611 0.15) (0.4018868133 -0.02569061619 0.15) (0.4014034633 -0.0285479319 0.15) (0.4010310413 -0.0307458297 0.15) (0.4124441596 -0.02749341805 0.15) (0.411946903 -0.0303484605 0.15) (0.4115635565 -0.03254452937 0.15) (0.6458598601 -0.08151051318 0.15) (0.6450685001 -0.08429839501 0.15) (0.6444603755 -0.08644296454 0.15) (0.7694054091 -0.1195046641 0.15) (0.773754373 -0.1209582443 0.15) (0.7684877907 -0.1222533819 0.15) (0.7728357693 -0.1237066341 0.15) (0.7677820067 -0.1243677969 0.15) (0.7721279967 -0.125820763 0.15) (0.8613953764 -0.2003804257 0.15) (0.8561011357 -0.1997600009 0.15) (0.8617345557 -0.1975024336 0.15) (0.856439321 -0.1968818608 0.15) (0.861996618 -0.1952885954 0.15) (0.8566993904 -0.1946678262 0.15) (0.8510449659 -0.1991645857 0.15) (0.8513841501 -0.1962864938 0.15) (0.8516452135 -0.1940726073 0.15) (0.8667095311 -0.2010031134 0.15) (0.8670596639 -0.198126351 0.15) (0.8673286891 -0.1959134496 0.15) (0.8720344042 -0.2016733733 0.15) (0.8723954856 -0.1987979404 0.15) (0.8726724726 -0.1965860241 0.15) (0.9363950809 -0.2096820407 0.15) (0.9367531755 -0.2068062634 0.15) (0.9370291685 -0.204594199 0.15) (0.9576386592 -0.2124014287 0.15) (0.9580146605 -0.2095280176 0.15) (0.9583045793 -0.2073178269 0.15) (0.1426051271 -0.1288584597 0.15) (0.1429423136 -0.1259802713 0.15) (0.1432023831 -0.1237662367 0.15) (0.8691292237 -0.1546997286 0.15) (0.8765316164 -0.1574623064 0.15) (0.8681180791 -0.157415628 0.15) (0.8755126065 -0.1601752231 0.15) (0.8673404259 -0.159504858 0.15) (0.8747290616 -0.1622620663 0.15) (0.03971851336 -0.03519971994 0.15) (0.04074165761 -0.0379110131 0.15) (0.04152869599 -0.03999669274 0.15) (0.5565954617 -0.05794381915 0.15) (0.5559049365 -0.06075829446 0.15) (0.5553739207 -0.06292320605 0.15) (0.0882339607 -0.1210822846 0.15) (0.08332400428 -0.1202080958 0.15) (0.08873012336 -0.1182270892 0.15) (0.08384131197 -0.1173566245 0.15) (0.08911188138 -0.1160307434 0.15) (0.08423914505 -0.1151632573 0.15) (0.07808012809 -0.1192370919 0.15) (0.07862194308 -0.1163902077 0.15) (0.07903873338 -0.1142002587 0.15) (0.09572795206 -0.1223457355 0.15) (0.09619670597 -0.119485913 0.15) (0.09655730933 -0.117286043 0.15) (0.1002381387 -0.1230665678 0.15) (0.1006897043 -0.1202040133 0.15) (0.1010363012 -0.1180018652 0.15) (0.1212150279 -0.1261048663 0.15) (0.1216089359 -0.1232338215 0.15) (0.1219107925 -0.1210252083 0.15) (0.7483929391 -0.1125789773 0.15) (0.7474960041 -0.1153347606 0.15) (0.7468059772 -0.1174545918 0.15) (0.9039971408 -0.2055812514 0.15) (0.8986874726 -0.2049278444 0.15) (0.9043542413 -0.202705326 0.15) (0.8990366066 -0.2020510337 0.15) (0.9046282463 -0.2004929654 0.15) (0.8993046378 -0.1998379843 0.15) (0.8933638648 -0.2042935873 0.15) (0.8937090179 -0.2014162841 0.15) (0.8939740622 -0.1992028903 0.15) (0.897051098 -0.1653297656 0.15) (0.8960104513 -0.1680346296 0.15) (0.8952111805 -0.1701154073 0.15) (0.9093180138 -0.2062514183 0.15) (0.9096761035 -0.2033757409 0.15) (0.9099521013 -0.2011635766 0.15) (0.9145965829 -0.2069061273 0.15) (0.9149546727 -0.2040304498 0.15) (0.9152306656 -0.2018183854 0.15) (0.9133357327 -0.1716610216 0.15) (0.9176502359 -0.1733721697 0.15) (0.9122695454 -0.1743557421 0.15) (0.9165850378 -0.1760671382 0.15) (0.9114496319 -0.1764286152 0.15) (0.9157651146 -0.178140211 0.15) (0.978989648 -0.2149489963 0.15) (0.9793462171 -0.2122085028 0.15) (0.9796201962 -0.2101003623 0.15) (0.4698920219 -0.03848349898 0.15) (0.4773901642 -0.04000935535 0.15) (0.4693134202 -0.04132300066 0.15) (0.4768016416 -0.04284697643 0.15) (0.4688675713 -0.04350724173 0.15) (0.4763488587 -0.04502968134 0.15) (0.5734880034 -0.06211427621 0.15) (0.5727905539 -0.06492701559 0.15) (0.5722545873 -0.06709078712 0.15) (0.5782815117 -0.06329770927 0.15) (0.5775711979 -0.06610732466 0.15) (0.5770253394 -0.06826861628 0.15) (0.01236378729 -0.09847691559 0.15) (0.008303150418 -0.09590661015 0.15) (0.01385251564 -0.09599061365 0.15) (0.01002328466 -0.09357424633 0.15) (0.01499757901 -0.09407800666 0.15) (0.01134643475 -0.09178026519 0.15) (0.6792344179 -0.1799136085 0.15) (0.6795347632 -0.1770312386 0.15) (0.6797669472 -0.1748141558 0.15) (0.700595985 -0.182179859 0.15) (0.7009062897 -0.1792985707 0.15) (0.7011454463 -0.177082225 0.15) (0.7649697478 -0.1180219793 0.15) (0.7640560742 -0.1207719387 0.15) (0.7633522488 -0.1228872592 0.15) (0.7661907369 -0.1893043082 0.15) (0.7665159807 -0.1864246422 0.15) (0.7667670896 -0.1842095744 0.15) (0.8465652274 -0.1986363458 0.15) (0.8469044068 -0.1957583537 0.15) (0.8471654702 -0.1935444673 0.15) (0.839203569 -0.1977673352 0.15) (0.8395427483 -0.1948893431 0.15) (0.8398048058 -0.1926756048 0.15) (0.8826924064 -0.2030087853 0.15) (0.8773588819 -0.2023518237 0.15) (0.8830445321 -0.2001322192 0.15) (0.8777189693 -0.1994762427 0.15) (0.8833155501 -0.1979195142 0.15) (0.8779949623 -0.1972641783 0.15) (0.953745439 -0.187863039 0.15) (0.9610921902 -0.1909071612 0.15) (0.9526468398 -0.1905447814 0.15) (0.9599700385 -0.1935790564 0.15) (0.9518023749 -0.192607759 0.15) (0.9591069235 -0.1956343257 0.15) (0.1702484737 -0.01146191994 0.15) (0.1704342333 -0.01435384223 0.15) (0.170578123 -0.01657846911 0.15) (0.1914505959 -0.01043635188 0.15) (0.1915530518 -0.01333256203 0.15) (0.1916307145 -0.01556029888 0.15) (0.3427389291 -0.01727284811 0.15) (0.3423997449 -0.02015094007 0.15) (0.3421386815 -0.02236482649 0.15) (0.3641074927 -0.02001629118 0.15) (0.3637106027 -0.02288689168 0.15) (0.3634047652 -0.02509501226 0.15) (0.8320971087 -0.1411798084 0.15) (0.8311154856 -0.1439063438 0.15) (0.8303594693 -0.1460036266 0.15) (0.01707437978 -0.04579408249 0.15) (0.01857094855 -0.04827573833 0.15) (0.01972213374 -0.05018467252 0.15) (0.02094164894 -0.0435862043 0.15) (0.02818536334 -0.03996370188 0.15) (0.02232331409 -0.04613359564 0.15) (0.02941894211 -0.04258603928 0.15) (0.02338615649 -0.04809312856 0.15) (0.03036787561 -0.04460314617 0.15) (0.03226595124 -0.03811933341 0.15) (0.03340528514 -0.04078387516 0.15) (0.03428176017 -0.04283362588 0.15) (0.6628502596 -0.08634986741 0.15) (0.6620450701 -0.08913387784 0.15) (0.6614260789 -0.09127541983 0.15) (0.6672928521 -0.0876475112 0.15) (0.6747879937 -0.08983689482 0.15) (0.6664817419 -0.09042973405 0.15) (0.6739749149 -0.09261842192 0.15) (0.6658578144 -0.09256983631 0.15) (0.673350003 -0.09475817631 0.15) (0.07278569714 -0.1182120873 0.15) (0.06757430559 -0.1171073944 0.15) (0.07336400891 -0.1153723714 0.15) (0.06819582426 -0.1142768727 0.15) (0.07380886375 -0.1131879822 0.15) (0.06867397961 -0.1120994976 0.15) (0.05805601319 -0.1149179488 0.15) (0.0504654604 -0.1130105923 0.15) (0.0587347631 -0.1121006023 0.15) (0.0512012838 -0.1102076147 0.15) (0.05925688101 -0.1099333589 0.15) (0.05176742076 -0.1080514069 0.15) (0.06258041743 -0.1159560358 0.15) (0.0632312509 -0.1131321355 0.15) (0.06373188695 -0.1109598503 0.15) (0.5517966316 -0.1672956256 0.15) (0.5520750555 -0.1644110961 0.15) (0.5522893087 -0.1621921465 0.15) (0.5933986564 -0.1713056557 0.15) (0.5936760863 -0.1684209782 0.15) (0.5938893406 -0.1662019803 0.15) (0.5719941601 -0.1692442734 0.15) (0.5722715852 -0.1663596957 0.15) (0.5724858384 -0.1641407461 0.15) (0.6570766292 -0.177632745 0.15) (0.6573690031 -0.1747495898 0.15) (0.6575942146 -0.1725317699 0.15) (0.6148025252 -0.1733592988 0.15) (0.6150809491 -0.1704747693 0.15) (0.6152942034 -0.1682557715 0.15) (0.6361639294 -0.1755045006 0.15) (0.6364592949 -0.17262159 0.15) (0.6366855004 -0.1704039182 0.15) (0.7219671601 -0.1844752067 0.15) (0.7222754719 -0.181593722 0.15) (0.7225126356 -0.17937718 0.15) (0.7433392658 -0.1867512768 0.15) (0.7436475825 -0.1838696923 0.15) (0.7438837474 -0.181653102 0.15) (0.811592588 -0.1338734233 0.15) (0.8106306475 -0.1366070161 0.15) (0.8098903811 -0.1387098649 0.15) (0.8880305001 -0.2036540537 0.15) (0.888377646 -0.2007769468 0.15) (0.8886446832 -0.1985637493 0.15) (0.892597047 -0.1636058734 0.15) (0.8915524677 -0.166309246 0.15) (0.8907492546 -0.1683887321 0.15) (0.9194902178 -0.2075087129 0.15) (0.9198582622 -0.2046342169 0.15) (0.9201412229 -0.2024229895 0.15) (0.9219202827 -0.1750502354 0.15) (0.9208531207 -0.1777444083 0.15) (0.9200322227 -0.1798169335 0.15) (0.1478179841 -0.01319127148 0.15) (0.1480821255 -0.01607716655 0.15) (0.1482853083 -0.0182971473 0.15) (0.1275181839 -0.01541394471 0.15) (0.1278759164 -0.01828984137 0.15) (0.1281505615 -0.02050195908 0.15) (0.2130596183 -0.009982570902 0.15) (0.2130849034 -0.01288046161 0.15) (0.2131054347 -0.01510954499 0.15) (0.2346621087 -0.01005809072 0.15) (0.2346213259 -0.01295579523 0.15) (0.234589802 -0.01518476823 0.15) (0.2396397653 -0.01014382685 0.15) (0.2395869771 -0.01304135223 0.15) (0.2395454504 -0.01527014266 0.15) (0.3212516093 -0.01497769984 0.15) (0.3209711925 -0.01786203299 0.15) (0.3207559453 -0.02008083451 0.15) (0.2997524365 -0.01309395862 0.15) (0.2995278485 -0.01598318967 0.15) (0.2993544753 -0.0182056147 0.15) (0.2947877705 -0.01271841176 0.15) (0.2945741552 -0.01560847292 0.15) (0.2944097571 -0.01783163159 0.15) (0.3863712152 -0.02323425333 0.15) (0.3859425119 -0.02610021431 0.15) (0.3856118143 -0.028304832 0.15) (0.4271902023 -0.03015010387 0.15) (0.4266691231 -0.03300089258 0.15) (0.4262689073 -0.03519384434 0.15) (0.4071635032 -0.02659162103 0.15) (0.406674194 -0.02944794821 0.15) (0.4062978007 -0.0316451537 0.15) (0.5882399234 -0.06589345135 0.15) (0.5926983489 -0.06707051837 0.15) (0.5875019267 -0.06869582337 0.15) (0.5919593678 -0.06987254252 0.15) (0.5869343107 -0.07085155932 0.15) (0.5913897686 -0.07202788238 0.15) (0.583340598 -0.06459998749 0.15) (0.5826114943 -0.06740479119 0.15) (0.5820507979 -0.06956236296 0.15) (0.6886947694 -0.09395120465 0.15) (0.6961853293 -0.0962147536 0.15) (0.6878579885 -0.09672598091 0.15) (0.6953465897 -0.09898862436 0.15) (0.6872153121 -0.09886042247 0.15) (0.6947019432 -0.1011224001 0.15) (0.7008636118 -0.09762819774 0.15) (0.7000199301 -0.1004007486 0.15) (0.6993713287 -0.1025334925 0.15) (0.001345689434 -0.08991373001 0.15) (-0.003906879646 -0.08146001157 0.15) (0.003562709776 -0.08804736957 0.15) (-0.001186661165 -0.08046069544 0.15) (0.005268099123 -0.08661183808 0.15) (0.0009058085108 -0.07969198582 0.15) (-0.005181018405 -0.0751701705 0.15) (-0.002286596166 -0.07502677594 0.15) (-6.012064654e-05 -0.07491647223 0.15) (-0.004392396577 -0.06858480966 0.15) (-0.00158988975 -0.06932250253 0.15) (0.0005658833724 -0.06988995005 0.15) (0.1750861142 -0.1324418518 0.15) (0.1700179609 -0.1319287544 0.15) (0.1753794821 -0.1295588447 0.15) (0.1703143205 -0.1290459919 0.15) (0.1756056875 -0.1273411729 0.15) (0.1705425188 -0.1268285165 0.15) (0.1804000591 -0.1329859379 0.15) (0.180692433 -0.1301027827 0.15) (0.1809186384 -0.127885111 0.15) (0.2178983692 -0.1365799916 0.15) (0.2125353192 -0.136099111 0.15) (0.2181578586 -0.133693647 0.15) (0.212801786 -0.1332134036 0.15) (0.2183571582 -0.1314733747 0.15) (0.2130070641 -0.1309937203 0.15) (0.7318794493 -0.1072967858 0.15) (0.7310051985 -0.1100596663 0.15) (0.7303319297 -0.1121849169 0.15) (0.8604571386 -0.1514853971 0.15) (0.8648242635 -0.1531019726 0.15) (0.8594528894 -0.1542036318 0.15) (0.8638170613 -0.1558191637 0.15) (0.8586801581 -0.1562946011 0.15) (0.8630413624 -0.1579093891 0.15) (0.5194827137 -0.04914240007 0.15) (0.5246491196 -0.05029547997 0.15) (0.51884961 -0.05197025997 0.15) (0.5240051202 -0.05312091163 0.15) (0.5183631415 -0.05414563193 0.15) (0.5235087406 -0.05529420322 0.15) (0.5295976007 -0.051441743 0.15) (0.5289347922 -0.05426276249 0.15) (0.5284245494 -0.05643288188 0.15) (0.26077409 -0.1403574724 0.15) (0.2554170481 -0.1398973056 0.15) (0.2610226115 -0.1374701978 0.15) (0.2556655745 -0.1370099311 0.15) (0.2612139348 -0.1352492401 0.15) (0.255855899 -0.1347889252 0.15) (0.2232615783 -0.1370575761 0.15) (0.2235170772 -0.1341709386 0.15) (0.223713385 -0.1319504218 0.15) (0.3467101094 -0.1477804813 0.15) (0.3413563197 -0.1473151654 0.15) (0.3469705928 -0.1448942847 0.15) (0.3416088317 -0.1444281835 0.15) (0.3471708912 -0.1426740607 0.15) (0.3418021479 -0.1422074221 0.15) (0.3092505186 -0.1445457127 0.15) (0.3041835789 -0.1441111653 0.15) (0.3094990401 -0.1416584381 0.15) (0.3044311064 -0.1412237425 0.15) (0.3096893694 -0.1394373323 0.15) (0.3046214357 -0.1390026367 0.15) (0.2661300076 -0.1408201879 0.15) (0.2663795231 -0.1379330614 0.15) (0.2665718453 -0.1357121519 0.15) (0.2997278313 -0.143728852 0.15) (0.2999733611 -0.1408413328 0.15) (0.3001616927 -0.1386201306 0.15) (0.352049212 -0.1482804293 0.15) (0.3523176717 -0.1453949181 0.15) (0.3525239486 -0.1431752831 0.15) (0.3895039868 -0.1518223229 0.15) (0.3841534045 -0.1513113085 0.15) (0.3897794238 -0.148937449 0.15) (0.3844278427 -0.1484263864 0.15) (0.3899906805 -0.1467183547 0.15) (0.3846391042 -0.1462071922 0.15) (0.3948545643 -0.1523334372 0.15) (0.3951310001 -0.1494486115 0.15) (0.3953422568 -0.1472295172 0.15) (0.9852097832 -0.2017623072 0.15) (0.99157322 -0.2060127146 0.15) (0.9842129879 -0.2041187805 0.15) (0.9908949146 -0.207620175 0.15) (0.9834466851 -0.205931436 0.15) (0.990372677 -0.2088567298 0.15) (0.08715253285 -0.02201227762 0.15) (0.09489258838 -0.02045801633 0.15) (0.0877398684 -0.02485010207 0.15) (0.09543464077 -0.02330476749 0.15) (0.08819162247 -0.02703312663 0.15) (0.09585172486 -0.02549462811 0.15) (0.4822386325 -0.04102904823 0.15) (0.487396578 -0.04212925864 0.15) (0.4816402035 -0.04386448906 0.15) (0.4867931934 -0.04496365929 0.15) (0.4811794878 -0.04604560958 0.15) (0.4863285161 -0.04714388773 0.15) (0.02409918013 -0.1043467577 0.15) (0.01972926372 -0.1023608178 0.15) (0.02525301557 -0.1016884061 0.15) (0.02100003592 -0.09975636794 0.15) (0.02614065776 -0.0996435317 0.15) (0.02197758706 -0.09775287732 0.15) (0.710604157 -0.1006306569 0.15) (0.7150199931 -0.1020055503 0.15) (0.7097447066 -0.1033980313 0.15) (0.7141575704 -0.1047722807 0.15) (0.7090822845 -0.105526724 0.15) (0.7134941687 -0.1069005256 0.15) (0.7812146954 -0.1234540954 0.15) (0.7802951021 -0.1262022472 0.15) (0.7795873391 -0.1283161763 0.15) (0.7757280189 -0.1903787724 0.15) (0.7706686218 -0.1898087311 0.15) (0.7760522687 -0.1874989583 0.15) (0.7709938656 -0.1869290651 0.15) (0.7763023835 -0.1852837424 0.15) (0.7712429768 -0.1847139008 0.15) (0.7857950667 -0.1249877578 0.15) (0.7848744938 -0.1277354619 0.15) (0.7841657466 -0.1298490431 0.15) (0.7810303846 -0.1909760621 0.15) (0.7813546345 -0.188096248 0.15) (0.7816027516 -0.1858809356 0.15) (0.7970317295 -0.1927650726 0.15) (0.791705218 -0.1921702214 0.15) (0.797361953 -0.1898859473 0.15) (0.7920284738 -0.1892902592 0.15) (0.7976150499 -0.1876711757 0.15) (0.792276591 -0.1870749468 0.15) (0.9451783882 -0.1844016851 0.15) (0.9494776201 -0.186138827 0.15) (0.9440925521 -0.1870886491 0.15) (0.9483898249 -0.1888248954 0.15) (0.9432579116 -0.189155505 0.15) (0.9475522168 -0.1908910074 0.15) (0.9949221805 -0.2095781588 0.15) (0.99446017 -0.2105833488 0.15) (0.2618505737 -0.01080806636 0.15) (0.2672543315 -0.01102640455 0.15) (0.2617367987 -0.01370384875 0.15) (0.2671255692 -0.01392156349 0.15) (0.2616492821 -0.01593131989 0.15) (0.2670260617 -0.01614855583 0.15) (0.2469465236 -0.01028364165 0.15) (0.2468687357 -0.01318056076 0.15) (0.2468092057 -0.0154089826 0.15) (0.2514214785 -0.01043401132 0.15) (0.2513266911 -0.01333051017 0.15) (0.2512541666 -0.01555850488 0.15) (0.2726124817 -0.01127698092 0.15) (0.2724617497 -0.01417097907 0.15) (0.272345262 -0.01639715163 0.15) (0.287517258 -0.01220110566 0.15) (0.2873166131 -0.01509209337 0.15) (0.2871621937 -0.01731593404 0.15) (0.2830778994 -0.01189407028 0.15) (0.2828912237 -0.01478603276 0.15) (0.2827477819 -0.01701060365 0.15) (0.626804252 -0.07623165756 0.15) (0.6315335678 -0.07752121854 0.15) (0.6260425436 -0.07902747851 0.15) (0.6307698714 -0.08031674328 0.15) (0.6254561475 -0.08117820301 0.15) (0.6301824909 -0.0824671199 0.15) (0.02858846207 -0.1062015011 0.15) (0.02963283685 -0.1034982188 0.15) (0.03043614977 -0.1014187375 0.15) (0.04569278405 -0.1117067237 0.15) (0.04078528428 -0.110323361 0.15) (0.04647001988 -0.1089148561 0.15) (0.04162146106 -0.1075486557 0.15) (0.04706787229 -0.1067673878 0.15) (0.04226463926 -0.1054141883 0.15) (0.1964621242 -0.1345748437 0.15) (0.1911086948 -0.1340605882 0.15) (0.1967365624 -0.1316899216 0.15) (0.1913901104 -0.1311763033 0.15) (0.1969488179 -0.1294708755 0.15) (0.1916063516 -0.1289576499 0.15) (0.2018181057 -0.135077709 0.15) (0.2020905511 -0.1321925906 0.15) (0.2023008186 -0.1299732483 0.15) (0.7225072575 -0.1043373597 0.15) (0.7216408997 -0.1071026487 0.15) (0.7209735482 -0.1092297578 0.15) (0.5020320681 -0.04525095429 0.15) (0.5095371873 -0.04692261674 0.15) (0.501414801 -0.04808258226 0.15) (0.5089080403 -0.0497514686 0.15) (0.5009412113 -0.05026077856 0.15) (0.5084245442 -0.05192748465 0.15) (0.2446833253 -0.1389690158 0.15) (0.2393225865 -0.1384817392 0.15) (0.244939823 -0.1360824266 0.15) (0.2395830747 -0.1355954428 0.15) (0.2451381286 -0.1338620062 0.15) (0.2397823694 -0.1333752704 0.15) (0.2339716962 -0.1379978415 0.15) (0.2342291879 -0.1351114004 0.15) (0.2344274934 -0.13289098 0.15) (0.3306455074 -0.1463892832 0.15) (0.3252865739 -0.1459268225 0.15) (0.3308950277 -0.1435020567 0.15) (0.3255360943 -0.1430395961 0.15) (0.331086351 -0.141281099 0.15) (0.3257274176 -0.1408186384 0.15) (0.3199296334 -0.1454645582 0.15) (0.3201781549 -0.1425772836 0.15) (0.3203694782 -0.1403563258 0.15) (0.2821892882 -0.1422386612 0.15) (0.2768281443 -0.1417597748 0.15) (0.2824427942 -0.1393518274 0.15) (0.277084642 -0.1388731856 0.15) (0.2826381081 -0.1371311625 0.15) (0.2772819487 -0.136652717 0.15) (0.2875151491 -0.1427018278 0.15) (0.2877626717 -0.1398145049 0.15) (0.287953001 -0.1375933991 0.15) (0.3681001717 -0.1497883053 0.15) (0.3627493482 -0.149282285 0.15) (0.3683736159 -0.146903235 0.15) (0.3630207996 -0.1463970185 0.15) (0.3685828797 -0.1446839444 0.15) (0.3632300634 -0.1441777278 0.15) (0.3734519457 -0.1502953726 0.15) (0.3737253851 -0.1474104022 0.15) (0.3739356477 -0.1451911598 0.15) (0.4162025464 -0.154383381 0.15) (0.4109049651 -0.1538736239 0.15) (0.4164809703 -0.1514988515 0.15) (0.411182395 -0.1509889463 0.15) (0.4166942247 -0.1492798536 0.15) (0.4113956494 -0.1487699484 0.15) (0.4055545661 -0.1533588139 0.15) (0.4058309971 -0.1504740881 0.15) (0.4060442515 -0.1482550902 0.15) (0.8236751832 -0.1959283739 0.15) (0.8183425328 -0.1952947816 0.15) (0.8240163554 -0.1930505782 0.15) (0.818684699 -0.192417134 0.15) (0.8242794069 -0.190836988 0.15) (0.8189487541 -0.1902034921 0.15) (0.8342898712 -0.1971863071 0.15) (0.8346300494 -0.1943083632 0.15) (0.8348921069 -0.1920946249 0.15) (0.8130099209 -0.1946603903 0.15) (0.813353086 -0.1917827909 0.15) (0.8136171363 -0.1895692489 0.15) (0.8023569486 -0.1933866926 0.15) (0.8026961327 -0.1905086007 0.15) (0.8029561974 -0.188294666 0.15) (0.9292794266 -0.1779828255 0.15) (0.933585689 -0.1797195058 0.15) (0.9282014558 -0.1806727722 0.15) (0.9325018168 -0.1824072654 0.15) (0.9273727071 -0.182742015 0.15) (0.9316681462 -0.1844747688 0.15) (0.0652121387 -0.02709636581 0.15) (0.07293964107 -0.02515304654 0.15) (0.0659570536 -0.02989694585 0.15) (0.07361704971 -0.02797079121 0.15) (0.06653013198 -0.03205128763 0.15) (0.07413814032 -0.03013814113 0.15) (0.07748983202 -0.0241079535 0.15) (0.07813038631 -0.02693423088 0.15) (0.0786231189 -0.02910832114 0.15) (0.4975311287 -0.04429088959 0.15) (0.4969237776 -0.04712449804 0.15) (0.4964571172 -0.04930433039 0.15) (0.6049486384 -0.07030472394 0.15) (0.6099740018 -0.07164191657 0.15) (0.6042047114 -0.07310550814 0.15) (0.6092201828 -0.07444022086 0.15) (0.6036321495 -0.07526000414 0.15) (0.6086407062 -0.07659278117 0.15) (0.6365494456 -0.07888898932 0.15) (0.6357778452 -0.08168233038 0.15) (0.6351835404 -0.08383097107 0.15) (0.6148545001 -0.07297281609 0.15) (0.6140937712 -0.0757690848 0.15) (0.6135083643 -0.07792005728 0.15) (0.6842572566 -0.09261055578 0.15) (0.683430358 -0.09538801171 0.15) (0.6827935902 -0.09752449058 0.15) (0.7058016907 -0.09913507869 0.15) (0.704949143 -0.1019046386 0.15) (0.7042926445 -0.1040350589 0.15) (0.1655420267 -0.1314668751 0.15) (0.1658463577 -0.1285848979 0.15) (0.1660815334 -0.1263680597 0.15) (0.1857471102 -0.1335286189 0.15) (0.1860354984 -0.130645071 0.15) (0.186257723 -0.1284269067 0.15) (0.2071717713 -0.1355870702 0.15) (0.2074452155 -0.132702 0.15) (0.2076554782 -0.1304827576 0.15) (0.727134358 -0.1057948169 0.15) (0.7262620689 -0.108558538 0.15) (0.7255917689 -0.1106845076 0.15) (0.8530513304 -0.1487520885 0.15) (0.8520529779 -0.1514726103 0.15) (0.8512841647 -0.1535653707 0.15) (0.5143480054 -0.04799635691 0.15) (0.5137168752 -0.05082481267 0.15) (0.5132313911 -0.0530005325 0.15) (0.5340878797 -0.05251892989 0.15) (0.5334141756 -0.05533752114 0.15) (0.5328960193 -0.05750565661 0.15) (0.2500539506 -0.139438148 0.15) (0.2503044698 -0.1365509698 0.15) (0.2504977859 -0.1343302085 0.15) (0.2286201114 -0.137528327 0.15) (0.2288746163 -0.1346415415 0.15) (0.2290699302 -0.1324208766 0.15) (0.3360024094 -0.1468523465 0.15) (0.3362519297 -0.1439651201 0.15) (0.3364442519 -0.1417442106 0.15) (0.3145716891 -0.1450023455 0.15) (0.3148202107 -0.1421150709 0.15) (0.315011534 -0.1398941132 0.15) (0.2714819347 -0.1412826107 0.15) (0.2717354456 -0.138395677 0.15) (0.2719297557 -0.1361750637 0.15) (0.2924468981 -0.1431163326 0.15) (0.292690435 -0.1402286171 0.15) (0.2928777726 -0.1380072667 0.15) (0.3573982837 -0.148781259 0.15) (0.3576687362 -0.1458959442 0.15) (0.357877006 -0.1436765055 0.15) (0.3788027209 -0.1508023916 0.15) (0.3790771591 -0.1479174695 0.15) (0.3792874217 -0.1456982271 0.15) (0.4284347998 -0.1555649287 0.15) (0.421122427 -0.1548570823 0.15) (0.4287142226 -0.1526804475 0.15) (0.4214008557 -0.151972453 0.15) (0.4289284758 -0.1504614979 0.15) (0.4216151041 -0.1497536032 0.15) (0.4329021441 -0.1559973595 0.15) (0.4331815669 -0.1531128783 0.15) (0.43339582 -0.1508939287 0.15) (0.4002051466 -0.1528444516 0.15) (0.4004815825 -0.149959626 0.15) (0.4006938379 -0.1477405799 0.15) (0.5182134526 -0.1640628907 0.15) (0.5128669813 -0.1635496719 0.15) (0.5184908825 -0.1611782131 0.15) (0.5131404207 -0.1606647016 0.15) (0.518703138 -0.158959167 0.15) (0.5133516822 -0.1584455074 0.15) (0.5075210557 -0.1630458905 0.15) (0.5077915082 -0.1601605757 0.15) (0.5080007768 -0.1579411852 0.15) (0.4807501181 -0.1605323975 0.15) (0.4753975911 -0.1600201879 0.15) (0.4810255551 -0.1576475236 0.15) (0.475674027 -0.1571353622 0.15) (0.4812378106 -0.1554284775 0.15) (0.4758862825 -0.1549163161 0.15) (0.4861056319 -0.1610449515 0.15) (0.4863790761 -0.1581598813 0.15) (0.4865893387 -0.1559406389 0.15) (0.4379703836 -0.1564879348 0.15) (0.4382478135 -0.1536032573 0.15) (0.4384610678 -0.1513842594 0.15) (0.4432830438 -0.1569964176 0.15) (0.443556488 -0.1541113474 0.15) (0.4437657519 -0.1518920567 0.15) (0.4700470619 -0.1595080748 0.15) (0.4703224941 -0.1566233007 0.15) (0.4705347544 -0.1544041548 0.15) (0.4646995147 -0.1589964059 0.15) (0.4649729589 -0.1561113357 0.15) (0.4651832215 -0.1538920933 0.15) (0.5235649083 -0.1645765503 0.15) (0.5238413394 -0.1616918245 0.15) (0.5240545937 -0.1594728266 0.15) (0.5289153653 -0.1650901617 0.15) (0.5291927952 -0.1622054841 0.15) (0.5294060495 -0.1599864862 0.15) (0.9810898405 -0.1995672784 0.15) (0.9800005556 -0.2021390421 0.15) (0.9791621825 -0.2041173149 0.15) (0.06067333931 -0.02836586926 0.15) (0.06146157483 -0.03115462458 0.15) (0.06206793586 -0.03329976063 0.15) (0.08237523682 -0.02302918623 0.15) (0.08298836579 -0.02586154816 0.15) (0.08345995264 -0.02804022405 0.15) (0.09946560589 -0.01962236771 0.15) (0.09997149486 -0.02247578273 0.15) (0.1003605977 -0.02467080002 0.15) (0.1044694982 -0.01877067842 0.15) (0.104941165 -0.02162994996 0.15) (0.1053045178 -0.02382953082 0.15) (0.4346791764 -0.03151332893 0.15) (0.4395652701 -0.0324587498 0.15) (0.4341432208 -0.03436119686 0.15) (0.4390154176 -0.03530414471 0.15) (0.4337300973 -0.03655192357 0.15) (0.438592378 -0.03749289094 0.15) (0.4925624516 -0.04323115332 0.15) (0.4919580729 -0.04606540586 0.15) (0.4914934005 -0.04824553441 0.15) (0.4447535592 -0.03346961952 0.15) (0.4441997402 -0.03631422223 0.15) (0.4437737283 -0.03850232438 0.15) (0.4499854981 -0.03448880383 0.15) (0.4494296959 -0.03733301044 0.15) (0.4490016959 -0.03952081638 0.15) (-0.002151255577 -0.0630860865 0.15) (0.0003863800267 -0.06448558649 0.15) (0.002338404495 -0.065562161 0.15) (0.6794586363 -0.09120121339 0.15) (0.6786425995 -0.09398179675 0.15) (0.6780147249 -0.09612070729 0.15) (0.7905084534 -0.1265657863 0.15) (0.7895809802 -0.129311255 0.15) (0.7888673111 -0.1314230968 0.15) (0.7863687519 -0.1915741888 0.15) (0.7866910089 -0.1886941783 0.15) (0.7869391309 -0.1864787661 0.15) (0.9378378447 -0.1814363539 0.15) (0.9367529978 -0.1841235659 0.15) (0.9359183477 -0.1861906215 0.15) (0.2565161413 -0.01060538946 0.15) (0.2564113606 -0.01350150597 0.15) (0.2563318395 -0.015729263 0.15) (0.277979469 -0.01159335999 0.15) (0.2778087651 -0.0144862938 0.15) (0.2776782985 -0.01671169136 0.15) (0.03626204953 -0.1088960776 0.15) (0.03717435275 -0.1061454714 0.15) (0.03787610475 -0.1040295501 0.15) (0.8440504629 -0.1454838395 0.15) (0.8487070395 -0.1471602429 0.15) (0.8430668566 -0.1482099789 0.15) (0.8477165474 -0.1498838472 0.15) (0.8423108499 -0.1503070619 0.15) (0.8469556285 -0.1519789911 0.15) (0.8395257484 -0.1438549502 0.15) (0.8385441205 -0.1465815855 0.15) (0.8377881042 -0.1486788683 0.15) (0.5021699236 -0.1625462628 0.15) (0.4968167939 -0.1620465387 0.15) (0.5024393773 -0.1596608998 0.15) (0.4970862524 -0.1591610758 0.15) (0.5026466531 -0.1574413129 0.15) (0.4972935233 -0.1569415888 0.15) (0.4914626701 -0.1615466664 0.15) (0.4917331227 -0.1586613516 0.15) (0.4919403984 -0.1564417648 0.15) (0.4539963241 -0.1579956041 0.15) (0.4486421762 -0.1574962313 0.15) (0.4542657778 -0.1551102411 0.15) (0.4489116299 -0.1546108683 0.15) (0.4544730535 -0.1528906543 0.15) (0.4491189057 -0.1523912814 0.15) (0.4593474802 -0.1584947324 0.15) (0.4596179327 -0.1556094176 0.15) (0.4598262074 -0.153389879 0.15) (0.5395623805 -0.1661139814 0.15) (0.5342658222 -0.1656037731 0.15) (0.5398408044 -0.1632294519 0.15) (0.5345432521 -0.1627190955 0.15) (0.5400540588 -0.161010454 0.15) (0.5347565016 -0.1605001975 0.15) (0.5444831828 -0.1665893291 0.15) (0.5447616115 -0.1637046997 0.15) (0.5449758598 -0.16148585 0.15) (0.8290078432 -0.1965617665 0.15) (0.8293490202 -0.1936838709 0.15) (0.8296120765 -0.1914701808 0.15) (0.8076794563 -0.194022999 0.15) (0.8080226165 -0.1911454994 0.15) (0.8082866668 -0.1889319575 0.15) (0.9768653125 -0.197630707 0.15) (0.9757476329 -0.2002721825 0.15) (0.9748876441 -0.2023041754 0.15) (0.1096864086 -0.01794449111 0.15) (0.1148919273 -0.01714688772 0.15) (0.1101338573 -0.02080769937 0.15) (0.1153192064 -0.02001312687 0.15) (0.110478049 -0.02301015958 0.15) (0.1156472672 -0.02221791191 0.15) (0.1198075207 -0.01642368989 0.15) (0.1202075756 -0.01929392086 0.15) (0.120515462 -0.02150183667 0.15) (0.4552273482 -0.0355100685 0.15) (0.4604179738 -0.03655549109 0.15) (0.4546636132 -0.03835269073 0.15) (0.4598443228 -0.03939613283 0.15) (0.4542296636 -0.04053930837 0.15) (0.4594034343 -0.0415813142 0.15) (0.4654018637 -0.037569708 0.15) (0.4648242462 -0.04040955756 0.15) (0.4643803854 -0.04259409484 0.15) (0.6001995737 -0.06905095225 0.15) (0.5994595986 -0.07185282829 0.15) (0.5988900043 -0.07400806827 0.15) (0.6414086989 -0.08024519379 0.15) (0.6406242535 -0.08303501131 0.15) (0.6400210652 -0.08518102056 0.15) (0.6193061423 -0.07418669884 0.15) (0.6185434302 -0.07698257145 0.15) (0.6179570341 -0.07913329594 0.15) ) // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
14517e64b71a7908578e42af878c9bcfcc9d54a3
06b365a016934701013a325b9f881648d8ba6c05
/cspe1-week4-joeri-hu/exercise-4.4/set.hpp
f382eb4743f0e56f4219cff625964ff285ba7e00
[]
no_license
joeri-hu/cpse1
1517fd9367911f5d7247b094b89180636328b135
ca22f92741e3f3a7e88a4037c19316868b6dbd01
refs/heads/master
2023-01-23T19:47:47.873039
2020-11-30T20:50:38
2020-11-30T20:50:38
299,107,321
0
0
null
null
null
null
UTF-8
C++
false
false
2,052
hpp
#ifndef SET_HPP #define SET_HPP #include <ostream> #include <array> template<typename T = int, size_t S = 10> class set { private: std::array<T, S> stuff; size_t tally; void shift(size_t start) { for (auto spot = start + 1; spot < tally; ++spot) { stuff[spot - 1] = stuff[spot]; } } public: set(): stuff{}, tally{} {} void add(T thing) { if (tally < S and not contains(thing)) { stuff[tally++] = thing; } } bool contains(T thing) const { for (size_t spot = 0; spot < tally; ++spot) { if (stuff[spot] == thing) { return true; } } return false; } void remove(T thing) { for (size_t spot = 0; spot < tally; ++spot) { if (stuff[spot] == thing) { shift(spot); --tally; return; } } } T max() const { auto max{stuff[0]}; for (size_t spot = 1; spot < tally; ++spot) { if (stuff[spot] > max) { max = stuff[spot]; } } return max; } friend bool operator> ( T const& stuff, std::array<char, 3> const& other ) { for (size_t spot = 0; spot < stuff.size(); ++spot) { if (stuff[spot] > other[spot]) { return true; } } return false; } friend std::ostream& operator<<( std::ostream& stream, set const& other ) { stream << '['; auto delim{""}; for (size_t spot = 0; spot < other.tally; ++spot) { if constexpr (std::is_same_v<T, std::array<char, 3>>) { stream << delim << '[' << other.stuff[spot][0] << ", " << other.stuff[spot][1] << ']'; } else { stream << delim << other.stuff[spot]; } delim = ", "; } return stream << ']'; } }; #endif // SET_HPP
[ "joeri.j.kok@student.hu.nl" ]
joeri.j.kok@student.hu.nl
4e88b37528e890df6e582f53f3c2108f4bb13ef7
1d3694b6beeec6f329dbef80a908c5684f75d265
/Implementation/angryProfessor.cpp
e1debc90a1ae3e19a5583d0039ac536d5598bc76
[]
no_license
Bvangoor/HackerRank
48fd0f7411602e06c1f7ca0aac944ee550ed99b8
3e63c9c06c724df641126edad41706d509f6092a
refs/heads/master
2016-09-06T07:39:42.472174
2015-09-25T07:37:15
2015-09-25T07:37:15
37,826,566
1
1
null
null
null
null
UTF-8
C++
false
false
531
cpp
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int t,n,k,arrival; cin>>t; while(t--){ cin>>n; cin>>k; int count=0; while(n--){ cin>>arrival; if(arrival<=0) count++; } if(count<k) cout<<"YES\n"; else cout<<"NO\n"; } return 0; }
[ "vangoor.bharath@gmail.com" ]
vangoor.bharath@gmail.com
8dad81e268cf075494070f3ee681fc0028912e0a
e0e05c3e11d5bcc109dc088067519a611b323a35
/c++/mm-temp/11/11-14.cpp
7d17889b545964b667265284136c2f1d04516b4c
[]
no_license
miaomao1989/program_test
ac3858e600a7a28a4f2a4dc7c2ae0fa472ea075c
e537f008035b0695d03bb0534c6138c65a895a3e
refs/heads/master
2020-04-06T06:56:45.561929
2016-08-30T11:48:49
2016-08-30T11:48:49
52,199,904
1
0
null
null
null
null
UTF-8
C++
false
false
595
cpp
#include <iostream> #include <list> #include <vector> #include <algorithm> using namespace std; int main() { int ia[] = {1, 2, 3, 4, 100, 5, 100}; vector< int > ivec(ia, ia+7); list<int> ilst; // replace_copy(ivec.begin(), ivec.end(), inserter(ilst, ilst.begin()), 100, 0); // replace_copy(ivec.begin(), ivec.end(), back_inserter(ilst), 100, 0); replace_copy(ivec.begin(), ivec.end(), front_inserter(ilst), 100, 0); cout << "list: " << endl; for (list< int >::iterator iter = ilst.begin(); iter != ilst.end(); ++iter) cout << *iter << " "; cout << endl; return 0; }
[ "im1020110542@126.com" ]
im1020110542@126.com
f9883c7e2b42dfd205cdd94b29ea9c19db86ae0a
1f3fb8f0396a70921cbb25d19400bbfe43ecd21e
/Long challenge/problem_difficuelties.cpp
ec6b5936e782f2071ab052daaae488316106ea99
[]
no_license
SuprabhatRavi/CodeChef
a7e63a46ef91f1a24083931d82f54a40d3077ed5
dd3226840f65ec089ccbd5482b4fc6f6879e2c5e
refs/heads/main
2023-07-09T09:47:10.995249
2021-08-11T12:46:53
2021-08-11T12:46:53
394,774,967
0
0
null
null
null
null
UTF-8
C++
false
false
917
cpp
/* You have prepared four problems. The difficulty levels of the problems are A1,A2,A3,A4 respectively. A problem set comprises at least two problems and no two problems in a problem set should have the same difficulty level. A problem can belong to at most one problem set. Output the maximum number of problem sets you can create using the four problems. */ #include <bits/stdc++.h> using namespace std; int main() { int t; cin>>t; while(t--) { unordered_map<int, int> m; for(int i=0; i<4; i++) { int temp; cin>>temp; m[temp]++; } int n=m.size(); switch(n) { case 1: cout<<0<<"\n"; break; case 2: if(m[m.begin()->first] ==2) cout<<2<<"\n"; else cout<<1<<"\n"; break; default: cout<<2<<"\n"; } } return 0; }
[ "suprabhatkumarravi@gmail.com" ]
suprabhatkumarravi@gmail.com
176d8078ca49371f678efdaf860a22242dbab45f
ee24f950b9b14ac393285c1d5782f4072238e055
/src/lib/libkrbn/src/libkrbn.cpp
a5d3a58119116867d49a6209506145d9a06f0692
[ "Unlicense" ]
permissive
mwhurr/Karabiner-Elements
488c8e5a1e32650637da50c5de110dd32855336a
03b0555461f392a81e501c8ec0a1e67878b3ba44
refs/heads/master
2022-12-22T06:26:19.938126
2020-09-23T14:02:58
2020-09-23T14:02:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,922
cpp
#include "libkrbn/libkrbn.h" #include "application_launcher.hpp" #include "constants.hpp" #include "core_configuration/core_configuration.hpp" #include "dispatcher_utility.hpp" #include "launchctl_utility.hpp" #include "libkrbn/impl/libkrbn_components_manager.hpp" #include "libkrbn/impl/libkrbn_cpp.hpp" #include "process_utility.hpp" #include "types.hpp" #include "update_utility.hpp" #include <fstream> #include <iostream> #include <nlohmann/json.hpp> #include <pqrs/karabiner/driverkit/virtual_hid_device_service.hpp> #include <string> namespace { std::shared_ptr<krbn::dispatcher_utility::scoped_dispatcher_manager> scoped_dispatcher_manager_; std::unique_ptr<libkrbn_components_manager> libkrbn_components_manager_; } // namespace void libkrbn_set_logging_level_off(void) { krbn::logger::get_logger()->set_level(spdlog::level::off); } void libkrbn_set_logging_level_info(void) { krbn::logger::get_logger()->set_level(spdlog::level::info); } void libkrbn_initialize(void) { krbn::logger::get_logger()->info(__func__); if (!scoped_dispatcher_manager_) { scoped_dispatcher_manager_ = krbn::dispatcher_utility::initialize_dispatchers(); } if (!libkrbn_components_manager_) { libkrbn_components_manager_ = std::make_unique<libkrbn_components_manager>(); } } void libkrbn_terminate(void) { krbn::logger::get_logger()->info(__func__); libkrbn_components_manager_ = nullptr; scoped_dispatcher_manager_ = nullptr; } const char* libkrbn_get_distributed_notification_observed_object(void) { return krbn::constants::get_distributed_notification_observed_object(); } const char* libkrbn_get_distributed_notification_console_user_server_is_disabled(void) { return krbn::constants::get_distributed_notification_console_user_server_is_disabled(); } const char* libkrbn_get_distributed_notification_device_grabbing_state_is_changed(void) { return krbn::constants::get_distributed_notification_device_grabbing_state_is_changed(); } const char* libkrbn_get_devices_json_file_path(void) { return krbn::constants::get_devices_json_file_path(); } const char* libkrbn_get_user_configuration_directory(void) { return krbn::constants::get_user_configuration_directory().c_str(); } const char* libkrbn_get_user_complex_modifications_assets_directory(void) { return krbn::constants::get_user_complex_modifications_assets_directory().c_str(); } bool libkrbn_lock_single_application_with_user_pid_file(const char* _Nonnull pid_file_name) { return krbn::process_utility::lock_single_application_with_user_pid_file(pid_file_name); } void libkrbn_unlock_single_application(void) { krbn::process_utility::unlock_single_application(); } void libkrbn_launchctl_manage_console_user_server(bool load) { krbn::launchctl_utility::manage_console_user_server(load); } void libkrbn_launchctl_manage_session_monitor(void) { krbn::launchctl_utility::manage_session_monitor(); } void libkrbn_launchctl_manage_observer_agent(void) { krbn::launchctl_utility::manage_observer_agent(); } void libkrbn_launchctl_manage_grabber_agent(void) { krbn::launchctl_utility::manage_grabber_agent(); } void libkrbn_launchctl_restart_console_user_server(void) { krbn::launchctl_utility::restart_console_user_server(); } void libkrbn_check_for_updates_in_background(void) { krbn::update_utility::check_for_updates_in_background(); } void libkrbn_check_for_updates_stable_only(void) { krbn::update_utility::check_for_updates_stable_only(); } void libkrbn_check_for_updates_with_beta_version(void) { krbn::update_utility::check_for_updates_with_beta_version(); } void libkrbn_launch_event_viewer(void) { krbn::application_launcher::launch_event_viewer(); } void libkrbn_launch_menu(void) { krbn::application_launcher::launch_menu(); } void libkrbn_launch_preferences(void) { krbn::application_launcher::launch_preferences(); } void libkrbn_launch_multitouch_extension(void) { krbn::application_launcher::launch_multitouch_extension(false); } bool libkrbn_driver_running(void) { return pqrs::karabiner::driverkit::virtual_hid_device_service::utility::driver_running(); } bool libkrbn_system_core_configuration_file_path_exists(void) { return pqrs::filesystem::exists(krbn::constants::get_system_core_configuration_file_path()); } void libkrbn_get_key_code_name(char* buffer, size_t length, uint32_t key_code) { auto name = krbn::make_key_code_name(krbn::key_code::value_t(key_code)); strlcpy(buffer, name.c_str(), length); } bool libkrbn_find_unnamed_key_code_number(uint32_t* output, const char* name) { if (!output) { return false; } if (auto number = krbn::find_unnamed_key_code_number(name)) { *output = type_safe::get(*number); return true; } return false; } void libkrbn_get_consumer_key_code_name(char* buffer, size_t length, uint32_t consumer_key_code) { auto name = krbn::make_consumer_key_code_name(krbn::consumer_key_code::value_t(consumer_key_code)); strlcpy(buffer, name.c_str(), length); } bool libkrbn_find_unnamed_consumer_key_code_number(uint32_t* output, const char* name) { if (!output) { return false; } if (auto number = krbn::find_unnamed_consumer_key_code_number(name)) { *output = type_safe::get(*number); return true; } return false; } bool libkrbn_is_modifier_flag(uint32_t key_code) { return krbn::make_modifier_flag(krbn::key_code::value_t(key_code)) != std::nullopt; } bool libkrbn_device_identifiers_is_apple(const libkrbn_device_identifiers* p) { if (p) { return libkrbn_cpp::make_device_identifiers(*p).is_apple(); } return false; } // // version_monitor // void libkrbn_enable_version_monitor(libkrbn_version_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_version_monitor(callback, refcon); } } void libkrbn_disable_version_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_version_monitor(); } } // // configuration_monitor // void libkrbn_enable_configuration_monitor(libkrbn_configuration_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_configuration_monitor(callback, refcon); } } void libkrbn_disable_configuration_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_configuration_monitor(); } } // // complex_modifications_assets_manager // void libkrbn_enable_complex_modifications_assets_manager(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_complex_modifications_assets_manager(); } } void libkrbn_disable_complex_modifications_assets_manager(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_complex_modifications_assets_manager(); } } void libkrbn_complex_modifications_assets_manager_reload(void) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { m->reload(); } } } size_t libkrbn_complex_modifications_assets_manager_get_files_size(void) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->get_files_size(); } } return 0; } const char* libkrbn_complex_modifications_assets_manager_get_file_title(size_t index) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->get_file_title(index); } } return nullptr; } size_t libkrbn_complex_modifications_assets_manager_get_rules_size(size_t file_index) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->get_rules_size(file_index); } } return 0; } const char* libkrbn_complex_modifications_assets_manager_get_rule_description(size_t file_index, size_t index) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->get_rule_description(file_index, index); } } return nullptr; } void libkrbn_complex_modifications_assets_manager_add_rule_to_core_configuration_selected_profile(size_t file_index, size_t index, libkrbn_core_configuration* core_configuration) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { m->add_rule_to_core_configuration_selected_profile(file_index, index, core_configuration); } } } bool libkrbn_complex_modifications_assets_manager_user_file(size_t index) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->user_file(index); } } return false; } void libkrbn_complex_modifications_assets_manager_erase_file(size_t index) { if (libkrbn_components_manager_) { if (auto m = libkrbn_components_manager_->get_complex_modifications_assets_manager()) { return m->erase_file(index); } } } // // system_preferences_monitor // void libkrbn_enable_system_preferences_monitor(libkrbn_system_preferences_monitor_callback _Nullable callback, void* _Nullable refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_system_preferences_monitor(callback, refcon); } } void libkrbn_disable_system_preferences_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_system_preferences_monitor(); } } // // connected_devices_monitor // void libkrbn_enable_connected_devices_monitor(libkrbn_connected_devices_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_connected_devices_monitor(callback, refcon); } } void libkrbn_disable_connected_devices_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_connected_devices_monitor(); } } // // observer_state_json_file_monitor // void libkrbn_enable_observer_state_json_file_monitor(libkrbn_file_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_observer_state_json_file_monitor(callback, refcon); } } void libkrbn_disable_observer_state_json_file_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_observer_state_json_file_monitor(); } } // // grabber_state_json_file_monitor // void libkrbn_enable_grabber_state_json_file_monitor(libkrbn_file_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_grabber_state_json_file_monitor(callback, refcon); } } void libkrbn_disable_grabber_state_json_file_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_grabber_state_json_file_monitor(); } } // // device_details_json_file_monitor // void libkrbn_enable_device_details_json_file_monitor(libkrbn_file_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_device_details_json_file_monitor(callback, refcon); } } void libkrbn_disable_device_details_json_file_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_device_details_json_file_monitor(); } } // // manipulator_environment_json_file_monitor // void libkrbn_enable_manipulator_environment_json_file_monitor(libkrbn_file_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_manipulator_environment_json_file_monitor(callback, refcon); } } void libkrbn_disable_manipulator_environment_json_file_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_manipulator_environment_json_file_monitor(); } } // // notification_message_json_file_monitor // void libkrbn_enable_notification_message_json_file_monitor(libkrbn_file_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_notification_message_json_file_monitor(callback, refcon); } } void libkrbn_disable_notification_message_json_file_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_notification_message_json_file_monitor(); } } // // frontmost_application_monitor // void libkrbn_enable_frontmost_application_monitor(libkrbn_frontmost_application_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_frontmost_application_monitor(callback, refcon); } } void libkrbn_disable_frontmost_application_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_frontmost_application_monitor(); } } // // log_monitor // void libkrbn_enable_log_monitor(libkrbn_log_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_log_monitor(callback, refcon); } } void libkrbn_disable_log_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_log_monitor(); } } // // hid_value_monitor // void libkrbn_enable_hid_value_monitor(libkrbn_hid_value_monitor_callback callback, void* refcon) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_hid_value_monitor(callback, refcon); } } void libkrbn_disable_hid_value_monitor(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_hid_value_monitor(); } } bool libkrbn_hid_value_monitor_observed(void) { if (libkrbn_components_manager_) { return libkrbn_components_manager_->hid_value_monitor_observed(); } return false; } // // grabber_client // void libkrbn_enable_grabber_client(libkrbn_grabber_client_connected_callback connected_callback, libkrbn_grabber_client_connect_failed_callback connect_failed_callback, libkrbn_grabber_client_closed_callback closed_callback) { if (libkrbn_components_manager_) { libkrbn_components_manager_->enable_grabber_client(connected_callback, connect_failed_callback, closed_callback); } } void libkrbn_disable_grabber_client(void) { if (libkrbn_components_manager_) { libkrbn_components_manager_->disable_grabber_client(); } } void libkrbn_grabber_client_async_set_variable(const char* name, int value) { if (libkrbn_components_manager_) { if (name) { libkrbn_components_manager_->grabber_client_async_set_variable(name, value); } } } void libkrbn_grabber_client_sync_set_variable(const char* name, int value) { if (libkrbn_components_manager_) { if (name) { libkrbn_components_manager_->grabber_client_sync_set_variable(name, value); } } }
[ "tekezo@pqrs.org" ]
tekezo@pqrs.org
730bf23dc88b08044580ad1cd4c01fe04a10c421
86b55c5bfd3cbce99db30907ecc63c0038b0f1e2
/chromeos/constants/chromeos_features.h
b582291c059ce78a6401664d9162b8317215e5dd
[ "BSD-3-Clause" ]
permissive
Claw-Lang/chromium
3ed8160ea3f2b5d51fdc2a7d764aadd5b443eb3f
651cebac57fcd0ce2c7c974494602cc098fe7348
refs/heads/master
2022-11-19T07:46:03.573023
2020-07-28T06:45:27
2020-07-28T06:45:27
283,134,740
1
0
BSD-3-Clause
2020-07-28T07:26:49
2020-07-28T07:26:48
null
UTF-8
C++
false
false
12,214
h
// Copyright 2018 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 CHROMEOS_CONSTANTS_CHROMEOS_FEATURES_H_ #define CHROMEOS_CONSTANTS_CHROMEOS_FEATURES_H_ #include "base/component_export.h" #include "base/feature_list.h" namespace chromeos { namespace features { // All features in alphabetical order. The features should be documented // alongside the definition of their values in the .cc file. If a feature is // being rolled out via Finch, add a comment in the .cc file. COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAllowScrollSettings; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAmbientModeFeature; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kArcAdbSideloadingFeature; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kArcManagedAdbSideloadingSupport; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kArcPreImeKeyEventSupport; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAutoScreenBrightness; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAssistAutoCorrect; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAssistPersonalInfo; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kAvatarToolbarButton; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kBetterUpdateScreen; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kBluetoothAggressiveAppearanceFilter; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kBluetoothFixA2dpPacketSize; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kBluetoothPhoneFilter; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kBluetoothNextHandsfreeProfile; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCameraSystemWebApp; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCdmFactoryDaemon; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kChildSpecificSignin; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniPortForwarding; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniDiskResizing; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniUseBusterImage; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniGpuSupport; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniUsbAllowUnsupported; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniShowMicSetting; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDisableCryptAuthV1DeviceSync; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCryptAuthV2DeviceActivityStatus; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCrostiniWebUIUpgrader; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCryptAuthV2DeviceSync; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kCryptAuthV2Enrollment; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDisableOfficeEditingComponentApp; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDiscoverApp; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDriveFs; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDriveFsBidirectionalNativeMessaging; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kDriveFsMirroring; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEmojiSuggestAddition; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEolWarningNotifications; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEduCoexistence; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEduCoexistenceConsentLog; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kExoPointerLock; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kFilesNG; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kFilesTransferDetails; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kFilesZipNoNaCl; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kMojoDBusRelay; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kClipboardHistory; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEnableImeSandbox; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kEnableSupervisionTransitionScreens; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kFsNosymfollow; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kGaiaActionButtons; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kGesturePropertiesDBusService; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kHelpAppFirstRun; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kHelpAppReleaseNotes; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kHelpAppSearchServiceIntegration; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kHelpAppV2; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kImeInputLogicHmm; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kImeInputLogicFst; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kImeInputLogicMozc; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kImeOptionsInSettings; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kVirtualKeyboardFloatingDefault; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kInstantTethering; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kLacrosSupport; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kLanguageSettingsUpdate; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kLoginDeviceManagementDisclosure; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kLoginDisplayPasswordButton; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kMediaApp; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kMinimumChromeVersion; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kNativeRuleBasedTyping; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kNewOsSettingsSearch; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kOobeScreensPriority; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kOsSettingsDeepLinking; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kOsSettingsPolymer3; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kParentalControlsSettings; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kPhoneHub; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kPluginVmShowCameraPermissions; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kPluginVmShowMicrophonePermissions; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kPrintJobManagementApp; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kPrinterStatus; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswers; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswersDogfood; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswersRichUi; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswersTextAnnotator; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswersSubToggle; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kQuickAnswersTranslation; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kReleaseNotes; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kReleaseNotesNotification; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kScanningUI; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSessionManagerLongKillTimeout; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kShelfHotseat; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kShowBluetoothDebugLogToggle; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kShowBluetoothDeviceBattery; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kShowPlayInDemoMode; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kShowStepsInDemoModeSetup; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSmartDimExperimentalComponent; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSmartDimNewMlAgent; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSmartDimModelV3; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSplitSettingsSync; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kSuggestedContentToggle; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kTelemetryExtension; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUnifiedMediaView; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUpdatedCellularActivationUi; // Visible for testing. Call UseBrowserSyncConsent() to check the flag. COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUseBrowserSyncConsent; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUseMessagesStagingUrl; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUserActivityPrediction; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kUseSearchClickForRightClick; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kViewBasedMultiprofileLogin; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kVirtualKeyboardBorderedKey; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kVirtualKeyboardFloatingResizable; COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const base::Feature kImeMozcProto; // Keep alphabetized. COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsAmbientModeEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsAssistantEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsBetterUpdateEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsChildSpecificSigninEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsDeepLinkingEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsEduCoexistenceEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsImeSandboxEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsInstantTetheringBackgroundAdvertisingSupported(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsLacrosSupportEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsLoginDeviceManagementDisclosureEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsLoginDisplayPasswordButtonEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsMinimumChromeVersionEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsClipboardHistoryEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsOobeScreensPriorityEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsParentalControlsSettingsEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsPhoneHubEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersDogfood(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersRichUiEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersSettingToggleEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersTextAnnotatorEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsQuickAnswersTranslationEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsSplitSettingsSyncEnabled(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool IsViewBasedMultiprofileLoginEnabled(); // TODO(michaelpg): Remove after M71 branch to re-enable Play Store by default. COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool ShouldShowPlayStoreInDemoMode(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool ShouldUseBrowserSyncConsent(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool ShouldUseV1DeviceSync(); COMPONENT_EXPORT(CHROMEOS_CONSTANTS) bool ShouldUseV2DeviceSync(); // Keep alphabetized. } // namespace features } // namespace chromeos #endif // CHROMEOS_CONSTANTS_CHROMEOS_FEATURES_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
d19b8c67f257c066ddfab97f33ddc993b81a4cf5
a7c42ac5ec2199cbb259253944272a8f78051b71
/剑指Offer38.字符串的排列.cpp
67b0fe99aaebad735f50a97be882c80efb8bd833
[]
no_license
ImportMengjie/Leetcode
9a894e5a0971860275bfea8ffa1cc69d33298ce8
584d3cda27fafcc7d4dd0a101472ebaccfd6a9dd
refs/heads/master
2023-05-25T13:43:16.397448
2023-05-22T08:34:12
2023-05-22T08:34:12
200,491,766
1
0
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
/* 输入一个字符串,打印出该字符串中字符的所有排列。 你可以以任意顺序返回这个字符串数组,但里面不能有重复元素。 示例: 输入:s = "abc" 输出:["abc","acb","bac","bca","cab","cba"]   限制: 1 <= s 的长度 <= 8 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 */ #include <string> #include <vector> #include <set> using namespace std; class Solution { public: vector<string> permutation(string s) { vector<string> ans; dfs(ans, s, 0); return ans; } void dfs(vector<string> &ans, string& s, int i){ if(i==s.size()-1) ans.push_back(s); else{ set<int> st; for(int j=i;j<s.size();j++){ if(st.find(s[j])==st.end()){ st.insert(s[j]); swap(s[i],s[j]); dfs(ans, s, i+1); swap(s[j],s[i]); } } } } };
[ "limengjie@hotmail.com" ]
limengjie@hotmail.com
bbdada7d781f2309543e334d6b2f402e2a8132a4
203d7b7e3792acb8e7ccf0ca6feda8dc5b70ce60
/src/Scenario/CommonScenario/Objhand.cpp
ac589d26ea04b8d3696b9c2bc83fd8e9443d886b
[ "MIT" ]
permissive
Kalamatee/RayStorm
44e40882b5aff6fbefa3209bf6706cd402868dc3
1adb8f50478f795973aa51dcceb02682d671b41d
refs/heads/master
2020-12-11T03:38:15.490729
2019-06-21T15:32:22
2019-06-21T15:32:22
37,782,719
4
0
null
2015-06-20T19:22:47
2015-06-20T19:22:47
null
UTF-8
C++
false
false
43,069
cpp
/*************** * PROGRAM: Modeler * NAME: objhand.cpp * DESCRIPTION: loader for external objects * AUTHORS: Andreas Heumann * HISTORY: * DATE NAME COMMENT * 20.03.95 ah initial release * 29.11.96 ah added Flare and Star functions * 25.01.97 ah added AddBox() * 31.01.97 ah added Star_Tilt() * 06.03.97 ah added PointLight_ShadowMapSize() and SpotLight_ShadowMapSize() * 07.03.97 ah added AddMesh() * 26.03.97 ah added AddCylinder(), AddCone() * 16.05.97 ah added SetName() * 09.06.97 ah added handling to V2 style * 07.07.97 ah added CSGAdd() * 26.09.97 ah added SOR functions ***************/ #include <string.h> #ifndef MESH_H #include "mesh.h" #endif #ifndef SPHERE_H #include "sphere.h" #endif #ifndef BOX_H #include "box.h" #endif #ifndef CYLINDER_H #include "cylinder.h" #endif #ifndef CONE_H #include "cone.h" #endif #ifndef ERRORS_H #include "errors.h" #endif #ifndef BRUSH_H #include "brush.h" #endif #ifndef TEXTURE_H #include "texture.h" #endif #ifndef PLANE_H #include "plane.h" #endif #ifndef CSG_H #include "csg.h" #endif #ifndef SOR_H #include "sor.h" #endif #ifndef CAMERA_H #include "camera.h" #endif #ifndef LIGHT_H #include "light.h" #endif #ifndef FLARES_H #include "flares.h" #endif #ifndef STAR_H #include "star.h" #endif #ifndef OBJHAND_H #include "objhand.h" #endif #ifndef SCI_H #include "sci.h" #endif #ifndef __PPC__ // where to insert the next object static OBJECT *where; // insert direction static int dir; // undo object static UNDO_CREATE *undo; static INVMATRIX_STACK *stack; #endif #ifndef __PPC__ /************* * DESCRIPTION: initialize object handler * INPUT: root root object * direction initial insert direction (usually INSERT_VERT) * u undo object (NULL if no undo) * OUTPUT: FALSE if failed else TRUE *************/ BOOL InitObjHand(OBJECT *root, int direction, UNDO_CREATE *u) { where = root; dir = direction; stack = new INVMATRIX_STACK; if(!stack) return FALSE; undo = u; return TRUE; } /************* * DESCRIPTION: cleanup object handler * INPUT: - * OUTPUT: - *************/ void CleanupObjHand() { if(stack) delete stack; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called at start of new object * INPUT: - * OUTPUT: - *************/ void ObjectBegin(rsiCONTEXT *rc) { } #endif #ifndef __PPC__ /************* * DESCRIPTION: called at end of an object * INPUT: - * OUTPUT: - *************/ void ObjectEnd(rsiCONTEXT *rc) { stack->Pop(); if(dir == INSERT_HORIZ) { while(where->GetPrev()) where = (OBJECT*)where->GetPrev(); if(where->GoUp()) where = (OBJECT*)where->GoUp(); } else dir = INSERT_HORIZ; where->CalcBBox(); } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: set the surface of the object * INPUT: obj object * surface surface * OUTPUT: - *************/ void ObjectSurface(rsiCONTEXT *rc, OBJECT *obj, SURFACE *surface) { obj->surf = surface; } #endif // __MIXEDBINARY__ || __PPC__ #ifndef __PPC__ /************* * DESCRIPTION: called to set the name of an object * INPUT: name * OUTPUT: FALSE if failed else TRUE *************/ BOOL ObjectName(rsiCONTEXT *rc, OBJECT *obj, char *name) { if(!obj->SetName(name)) return FALSE; return TRUE; } /************* * DESCRIPTION: called to set the object axis * INPUT: pos position * orient_x,orient_y,orient_z orientation * size size * OUTPUT: - *************/ void ObjectAxis(rsiCONTEXT *rc, OBJECT *obj, VECTOR *pos, VECTOR *orient_x, VECTOR *orient_y, VECTOR *orient_z, VECTOR *size) { MATRIX m, matrix; m.SetOTMatrix(orient_x, orient_y, orient_z, pos); matrix.MultMat(&m, &stack->matrix); SetVector(&obj->pos, matrix.m[1], matrix.m[2], matrix.m[3]); SetVector(&obj->orient_x, matrix.m[5], matrix.m[9], matrix.m[13]); SetVector(&obj->orient_y, matrix.m[6], matrix.m[10], matrix.m[14]); SetVector(&obj->orient_z, matrix.m[7], matrix.m[11], matrix.m[15]); matrix.InvMat(&m); stack->Push(&m); where->size = *size; } /************* * DESCRIPTION: called to set the object the object tracks to * INPUT: object object * track name of tracked object * OUTPUT: FALSE if failed else TRUE *************/ BOOL ObjectTrack(rsiCONTEXT *rc, OBJECT *object, char *track) { object->track = (OBJECT*)new char[strlen(track)+1]; if(!object->track) return FALSE; strcpy((char*)object->track, track); return TRUE; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set object flags * INPUT: object object * flags flags * OUTPUT: - *************/ void ObjectFlags(rsiCONTEXT *rc, OBJECT *object, ULONG flags) { if(flags & LINK_OBJECT_INVERTED) object->flags |= OBJECT_INVERTED; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a new surface * INPUT: - * OUTPUT: created surface or NULL if failed *************/ SURFACE *SurfaceAdd(rsiCONTEXT *rc) { SURFACE *surf; surf = sciCreateSurface(SURF_DEFAULTNAME); surf->flags |= SURF_EXTERNAL; return surf; } /************* * DESCRIPTION: called to get a surface by its name * INPUT: name * OUTPUT: surface *************/ SURFACE *SurfaceGetByName(rsiCONTEXT *rc, char *name) { return GetSurfaceByName(name); } /************* * DESCRIPTION: called to set the surface name * INPUT: surf surface * name name * OUTPUT: FALSE if failed else TRUE *************/ BOOL SurfaceName(rsiCONTEXT *rc, SURFACE *surf,char *name) { return surf->SetName(name); } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set surface flags * INPUT: surf surface * flags flags * OUTPUT: - *************/ void SurfaceSetFlags(rsiCONTEXT *rc, SURFACE *surf,UWORD flags) { if(flags & LINK_SURFACE_BRIGHT) surf->flags |= SURF_BRIGHT; } /************* * DESCRIPTION: called to set surface diffuse color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceDiffuse(rsiCONTEXT *rc, SURFACE *surf,float r,float g,float b) { surf->diffuse.r = r; surf->diffuse.g = g; surf->diffuse.b = b; } /************* * DESCRIPTION: called to set surface specular color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceSpecular(rsiCONTEXT *rc, SURFACE *surf,float r,float g,float b) { surf->specular.r = r; surf->specular.g = g; surf->specular.b = b; } /************* * DESCRIPTION: called to set surface ambient color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceAmbient(rsiCONTEXT *rc, SURFACE *surf,float r,float g,float b) { surf->ambient.r = r; surf->ambient.g = g; surf->ambient.b = b; } /************* * DESCRIPTION: called to set surface reflective color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceReflect(rsiCONTEXT *rc, SURFACE *surf,float r,float g,float b) { surf->reflect.r = r; surf->reflect.g = g; surf->reflect.b = b; } /************* * DESCRIPTION: called to set surface transparent color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceTranspar(rsiCONTEXT *rc, SURFACE *surf,float r,float g,float b) { surf->transpar.r = r; surf->transpar.g = g; surf->transpar.b = b; } /************* * DESCRIPTION: called to set surface diffuse transmission color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceDiffTrans(rsiCONTEXT *rc, SURFACE *surf, float r, float g, float b) { surf->difftrans.r = r; surf->difftrans.g = g; surf->difftrans.b = b; } /************* * DESCRIPTION: called to set surface specular transmission color * INPUT: surf surface * r,g,b color * OUTPUT: - *************/ void SurfaceSpecTrans(rsiCONTEXT *rc, SURFACE *surf, float r, float g, float b) { surf->spectrans.r = r; surf->spectrans.g = g; surf->spectrans.b = b; } /************* * DESCRIPTION: called to set surface fog length * INPUT: surf surface * flen fog length * OUTPUT: - *************/ void SurfaceFoglen(rsiCONTEXT *rc, SURFACE *surf,float flen) { surf->foglength = flen; } /************* * DESCRIPTION: called to get surface fog length * INPUT: surf surface * OUTPUT: fog length *************/ float SurfaceGetFoglen(rsiCONTEXT *rc, SURFACE *surf) { return surf->foglength; } /************* * DESCRIPTION: called to set surface index of refraction * INPUT: surf surface * ior index of refraction * OUTPUT: - *************/ void SurfaceIndOfRefr(rsiCONTEXT *rc, SURFACE *surf,float ior) { surf->refrindex = ior; } /************* * DESCRIPTION: called to set surface reflective phong factor * INPUT: surf surface * refp reflective phong * OUTPUT: - *************/ void SurfaceRefPhong(rsiCONTEXT *rc, SURFACE *surf,float refp) { surf->refphong = refp; } /************* * DESCRIPTION: called to set surface tranparent phong factor * INPUT: surf surface * transphong transparent phong * OUTPUT: - *************/ void SurfaceTransPhong(rsiCONTEXT *rc, SURFACE *surf, float transphong) { surf->transphong = transphong; } /************* * DESCRIPTION: called to set surface translucency factor * INPUT: surf surface * transluc translucency * OUTPUT: - *************/ void SurfaceTransluc(rsiCONTEXT *rc, SURFACE *surf, float transluc) { surf->translucency = transluc; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to copy a surface * INPUT: from source * to destination * OUTPUT: FALSE if failed else TRUE *************/ BOOL SurfaceCopy(rsiCONTEXT *rc, SURFACE *from,SURFACE *to) { to = from->Duplicate(); if(to) { to->SetName(from->name); to->Add(); return TRUE; } return FALSE; } /************* * DESCRIPTION: called to add a sphere * INPUT: - * OUTPUT: created sphere *************/ OBJECT *SphereAdd(rsiCONTEXT *rc) { SPHERE *sphere; sphere = new SPHERE; if(!sphere) return NULL; sphere->selected = TRUE; sphere->external = EXTERNAL_CHILD; // mark as external object sphere->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = sphere; if(undo) undo->AddCreated(sphere); return (OBJECT*)sphere; } /************* * DESCRIPTION: called to add triangles * INPUT: count amount of triangles * surf surface * actor actor * OUTPUT: created triangles or NULL if failed *************/ TRIANGLE *TriangleAdd(rsiCONTEXT *rc, int count,SURFACE *surf,ACTOR *actor) { MESH *mesh; mesh = new MESH; if(!mesh) return NULL; mesh->selected = TRUE; mesh->external = EXTERNAL_CHILD; // mark as external child object mesh->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = mesh; mesh->surf = surf; if(count) { if(mesh->AddTria(count) == -1) return NULL; } if(undo) undo->AddCreated(mesh); return mesh->trias; } /************* * DESCRIPTION: called to add points to triangles * INPUT: count amount of points * points point vectors * OUTPUT: FALSE if failed else TRUE *************/ BOOL TriangleAddPoints(rsiCONTEXT *rc, int count, VECTOR *points) { int n,i; VECTOR *p; n = ((MESH*)where)->AddPoint(count); if(n == -1) return FALSE; p = &((MESH*)where)->points[n]; for(i=n; i<n+count; i++) { // transform form absulute to relative coordinates *p = *points; stack->MultVectStack(p); p++; points++; } where->CalcBBox(); return TRUE; } /************* * DESCRIPTION: called to add edges to triangle * INPUT: count amount of edges * edges edge values * OUTPUT: FALSE if failed else TRUE *************/ BOOL TriangleAddEdges(rsiCONTEXT *rc, int count, UWORD *edges) { int n,i; EDGE *e; n = ((MESH*)where)->AddEdge(count); if(n == -1) return FALSE; e = &((MESH*)where)->edges[n]; for(i=n; i<n+count; i++) { e->p[0] = *edges; edges++; e->p[1] = *edges; edges++; e++; } return TRUE; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set edges of triangle * INPUT: tria triangle * e1,e2,e3 edges * OUTPUT: - *************/ void TriangleSetEdges(rsiCONTEXT *rc, TRIANGLE *tria,UWORD e1,UWORD e2,UWORD e3) { tria->e[0] = e1; tria->e[1] = e2; tria->e[2] = e3; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to set flags of edges * INPUT: flags flags * OUTPUT: - *************/ void TriangleSetEdgeFlags(rsiCONTEXT *rc, UBYTE *flags) { int i; EDGE *e; e = ((MESH*)where)->edges; for(i=0; i<((MESH*)where)->actedges; i++) { e->flags = flags[i]; e++; } } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set edge normals of triangle * INPUT: tria triangle * v1,v2,v3 edge normals * OUTPUT: FALSE if failed else TRUE *************/ BOOL TriangleVNorm(rsiCONTEXT *rc, TRIANGLE *tria,VECTOR *v1,VECTOR *v2,VECTOR *v3) { return TRUE; } /************* * DESCRIPTION: called to set the surface of a triangle * INPUT: surf * OUTPUT: none *************/ void TriangleSurface(rsiCONTEXT *rc, TRIANGLE *tria, SURFACE *surf) { } /************* * DESCRIPTION: called to get next triangle * INPUT: tria triangle * OUTPUT: next triangle *************/ TRIANGLE * TriangleGetNext(rsiCONTEXT *rc, TRIANGLE *tria) { return ++tria; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to create a mesh * INPUT: - * OUTPUT: created mesh *************/ OBJECT *MeshCreate(rsiCONTEXT *rc) { MESH *mesh; mesh = new MESH; if(!mesh) return NULL; mesh->selected = TRUE; mesh->external = EXTERNAL_CHILD; mesh->OBJECT::Insert(where,dir); if(undo) undo->AddCreated(mesh); dir = INSERT_VERT; where = mesh; return (OBJECT*)mesh; } /************* * DESCRIPTION: called to add a mesh * INPUT: mesh mesh * points mesh points * pointcount amount of points * edges mesh edges * edgecount amount of edges * trias mesh triangles * triacount amount of triangles * nophong disable phong shading * OUTPUT: FALSE if failed else TRUE *************/ BOOL MeshAddScenario(rsiCONTEXT *rc, OBJECT *mesh, VECTOR *points, int pointcount, LINK_EDGE *edges, int edgecount, LINK_MESH *trias, int triacount, VECTOR *size, BOOL nophong) { int i; VECTOR *p; TRIANGLE *t; LINK_MESH *lm; if(nophong) mesh->flags |= OBJECT_NOPHONG; if(triacount) { if(((MESH*)mesh)->AddTria(triacount) == -1) return FALSE; t = ((MESH*)mesh)->trias; lm = trias; for(i=0; i<triacount; i++) { t->e[0] = lm->e[0]; t->e[1] = lm->e[1]; t->e[2] = lm->e[2]; t++; lm++; } } if(pointcount) { if(((MESH*)mesh)->AddPoint(pointcount) == -1) return FALSE; p = ((MESH*)mesh)->points; for(i=0; i<pointcount; i++) { // transform form absulute to relative coordinates *p = *points; p->x *= size->x; p->y *= size->y; p->z *= size->z; stack->MultVectStack(p); p++; points++; } } if(edgecount) { if(((MESH*)mesh)->AddEdge(edgecount) == -1) return FALSE; memcpy(((MESH*)mesh)->edges, edges, sizeof(EDGE)*edgecount); } return TRUE; } /************* * DESCRIPTION: called to add a box * INPUT: - * OUTPUT: created box *************/ OBJECT *BoxAdd(rsiCONTEXT *rc) { BOX *box; box = new BOX; if(!box) return NULL; box->selected = TRUE; box->external = EXTERNAL_CHILD; // mark as external object box->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = box; if(undo) undo->AddCreated(box); return (OBJECT*)box; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set the box bounds * INPUT: box * lowbounds * highbounds * OUTPUT: - *************/ void BoxBounds(rsiCONTEXT *rc, OBJECT *box, VECTOR *lowbounds, VECTOR *highbounds) { ((BOX*)box)->bboxmin = *lowbounds; ((BOX*)box)->bboxmax = *highbounds; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a cylinder * INPUT: - * OUTPUT: created cylinder *************/ OBJECT *CylinderAdd(rsiCONTEXT *rc) { CYLINDER *cylinder; cylinder = new CYLINDER; if(!cylinder) return NULL; cylinder->selected = TRUE; cylinder->external = EXTERNAL_CHILD; // mark as external object cylinder->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = cylinder; if(undo) undo->AddCreated(cylinder); return (OBJECT*)cylinder; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set cylinder flags * INPUT: cylinder cylinder * flags flags * OUTPUT: - *************/ void CylinderFlags(rsiCONTEXT *rc, OBJECT *cylinder, ULONG flags) { if(flags & LINK_CYLINDER_OPENTOP) cylinder->flags |= OBJECT_OPENTOP; if(flags & LINK_CYLINDER_OPENBOTTOM) cylinder->flags |= OBJECT_OPENBOTTOM; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a cone * INPUT: - * OUTPUT: created cone *************/ OBJECT *ConeAdd(rsiCONTEXT *rc) { CONE *cone; cone = new CONE; if(!cone) return NULL; cone->selected = TRUE; cone->external = EXTERNAL_CHILD; // mark as external object cone->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = cone; if(undo) undo->AddCreated(cone); return (OBJECT*)cone; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set cone flags * INPUT: cone cone * flags flags * OUTPUT: - *************/ void ConeFlags(rsiCONTEXT *rc, OBJECT *cone, ULONG flags) { if(flags & LINK_CONE_OPENBOTTOM) cone->flags |= OBJECT_OPENBOTTOM; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a plane * INPUT: - * OUTPUT: created plane *************/ OBJECT *PlaneAdd(rsiCONTEXT *rc) { PLANE *plane; plane = new PLANE; if(!plane) return NULL; plane->selected = TRUE; plane->external = EXTERNAL_CHILD; // mark as external object plane->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = plane; if(undo) undo->AddCreated(plane); return (OBJECT*)plane; } /************* * DESCRIPTION: called to add a CSG object * INPUT: - * OUTPUT: created CSG object *************/ OBJECT *CSGAdd(rsiCONTEXT *rc) { CSG *csg; csg = new CSG; if(!csg) return NULL; csg->selected = TRUE; csg->external = EXTERNAL_CHILD; // mark as external object csg->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = csg; if(undo) undo->AddCreated(csg); return (OBJECT*)csg; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set CSG operation * INPUT: csg csg object * operation * OUTPUT: - *************/ void CSGOperation(rsiCONTEXT *rc, OBJECT *csg, UWORD operation) { switch(operation) { case LINK_CSG_UNION: ((CSG*)csg)->operation = CSG_UNION; break; case LINK_CSG_INTERSECTION: ((CSG*)csg)->operation = CSG_INTERSECTION; break; case LINK_CSG_DIFFERENCE: ((CSG*)csg)->operation = CSG_DIFFERENCE; break; } } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a SOR object * INPUT: - * OUTPUT: created SOR object *************/ OBJECT *SORAdd(rsiCONTEXT *rc) { SOR *sor; sor = new SOR; if(!sor) return NULL; sor->selected = TRUE; sor->external = EXTERNAL_CHILD; // mark as external object sor->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = sor; if(undo) undo->AddCreated(sor); return (OBJECT*)sor; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set sor flags * INPUT: sor sor * flags flags * OUTPUT: - *************/ void SORFlags(rsiCONTEXT *rc, OBJECT *sor, ULONG flags) { if(flags & LINK_SOR_OPENTOP) sor->flags |= OBJECT_OPENTOP; if(flags & LINK_SOR_OPENBOTTOM) sor->flags |= OBJECT_OPENBOTTOM; if(flags & LINK_SOR_ACCURATE) sor->flags |= OBJECT_SOR_ACCURATE; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to set sor points * INPUT: sor sor * points * count amount of points * OUTPUT: FALSE if failed, else TRUE *************/ BOOL SORPoints(rsiCONTEXT *rc, OBJECT *sor, VECT2D *points, ULONG count) { int i; ((SOR*)sor)->FreeAllNodes(); for(i = count-1; i >= 0; i--) { if(!((SOR*)sor)->AddNode(&points[i])) return FALSE; } return TRUE; } /************* * DESCRIPTION: called to add an texture * INPUT: name texture name * surf surface * actor actor * OUTPUT: created texture *************/ TEXTURE *ITextureAdd(rsiCONTEXT *rc, char *name,SURFACE *surf) { TEXTURE *texture; texture = new IMAGINE_TEXTURE; if(!texture) return NULL; texture->SetName(name); // and add to surface texture list surf->AddTexture(texture); return texture; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set texture parameters * INPUT: texture texture * i number * param value * OUTPUT: - *************/ void ITextureParams(rsiCONTEXT *rc, TEXTURE *texture,int i,float param) { ((IMAGINE_TEXTURE*)texture)->params[i] = param; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add an texture * INPUT: name texture name * surf surface * actor actor * OUTPUT: created texture *************/ TEXTURE *RSTextureAdd(rsiCONTEXT *rc, char *name,SURFACE *surf) { TEXTURE *texture; texture = new RAYSTORM_TEXTURE; if(!texture) return NULL; texture->SetName(name); // and add to surface texture list surf->AddTexture(texture); return texture; } /************* * DESCRIPTION: called to set texture parameters * INPUT: texture texture * size size of parameter structure * params parameters * OUTPUT: FLASE if failed *************/ BOOL RSTextureParams(rsiCONTEXT *rc, TEXTURE *texture, int size, UBYTE *params) { ((RAYSTORM_TEXTURE*)texture)->datasize = size; ((RAYSTORM_TEXTURE*)texture)->data = new UBYTE[size]; if(!((RAYSTORM_TEXTURE*)texture)->data) return FALSE; memcpy(((RAYSTORM_TEXTURE*)texture)->data, params, size); return TRUE; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a texture axis definition to an object * INPUT: obj object * actor actor * prev previous created texture object (NULL for first) * OUTPUT: created texture object *************/ TEXTURE_OBJECT *TextureObjectAdd(rsiCONTEXT *rc, OBJECT *obj, ACTOR *actor, TEXTURE_OBJECT *prev) { TEXTURE_OBJECT *textureobj, *to; TEXTURE *t; textureobj = new TEXTURE_OBJECT; if(!textureobj) return NULL; textureobj->selected = TRUE; // and add to object texture list obj->AddTexture(textureobj); // search for the associated texture of the surface t = obj->surf->texture; to = obj->texture; while(t && to) { to = (TEXTURE_OBJECT*)to->GetNext(); if(to) t = (TEXTURE*)t->GetNext(); } textureobj->texture = t; return (TEXTURE_OBJECT*)textureobj; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set texture position * INPUT: texture texture * pos position * OUTPUT: - *************/ void TexturePos(rsiCONTEXT *rc, TEXTURE_OBJECT *texture,VECTOR *pos) { texture->pos = *pos; } /************* * DESCRIPTION: called to set texture orientation * INPUT: texture texture * orient_x,orient_y,orient_z orientation * OUTPUT: - *************/ void TextureOrient(rsiCONTEXT *rc, TEXTURE_OBJECT *texture,VECTOR *orient_x,VECTOR *orient_y,VECTOR *orient_z) { texture->orient_x = *orient_x; texture->orient_y = *orient_y; texture->orient_z = *orient_z; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to set texture size * INPUT: texture texture * size size * OUTPUT: - *************/ void TextureSize(rsiCONTEXT *rc, TEXTURE_OBJECT *texture,VECTOR *size) { texture->size = *size; texture->CalcBBox(); } /************* * DESCRIPTION: called to add a new brush, you have to call AddBrushObject too * INPUT: name brush name * surf surface * OUTPUT: - *************/ BRUSH *BrushAdd(rsiCONTEXT *rc, char *name,SURFACE *surf) { BRUSH *brush; brush = new BRUSH; if(!brush) return NULL; brush->SetName(name); // and add to surface brush list surf->AddBrush(brush); return brush; } /************* * DESCRIPTION: called to add a brush axis definition to an object * INPUT: obj object * actor actor * prev previous created brush object (NULL for first) * OUTPUT: created brushobject *************/ BRUSH_OBJECT *BrushObjectAdd(rsiCONTEXT *rc, OBJECT *obj, ACTOR *actor, BRUSH_OBJECT *prev) { BRUSH_OBJECT *brushobj, *bo; BRUSH *b; brushobj = new BRUSH_OBJECT; if(!brushobj) return NULL; brushobj->selected = TRUE; // and add to surface brush list obj->AddBrush(brushobj); // search for the associated brush of the surface b = obj->surf->brush; bo = obj->brush; while(b && bo) { bo = (BRUSH_OBJECT*)bo->GetNext(); if(bo) b = (BRUSH*)b->GetNext(); } brushobj->brush = b; return brushobj; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set brush flags * INPUT: brush brush * flags flags * OUTPUT: - *************/ void BrushFlags(rsiCONTEXT *rc, BRUSH *brush,ULONG flags) { switch(flags & LINK_BRUSH_MAP_MASK) { default: case LINK_BRUSH_MAP_COLOR: brush->type = BRUSH_MAP_COLOR; break; case LINK_BRUSH_MAP_REFLECTIFITY: brush->type = BRUSH_MAP_REFLECTIVITY; break; case LINK_BRUSH_MAP_FILTER: brush->type = BRUSH_MAP_FILTER; break; case LINK_BRUSH_MAP_ALTITUDE: brush->type = BRUSH_MAP_ALTITUDE; break; case LINK_BRUSH_MAP_SPECULAR: brush->type = BRUSH_MAP_SPECULAR; break; } switch(flags & LINK_BRUSH_WRAPMASK) { case LINK_BRUSH_WRAPX: brush->wrap = BRUSH_WRAP_X; break; case LINK_BRUSH_WRAPY: brush->wrap = BRUSH_WRAP_Y; break; case LINK_BRUSH_WRAPXY: brush->wrap = BRUSH_WRAP_XY; break; } brush->flags = 0; if(flags & LINK_BRUSH_SOFT) brush->flags |= BRUSH_SOFT; if(flags & LINK_BRUSH_REPEAT) brush->flags |= BRUSH_REPEAT; if(flags & LINK_BRUSH_MIRROR) brush->flags |= BRUSH_MIRROR; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to set brush position * INPUT: brush brush * pos position * OUTPUT: - *************/ void BrushPos(rsiCONTEXT *rc, BRUSH_OBJECT *brush,VECTOR *pos) { brush->pos = *pos; stack->MultVectStack(&brush->pos); } /************* * DESCRIPTION: called to set brush orientation * INPUT: orient_x,orient_y,orient_z orientation * OUTPUT: - *************/ void BrushOrient(rsiCONTEXT *rc, BRUSH_OBJECT *brush,VECTOR *orient_x,VECTOR *orient_y,VECTOR *orient_z) { MATRIX m, matrix; brush->orient_x = *orient_x; brush->orient_y = *orient_y; brush->orient_z = *orient_z; m.SetOMatrix(&brush->orient_x, &brush->orient_y, &brush->orient_z); matrix.MultMat(&m, &stack->matrix); SetVector(&brush->orient_x, matrix.m[5], matrix.m[9], matrix.m[13]); SetVector(&brush->orient_y, matrix.m[6], matrix.m[10], matrix.m[14]); SetVector(&brush->orient_z, matrix.m[7], matrix.m[11], matrix.m[15]); } /************* * DESCRIPTION: called to set brush size * INPUT: brush brush * size size * OUTPUT: - *************/ void BrushSize(rsiCONTEXT *rc, BRUSH_OBJECT *brush,VECTOR *size) { brush->size = *size; brush->CalcBBox(); } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set brush alignment * INPUT: brush brush * algin alignment * OUTPUT: - *************/ void BrushAlignment(rsiCONTEXT *rc, BRUSH_OBJECT *brush,VECTOR *align) { } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a camera * INPUT: - * OUTPUT: created camera or NULL if failed *************/ CAMERA *CameraAdd(rsiCONTEXT *rc) { CAMERA *camera; camera = new CAMERA; if(!camera) return NULL; camera->selected = TRUE; camera->external = EXTERNAL_CHILD; // mark as external object camera->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = (OBJECT*)camera; if(undo) undo->AddCreated(camera); return camera; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set camera flags * INPUT: camera camera * flags flags * OUTPUT: - *************/ void CameraFlags(rsiCONTEXT *rc, CAMERA *camera, ULONG flags) { if(flags & LINK_CAMERA_VFOV) camera->flags |= OBJECT_CAMERA_VFOV; if(flags & LINK_CAMERA_FOCUSTRACK) camera->flags |= OBJECT_CAMERA_FOCUSTRACK; if(flags & LINK_CAMERA_FASTDOF) camera->flags |= OBJECT_CAMERA_FASTDOF; } /************* * DESCRIPTION: called to set the focal distance of camera * INPUT: camera camera * fdist focal distance * OUTPUT: - *************/ void CameraFocalDist(rsiCONTEXT *rc, CAMERA *camera, float fdist) { camera->focaldist = fdist; } /************* * DESCRIPTION: called to set camera aperture * INPUT: camera camera * aperture aperture * OUTPUT: - *************/ void CameraAperture(rsiCONTEXT *rc, CAMERA *camera, float aperture) { camera->aperture = aperture; } /************* * DESCRIPTION: called to set camera field of view * INPUT: camera camera * hfov, vfov horizontal and vertical field of view * OUTPUT: - *************/ void CameraFOV(rsiCONTEXT *rc, CAMERA *camera, float hfov, float vfov) { camera->hfov = hfov; camera->vfov = vfov; } /************* * DESCRIPTION: called to set the light color * INPUT: light light * r,g,b color * OUTPUT: - *************/ void LightColor(rsiCONTEXT *rc, LIGHT *light, float r, float g, float b) { light->color.r = r; light->color.g = g; light->color.b = b; } /************* * DESCRIPTION: called to set the flags of the light * INPUT: light light * flags flags * OUTPUT: - *************/ void LightFlags(rsiCONTEXT *rc, LIGHT *light, ULONG flags) { if(flags & LINK_LIGHT_SHADOW) light->flags |= OBJECT_LIGHT_SHADOW; if(flags & LINK_LIGHT_FLARES) light->flags |= OBJECT_LIGHT_FLARES; if(flags & LINK_LIGHT_STAR) light->flags |= OBJECT_LIGHT_STAR; if(flags & LINK_LIGHT_SHADOWMAP) light->flags |= OBJECT_LIGHT_SHADOWMAP; if(flags & LINK_LIGHT_TRACKFALLOFF) light->flags |= OBJECT_LIGHT_TRACKFALLOFF; } /************* * DESCRIPTION: called to set the light falloff value * INPUT: light light * falloff falloff value * OUTPUT: - *************/ void LightFallOff(rsiCONTEXT *rc, LIGHT *light, float falloff) { light->falloff = falloff; } /************* * DESCRIPTION: called to set the light radius * INPUT: light light * r radius * OUTPUT: - *************/ void LightRadius(rsiCONTEXT *rc, LIGHT *light, float r) { light->r = r; } /************* * DESCRIPTION: called to set the size of the shadowmap * INPUT: light light * size size of shadowmap * OUTPUT: - *************/ void LightShadowMapSize(rsiCONTEXT *rc, LIGHT *light, int size) { light->shadowmapsize = size; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a pointlight * INPUT: - * OUTPUT: created pointlight or NULL if failed *************/ LIGHT *PointLightAdd(rsiCONTEXT *rc) { POINT_LIGHT *light; light = new POINT_LIGHT; if(!light) return NULL; light->selected = TRUE; light->external = EXTERNAL_CHILD; // mark as external object light->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = (OBJECT*)light; if(undo) undo->AddCreated(light); return light; } /************* * DESCRIPTION: called to add a spotlight * INPUT: - * OUTPUT: created spotlight or NULL if failed *************/ LIGHT *SpotLightAdd(rsiCONTEXT *rc) { SPOT_LIGHT *light; light = new SPOT_LIGHT; if(!light) return NULL; light->selected = TRUE; light->external = EXTERNAL_CHILD; // mark as external object light->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = (OBJECT*)light; if(undo) undo->AddCreated(light); return light; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set the light opening angle * INPUT: light light * angle opening angle * OUTPUT: - *************/ void SpotLightAngle(rsiCONTEXT *rc, LIGHT *light, float angle) { ((SPOT_LIGHT*)light)->angle = angle; } /************* * DESCRIPTION: called to set the light falloff radius * INPUT: light light * falloff falloff radius * OUTPUT: - *************/ void SpotLightFallOffRadius(rsiCONTEXT *rc, LIGHT *light, float falloff) { ((SPOT_LIGHT*)light)->falloff_radius = falloff; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a directional light * INPUT: - * OUTPUT: created directional light or NULL if failed *************/ LIGHT *DirectionalLightAdd(rsiCONTEXT *rc) { DIRECTIONAL_LIGHT *light; light = new DIRECTIONAL_LIGHT; if(!light) return NULL; light->selected = TRUE; light->external = EXTERNAL_CHILD; // mark as external object light->OBJECT::Insert(where,dir); dir = INSERT_VERT; where = (OBJECT*)light; if(undo) undo->AddCreated(light); return light; } /************* * DESCRIPTION: called to add a flare to a light source * INPUT: light light to add flare to * OUTPUT: created flare or NULL if failed *************/ FLARE *FlareAdd(rsiCONTEXT *rc, LIGHT *light) { FLARE *flare; flare = new FLARE; if(!flare) return NULL; flare->Append((SLIST**)&light->flares); return flare; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set the flare color * INPUT: flare pointer to current flare * r,g,b color * OUTPUT: - *************/ void FlareColor(rsiCONTEXT *rc, FLARE *flare, float r, float g, float b) { flare->color.r = r; flare->color.g = g; flare->color.b = b; } /************* * DESCRIPTION: called to set the flare position * INPUT: flare pointer to current flare * pos position * OUTPUT: - *************/ void FlarePosition(rsiCONTEXT *rc, FLARE *flare, float pos) { flare->pos = pos; } /************* * DESCRIPTION: called to set the flare radius * INPUT: flare pointer to current flare * r radius * OUTPUT: - *************/ void FlareRadius(rsiCONTEXT *rc, FLARE *flare, float r) { flare->radius = r; } /************* * DESCRIPTION: called to set the flare type * INPUT: flare pointer to current flare * type flare type * OUTPUT: - *************/ void FlareType(rsiCONTEXT *rc, FLARE *flare, ULONG type) { flare->type = type; } /************* * DESCRIPTION: called to set the flare interpolation function * INPUT: flare pointer to current flare * func function * OUTPUT: - *************/ void FlareFunction(rsiCONTEXT *rc, FLARE *flare, ULONG func) { flare->func = func; } /************* * DESCRIPTION: called to set the number of flare edges * INPUT: flare pointer to current flare * num number of edges * OUTPUT: - *************/ void FlareEdges(rsiCONTEXT *rc, FLARE *flare, ULONG num) { flare->edges = num; } /************* * DESCRIPTION: called to set the flare tilt angle * INPUT: flare pointer to current flare * tilt tilt angle * OUTPUT: - *************/ void FlareTilt(rsiCONTEXT *rc, FLARE *flare, float tilt) { flare->tilt = tilt; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to add a star to a light source * INPUT: light light to add star to * OUTPUT: created star or NULL if failed *************/ STAR *StarAdd(rsiCONTEXT *rc, LIGHT *light) { if(light->star) delete light->star; light->star = new STAR; if(!light->star) return NULL; return light->star; } #endif #if !defined(__MIXEDBINARY__) || defined(__PPC__) /************* * DESCRIPTION: called to set the star flags * INPUT: star pointer to current star * flags flags * OUTPUT: - *************/ void StarFlags(rsiCONTEXT *rc, STAR *star, ULONG flags) { if(flags & LINK_STAR_ENABLE) star->flags |= STAR_ENABLE; if(flags & LINK_STAR_HALOENABLE) star->flags |= STAR_HALOENABLE; if(flags & LINK_STAR_RANDOM) star->flags |= STAR_RANDOM; } /************* * DESCRIPTION: called to set the star radius * INPUT: star pointer to current star * r radius * OUTPUT: - *************/ void StarRadius(rsiCONTEXT *rc, STAR *star, float radius) { star->starradius = radius; } /************* * DESCRIPTION: called to set the star tilt angle * INPUT: star pointer to current star * tilt tilt angle * OUTPUT: - *************/ void StarTilt(rsiCONTEXT *rc, STAR *star, float tilt) { star->tilt = tilt; } /************* * DESCRIPTION: called to set the amount of star spikes * INPUT: star pointer to current star * spikes amount of spikes * OUTPUT: - *************/ void StarSpikes(rsiCONTEXT *rc, STAR *star, ULONG spikes) { star->spikes = spikes; } /************* * DESCRIPTION: called to set the halo radius of the star * INPUT: star pointer to current star * r halo radius * OUTPUT: - *************/ void StarHaloradius(rsiCONTEXT *rc, STAR *star, float r) { star->haloradius = r; } /************* * DESCRIPTION: called to set the inner halo radius of the star * INPUT: star pointer to current star * r inner halo radius * OUTPUT: - *************/ void StarInnerHaloradius(rsiCONTEXT *rc, STAR *star, float r) { star->innerhaloradius = r; } /************* * DESCRIPTION: called to set star spikes range * INPUT: star pointer to current star * range spikes range * OUTPUT: - *************/ void StarRange(rsiCONTEXT *rc, STAR *star, float range) { star->range = range; } #endif #ifndef __PPC__ /************* * DESCRIPTION: called to set the star intensities * INPUT: star pointer to current star * num amount of intensities * inte array of intensities * OUTPUT: TRUE if all ok else FALSE *************/ BOOL StarIntensities(rsiCONTEXT *rc, STAR *star, int num, float *inte) { if(star->intensities) delete star->intensities; star->intensities = new float[num]; if(!star->intensities) return FALSE; memcpy(star->intensities, inte, sizeof(float)*num); return TRUE; } #endif #if !defined(__MIXEDBINARY__) && !defined(__PPC__) OBJLINK link = { LINK_SCENARIO, ObjectBegin, ObjectEnd, ObjectSurface, ObjectName, ObjectAxis, NULL, // ObjectActor ObjectFlags, ObjectTrack, SurfaceAdd, SurfaceGetByName, SurfaceName, SurfaceSetFlags, SurfaceDiffuse, SurfaceSpecular, SurfaceAmbient, SurfaceReflect, SurfaceTranspar, SurfaceDiffTrans, SurfaceSpecTrans, SurfaceFoglen, SurfaceGetFoglen, SurfaceIndOfRefr, SurfaceRefPhong, SurfaceTransPhong, SurfaceTransluc, SurfaceCopy, SphereAdd, NULL, // SphereAxis TriangleAdd, TriangleAddPoints, TriangleAddEdges, TriangleSetEdges, TriangleSetEdgeFlags, NULL, // TrianglePoints TriangleVNorm, NULL, // TriangleMapping TriangleSurface, TriangleGetNext, MeshCreate, MeshAddScenario, NULL, // MeshAddRenderer BoxAdd, BoxBounds, NULL, // BoxPos CylinderAdd, NULL, // CylinderAxis CylinderFlags, ConeAdd, NULL, // ConeAxis ConeFlags, PlaneAdd, NULL, // PlaneAxis CSGAdd, CSGOperation, SORAdd, NULL, // SORAxis SORFlags, SORPoints, ITextureAdd, ITextureParams, RSTextureAdd, RSTextureParams, TextureObjectAdd, TexturePos, TextureOrient, TextureSize, BrushAdd, BrushObjectAdd, BrushFlags, BrushPos, BrushOrient, BrushSize, BrushAlignment, CameraAdd, CameraFlags, CameraFocalDist, CameraAperture, CameraFOV, NULL, // Light_Pos LightColor, LightFlags, LightFallOff, LightRadius, LightShadowMapSize, PointLightAdd, SpotLightAdd, SpotLightAngle, SpotLightFallOffRadius, DirectionalLightAdd, FlareAdd, FlareColor, FlarePosition, FlareRadius, FlareType, FlareFunction, FlareEdges, FlareTilt, StarAdd, StarFlags, StarRadius, StarTilt, StarSpikes, StarHaloradius, StarInnerHaloradius, StarRange, StarIntensities }; #endif // !__MIXEDBINARY__ || __PPC__
[ "andreasheu@gmail.com" ]
andreasheu@gmail.com
27601488220c3dd35e9632e3075bb65b6a65515d
e2e133e5bfa0537e76c376e1e0a670af3ee2a24a
/ed2016/src/Commands/DriveByLidar.h
c32f468ada806d63713c7aab486d2c62a44b6788
[]
no_license
team116/ed2016
7b196ec8c0f0b6b558863ef877b07dd352e9e96f
9bc51718b57a5cd1a84fc0b7795f4f84d0d95279
refs/heads/master
2021-01-20T17:26:32.392150
2016-12-02T01:44:06
2016-12-02T01:44:06
49,338,847
0
0
null
null
null
null
UTF-8
C++
false
false
448
h
#ifndef DriveByLidar_H #define DriveByLidar_H #include <CommandBase.h> #include <WPILib.h> class DriveByLidar: public CommandBase { public: //drive until the lidar is returning specified distance DriveByLidar(float, float err = 5.0); //distance in cm, error void Initialize(); void Execute(); bool IsFinished(); void End(); void Interrupted(); private: float target_distance; float distance; float error; bool interrupted; }; #endif
[ "rhealha13@gmail.com" ]
rhealha13@gmail.com
202e78783247b5c76867b83f708033a7c28db185
5ed2c620083bfdacd3a2cd69e68401f6e4519152
/Algorithms/CLRS-CPP/chapter8/UnitTest.h
1a54b1921df4d7317657c07884fc3dccb8fcd2c4
[]
no_license
plinx/CodePractices
03a4179a8bbb9653a40faf683676bc884b72bf75
966af4bf2bd5e69d7e5cfbe8ed67c13addcb61b9
refs/heads/master
2021-01-01T05:40:02.159404
2015-08-30T20:16:44
2015-08-30T20:16:44
33,318,262
3
0
null
null
null
null
UTF-8
C++
false
false
1,348
h
#ifndef UnitTest_h #define UnitTest_h //8.1-1 //minimun degree: 1 void test_count_sort() { int A[] = { 2, 5, 3, 0, 2, 3, 0, 3 }; int B[8] = { 0 }; count_sort(A, B, len(A), max_key(A) + 1); printf("test_count_sort : "); for (int i = 0; i < len(B) - 1; i++) printf("%d, ", B[i]); printf("%d\n", B[len(B) - 1]); } void e821() { int A[] = { 6, 0, 2, 0, 1, 3, 4, 6, 1, 3, 2 }; int B[11] = { 0 }; count_sort(A, B, len(A), max_key(A) + 1); printf("e821 : "); for (int i = 0; i < len(B) - 1; i++) printf("%d, ", B[i]); printf("%d\n", B[len(B) - 1]); } void e823() { int A[] = { 6, 0, 2, 0, 1, 3, 4, 6, 1, 3, 2 }; int B[11] = { 0 }; count_sort_up(A, B, len(A), max_key(A) + 1); printf("e823 : "); for (int i = 0; i < len(B) - 1; i++) printf("%d, ", B[i]); printf("%d\n", B[len(B) - 1]); } void test_radix_sort_int() { int A[] = { 421, 240, 35, 532, 305, 430, 134 }; radix_sort_int(A, len(A), 3); for (int i = 0; i < len(A) - 1; i++) printf("%d, ", A[i]); printf("%d\n", A[len(A) - 1]); } void test_radix_sort_str() { std::string str[] = { "COW", "DOG", "SEA", "RUG", "ROW", "MOB", "BOX", "TAB", "BAR", "EAR", "TAR", "DIG", "BIG", "TEA", "NOW", "FOX" }; radix_sort_str(str, len(str), 3); for (int i = 0; i < len(str) - 1; i++) printf("%s, ", str[i].c_str()); printf("%s\n", str[len(str) - 1].c_str()); } #endif
[ "plinux@qq.com" ]
plinux@qq.com
fd3792d5f9d48e4f8209db2716859b72dff1589d
286ceb0c47ed85a1adb49f7afc8ab167505bc254
/Aserve/source/OldSource/model/AserveModel.h
cae9003b612a33b4e2a9505af819db1fe837b05f
[]
no_license
tommymitch/Aserve
9c61ca5ae6d9102fd4c49b614623a454784b4fcf
a9d8b03778743c7aae4044ca4f09c51492737a01
refs/heads/master
2021-01-10T20:28:16.116285
2016-10-10T20:27:36
2016-10-10T20:27:36
2,150,075
0
0
null
null
null
null
UTF-8
C++
false
false
720
h
/* * AserveModel.h * Aserve * * Created by tjmitche on 06/08/2011. * Copyright 2011 __MyCompanyName__. All rights reserved. * */ #ifndef H_ASERVEMODEL #define H_ASERVEMODEL #include "../../JuceLibraryCode/JuceHeader.h" /** Top level of the model class where all internal data is stored */ class AserveModel { public: /** Gui constructor */ AserveModel(); /** Gui destructor */ ~AserveModel(); /** Returns the value tree object */ ValueTree* getValueTree() { return &valueTree; } private: ValueTree valueTree; //where all the values are stored JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(AserveModel) }; #endif //H_ASERVEMODEL
[ "teamaxe@hotmail.com" ]
teamaxe@hotmail.com
4efb7dae7017e112fee321af8bcdf2a5209cadf5
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_repos_function_3535_git-2.13.6.cpp
5beef7ecae13a26aae35e9f18f8ca3d33c6e2a61
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
168
cpp
int parse_oid_hex(const char *hex, struct object_id *oid, const char **end) { int ret = get_oid_hex(hex, oid); if (!ret) *end = hex + GIT_SHA1_HEXSZ; return ret; }
[ "993273596@qq.com" ]
993273596@qq.com
7d637647076d0c5571729d42ef93e3b269ec26b9
f58b24f4c15152d9b30e631014494d2042673d3b
/FILE SOURCE/Lesson9.SpriteAndTime/Explosion.h
f943018e116244ed5a1c03164e265217d10c6cbe
[]
no_license
dotrunghieu0903/HK9
34d5238b986168aab8b8723036a60c4577601a7c
e6dc3539a6ab73c21a5d969814073e562507e8bd
refs/heads/master
2020-06-24T20:41:12.345847
2016-11-23T23:59:43
2016-11-23T23:59:43
74,622,750
0
0
null
null
null
null
UTF-8
C++
false
false
553
h
#pragma once #include "Sprite.h" ref class Explosion: public Sprite { internal: Explosion( _In_ int id, _In_ D2D1_POINT_2F position, _In_ ID2D1Device* d2dDevice, _In_ ID2D1DeviceContext* d2dContext, _In_ IWICImagingFactory* wicFactory ); virtual void Render() override; void StartTimer(); void UpdateTimer(); void IncreaseFrame(); private: int m_frameRate; LARGE_INTEGER m_frequency; LARGE_INTEGER m_startTime; LARGE_INTEGER m_currentTime; LARGE_INTEGER m_elapsedMicroseconds; };
[ "dotrunghieu0903@gmail.com" ]
dotrunghieu0903@gmail.com
c9ed53c613434ec7ef0ea0e42577fc14d65484c3
66a8e79ad75e601e4330d122fc1c9f23ea56fb10
/code/userprog/processmanager.h
cb37c69383e749ac181d6af08639598195e0a62d
[ "MIT-Modern-Variant" ]
permissive
justintjoa/170proj3
77af974ed6a27617ae3e85510e4486737761104c
4c21fa4d7e2c12164e090937f427da422680ad44
refs/heads/master
2021-01-07T18:05:04.884304
2020-02-21T07:34:46
2020-02-21T07:34:46
241,777,030
0
0
NOASSERTION
2020-02-21T07:34:48
2020-02-20T02:42:10
C++
UTF-8
C++
false
false
1,060
h
/* * ProcessManager header * * This class keeps track of the current PCBs and manages their creation and * deletion. */ #ifndef PROCESS_MANAGER_H #define PROCESS_MANAGER_H #define MAX_PROCESSES 32 #include "pcb.h" #include "synch.h" class AddrSpace; class ProcessManager { public: ProcessManager(); ~ProcessManager(); int getPID(); // allocates free PID to a new addrspace int getStatus(int pid); // allows processes to wait on others void clearPID(int); // frees the specified PID void addProcess(PCB* pcb, int pid); void broadcast(int pid); void join(int pid); private: BitMap processesBitMap; PCB** pcbList; // PID is array index Condition** conditionList; // allows controlling join/exit Lock** lockList; // also for join/exit AddrSpace** addrSpaceList; int pcbStatuses[MAX_PROCESSES]; int processesWaitingOnPID[MAX_PROCESSES]; int numAvailPIDs; }; #endif // PROCESS_MANAGER_H
[ "justintjoa@umail.ucsb.edu" ]
justintjoa@umail.ucsb.edu
e0364d3b920db55f27676a236edeb7dbd9cd042d
f79dec3c4033ca3cbb55d8a51a748cc7b8b6fbab
/ham/linpsk/files/pkgsrc_fixes.h
3901ccc2da30b53d8624a062b7d9b8da4f601f39
[]
no_license
jsonn/pkgsrc
fb34c4a6a2d350e8e415f3c4955d4989fcd86881
c1514b5f4a3726d90e30aa16b0c209adbc276d17
refs/heads/trunk
2021-01-24T09:10:01.038867
2017-07-07T15:49:43
2017-07-07T15:49:43
2,095,004
106
47
null
2016-09-19T09:26:01
2011-07-23T23:49:04
Makefile
UTF-8
C++
false
false
497
h
#ifndef LINPSK_PKGSRC_FIXES_H #define LINPSK_PKGSRC_FIXES_H #ifdef __NetBSD__ # include <sys/param.h> #endif #if !(defined(__NetBSD__) && __NetBSD_Version__ < 200000000) # define HAVE_STRUCT_SCHED_PARAM #endif #if !(defined(__GNUC__) && (__GNUC__ < 3)) # define HAVE_STD_VECTOR_AT #endif #ifdef __cplusplus template <class T> typename T::reference at_replacement(T &c, const typename T::size_type &i) { # ifdef HAVE_STD_VECTOR_AT return c.at(i); # else return c[i]; # endif } #endif #endif
[ "rillig" ]
rillig
05a8939838a4882cea7b053653a0f1e98d9e0b54
7c12fd3378de123a5aa12f08d3f8178d588a23ed
/gpiopmw.h
991c959393b038d26538791366b893c3143533de
[]
no_license
mudlleman/25225582
d3e1332b5fa5b10d04cf07f63a209d2d3ff7f3fb
92c8e5846f7223e02ca58a03590350d0cd728fc7
refs/heads/master
2021-08-19T07:21:26.865803
2017-11-25T05:51:57
2017-11-25T05:51:57
111,494,374
0
0
null
null
null
null
UTF-8
C++
false
false
563
h
#ifndef GPIOPMW_H #define GPIOPMW_H #include <QObject> #include <QThread> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <termios.h> #include <errno.h> class GpioPmw : public QThread { Q_OBJECT public: explicit GpioPmw(QObject *parent = 0); signals: private: int m_fd; int m_sleep; public: void startrun(QString gpioadress); void SetIntal(int intral); void run(); public slots: }; #endif // GPIOPMW_H
[ "25525582@qq.com" ]
25525582@qq.com
a9dc243499e748fb2cec6805218b52daaddeb036
f0cb939867f21e53fad26ae4969c69ba0f99cd99
/debris/fas/jsonrpc/method/local/result.hpp
a3b84136ad79ed8d57a2463bb0483fdba5952f71
[]
no_license
migashko/faslib-sandbox
238550c6dce4866392a1527dfee030a6b593dd71
a61b49cbab0e84a9440a1ad5d350ccbaff75995e
refs/heads/master
2021-01-23T03:48:38.525241
2013-11-04T03:19:45
2013-11-04T03:19:45
4,808,593
0
1
null
null
null
null
UTF-8
C++
false
false
839
hpp
#ifndef FAS_JSONRPC_METHOD_LOCAL_RESULT_HPP #define FAS_JSONRPC_METHOD_LOCAL_RESULT_HPP #include <fas/jsonrpc/method/local/result/tags.hpp> #include <fas/jsonrpc/method/local/result/ad_result.hpp> #include <fas/jsonrpc/method/local/result/ad_result_fail.hpp> #include <fas/jsonrpc/method/local/result/ad_invalid_result_id.hpp> #include <fas/serialization/json/meta/null.hpp> #include <fas/aop/advice.hpp> #include <fas/aop/aspect.hpp> #include <fas/type_list/type_list_n.hpp> namespace fas{ namespace jsonrpc{ namespace local{ template< typename V = empty_type, typename J = ::fas::json::null > struct result: ::fas::aspect< typename type_list_n< advice< _result_, ad_result< V, J > >, advice< _result_fail_, ad_result_fail >, advice< _invalid_result_id_, ad_invalid_result_id > >::type > {}; }}} #endif
[ "migashko@gmail.com" ]
migashko@gmail.com
3f82261514de277a6e8bf8161be4264e95103292
64713f85cf3468d671ad1a4aa5123e8f11069834
/src/registerDynamicSymbol.cpp
77746bc402011ad3ee9df77571949bea13bd4aa9
[]
no_license
jdtuck/fdasrvf_R
b730300b9c19b136da724b9528bcf1637bc4423b
cd820a02047844e2b19c9d78b365f8c88c25de47
refs/heads/master
2023-06-24T01:30:11.250101
2023-06-18T02:17:50
2023-06-18T02:17:50
46,059,291
11
13
null
2023-05-11T23:17:26
2015-11-12T14:46:14
C++
UTF-8
C++
false
false
225
cpp
// RegisteringDynamic Symbols #include <R.h> #include <Rinternals.h> #include <R_ext/Rdynload.h> void R_init_fdasrvf(DllInfo* info) { R_registerRoutines(info, NULL, NULL, NULL, NULL); R_useDynamicSymbols(info, TRUE); }
[ "jdtuck@sandia.gov" ]
jdtuck@sandia.gov
a935a33fb38a3c0128e08f3a282c2910b78ff279
b2605c93db0c5b3dd0ac7f7cfa80674e82ff9439
/lib/parsers.hh
f6f0d5eac5f6b5aa4aa89dc9f15cff0298273c41
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
adnbsr/khmer
76728708b60a5662e93b83c6559502d31b92445d
64612c1140d17c0988fa01f3c6c627913b509700
refs/heads/master
2021-01-18T13:20:23.385284
2013-08-01T21:13:42
2013-08-01T21:13:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,668
hh
#ifndef PARSERS_H #define PARSERS_H #include <iostream> #include <string> #include <string.h> #include <fstream> #include <assert.h> #include "zlib-1.2.3/zlib.h" struct Read { std::string name; std::string seq; //std::string quality; }; class IParser { public: virtual Read get_next_read() = 0; virtual bool is_complete() = 0; virtual ~IParser() { } static IParser* get_parser(const std::string &inputfile); }; class FastaParser : public IParser { private: std::ifstream infile; Read current_read; std::string next_name; bool one_read_left; public: FastaParser(const std::string &inputfile); ~FastaParser() { infile.close(); } Read get_next_read(); bool is_complete() { return !one_read_left && infile.eof(); } }; class FastaGzParser : public IParser { private: gzFile infile; Read current_read; std::string next_name; bool one_read_left; public: FastaGzParser(const std::string &inputfile); ~FastaGzParser() { gzclose(infile); } Read get_next_read(); bool is_complete() { return !one_read_left && gzeof(infile); } }; class FastqParser : public IParser { private: std::ifstream infile; Read current_read; public: FastqParser(const std::string &inputfile); ~FastqParser() { infile.close(); } Read get_next_read(); bool is_complete() { return infile.eof(); } }; class FastqGzParser : public IParser { private: gzFile infile; Read current_read; bool one_read_left; public: FastqGzParser(const std::string &inputfile); ~FastqGzParser() { gzclose(infile); } Read get_next_read(); bool is_complete() { return !one_read_left && gzeof(infile); } }; #endif
[ "jason.pell@gmail.com" ]
jason.pell@gmail.com
61aa3158aad7ca4301682d0cc09a8f5685a2936e
29b05376289c8a4fd3ec7e3dd2b58f4c81ba3751
/esp8266/ws-pio-0/src/scontrol.h
7e819618381048aee7b642f94106e4e9051ae739
[]
no_license
punitsoni/scratch
30fbc01cbfb2e346c08549433d764e15428ba8b9
91cb0a01c09e752e4c3806d5030a4a5b3475c0d0
refs/heads/master
2022-07-08T12:14:56.537562
2020-09-02T07:18:32
2020-09-02T07:18:32
43,860,285
0
0
null
2022-06-22T02:40:26
2015-10-08T03:30:44
JavaScript
UTF-8
C++
false
false
928
h
#include <WebSocketsServer.h> #include <cstdint> #include <Arduino.h> #include <Hash.h> namespace neptune { struct Client { uint8_t id; bool connected; }; /* singleton class to represent the controller */ class SwController { public: void update(); void start(); static SwController *getInstance(); private: static SwController *obj; static const int MAX_CLIENTS = 1; static void websocketEventCb(uint8_t num, WStype_t type, uint8_t * payload, size_t length); uint32_t last_update_ms = 0; WebSocketsServer server; int num_clients = 0; int led_pin = LED_BUILTIN; int button_pin = 1; bool sw_state = false; Client clients[MAX_CLIENTS]; SwController(); void updateSwitch(bool val); void onMessage(uint8_t client_id, const String& message); void onClientConnected(uint8_t client_id); void onClientDisconnected(uint8_t client_id); }; };
[ "punits@quicinc.com" ]
punits@quicinc.com
3a875caa01a26c5a96d8a45a9c62eb37cad93b86
ceb18dbff900d48d7df6b744d1cd167c7c9eb5c5
/thirdparty/uilib/DM/Samples/QQDemo/inc/widget/DUIWebkit.h
1ebf14a2e4e250cc4b76ae88f6e92496e7a38cab
[]
no_license
15831944/sourcecode
6bb5f74aac5cf1f496eced1b31a0fd4cf3271740
412f0ba73dd7fb179a92d2d0635ddbf025bfe6d4
refs/heads/master
2021-12-27T20:07:32.598613
2018-01-15T14:38:35
2018-01-15T14:38:35
null
0
0
null
null
null
null
GB18030
C++
false
false
3,565
h
//------------------------------------------------------- // Copyright (c) DuiMagic // All rights reserved. // // File Name: DUIWebkit.h // File Des: WebKit // File Summary: // Cur Version: 1.0 // Author: // Create Data: // History: // <Author> <Time> <Version> <Des> // guoyou 2014-11-24 1.0 //-------------------------------------------------------- #pragma once #include "DMWebkit.h" #include <Imm.h> #pragma comment(lib,"imm32.lib") // WebKit的辅助类 class DUIWebkitHelper:public DMSingletonT<DUIWebkitHelper>,public DMRefNum { public: DUIWebkitHelper(); virtual~DUIWebkitHelper(); typedef void (*FunDMInit)(); typedef void (*FunDMShutdown)(); typedef IDMWebViewPtr (*FunDMCreateWebView)(); typedef void (*FunWkeDestroyWebView)(IDMWebViewPtr); public: HINSTANCE m_hDMWebkit; FunDMInit m_funDMInit; FunDMCreateWebView m_funDMCreateWebView; FunWkeDestroyWebView m_funDMDestroyWebView; FunDMShutdown m_funDMShutdown; }; // WebKit const char TM_TICKER = 1; class DUIWebKit : public DUIWindow, protected DUIWndWebHost, protected IDMIdleHandler { DMDECLARE_CLASS_NAME(DUIWebKit, L"Webkit",DMREG_Window) public: DUIWebKit(void); ~DUIWebKit(void); void Init(); void UnInit(); //--------------------------------------------------- // Function Des: 对外接口 //--------------------------------------------------- IDMWebViewPtr GetWebView(); void Zoom(bool zoomIn); public: DM_BEGIN_MSG_MAP() DM_MSG_WM_PAINT(DM_OnPaint) MSG_WM_CREATE(OnCreate) MSG_WM_DESTROY(OnDestroy) MSG_WM_SIZE(OnSize) DM_MSG_WM_TIMER(OnDUITimer) DM_MSG_WM_SETFOCUS(DM_OnSetFocus) DM_MSG_WM_KILLFOCUS(DM_OnKillFocus) MESSAGE_RANGE_HANDLER_EX(WM_MOUSEFIRST,WM_MBUTTONDBLCLK,OnMouseEvent) MESSAGE_HANDLER_EX(WM_MOUSEWHEEL,OnMouseWheel) MESSAGE_HANDLER_EX(WM_KEYDOWN,OnKeyDown) MESSAGE_HANDLER_EX(WM_KEYUP,OnKeyUp) MESSAGE_HANDLER_EX(WM_CHAR,OnChar) MESSAGE_HANDLER_EX(WM_IME_STARTCOMPOSITION,OnImeStartComposition) DM_END_MSG_MAP() public: //--------------------------------------------------- // Function Des: DUI的消息分发系列函数 //--------------------------------------------------- int OnCreate(LPVOID); void OnDestroy(); void DM_OnPaint(IDMCanvas *pCanvas); void OnSize(UINT nType, CSize size); LRESULT OnMouseEvent(UINT uMsg, WPARAM wParam,LPARAM lParam); LRESULT OnMouseWheel(UINT uMsg, WPARAM wParam,LPARAM lParam); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam,LPARAM lParam); LRESULT OnKeyUp(UINT uMsg, WPARAM wParam,LPARAM lParam); LRESULT OnChar(UINT uMsg, WPARAM wParam,LPARAM lParam); LRESULT OnImeStartComposition(UINT uMsg, WPARAM wParam,LPARAM lParam); void DM_OnSetFocus(); void DM_OnKillFocus(); void OnDUITimer(char id); public: //--------------------------------------------------- // Function Des: 重载 //--------------------------------------------------- virtual DMCode DV_OnSetCursor(const CPoint &pt); public: bool OnAttrUrl(LPCWSTR lpszValue, bool bLoadXml); public: DM_BEGIN_ATTRIBUTES() DM_CUSTOM_ATTRIBUTE(L"url",OnAttrUrl) DM_INT_ATTRIBUTE(L"alpha",m_byAlpha,TRUE) DM_bool_ATTRIBUTE(L"enablezoom",m_bEnableZoom, TRUE) DM_END_ATTRIBUTES() protected: virtual void DUIWndUpdate(const HDC hdc,int x, int y, int cx, int cy); virtual BOOL OnIdle(); public: IDMWebViewPtr m_pWebView; CStringW m_strUrl; BYTE m_byAlpha; bool m_bEnableZoom; DMSmartPtrT<DUIWebkitHelper> m_pHelper; };
[ "mushilanxin@163.com" ]
mushilanxin@163.com
2a50c7ea656577693034d84532129089e1cfe7b5
551ddfdc5c38cb235f4a7492071972b73058b12f
/cpp/godot-cpp/include/gen/SceneTree.hpp
87f8c9cc46c52f90afe945f8f28e556ab5fed85c
[ "MIT" ]
permissive
GDNative-Gradle/proof-of-concept
e83c34690ebd07753c401a0d8a249ac149aca5b6
162f467430760cf959f68f1638adc663fd05c5fd
refs/heads/master
2021-03-09T23:22:03.345010
2020-03-11T00:11:06
2020-03-11T00:11:06
246,392,644
1
0
null
null
null
null
UTF-8
C++
false
false
6,761
hpp
#ifndef GODOT_CPP_SCENETREE_HPP #define GODOT_CPP_SCENETREE_HPP #include <gdnative_api_struct.gen.h> #include <stdint.h> #include <core/CoreTypes.hpp> #include <core/Ref.hpp> #include "MainLoop.hpp" namespace godot { class Node; class PackedScene; class SceneTreeTimer; class MultiplayerAPI; class NetworkedMultiplayerPeer; class Viewport; class Object; class SceneTree : public MainLoop { struct ___method_bindings { godot_method_bind *mb__change_scene; godot_method_bind *mb__connected_to_server; godot_method_bind *mb__connection_failed; godot_method_bind *mb__network_peer_connected; godot_method_bind *mb__network_peer_disconnected; godot_method_bind *mb__server_disconnected; godot_method_bind *mb_call_group; godot_method_bind *mb_call_group_flags; godot_method_bind *mb_change_scene; godot_method_bind *mb_change_scene_to; godot_method_bind *mb_create_timer; godot_method_bind *mb_get_current_scene; godot_method_bind *mb_get_edited_scene_root; godot_method_bind *mb_get_frame; godot_method_bind *mb_get_multiplayer; godot_method_bind *mb_get_network_connected_peers; godot_method_bind *mb_get_network_peer; godot_method_bind *mb_get_network_unique_id; godot_method_bind *mb_get_node_count; godot_method_bind *mb_get_nodes_in_group; godot_method_bind *mb_get_root; godot_method_bind *mb_get_rpc_sender_id; godot_method_bind *mb_has_group; godot_method_bind *mb_has_network_peer; godot_method_bind *mb_is_debugging_collisions_hint; godot_method_bind *mb_is_debugging_navigation_hint; godot_method_bind *mb_is_input_handled; godot_method_bind *mb_is_multiplayer_poll_enabled; godot_method_bind *mb_is_network_server; godot_method_bind *mb_is_paused; godot_method_bind *mb_is_refusing_new_network_connections; godot_method_bind *mb_is_using_font_oversampling; godot_method_bind *mb_notify_group; godot_method_bind *mb_notify_group_flags; godot_method_bind *mb_queue_delete; godot_method_bind *mb_quit; godot_method_bind *mb_reload_current_scene; godot_method_bind *mb_set_auto_accept_quit; godot_method_bind *mb_set_current_scene; godot_method_bind *mb_set_debug_collisions_hint; godot_method_bind *mb_set_debug_navigation_hint; godot_method_bind *mb_set_edited_scene_root; godot_method_bind *mb_set_group; godot_method_bind *mb_set_group_flags; godot_method_bind *mb_set_input_as_handled; godot_method_bind *mb_set_multiplayer; godot_method_bind *mb_set_multiplayer_poll_enabled; godot_method_bind *mb_set_network_peer; godot_method_bind *mb_set_pause; godot_method_bind *mb_set_quit_on_go_back; godot_method_bind *mb_set_refuse_new_network_connections; godot_method_bind *mb_set_screen_stretch; godot_method_bind *mb_set_use_font_oversampling; }; static ___method_bindings ___mb; public: static void ___init_method_bindings(); static inline const char *___get_class_name() { return (const char *) "SceneTree"; } static inline Object *___get_from_variant(Variant a) { godot_object *o = (godot_object*) a; return (o) ? (Object *) godot::nativescript_1_1_api->godot_nativescript_get_instance_binding_data(godot::_RegisterState::language_index, o) : nullptr; } // enums enum StretchAspect { STRETCH_ASPECT_IGNORE = 0, STRETCH_ASPECT_KEEP = 1, STRETCH_ASPECT_KEEP_WIDTH = 2, STRETCH_ASPECT_KEEP_HEIGHT = 3, STRETCH_ASPECT_EXPAND = 4, }; enum GroupCallFlags { GROUP_CALL_DEFAULT = 0, GROUP_CALL_REVERSE = 1, GROUP_CALL_REALTIME = 2, GROUP_CALL_UNIQUE = 4, }; enum StretchMode { STRETCH_MODE_DISABLED = 0, STRETCH_MODE_2D = 1, STRETCH_MODE_VIEWPORT = 2, }; // constants static SceneTree *_new(); // methods void _change_scene(const Node *arg0); void _connected_to_server(); void _connection_failed(); void _network_peer_connected(const int64_t arg0); void _network_peer_disconnected(const int64_t arg0); void _server_disconnected(); Variant call_group(const String group, const String method, const Array& __var_args = Array()); Variant call_group_flags(const int64_t flags, const String group, const String method, const Array& __var_args = Array()); Error change_scene(const String path); Error change_scene_to(const Ref<PackedScene> packed_scene); Ref<SceneTreeTimer> create_timer(const real_t time_sec, const bool pause_mode_process = true); Node *get_current_scene() const; Node *get_edited_scene_root() const; int64_t get_frame() const; Ref<MultiplayerAPI> get_multiplayer() const; PoolIntArray get_network_connected_peers() const; Ref<NetworkedMultiplayerPeer> get_network_peer() const; int64_t get_network_unique_id() const; int64_t get_node_count() const; Array get_nodes_in_group(const String group); Viewport *get_root() const; int64_t get_rpc_sender_id() const; bool has_group(const String name) const; bool has_network_peer() const; bool is_debugging_collisions_hint() const; bool is_debugging_navigation_hint() const; bool is_input_handled(); bool is_multiplayer_poll_enabled() const; bool is_network_server() const; bool is_paused() const; bool is_refusing_new_network_connections() const; bool is_using_font_oversampling() const; void notify_group(const String group, const int64_t notification); void notify_group_flags(const int64_t call_flags, const String group, const int64_t notification); void queue_delete(const Object *obj); void quit(const int64_t exit_code = -1); Error reload_current_scene(); void set_auto_accept_quit(const bool enabled); void set_current_scene(const Node *child_node); void set_debug_collisions_hint(const bool enable); void set_debug_navigation_hint(const bool enable); void set_edited_scene_root(const Node *scene); void set_group(const String group, const String property, const Variant value); void set_group_flags(const int64_t call_flags, const String group, const String property, const Variant value); void set_input_as_handled(); void set_multiplayer(const Ref<MultiplayerAPI> multiplayer); void set_multiplayer_poll_enabled(const bool enabled); void set_network_peer(const Ref<NetworkedMultiplayerPeer> peer); void set_pause(const bool enable); void set_quit_on_go_back(const bool enabled); void set_refuse_new_network_connections(const bool refuse); void set_screen_stretch(const int64_t mode, const int64_t aspect, const Vector2 minsize, const real_t shrink = 1); void set_use_font_oversampling(const bool enable); template <class... Args> Variant call_group(const String group, const String method, Args... args){ return call_group(group,method, Array::make(args...)); } template <class... Args> Variant call_group_flags(const int64_t flags, const String group, const String method, Args... args){ return call_group_flags(flags,group,method, Array::make(args...)); } }; } #endif
[ "adamwbrown@gmail.com" ]
adamwbrown@gmail.com
3dfef02c0fdbb668d09c194c711cc90068b656a2
6f021d80f2847fa13129dc1652eb55c6ffbe24ec
/Bit_MFC/CView.cpp
e8d33eae8b552f7b4ab8aba45207b9df8fcdff9b
[]
no_license
ksjang1234/Bit_MFC
4e5f41a2f23fa7edb9b6daf2478478b4ba907480
b6fbc6eeb44b3ee044a131fcf121735f0a924c98
refs/heads/master
2020-04-08T18:48:20.096104
2018-11-30T04:38:59
2018-11-30T04:38:59
159,625,792
0
0
null
null
null
null
UTF-8
C++
false
false
1,417
cpp
#include <windows.h> #include <math.h> #include "stdafx.h" #include "CView.h" #include "DC.h" CView app; BEGIN_MESSAGE_MAP(CView) { WM_CREATE, &CView::OnCreate }, { WM_PAINT, &CView::OnDraw }, { WM_DESTROY, &CView::OnDestroy }, { WM_SIZE, &CView::OnSize }, { WM_LBUTTONDOWN, &CView::OnLButtonDown }, END_MESSAGE_MAP() LRESULT CView::OnCreate(WPARAM wParam, LPARAM lParam) { return 0L; } LRESULT CView::OnDraw(WPARAM wParam, LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; RECT rect; hdc = BeginPaint(hwnd, &ps); GetClientRect(hwnd, &rect); DrawText(hdc, "Hello Windows!", -1, &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER); EndPaint(hwnd, &ps); return 0L; } LRESULT CView::OnDestroy(WPARAM wParam, LPARAM lParam) { PostQuitMessage(0); return 0L; } LRESULT CView::OnLButtonDown(WPARAM wParam, LPARAM lParam) { int i; //hdc = GetDC(hwnd); CDC dc(this); //MoveToEx(hdc, 0, cyClient / 2, NULL); dc.MoveToEx(0, cyClient / 2, NULL); //LineTo(hdc, cxClient, cyClient / 2); dc.LineTo(cxClient, cyClient / 2); for (i = 0; i < NUM; i++) { pt[i].x = i * cxClient / NUM; pt[i].y = (int)(cyClient / 2 * (1 - sin(TWOPI * i / NUM))); } //Polyline(hdc, pt, NUM); dc.Polyline(pt, NUM); //ReleaseDC(hwnd, hdc); return 0L; } LRESULT CView::OnSize(WPARAM wParam, LPARAM lParam) { cxClient = LOWORD(lParam); cyClient = HIWORD(lParam); return 0L; }
[ "ksjang1234@naver.com" ]
ksjang1234@naver.com
8a6d8b717903806c7e3281bf3391cd4ceb646dc2
6bf47fbfba9c064a130ee33abba9a0032dd469f9
/CPP04/ex03/AMateria.hpp
682bbead0404c61a39df125fd3532e7862cf11df
[]
no_license
Kirakise/CPPModules
0713e74687f2e42c89c220133283b327ce1e2d99
3d4f09c09c11a700322a5d185e8cebe68fad2982
refs/heads/master
2023-08-30T15:37:52.968582
2021-11-01T19:18:22
2021-11-01T19:18:22
376,305,632
0
0
null
null
null
null
UTF-8
C++
false
false
391
hpp
#pragma once #include <string> #include "ICharacter.hpp" class ICharacter; class AMateria{ protected: std::string type; unsigned int _xp; public: AMateria(std::string const &type); virtual ~AMateria(); std::string const & getType() const; unsigned int getXP() const; virtual AMateria* clone() const = 0; virtual void use(ICharacter& target) = 0; };
[ "rcaraway@oa-j1.msk.21-school.ru" ]
rcaraway@oa-j1.msk.21-school.ru
ea6ca0fe57844e94fdf6e325f20122f73b574b8e
ec6d26381788cd8763c6be948ac07a2fbd8b4250
/Codes/DFSTransform.cpp
d3aee78cd784bac72750357fc4f1205dc7c6d7d6
[]
no_license
YipZLF/OJSurvivalTutorial
300604b746c51652c063d6003464ec43ca19e33d
06d7b85246eb24991eb262c6ad55e9266e76cbd9
refs/heads/master
2020-04-19T08:59:33.953432
2019-03-04T15:20:55
2019-03-04T15:20:55
168,096,394
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
#include<iostream> #include<cstdio> using namespace std; struct node{ int val; node* pL,*pR; }; node Tree[10000]; int seq[10000]; int main() { freopen("DFSTransform.in","r",stdin); int i = 0,offset = 0; while(scanf("%d ",seq+i++)==1){} offset = i/2; }
[ "yipzlf@pku.edu.cn" ]
yipzlf@pku.edu.cn
5cc661e8f5caaf15eb2ca41481024061d44390a0
17cb5c1ab291f43622b29fbe2c263a0891c02140
/py_fluent/leetCode/01.cpp
47df4eb6d5aa8d2ecaebaa096557d6343e3dd289
[]
no_license
RownH/MyPy
97f0d89cd7d9e16497130557685dbd0217f8cf28
50542d832096420f0a2661fa8af26dc216c08636
refs/heads/master
2020-06-20T16:53:12.547836
2020-05-23T16:03:52
2020-05-23T16:03:52
197,184,018
0
0
null
null
null
null
UTF-8
C++
false
false
720
cpp
/* 题目描述 评论 (128) 题解(266) 提交记录 面试题 01.01. 判定字符是否唯一 实现一个算法,确定一个字符串 s 的所有字符是否全都不同。 示例 1: 输入: s = "leetcode" 输出: false 示例 2: 输入: s = "abc" 输出: true 限制: */ class Solution { public: bool isUnique(string astr) { if (astr.size() == 0)return 1; int state = 0; for (int i = 0; i < astr.size(); i++) { int newState = 1 << (astr[i] - 'a'); if ((state & newState )== newState) { return false; } else { state |= newState; } } return true; } };
[ "799698579@qq.com" ]
799698579@qq.com
a824cb2121ff6ebebe3be83a59b17dd489a0793e
8ede9eb3ba420d17fcf60f7b57613d7c665c7efa
/src/qt/networkstyle.cpp
eac19b8fad6d33f5b8ab88c2872e4cf143391600
[ "MIT" ]
permissive
flabourascoinfoundation/Flabourascoin
e545bcb65a7f1d94b1e9d6e93d9a80aa0fa863e7
4847bd6e4e039737c2c0ad514901c8407fbc9575
refs/heads/main
2023-05-12T11:16:07.891932
2021-06-03T07:41:50
2021-06-03T07:41:50
372,016,268
0
0
MIT
2021-06-02T22:11:10
2021-05-29T16:08:35
C++
UTF-8
C++
false
false
3,176
cpp
// Copyright (c) 2014-2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <qt/networkstyle.h> #include <qt/guiconstants.h> #include <QApplication> static const struct { const char *networkId; const char *appName; const int iconColorHueShift; const int iconColorSaturationReduction; const char *titleAddText; } network_styles[] = { {"main", QAPP_APP_NAME_DEFAULT, 0, 0, ""}, {"test", QAPP_APP_NAME_TESTNET, 0, 0, QT_TRANSLATE_NOOP("SplashScreen", "[testnet]")}, {"regtest", QAPP_APP_NAME_TESTNET, 60, 1, "[regtest]"} }; static const unsigned network_styles_count = sizeof(network_styles)/sizeof(*network_styles); // titleAddText needs to be const char* for tr() NetworkStyle::NetworkStyle(const QString &_appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *_titleAddText): appName(_appName), titleAddText(qApp->translate("SplashScreen", _titleAddText)) { // load pixmap QPixmap pixmap; if (std::char_traits<char>::length(_titleAddText) == 0) { pixmap.load(":/icons/bitcoin"); } else { pixmap.load(":/icons/flabourascoin_splash"); } if(iconColorHueShift != 0 && iconColorSaturationReduction != 0) { // generate QImage from QPixmap QImage img = pixmap.toImage(); int h,s,l,a; // traverse though lines for(int y=0;y<img.height();y++) { QRgb *scL = reinterpret_cast< QRgb *>( img.scanLine( y ) ); // loop through pixels for(int x=0;x<img.width();x++) { // preserve alpha because QColor::getHsl doesn't return the alpha value a = qAlpha(scL[x]); QColor col(scL[x]); // get hue value col.getHsl(&h,&s,&l); // rotate color on RGB color circle // 70° should end up with the typical "testnet" green h+=iconColorHueShift; // change saturation value if(s>iconColorSaturationReduction) { s -= iconColorSaturationReduction; } col.setHsl(h,s,l,a); // set the pixel scL[x] = col.rgba(); } } //convert back to QPixmap #if QT_VERSION >= 0x040700 pixmap.convertFromImage(img); #else pixmap = QPixmap::fromImage(img); #endif } appIcon = QIcon(pixmap); trayAndWindowIcon = QIcon(pixmap.scaled(QSize(256,256))); } const NetworkStyle *NetworkStyle::instantiate(const QString &networkId) { for (unsigned x=0; x<network_styles_count; ++x) { if (networkId == network_styles[x].networkId) { return new NetworkStyle( network_styles[x].appName, network_styles[x].iconColorHueShift, network_styles[x].iconColorSaturationReduction, network_styles[x].titleAddText); } } return 0; }
[ "nikospower1999@gmail.com" ]
nikospower1999@gmail.com
2c663e946bf5272f77a05144f85bfa78e263e16b
74368efe6a1fdc5e6a664d09d305c7e0924e8a58
/decoder.cpp
7a8ad4ae25dfb67f4fad1df75e031c18627d2f8e
[]
no_license
rawatakhilesh/casim
c8a5c7b5210122096c9b0c2acdca32f5e604d418
2d28f3a8cad084b007b45953472411191ee7047e
refs/heads/master
2020-04-07T00:57:20.988442
2018-12-12T23:39:17
2018-12-12T23:39:17
157,925,455
0
1
null
2018-12-12T23:32:22
2018-11-16T21:53:28
C++
UTF-8
C++
false
false
56,111
cpp
/** $lic$ * Copyright (C) 2012-2015 by Massachusetts Institute of Technology * Copyright (C) 2010-2013 by The Board of Trustees of Stanford University * * This file is part of zsim. * * zsim 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, version 2. * * If you use this software in your research, we request that you reference * the zsim paper ("ZSim: Fast and Accurate Microarchitectural Simulation of * Thousand-Core Systems", Sanchez and Kozyrakis, ISCA-40, June 2013) as the * source of the simulator in any publications that use this software, and that * you send us a citation of your work. * * zsim 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 "decoder.h" #include <algorithm> #include <fstream> #include <iomanip> #include <iostream> #include <string.h> #include <string> #include <vector> #include "core.h" #include "locks.h" #include "log.h" extern "C" { #include "xed-interface.h" } //XED expansion macros (enable us to type opcodes at a reasonable speed) #define XC(cat) (XED_CATEGORY_##cat) #define XO(opcode) (XED_ICLASS_##opcode) //PORT defines. You might want to change these to affect scheduling #define PORT_0 (0x1) #define PORT_1 (0x2) #define PORT_2 (0x4) #define PORT_3 (0x8) #define PORT_4 (0x10) #define PORT_5 (0x20) #define PORTS_015 (PORT_0 | PORT_1 | PORT_5) //=== INS Decoder::ins_copy; //=== void DynUop::clear() { memset(this, 0, sizeof(DynUop)); // NOTE: This may break if DynUop becomes non-POD } Decoder::Instr::Instr(INS _ins) : ins(_ins), numLoads(0), numInRegs(0), numOutRegs(0), numStores(0) { uint32_t numOperands = INS_OperandCount(ins); for (uint32_t op = 0; op < numOperands; op++) { bool read = INS_OperandRead(ins, op); bool write = INS_OperandWritten(ins, op); assert(read || write); if (INS_OperandIsMemory(ins, op)) { if (read) loadOps[numLoads++] = op; if (write) storeOps[numStores++] = op; } else if (INS_OperandIsReg(ins, op) && INS_OperandReg(ins, op)) { //it's apparently possible to get INS_OperandIsReg to be true and an invalid reg ... WTF Pin? REG reg = INS_OperandReg(ins, op); assert(reg); // can't be invalid reg = REG_FullRegName(reg); // eax -> rax, etc; o/w we'd miss a bunch of deps! if (read) inRegs[numInRegs++] = reg; if (write) outRegs[numOutRegs++] = reg; } } //By convention, we move flags regs to the end reorderRegs(inRegs, numInRegs); reorderRegs(outRegs, numOutRegs); } static inline bool isFlagsReg(uint32_t reg) { return (reg == REG_EFLAGS || reg == REG_FLAGS || reg == REG_MXCSR); } void Decoder::Instr::reorderRegs(uint32_t* array, uint32_t regs) { if (regs == 0) return; //Unoptimized bubblesort -- when arrays are this short, regularity wins over O(n^2). uint32_t swaps; do { swaps = 0; for (uint32_t i = 0; i < regs-1; i++) { if (isFlagsReg(array[i]) && !isFlagsReg(array[i+1])) { std::swap(array[i], array[i+1]); swaps++; } } } while (swaps > 0); } //Helper function static std::string regsToString(uint32_t* regs, uint32_t numRegs) { std::string str = ""; //if efficiency was a concern, we'd use a stringstream if (numRegs) { str += "("; for (uint32_t i = 0; i < numRegs - 1; i++) { str += REG_StringShort((REG)regs[i]) + ", "; } str += REG_StringShort((REG)regs[numRegs - 1]) + ")"; } return str; } void Decoder::reportUnhandledCase(Instr& instr, const char* desc) { warn("Unhandled case: %s | %s | loads=%d stores=%d inRegs=%d %s outRegs=%d %s", desc, INS_Disassemble(instr.ins).c_str(), instr.numLoads, instr.numStores, instr.numInRegs, regsToString(instr.inRegs, instr.numInRegs).c_str(), instr.numOutRegs, regsToString(instr.outRegs, instr.numOutRegs).c_str()); } void Decoder::emitLoad(Instr& instr, uint32_t idx, DynUopVec& uops, uint32_t destReg) { assert(idx < instr.numLoads); uint32_t op = instr.loadOps[idx]; uint32_t baseReg = INS_OperandMemoryBaseReg(instr.ins, op); uint32_t indexReg = INS_OperandMemoryIndexReg(instr.ins, op); if (destReg == 0) destReg = REG_LOAD_TEMP + idx; DynUop uop; uop.clear(); uop.rs[0] = baseReg; uop.rs[1] = indexReg; uop.rd[0] = destReg; uop.type = UOP_LOAD; uop.portMask = PORT_2; uops.push_back(uop); //FIXME: The interface should support in-place grow... } void Decoder::emitStore(Instr& instr, uint32_t idx, DynUopVec& uops, uint32_t srcReg) { assert(idx < instr.numStores); uint32_t op = instr.storeOps[idx]; uint32_t baseReg = INS_OperandMemoryBaseReg(instr.ins, op); uint32_t indexReg = INS_OperandMemoryIndexReg(instr.ins, op); if (srcReg == 0) srcReg = REG_STORE_TEMP + idx; uint32_t addrReg; //Emit store address uop //NOTE: Although technically one uop would suffice with <=1 address register, //stores always generate 2 uops. The store address uop is especially important, //as in Nehalem loads don't issue after all prior store addresses have been resolved. addrReg = REG_STORE_ADDR_TEMP + idx; DynUop addrUop; addrUop.clear(); addrUop.rs[0] = baseReg; addrUop.rs[1] = indexReg; addrUop.rd[0] = addrReg; addrUop.lat = 1; addrUop.portMask = PORT_3; addrUop.type = UOP_STORE_ADDR; uops.push_back(addrUop); //Emit store uop DynUop uop; uop.clear(); uop.rs[0] = addrReg; uop.rs[1] = srcReg; uop.portMask = PORT_4; uop.type = UOP_STORE; uops.push_back(uop); } void Decoder::emitLoads(Instr& instr, DynUopVec& uops) { for (uint32_t i = 0; i < instr.numLoads; i++) { emitLoad(instr, i, uops); } } void Decoder::emitStores(Instr& instr, DynUopVec& uops) { for (uint32_t i = 0; i < instr.numStores; i++) { emitStore(instr, i, uops); } } void Decoder::emitFence(DynUopVec& uops, uint32_t lat) { DynUop uop; uop.clear(); uop.lat = lat; uop.portMask = PORT_4; //to the store queue uop.type = UOP_FENCE; uops.push_back(uop); } void Decoder::emitExecUop(uint32_t rs0, uint32_t rs1, uint32_t rd0, uint32_t rd1, DynUopVec& uops, uint32_t lat, uint8_t ports, uint8_t extraSlots) { DynUop uop; uop.clear(); uop.rs[0] = rs0; uop.rs[1] = rs1; uop.rd[0] = rd0; uop.rd[1] = rd1; uop.lat = lat; uop.type = UOP_GENERAL; uop.portMask = ports; uop.extraSlots = extraSlots; uops.push_back(uop); } void Decoder::emitBasicMove(Instr& instr, DynUopVec& uops, uint32_t lat, uint8_t ports) { if (instr.numLoads + instr.numInRegs > 1 || instr.numStores + instr.numOutRegs != 1) { reportUnhandledCase(instr, "emitBasicMove"); } //Note that we can have 0 loads and 0 input registers. In this case, we are loading from an immediate, and we set the input register to 0 so there is no dependence uint32_t inReg = (instr.numInRegs == 1)? instr.inRegs[0] : 0; if (!instr.numLoads && !instr.numStores) { //reg->reg emitExecUop(inReg, 0, instr.outRegs[0], 0, uops, lat, ports); } else if (instr.numLoads && !instr.numStores) { //mem->reg emitLoad(instr, 0, uops, instr.outRegs[0]); } else if (!instr.numLoads && instr.numStores) { //reg->mem emitStore(instr, 0, uops, inReg); } else { //mem->mem emitLoad(instr, 0, uops); emitStore(instr, 0, uops, REG_LOAD_TEMP /*chain with load*/); } } void Decoder::emitXchg(Instr& instr, DynUopVec& uops) { if (instr.numLoads) { // mem <-> reg assert(instr.numLoads == 1 && instr.numStores == 1); assert(instr.numInRegs == 1 && instr.numOutRegs == 1); assert(instr.inRegs[0] == instr.outRegs[0]); emitLoad(instr, 0, uops); emitExecUop(instr.inRegs[0], 0, REG_EXEC_TEMP, 0, uops, 1, PORTS_015); //r -> temp emitExecUop(REG_LOAD_TEMP, 0, instr.outRegs[0], 0, uops, 1, PORTS_015); // load -> r emitStore(instr, 0, uops, REG_EXEC_TEMP); //temp -> out if (!INS_LockPrefix(instr.ins)) emitFence(uops, 14); //xchg has an implicit lock prefix (TODO: Check we don't introduce two fences...) } else { // reg <-> reg assert(instr.numInRegs == 2 && instr.numOutRegs == 2); assert(instr.inRegs[0] == instr.outRegs[0]); assert(instr.inRegs[1] == instr.outRegs[1]); emitExecUop(instr.inRegs[0], 0, REG_EXEC_TEMP, 0, uops, 1, PORTS_015); emitExecUop(instr.inRegs[1], 0, instr.outRegs[0], 0, uops, 1, PORTS_015); emitExecUop(REG_EXEC_TEMP, 0, instr.outRegs[1], 0, uops, 1, PORTS_015); } } void Decoder::emitConditionalMove(Instr& instr, DynUopVec& uops, uint32_t lat, uint8_t ports) { uint32_t initialUops = uops.size(); assert(instr.numOutRegs == 1); //always move to reg assert(instr.numStores == 0); if (instr.numLoads) { assert(instr.numLoads == 1); assert(instr.numInRegs == 1); uint32_t flagsReg = instr.inRegs[0]; emitExecUop(flagsReg, 0, REG_EXEC_TEMP, 0, uops, lat, ports); emitLoad(instr, 0, uops); uint32_t numUops = uops.size(); assert(numUops - initialUops == 2); //We need to make the load depend on the result. This is quite crude, but works: uops[numUops - 2].rs[1] = uops[numUops - 1].rs[1]; //comparison uop gets source of load (possibly 0) uops[numUops - 1].rs[1] = REG_EXEC_TEMP; //load uop is made to depend on comparison uop //TODO: Make this follow codepath below + load } else { assert(instr.numInRegs == 2); assert(instr.numOutRegs == 1); uint32_t flagsReg = instr.inRegs[1]; //Since this happens in 2 instructions, we'll assume we need to read the output register emitExecUop(flagsReg, instr.inRegs[0], REG_EXEC_TEMP, 0, uops, 1, ports); emitExecUop(instr.outRegs[0], REG_EXEC_TEMP, instr.outRegs[0], 0, uops, lat, ports); } } void Decoder::emitCompareAndExchange(Instr& instr, DynUopVec& uops) { emitLoads(instr, uops); uint32_t srcs = instr.numLoads + instr.numInRegs; uint32_t dsts = instr.numStores + instr.numOutRegs; uint32_t srcRegs[srcs + 2]; uint32_t dstRegs[dsts + 2]; populateRegArrays(instr, srcRegs, dstRegs); assert(srcs == 3); assert(dsts == 3); //reportUnhandledCase(instr, "XXXX"); //info("%d %d %d | %d %d %d", srcRegs[0], srcRegs[1], srcRegs[2], dstRegs[0], dstRegs[1], dstRegs[2]); uint32_t rflags = dstRegs[2]; uint32_t rax = dstRegs[1]; //note: can be EAX, etc assert(srcRegs[2] == rax); //if this fails, pin has changed the register orderings... //Compare destination (first operand) w/ RAX. If equal, copy source (second operand) into destination and set the zero flag; o/w copy destination into RAX if (!instr.numLoads) { //2 swaps, implemented in 2 stages: first, and all sources with rflags.zf; then or results pairwise. This is pure speculation, but matches uops required. emitExecUop(srcRegs[0], rax, REG_EXEC_TEMP, rflags, uops, 1, PORTS_015); //includes compare emitExecUop(srcRegs[1], rflags, REG_EXEC_TEMP+1, 0, uops, 2, PORTS_015); emitExecUop(srcRegs[2], rflags, REG_EXEC_TEMP+2, 0, uops, 2, PORTS_015); emitExecUop(REG_EXEC_TEMP, REG_EXEC_TEMP+1, dstRegs[0], 0, uops, 2, PORTS_015); emitExecUop(REG_EXEC_TEMP+1, REG_EXEC_TEMP+2, dstRegs[1] /*rax*/, 0, uops, 2, PORTS_015); } else { //6 uops (so 3 exec), and critical path is 4 (for rax), GO FIGURE emitExecUop(srcRegs[0], rax, REG_EXEC_TEMP, rflags, uops, 2, PORTS_015); emitExecUop(srcRegs[1], rflags, dstRegs[0], 0, uops, 2, PORTS_015); //let's assume we can do a fancy conditional store emitExecUop(srcRegs[2], REG_EXEC_TEMP, dstRegs[1] /*rax*/, 0, uops, 2, PORTS_015); //likewise } //NOTE: While conceptually srcRegs[0] == dstRegs[0], when it's a memory location they map to different temporary regs emitStores(instr, uops); } void Decoder::populateRegArrays(Instr& instr, uint32_t* srcRegs, uint32_t* dstRegs) { uint32_t curSource = 0; for (uint32_t i = 0; i < instr.numLoads; i++) { srcRegs[curSource++] = REG_LOAD_TEMP + i; } for (uint32_t i = 0; i < instr.numInRegs; i++) { srcRegs[curSource++] = instr.inRegs[i]; } srcRegs[curSource++] = 0; srcRegs[curSource++] = 0; uint32_t curDest = 0; for (uint32_t i = 0; i < instr.numStores; i++) { dstRegs[curDest++] = REG_STORE_TEMP + i; } for (uint32_t i = 0; i < instr.numOutRegs; i++) { dstRegs[curDest++] = instr.outRegs[i]; } dstRegs[curDest++] = 0; dstRegs[curDest++] = 0; } void Decoder::emitBasicOp(Instr& instr, DynUopVec& uops, uint32_t lat, uint8_t ports, uint8_t extraSlots, bool reportUnhandled) { emitLoads(instr, uops); uint32_t srcs = instr.numLoads + instr.numInRegs; uint32_t dsts = instr.numStores + instr.numOutRegs; uint32_t srcRegs[srcs + 2]; uint32_t dstRegs[dsts + 2]; populateRegArrays(instr, srcRegs, dstRegs); if (reportUnhandled && (srcs > 2 || dsts > 2)) reportUnhandledCase(instr, "emitBasicOp"); //We're going to be ignoring some dependencies emitExecUop(srcRegs[0], srcRegs[1], dstRegs[0], dstRegs[1], uops, lat, ports, extraSlots); emitStores(instr, uops); } void Decoder::emitChainedOp(Instr& instr, DynUopVec& uops, uint32_t numUops, uint32_t* latArray, uint8_t* portsArray) { emitLoads(instr, uops); uint32_t srcs = instr.numLoads + instr.numInRegs; uint32_t dsts = instr.numStores + instr.numOutRegs; uint32_t srcRegs[srcs + 2]; uint32_t dstRegs[dsts + 2]; populateRegArrays(instr, srcRegs, dstRegs); assert(numUops > 1); //if (srcs != numUops + 1) reportUnhandledCase(instr, "emitChainedOps"); assert(srcs + 2 >= numUops + 1); // note equality is not necessary in case one or more operands are immediates emitExecUop(srcRegs[0], srcRegs[1], REG_EXEC_TEMP, 0, uops, latArray[0], portsArray[0]); for (uint32_t i = 1; i < numUops-1; i++) { emitExecUop(REG_EXEC_TEMP, srcRegs[i+1], REG_EXEC_TEMP, 0, uops, latArray[i], portsArray[i]); } emitExecUop(REG_EXEC_TEMP, srcRegs[numUops-1], dstRegs[0], dstRegs[1], uops, latArray[numUops-1], portsArray[numUops-1]); emitStores(instr, uops); } //Some convert ops are implemented in 2 uops, even though they could just use one given src/dst reg constraints void Decoder::emitConvert2Op(Instr& instr, DynUopVec& uops, uint32_t lat1, uint32_t lat2, uint8_t ports1, uint8_t ports2) { if (instr.numStores > 0 || instr.numLoads > 1 || instr.numOutRegs != 1 || instr.numLoads + instr.numInRegs != 1) { reportUnhandledCase(instr, "convert"); } else { //May have single load, has single output uint32_t src; if (instr.numLoads) { emitLoads(instr, uops); src = REG_LOAD_TEMP; } else { src = instr.inRegs[0]; } uint32_t dst = instr.outRegs[0]; emitExecUop(src, 0, REG_EXEC_TEMP, 0, uops, lat1, ports1); emitExecUop(REG_EXEC_TEMP, 0, dst, 0, uops, lat2, ports2); } } void Decoder::emitMul(Instr& instr, DynUopVec& uops) { uint32_t dsts = instr.numStores + instr.numOutRegs; if (dsts == 3) { emitLoads(instr, uops); uint32_t srcs = instr.numLoads + instr.numInRegs; uint32_t srcRegs[srcs + 2]; uint32_t dstRegs[dsts + 2]; populateRegArrays(instr, srcRegs, dstRegs); assert(srcs <= 2); emitExecUop(srcRegs[0], srcRegs[1], dstRegs[0], REG_EXEC_TEMP, uops, 3, PORT_1); emitExecUop(srcRegs[0], srcRegs[1], dstRegs[1], REG_EXEC_TEMP+1, uops, 3, PORT_1); emitExecUop(REG_EXEC_TEMP, REG_EXEC_TEMP+1, dstRegs[2], 0, uops, 1, PORTS_015); emitStores(instr, uops); } else { emitBasicOp(instr, uops, 3, PORT_1); } } void Decoder::emitDiv(Instr& instr, DynUopVec& uops) { uint32_t srcs = instr.numLoads + instr.numInRegs; uint32_t dsts = instr.numStores + instr.numOutRegs; /* div and idiv are microsequenced, with a variable number of uops on all ports, and have fixed * input and output regs (rdx:rax is the input, rax is the quotient and rdx is the remainder). * Also, the number of uops and latency depends on the data. We approximate this with a 4-uop * sequence that sorta kinda emulates the typical latency. */ uint32_t srcRegs[srcs + 2]; uint32_t dstRegs[dsts + 2]; populateRegArrays(instr, srcRegs, dstRegs); //assert(srcs == 3); //there is a variant of div that uses only 2 regs --> see below //assert(dsts == 3); assert(instr.numInRegs > 1); uint32_t width = INS_OperandWidth(instr.ins, 1); uint32_t lat = 0; switch (width) { case 8: lat = 15; break; case 16: lat = 19; break; case 32: lat = 23; break; case 64: lat = 63; break; default: panic("emitDiv: Invalid reg size"); } uint8_t extraSlots = lat-1; if (srcs == 3 && dsts == 3) { emitLoads(instr, uops); emitExecUop(srcRegs[0], srcRegs[1], REG_EXEC_TEMP, 0, uops, lat, PORTS_015, extraSlots); emitExecUop(srcRegs[0], srcRegs[2], REG_EXEC_TEMP+1, 0, uops, lat, PORTS_015, extraSlots); emitExecUop(REG_EXEC_TEMP, REG_EXEC_TEMP+1, dstRegs[0], dstRegs[1], uops, 1, PORTS_015); //quotient and remainder emitExecUop(REG_EXEC_TEMP, REG_EXEC_TEMP+1, dstRegs[2], 0, uops, 1, PORTS_015); //flags emitStores(instr, uops); } else if (srcs <= 2 && dsts <= 2) { emitBasicOp(instr, uops, lat, PORTS_015, extraSlots); } else { reportUnhandledCase(instr, "emitDiv"); } } //Helper function static bool dropRegister(uint32_t targetReg, uint32_t* regs, uint32_t& numRegs) { for (uint32_t i = 0; i < numRegs; i++) { uint32_t reg = regs[i]; if (reg == targetReg) { //Shift rest of regs for (uint32_t j = i; j < numRegs - 1; j++) regs[j] = regs[j+1]; numRegs--; return true; } } return false; } void Decoder::dropStackRegister(Instr& instr) { bool dropIn = dropRegister(REG_RSP, instr.inRegs, instr.numInRegs); bool dropOut = dropRegister(REG_RSP, instr.outRegs, instr.numOutRegs); if (!dropIn && !dropOut) /*reportUnhandledCase(instr, "dropStackRegister (no RSP found)")*/; else reportUnhandledCase(instr, "dropStackRegister (RSP found)"); } bool Decoder::decodeInstr(INS ins, DynUopVec& uops) { uint32_t initialUops = uops.size(); bool inaccurate = false; xed_category_enum_t category = (xed_category_enum_t) INS_Category(ins); xed_iclass_enum_t opcode = (xed_iclass_enum_t) INS_Opcode(ins); Instr instr(ins); bool isLocked = false; // NOTE(dsm): IsAtomicUpdate == xchg or LockPrefix (xchg has in implicit lock prefix) if (INS_IsAtomicUpdate(instr.ins)) { isLocked = true; emitFence(uops, 0); //serialize the initial load w.r.t. all prior stores } switch (category) { //NOPs are optimized out in the execution pipe, but they still grab a ROB entry case XC(NOP): case XC(WIDENOP): emitExecUop(0, 0, 0, 0, uops, 1, PORTS_015); break; /* Moves */ case XC(DATAXFER): switch (opcode) { case XO(BSWAP): emitBasicMove(instr, uops, 1, PORT_1); break; case XO(MOV): emitBasicMove(instr, uops, 1, PORTS_015); break; case XO(MOVAPS): case XO(MOVAPD): case XO(MOVUPS): case XO(MOVUPD): case XO(MOVSS): case XO(MOVSD): case XO(MOVSD_XMM): case XO(MOVHLPS): case XO(MOVLHPS): case XO(MOVDDUP): case XO(MOVSHDUP): case XO(MOVSLDUP): emitBasicMove(instr, uops, 1, PORT_5); break; case XO(MOVHPS): case XO(MOVHPD): case XO(MOVLPS): case XO(MOVLPD): //A bit unclear... could be 2 or 3 cycles, and current microbenchmarks are not enough to tell emitBasicOp(instr, uops, /*2*/ 1, PORT_5); break; case XO(MOVMSKPS): case XO(MOVMSKPD): emitBasicMove(instr, uops, 1, PORT_0); break; case XO(MOVD): case XO(MOVQ): case XO(MOVDQA): case XO(MOVDQU): case XO(MOVDQ2Q): case XO(MOVQ2DQ): emitBasicMove(instr, uops, 1, PORTS_015); //like mov break; case XO(MOVSX): case XO(MOVSXD): case XO(MOVZX): emitBasicMove(instr, uops, 1, PORTS_015); //like mov break; case XO(XCHG): emitXchg(instr, uops); break; default: //TODO: MASKMOVQ, MASKMOVDQ, MOVBE (Atom only), MOVNTxx variants (nontemporal), MOV_CR and MOV_DR (privileged?), VMOVxxxx variants (AVX) inaccurate = true; emitBasicMove(instr, uops, 1, PORTS_015); } break; case XC(CMOV): emitConditionalMove(instr, uops, 1, PORTS_015); break; case XC(FCMOV): emitConditionalMove(instr, uops, 1, PORT_0); break; /* Barebones arithmetic instructions */ case XC(BINARY): { if (opcode == XO(ADC) || opcode == XO(SBB)) { uint32_t lats[] = {1, 1}; uint8_t ports[] = {PORTS_015, PORTS_015}; emitChainedOp(instr, uops, 2, lats, ports); } else if (opcode == XO(MUL) || opcode == XO(IMUL)) { emitMul(instr, uops); } else if (opcode == XO(DIV) || opcode == XO(IDIV)) { emitDiv(instr, uops); } else { //ADD, SUB, CMP, DEC, INC, NEG are 1 cycle emitBasicOp(instr, uops, 1, PORTS_015); } } break; case XC(BITBYTE): { uint32_t opLat = 1; switch (opcode) { case XO(BSF): case XO(BSR): opLat = 3; break; //TODO: EXTRQ, INSERTQ, LZCNT default: {} //BT, BTx, SETcc ops are 1 cycle } emitBasicOp(instr, uops, opLat, PORTS_015); } break; case XC(LOGICAL): //AND, OR, XOR, TEST are 1 cycle emitBasicOp(instr, uops, 1, PORTS_015); break; case XC(ROTATE): { uint32_t opLat = 1; //ROR, ROL 1 cycle if (opcode == XO(RCR) || opcode == XO(RCL)) opLat = 2; emitBasicOp(instr, uops, opLat, PORT_0 | PORT_5); } break; case XC(SHIFT): { if (opcode == XO(SHLD)|| opcode == XO(SHRD)) { uint32_t lats[] = {2, opcode == XO(SHLD)? 1u : 2u}; //SHRD takes 4 cycles total, SHLD takes 3 uint8_t ports[] = {PORTS_015, PORTS_015}; emitChainedOp(instr, uops, 2, lats, ports); } else { uint32_t opLat = 1; //SHR SHL SAR are 1 cycle emitBasicOp(instr, uops, opLat, PORT_0 | PORT_5); } } break; case XC(DECIMAL): //pack/unpack BCD, these seem super-deprecated { uint32_t opLat = 1; switch (opcode) { case XO(AAA): case XO(AAS): case XO(DAA): case XO(DAS): opLat = 3; break; case XO(AAD): opLat = 15; break; case XO(AAM): opLat = 20; break; default: panic("Invalid opcode for this class"); } emitBasicOp(instr, uops, opLat, PORTS_015); } break; case XC(FLAGOP): switch (opcode) { case XO(LAHF): case XO(SAHF): emitBasicOp(instr, uops, 1, PORTS_015); break; case XO(CLC): case XO(STC): case XO(CMC): emitBasicOp(instr, uops, 1, PORTS_015); break; case XO(CLD): emitExecUop(0, 0, REG_EXEC_TEMP, 0, uops, 2, PORTS_015); emitExecUop(REG_EXEC_TEMP, 0, REG_RFLAGS, 0, uops, 2, PORTS_015); break; case XO(STD): emitExecUop(0, 0, REG_EXEC_TEMP, 0, uops, 3, PORTS_015); emitExecUop(REG_EXEC_TEMP, 0, REG_RFLAGS, 0, uops, 2, PORTS_015); break; default: inaccurate = true; } break; case XC(SEMAPHORE): //atomic ops, these must involve memory //reportUnhandledCase(instr, "SEM"); //emitBasicOp(instr, uops, 1, PORTS_015); switch (opcode) { case XO(CMPXCHG): case XO(CMPXCHG8B): //case XO(CMPXCHG16B): //not tested... emitCompareAndExchange(instr, uops); break; case XO(XADD): { uint32_t lats[] = {2, 2}; uint8_t ports[] = {PORTS_015, PORTS_015}; emitChainedOp(instr, uops, 2, lats, ports); } break; default: inaccurate = true; } break; /* FP, SSE and other extensions */ case /*XC(X)87_ALU*/ XC(X87_ALU): //emitBasicOp(instr, uops, 1, PORTS_015); break; case XED_CATEGORY_3DNOW: //emitBasicOp(instr, uops, 1, PORTS_015); break; case XC(MMX): //emitBasicOp(instr, uops, 1, PORTS_015); break; case XC(SSE): { //TODO: Multi-uop BLENDVXX, DPXX uint32_t lat = 1; uint8_t ports = PORTS_015; uint8_t extraSlots = 0; switch (opcode) { case XO(ADDPD): case XO(ADDPS): case XO(ADDSD): case XO(ADDSS): case XO(SUBPD): case XO(SUBPS): case XO(SUBSD): case XO(SUBSS): case XO(ADDSUBPD): case XO(ADDSUBPS): lat = 3; ports = PORT_1; break; case XO(BLENDPS): case XO(BLENDPD): case XO(SHUFPS): case XO(SHUFPD): case XO(UNPCKHPD): case XO(UNPCKHPS): case XO(UNPCKLPD): case XO(UNPCKLPS): lat = 1; ports = PORT_5; break; case XO(CMPPD): case XO(CMPPS): case XO(CMPSD): case XO(CMPSS): lat = 3; ports = PORT_1; break; case XO(COMISD): case XO(COMISS): case XO(UCOMISD): case XO(UCOMISS): lat = 1+2; //writes rflags, always crossing xmm -> int domains ports = PORT_1; break; case XO(DIVPS): case XO(DIVSS): lat = 7; //from mubench ports = PORT_0; extraSlots = lat - 1; //non-pipelined break; case XO(DIVPD): case XO(DIVSD): lat = 7; //from mubench ports = PORT_0; //non-pipelined extraSlots = lat - 1; break; case XO(MAXPD): case XO(MAXPS): case XO(MAXSD): case XO(MAXSS): case XO(MINPD): case XO(MINPS): case XO(MINSD): case XO(MINSS): lat = 3; ports = PORT_1; break; case XO(MULSS): case XO(MULPS): lat = 4; ports = PORT_0; break; case XO(MULSD): case XO(MULPD): lat = 5; ports = PORT_0; break; case XO(RCPPS): case XO(RCPSS): lat = 3; ports = PORT_1; break; case XO(ROUNDPD): case XO(ROUNDPS): case XO(ROUNDSD): case XO(ROUNDSS): lat = 3; ports = PORT_1; break; case XO(RSQRTPS): case XO(RSQRTSS): lat = 3; ports = PORT_1; extraSlots = 1; //from mubench, has reciprocal thput of 2 break; case XO(SQRTSS): case XO(SQRTPS): lat = 7; //from mubench ports = PORT_0; extraSlots = lat-1; //unpiped break; case XO(SQRTSD): case XO(SQRTPD): lat = 7; //from mubench ports = PORT_0; extraSlots = lat-1; //unpiped break; case XO(POPCNT): case XO(CRC32): lat = 3; ports = PORT_1; break; //Packed arith; these are rare, so I'm implementing only what I've seen used (and simple variants) case XO(PADDB): case XO(PADDD): case XO(PADDQ): case XO(PADDSB): case XO(PADDSW): case XO(PADDUSB): case XO(PADDUSW): case XO(PADDW): case XO(PSUBB): case XO(PSUBD): case XO(PSUBQ): case XO(PSUBSB): case XO(PSUBSW): case XO(PSUBUSB): case XO(PSUBUSW): case XO(PSUBW): case XO(PALIGNR): case XO(PCMPEQB): case XO(PCMPEQD): case XO(PCMPEQQ): case XO(PCMPEQW): case XO(PCMPGTB): case XO(PCMPGTD): case XO(PCMPGTW): case XO(PUNPCKHBW): case XO(PUNPCKHDQ): case XO(PUNPCKHQDQ): case XO(PUNPCKHWD): case XO(PUNPCKLBW): case XO(PUNPCKLDQ): case XO(PUNPCKLQDQ): case XO(PUNPCKLWD): case XO(PSHUFB): case XO(PSHUFD): case XO(PSHUFHW): case XO(PSHUFLW): lat = 1; ports = PORT_0 | PORT_5; break; case XO(PCMPGTQ): //weeeird, only packed comparison that's done differently lat = 3; ports = PORT_1; break; case XO(PMOVMSKB): lat = 2+2; ports = PORT_0; break; default: inaccurate = true; } emitBasicOp(instr, uops, lat, ports, extraSlots); } break; case XC(STTNI): //SSE 4.2 break; case XC(CONVERT): //part of SSE switch (opcode) { case XO(CVTPD2PS): case XO(CVTSD2SS): emitConvert2Op(instr, uops, 2, 2, PORT_1, PORT_5); break; case XO(CVTPS2PD): emitConvert2Op(instr, uops, 1, 1, PORT_0, PORT_5); break; case XO(CVTSS2SD): emitBasicOp(instr, uops, 1, PORT_0); break; case XO(CVTDQ2PS): case XO(CVTPS2DQ): case XO(CVTTPS2DQ): emitBasicOp(instr, uops, 3+2 /*domain change*/, PORT_1); break; case XO(CVTDQ2PD): case XO(CVTPD2DQ): case XO(CVTTPD2DQ): emitConvert2Op(instr, uops, 2, 2+2 /*domain change*/, PORT_1, PORT_5); break; case XO(CVTPI2PS): case XO(CVTPS2PI): case XO(CVTTPS2PI): emitBasicOp(instr, uops, 3+2 /*domain change*/, PORT_1); break; case XO(CVTPI2PD): case XO(CVTPD2PI): case XO(CVTTPD2PI): emitConvert2Op(instr, uops, 2, 2+2 /*domain change*/, PORT_1, PORT_0 | PORT_5); break; case XO(CVTSI2SS): case XO(CVTSS2SI): case XO(CVTTSS2SI): emitBasicOp(instr, uops, 3+2 /*domain change*/, PORT_1); break; case XO(CVTSI2SD): emitConvert2Op(instr, uops, 2, 2+2 /*domain change*/, PORT_1, PORT_0); break; case XO(CVTSD2SI): case XO(CVTTSD2SI): emitBasicOp(instr, uops, 3+2 /*domain change*/, PORT_1); break; case XO(CBW): case XO(CWDE): case XO(CDQE): emitBasicOp(instr, uops, 1, PORTS_015); break; case XO(CWD): case XO(CDQ): case XO(CQO): emitBasicOp(instr, uops, 1, PORT_0 | PORT_5); break; default: // AVX converts inaccurate = true; } break; case XC(AVX): //TODO: Whatever, Nehalem has no AVX break; case XC(BROADCAST): //part of AVX //TODO: Same as AVX break; case XC(AES): break; case XC(PCLMULQDQ): //CLMUL extension (carryless multiply, generally related to AES-NI) break; case XC(XSAVE): case XC(XSAVEOPT): //hold your horses, it's optimized!! (AVX) break; /* Control flow ops (branches, jumps) */ case XC(COND_BR): case XC(UNCOND_BR): // We model all branches and jumps with a latency of 1. Far jumps are really expensive, but they should be exceedingly rare (from Intel's manual, they are used for call gates, task switches, etc.) emitBasicOp(instr, uops, 1, PORT_5); if (opcode == XO(JMP_FAR)) inaccurate = true; break; /* Stack operations */ case XC(CALL): case XC(RET): /* Call and ret are both unconditional branches and stack operations; however, Pin does not list RSP as source or destination for them */ //dropStackRegister(instr); //stack engine kills accesses to RSP emitBasicOp(instr, uops, 1, PORT_5); if (opcode != XO(CALL_NEAR) && opcode != XO(RET_NEAR)) inaccurate = true; //far call/ret or irets are far more complex break; case XC(POP): case XC(PUSH): //Again, RSP is not included here, so no need to remove it. switch (opcode) { case XO(POP): case XO(PUSH): //Basic PUSH/POP are just moves. They are always to/from memory, so PORTS is irrelevant emitBasicMove(instr, uops, 1, PORTS_015); break; case XO(POPF): case XO(POPFD): case XO(POPFQ): //Java uses POPFx/PUSHFx variants. POPF is complicated, 8 uops... microsequenced inaccurate = true; emitBasicOp(instr, uops, 14, PORTS_015); break; case XO(PUSHF): case XO(PUSHFD): case XO(PUSHFQ): //This one we can handle... 2 exec uops + store and reciprocal thput of 1 { uint32_t lats[] = {1, 1}; uint8_t ports[] = {PORTS_015, PORTS_015}; emitChainedOp(instr, uops, 2, lats, ports); } break; default: inaccurate = true; } break; /* Prefetches */ case XC(PREFETCH): //A prefetch is just a load that doesn't feed into any register (or REG_TEMP in this case) //NOTE: Not exactly, because this will serialize future loads under TSO emitLoads(instr, uops); break; /* Stuff on the system side (some of these are privileged) */ case XC(INTERRUPT): case XC(SYSCALL): case XC(SYSRET): case XC(IO): break; case XC(SYSTEM): //TODO: Privileged ops are not included /*switch(opcode) { case XO(RDTSC): case XO(RDTSCP): opLat = 24; break; case XO(RDPMC): opLat = 40; break; default: ; }*/ break; case XC(SEGOP): //TODO: These are privileged, right? They are expensive but rare anyhow break; case XC(VTX): //virtualization, hmmm //TODO break; /* String ops (I'm reading the manual and they seem just like others... wtf?) */ case XC(STRINGOP): switch (opcode) { case XO(STOSB): case XO(STOSW): case XO(STOSD): case XO(STOSQ): //mov [rdi] <- rax //add rdi, 8 //emitBasicOp(instr, uops, 1, PORTS_015); //not really, this emits the store later and there's no dep (the load is direct to reg) emitStore(instr, 0, uops, REG_RAX); emitExecUop(REG_RDI, 0, REG_RDI, 0, uops, 1, PORTS_015); break; case XO(LODSB): case XO(LODSW): case XO(LODSD): case XO(LODSQ): //mov rax <- [rsi] //add rsi, 8 emitLoad(instr, 0, uops, REG_RAX); emitExecUop(REG_RSI, 0, REG_RSI, 0, uops, 1, PORTS_015); break; case XO(MOVSB): case XO(MOVSW): case XO(MOVSD): case XO(MOVSQ): //lodsX + stosX emitLoad(instr, 0, uops, REG_RAX); emitStore(instr, 0, uops, REG_RAX); emitExecUop(REG_RSI, 0, REG_RSI, 0, uops, 1, PORTS_015); emitExecUop(REG_RDI, 0, REG_RDI, 0, uops, 1, PORTS_015); break; case XO(CMPSB): case XO(CMPSW): case XO(CMPSD): case XO(CMPSQ): //load [rsi], [rdi], compare them, and add the other 2 //Agner's tables say all exec uops can go anywhere, but I'm betting the comp op only goes in port5 emitLoad(instr, 0, uops, REG_LOAD_TEMP); emitLoad(instr, 0, uops, REG_LOAD_TEMP+1); emitExecUop(REG_LOAD_TEMP, REG_LOAD_TEMP+1, REG_RFLAGS, 0, uops, 1, PORT_5); emitExecUop(REG_RSI, 0, REG_RSI, 0, uops, 1, PORTS_015); emitExecUop(REG_RDI, 0, REG_RDI, 0, uops, 1, PORTS_015); break; default: //SCAS and other dragons I have not seen yet inaccurate = true; } break; case XC(IOSTRINGOP): //TODO: These seem to make sense with REP, which Pin unfolds anyway. Are they used al all? break; /* Stuff not even the Intel guys know how to classify :P */ case XC(MISC): if (opcode == XO(LEA)) { emitBasicOp(instr, uops, 1, PORT_1); } else if (opcode == XO(PAUSE)) { //Pause is weird. It takes 9 cycles, issues 5 uops (to be treated like a complex instruction and put a wrench on the decoder?), //and those uops are issued to PORT_015. No idea about how individual uops are sized, but in ubenchs I cannot put even an ADD //between pauses for free, so I'm assuming it's 9 solid cycles total. emitExecUop(0, 0, 0, 0, uops, 9, PORTS_015, 8); //9, longest first emitExecUop(0, 0, 0, 0, uops, 5, PORTS_015, 4); //NOTE: latency does not matter emitExecUop(0, 0, 0, 0, uops, 5, PORTS_015, 4); emitExecUop(0, 0, 0, 0, uops, 4, PORTS_015, 3); emitExecUop(0, 0, 0, 0, uops, 4, PORTS_015, 3); } /*switch (opcode) { case CPUID: case ENTER: case LEAVE: case LEA: case LFENCE: case MFENCE: case SFENCE: case MONITOR: case MWAIT: case UD2: case XLAT: }*/ //TODO break; default: {} //panic("Invalid instruction category"); } //Try to produce something approximate... if (uops.size() - initialUops == isLocked? 1 : 0) { //if it's locked, we have the initial fence for an empty instr emitBasicOp(instr, uops, 1, PORTS_015, 0, false /* don't report unhandled cases */); inaccurate = true; } //NOTE: REP instructions are unrolled by PIN, so they are accurately simulated (they are treated as predicated in Pin) //See section "Optimizing Instrumentation of REP Prefixed Instructions" on the Pin manual //Add ld/st fence to all locked instructions if (isLocked) { //inaccurate = true; //this is now fairly accurate emitFence(uops, 9); //locked ops introduce an additional uop and cache locking takes 14 cycles/instr per the perf counters; latencies match with 9 cycles of fence latency } assert(uops.size() - initialUops < MAX_UOPS_PER_INSTR); //assert_msg(uops.size() - initialUops < MAX_UOPS_PER_INSTR, "%ld -> %ld uops", initialUops, uops.size()); return inaccurate; } // See Agner Fog's uarch doc, macro-op fusion for Core 2 / Nehalem bool Decoder::canFuse(INS ins) { xed_iclass_enum_t opcode = (xed_iclass_enum_t) INS_Opcode(ins); if (!(opcode == XO(CMP) || opcode == XO(TEST))) return false; //Discard if immediate for (uint32_t op = 0; op < INS_OperandCount(ins); op++) if (INS_OperandIsImmediate(ins, op)) return false; //OK so far, let's check the branch INS nextIns = INS_Next(ins); if (!INS_Valid(nextIns)) return false; xed_iclass_enum_t nextOpcode = (xed_iclass_enum_t) INS_Opcode(nextIns); xed_category_enum_t nextCategory = (xed_category_enum_t) INS_Category(nextIns); if (nextCategory != XC(COND_BR)) return false; if (!INS_IsDirectBranch(nextIns)) return false; //according to PIN's API, this s only true for PC-rel near branches switch (nextOpcode) { case XO(JZ): //or JZ case XO(JNZ): //or JNE case XO(JB): case XO(JBE): case XO(JNBE): //or JA case XO(JNB): //or JAE case XO(JL): case XO(JLE): case XO(JNLE): //or JG case XO(JNL): //or JGE return true; case XO(JO): case XO(JNO): case XO(JP): case XO(JNP): case XO(JS): case XO(JNS): return opcode == XO(TEST); //CMP cannot fuse with these default: return false; //other instrs like LOOP don't fuse } } bool Decoder::decodeFusedInstrs(INS ins, DynUopVec& uops) { //assert(canFuse(ins)); //this better be true :) Instr instr(ins); Instr branch(INS_Next(ins)); //instr should have 2 inputs (regs/mem), and 1 output (rflags), and branch should have 2 inputs (rip, rflags) and 1 output (rip) if (instr.numOutRegs != 1 || instr.outRegs[0] != REG_RFLAGS || branch.numOutRegs != 1 || branch.outRegs[0] != REG_RIP) { reportUnhandledCase(instr, "decodeFusedInstrs"); reportUnhandledCase(branch, "decodeFusedInstrs"); } else { instr.outRegs[1] = REG_RIP; instr.numOutRegs++; } emitBasicOp(instr, uops, 1, PORT_5); return false; //accurate } #ifdef BBL_PROFILING //All is static for now... #define MAX_BBLS (1<<24) //16M static lock_t bblIdxLock = 0; static uint64_t bblIdx = 0; static uint64_t bblCount[MAX_BBLS]; static std::vector<uint32_t>* bblApproxOpcodes[MAX_BBLS]; #endif BblInfo* Decoder::decodeBbl(BBL bbl, bool oooDecoding) { uint32_t instrs = BBL_NumIns(bbl); uint32_t bytes = BBL_Size(bbl); BblInfo* bblInfo; if (oooDecoding) { //Decode BBL uint32_t approxInstrs = 0; uint32_t curIns = 0; DynUopVec uopVec; #ifdef BBL_PROFILING std::vector<uint32_t> approxOpcodes; //XED decoder init xed_state_t dstate; xed_decoded_inst_t xedd; xed_state_zero(&dstate); xed_state_init(&dstate, XED_MACHINE_MODE_LONG_64, XED_ADDRESS_WIDTH_64b, XED_ADDRESS_WIDTH_64b); xed_decoded_inst_zero_set_mode(&xedd, &dstate); #endif //Gather some info about instructions needed to model decode stalls std::vector<ADDRINT> instrAddr; std::vector<uint32_t> instrBytes; std::vector<uint32_t> instrUops; std::vector<INS> instrDesc; //Decode for (INS ins = BBL_InsHead(bbl); INS_Valid(ins); ins = INS_Next(ins)) { bool inaccurate = false; uint32_t prevUops = uopVec.size(); //=== ins_copy = ins; //=== if (Decoder::canFuse(ins)) { inaccurate = Decoder::decodeFusedInstrs(ins, uopVec); instrAddr.push_back(INS_Address(ins)); instrBytes.push_back(INS_Size(ins)); instrUops.push_back(uopVec.size() - prevUops); instrDesc.push_back(ins); ins = INS_Next(ins); //skip the JMP instrAddr.push_back(INS_Address(ins)); instrBytes.push_back(INS_Size(ins)); instrUops.push_back(0); instrDesc.push_back(ins); curIns+=2; } else { inaccurate = Decoder::decodeInstr(ins, uopVec); instrAddr.push_back(INS_Address(ins)); instrBytes.push_back(INS_Size(ins)); instrUops.push_back(uopVec.size() - prevUops); instrDesc.push_back(ins); curIns++; } #ifdef PROFILE_ALL_INSTRS inaccurate = true; //uncomment to profile everything #endif if (inaccurate) { approxInstrs++; #ifdef BBL_PROFILING xed_decoded_inst_zero_keep_mode(&xedd); //need to do this per instruction xed_iform_enum_t iform = XED_IFORM_INVALID; uint8_t buf[16]; //Using safecopy, we bypass pagefault uglyness due to out-of-bounds accesses size_t insBytes = PIN_SafeCopy(buf, INS_Address(ins), 15); xed_error_enum_t err = xed_decode(&xedd, buf, insBytes); if (err != XED_ERROR_NONE) { panic("xed_decode failed: %s", xed_error_enum_t2str(err)); } else { iform = xed_decoded_inst_get_iform_enum(&xedd); } approxOpcodes.push_back((uint32_t)iform); #endif //info("Approx decoding: %s", INS_Disassemble(ins).c_str()); } } assert(curIns == instrs); //Instr predecoder and decode stage modeling; we assume clean slate between BBLs, which is typical because //optimizing compilers 16B-align most branch targets (and if it doesn't happen, the error introduced is fairly small) //1. Predecoding uint32_t predecCycle[instrs]; uint32_t pcyc = 0; uint32_t psz = 0; uint32_t pcnt = 0; uint32_t pblk = 0; ADDRINT startAddr = (INS_Address(instrDesc[0]) >> 4) << 4; for (uint32_t i = 0; i < instrs; i++) { INS ins = instrDesc[i]; ADDRINT addr = INS_Address(ins); uint32_t bytes = INS_Size(ins); uint32_t block = (addr - startAddr) >> 4; psz += bytes; pcnt++; if (psz > 16 /*leftover*/|| pcnt > 6 /*max predecs*/|| block > pblk /*block switch*/) { psz = bytes; pcnt = 1; pblk = block; pcyc++; } //Length-changing prefix introduce a 6-cycle penalty regardless; //In 64-bit mode, only operand size prefixes are LCPs; addr size prefixes are fine // UPDATE (dsm): This was introducing significant errors in some benchmarks (e.g., astar) // Turns out, only SOME LCPs (false LCPs) cause this delay // see http://www.jaist.ac.jp/iscenter-new/mpc/altix/altixdata/opt/intel/vtune/doc/users_guide/mergedProjects/analyzer_ec/mergedProjects/reference_olh/pentiumm_hh/pentiummy_hh/lipsmy/instructions_that_require_slow_decoding.htm // At this point I'm going to assume that gcc is smart enough to not produce these //if (INS_OperandSizePrefix(ins)) pcyc += 6; predecCycle[i] = pcyc; //info("PREDEC %2d: 0x%08lx %2d %d %d %d", i, instrAddr[i], instrBytes[i], instrUops[i], block, predecCycle[i]); } //2. Decoding //4-1-1-1 rules: Small decoders can only take instructions that produce 1 uop AND are at most 7 bytes long uint32_t uopIdx = 0; uint32_t dcyc = 0; uint32_t dsimple = 0; uint32_t dcomplex = 0; for (uint32_t i = 0; i < instrs; i++) { if (instrUops[i] == 0) continue; //fused branch uint32_t pcyc = predecCycle[i]; if (pcyc > dcyc) { dcyc = pcyc; dsimple = 0; dcomplex = 0; } bool simple = (instrUops[i] == 1) && (instrBytes[i] < 8); if ((simple && dsimple + dcomplex == 4) || (!simple && dcomplex == 1)) { // Do: (!simple /*&& dcomplex == 1*/) to be conservative? dcyc++; dsimple = 0; dcomplex = 0; } if (simple) dsimple++; else dcomplex++; //info(" DEC %2d: 0x%08lx %2d %d %d %d (%d %d)", i, instrAddr[i], instrBytes[i], instrUops[i], simple, dcyc, dcomplex, dsimple); for (uint32_t j = 0; j < instrUops[i]; j++) { uopVec[uopIdx + j].decCycle = dcyc; } uopIdx += instrUops[i]; } assert(uopIdx == uopVec.size()); //Allocate uint32_t objBytes = offsetof(BblInfo, oooBbl) + DynBbl::bytes(uopVec.size()); bblInfo = static_cast<BblInfo*>(gm_malloc(objBytes)); // can't use type-safe interface //Initialize ooo part DynBbl& dynBbl = bblInfo->oooBbl[0]; dynBbl.addr = BBL_Address(bbl); dynBbl.uops = uopVec.size(); dynBbl.approxInstrs = approxInstrs; for (uint32_t i = 0; i < dynBbl.uops; i++) dynBbl.uop[i] = uopVec[i]; #ifdef BBL_PROFILING futex_lock(&bblIdxLock); dynBbl.bblIdx = bblIdx++; assert(dynBbl.bblIdx < MAX_BBLS); if (approxInstrs) { bblApproxOpcodes[dynBbl.bblIdx] = new std::vector<uint32_t>(approxOpcodes); // copy } //info("DECODED BBL IDX %d", bblIdx); futex_unlock(&bblIdxLock); #endif } else { bblInfo = gm_malloc<BblInfo>(); } //Initialize generic part bblInfo->instrs = instrs; bblInfo->bytes = bytes; return bblInfo; } #ifdef BBL_PROFILING void Decoder::profileBbl(uint64_t bblIdx) { assert(bblIdx < MAX_BBLS); __sync_fetch_and_add(&bblCount[bblIdx], 1); } void Decoder::dumpBblProfile() { uint32_t numOpcodes = xed_iform_enum_t_last() + 1; uint64_t approxOpcodeCount[numOpcodes]; for (uint32_t i = 0; i < numOpcodes; i++) approxOpcodeCount[i] = 0; for (uint32_t i = 0; i < bblIdx; i++) { if (bblApproxOpcodes[i]) for (uint32_t& j : *bblApproxOpcodes[i]) approxOpcodeCount[j] += bblCount[i]; } std::ofstream out("approx_instrs.stats"); out << std::setw(16) << "Category" << std::setw(16) << "Iclass" << std::setw(32) << "Iform" << std::setw(16) << "Count" << std::endl; for (uint32_t i = 0; i < numOpcodes; i++) { if (approxOpcodeCount[i]) { //out << xed_iclass_enum_t2str((xed_iclass_enum_t)i) << "\t " << approxOpcodeCount[i] << std::endl; xed_iform_enum_t iform = (xed_iform_enum_t)i; xed_category_enum_t cat = xed_iform_to_category(iform); xed_iclass_enum_t iclass = xed_iform_to_iclass(iform); out << std::setw(16) << xed_category_enum_t2str(cat) << std::setw(16) << xed_iclass_enum_t2str(iclass) << std::setw(32) << xed_iform_enum_t2str(iform) << std::setw(16) << approxOpcodeCount[i] << std::endl; } } //Uncomment to dump a bbl profile //for (uint32_t i = 0; i < bblIdx; i++) out << std::setw(8) << i << std::setw(8) << bblCount[i] << std::endl; out.close(); } #endif
[ "akhileshrawat0501@gmail.com" ]
akhileshrawat0501@gmail.com
a425a7f8fa36291a7c0b47cc8368ee7e7561ab75
ac29dd59ead1a6ab1849eb282021423db20f3871
/solution_11661.cpp
5b6d90799d5b535cc87566fa7c6700adc1e8f13c
[]
no_license
Qrune/ACM-Practice
3ae424114f9d50dbaab2bfe0f69d1524f66ce410
5d2e0bf90f8b5bc8d70c4bebc903f7418fe4c46c
refs/heads/master
2021-09-23T14:00:31.736187
2018-09-23T18:29:59
2018-09-23T18:29:59
107,995,774
0
0
null
null
null
null
UTF-8
C++
false
false
1,378
cpp
#include<iostream> #include<cstring> using namespace std; void add(int *s, int *t) { int len = max(s[0],t[0]); for (int i=1; i<=len; i++) { s[i] +=t[i]; s[i+1] += s[i]/10; s[i] %= 10; } if (s[len+1]) len ++; s[0] = len; } int cmp(int *s, int *t) { if (s[0] > t[0]) return 1; if s[0] < t[0] return -1; for (int i=s[0]; i>0; --i) { if (s[i] > t[i]) return 1; if (s[i] < t[i]) return -1; } return -1; } void cpy(int *s, int *t) { memset(s,0,sizeof(s)); for (int i=0; i<=t[0]; i++) { s[i] = t[i]; } } int main() { cin>>n>>m; for (int i=1; i<=n; i++) { memset(a,0,sizeof(a)); memset(f,0,sizeof(f)); for (int j=1; j<=m; ++j) { cin>>a[j]; int len =1; for (len =1; a[j]; ++len) { f[j][1][len] = a[j] % 10; a[j] /= 10; } f[j][1][0] = len; cpy(t1,f[j][1]); add(f[j][1], t1); memset(t1,0,sizeof(t1)); } for (int l=2; l<=m; ++l) { for (int j=1; j+l-1<=m; ++j) { memset(t1,0,sizeof(t1)); memset(t2,0,sizeof(t2)); add(t1,f[j+1][l-1]); add(t1,f[j+1][l-1]); add(t1,f[j][1]); add(t2,f[j][l-1]); add(t2,f[j][l-1]); add(t2,f[j+l-1][1]); if (cmp(t1,t2)>0) cpy(f[j][l],t1); else(f[j][l],t2); } add(ans,f[1][m]); } for(int i=ans[0];i>0;--i) printf("%d",ans[i]); printf("\n"); return 0; } }
[ "gaoyang721@outlook.com" ]
gaoyang721@outlook.com