Moisture sensor issues..

Breakout boards, sensors, Drawdio, Game of Life, other Adafruit kits, etc.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Moisture sensor issues..

Post by jim_lee »

I designed this..

Image

With a nifty display.

Image

And built these..

Image

I've potted the sensor guts in epoxy..

Image

I even built a nifty touchscreen handheld for setting paramiters out in the field.

Image

About 2 weeks ago it rained. Since then the large pots have sat at 100% pretty much ever since. Until last night when it rained again and now some are showing that things are getting dryer?

The tray of seedlings suddenly (after or during the rain) drained its jar of water.

As far as i can tell, these sensors are more sensitive to the pressure of the soil around them than the moisture content. As it rains the soil loosens up and the readings go down. I think this has been a problem with my seed trays. As soon as they need watering they ocasonally flood them selves as the soil loosens up.

Does anyone have experience with these sensors? I'm in need for some ideas here. I need this to be more reliable. How are people making these things work?

Thanks!

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

Nice looking probe and pump units! Can you post the code that you are using?

Probe response will be somewhat dependent on the soil composition. Temperature and/or concentration of fertilizers can also affect readings. But in general, the dielectric constant of water is much higher than the air or the particles that make up the soil. So the readings should largely follow the percentage of water content in the soil.
As it rains the soil loosens up and the readings go down.
Loosens up in what way? Is it expanding in volume?

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

Thanks! It was a lot of interesting work developing the packaging. The pumps run at so much lower volume & pressure than your typical watering system, I had to develop an entire line of low pressure sprinkler stuff that I could 3D print to work with them. Then I found out, the hard way, that 3D printed stuff is not waterproof at all! I'd designed these nifty bottles with threaded lids that ended up being completely useless. After the first rain they were full of water. This is what led me to the canning jar idea. Once I'd decided to cover them in canning jars, I realized I could incorporate the little OLEDs into the design. Those OLEDs have been great for seeing what's going on in their little brains.

And posting code.. Well, as always, there's a lot.

Here's the .ino file I'm using for the watering unints.

Code: Select all

#include <Adafruit_seesaw.h>

#include <blinker.h>
#include <colorObj.h>
#include <idlers.h>
#include <lists.h>
#include <mapper.h>
#include <mechButton.h>
#include <multiMap.h>
#include <PulseOut.h>
#include <resizeBuff.h>
#include <runningAvg.h>
#include <timeObj.h>
#include <quickCom.h>
#include <lilParser.h>


#include "parameters.h"
#include "pumpObj.h"
#include "textComObj.h"
#include "handheld.h"
#include "globals.h"
#include "UI.h"

Adafruit_seesaw ss;                               // The moisture sensor.

timeObj*      waterTime = NULL;                   // Time length to water when plant shows dry. (ms)
timeObj*      soakTime = NULL;                    // Time to wait after watering before going back to watching mosture level.
mapper*       mudMapper = NULL;                   // Mapper from raw capacitive reading to percent.

runningAvg    cSmoother(DEF_CSMOOTHER);           // Running avarage for the raw capacitive readings.
runningAvg    tSmoother(DEF_TSMOOTHER);           // Running avarage for the raw tempature readings.
timeObj       readTime(DEF_READ_TIME);            // Time between moisture readings.


// ********************************************************************
// ********************************************************************
// ********************************************************************

// I Think this is how they tell if the unit is online or not. Maybe I
// can use this as a periodic check to see if its running or not?

/*
uint8_t c = this->read8(SEESAW_STATUS_BASE, SEESAW_STATUS_HW_ID);
  if (c != SEESAW_HW_ID_CODE) {
    return false;
  }
  return true;
*/

// ********************************************************************
// ********************************************************************
// ********************************************************************
// Flipping the screen.

// Normal
//0xA8 = 64;
//0xA0 A[4] = 0;
//0xA2 = 0;
//0xA1 = 0;

// Inverse?
//0xA8 = 64;
//0xA0 A[4] = 1;
//0xA2 = 0;
//0xA1 = 0;



// ********************************************************************
// ********************************************************************
// ********************************************************************



// Setup everything we can without a param set. Everything that is only done once.
// Then we read in the parameters and start up operation. The doReadParams() call is
// different in that it can be called randomly during the runtime of the machine.
void setup() {

  ourPump.setPump(false);                               // Off with the pump. This must be called first to lock down control of the pump.
                                                        // Otherwise, if say.. You find you have a dead sensor and the progam locks here..
                                                        // The pump will randomly activate. It pickes up stray currents on the line that
                                                        // trigger the driver hardware. Once this is called, the pump contol is locked in
                                                        // and your good to go.
                                                        
  Serial.begin(57600);                                  // Fire up serial port. (Debugging)
  Serial.println("Hello?");

  ourDisplay.begin();                                   // Fire up our "human interface". (fancy!)
  Serial.print("We have a display? ");
  Serial.println(ourDisplay.mHaveScreen);
  
  textComs.begin();                                     // Set up parser so we can talk to the computer.
  Serial.println("text coms are up.");
  
  ourHandheld.begin();                                  // Setup coms for the handheld controller.
  Serial.print("ourHandheld result (0 is good) : ");
  Serial.println(ourHandheld.readErr());
  
  //delay(1000);                                          // Just in case its not ready, go have a BANNED-ette. Then we'll have a go at firing it up.
  
  if (!ss.begin(0x36)) {                                // Start up moisture sensor.
    Serial.println("ERROR! no Sensor.");                // Failed!
    ourDisplay.sensorDeath();                           // This will lock everything up and just blink. (Game over!)
  }

  ourParamObj.readParams();                             // Read our saved running params.
  updateEnv();                                          // Setup what we need to setup with params.
  
  weAre = soaking;                                      // Our state is soaking. This gives things time to settle out.
  soakTime->start();                                    // And we start up the soak timer for that time.
  readTime.start();                                     // Fire up the read timer. We're live!

  Serial.println("Sytem online!"); 
}


// We have a fresh load of parameters. Initialze the machine with them
void updateEnv(void) {

  if (waterTime) delete(waterTime);                                             // These three are for freeing memeory from the
  if (soakTime) delete(soakTime);                                               // Last set of parameters. We'll need to build up
  if (soakTime) delete(soakTime);                                               // a new set for doing all the math, timing n stuff.
  
  waterTime   = new timeObj(ourParamObj.getWaterTime());                        // Create an object for tracking watering time.
  soakTime    = new timeObj(ourParamObj.getSoakTime());                         // Create an object for tracking soak time.
  mudMapper   = new mapper(ourParamObj.getDry(),ourParamObj.getMud(),0,100);    // Create the mapper to calculate moiture percent.
  
  ourPump.setPWMPercent(ourParamObj.getPWMPercent());
  ourPump.setPWMPeriod(ourParamObj.getPWMPeriod());
  needReset = false;
}


// After all the nonsense in loop(). It all boils down to, do we want the pump on or not?
// Here's where we look at everything and do just that.
void doSetPump(void) {

  if (pumpCom||weAre==watering) {   // Currently two things tell us to water. pumpCom from the controller and our state.
    if (!ourPump.pumpOn()) {        // We want the pump on and its not on now?
      ourPump.setPump(true);        // Turn on the pump.
    }
  } else {                          // We want the pump off?
    ourPump.setPump(false);         // Off with the pump.
  }
  if (ourPump.pumpOn()) {
    ourPump.setSpeed();
  }
}


// Get the info from the sensor and refine it to the point we can use it.
void doReading(void) {
  
  tempC = ss.getTemp();                   // Read the temperature from the sensor.
  capread = ss.touchRead(0);              // Read the capacitive value from the sensor.
  capread = cSmoother.addData(capread);   // Pop the capacitive value into the capacitive smoother. (Running avarage)
  tempC = tSmoother.addData(tempC);       // Pop the temperature value into the tempature smoother. (Again, running avarage)
  moisture = mudMapper->Map(capread);      // Map the resulting capacitive value to a percent.
  moisture = round(moisture);             // Round it to an int.
}


// Ah loop(). This is what we do all day.
void loop() {
  
  idle();                                             // Calling idle() first is always a good idea. Just in case there are idlers that need it.
  if (needReset) {                                    // If our params have changed..
    updateEnv();                                      // Update all the things they effect.
  }
  textComs.checkTextCom();                            // Check to see if theres a guy at the computer looking to talk to us.
  ourHandheld.checkComs();                            // Now we bop off and check to see if anything has come in from a handheld controller.
  
  if (readTime.ding()) {                              // If its tiome to do a reading..
    doReading();                                      // Well, do it.
    readTime.stepTime();                              // Reset the timer for the next reading.
  }

  switch (weAre) {                                    // OK, state stuff. Depending on our current state..
    case sitting :                                    // Sitting = watching moisture wating to start watering.
      if (moisture<ourParamObj.getDryLimit()) {       // If its too dry? Time to water..
        Serial.println("Watering");                   // Tell the world what's up next. (Again, if they are listening)
        waterTime->start();                           // Start up the watering timer.
        weAre = watering;                             // Set state that we are in watering mode.
      }
     break;                                           // All done, jet!
     case watering :                                  // Watering = running the pump and watering plants.
      if (waterTime->ding()) {                        // If our time for watering has expired...            
        Serial.println("Soaking");                    // Tell the world what's up next. (And again, if they are listening) 
        soakTime->start();                            // Start up the soaking timer.
        weAre = soaking;                              // Set state that we are in soaking mode.
      }
     break;                                           // That's it for now.
     case soaking :                                   // soaking = waiting for the water to soak through the soil to the sensor.
      if (soakTime->ding()) {                         // If soak time has expired..
        Serial.println("Back sitting.");              // Tell the world what's up next.
        weAre = sitting;                              // Set state that we are in sitting mode. 
      }
     break;                                           // All done, lets bolt!
  }
  doSetPump();                                        // Now that commands and state have been checked, decide if the pump goes on or off.
}
As for the rest of the main program's code, here's the github link to it : https://github.com/leftCoast/Arduino/tr ... r/flora_II

The rest is in the libraries in the LC_* folders : https://github.com/leftCoast/Arduino/tr ... /libraries

What I've found is that if these things run inside (With no water being added) they seem solid as a rock. (So far). Its when they get out into the "environment" that everything falls apart. When it rains, they go insane. My theory of the moment is that you get a lot of water and the resulting mud doesn't pack as tightly as semi dry dirt. What I'm actually seeing is wild moisture swings 0-100%. This is over maybe a 15 second or so period?

I thought that water was getting past the original RTV sealant. Drying them out in a vacuum chamber for a coupe hours seemed to "fix" them. And that went along with my theory that the RTV wasn't doing it job. So the last batch, the ones outside now, are all sealed in epoxy encapsulating compound. As far as I can tell, this didn't help at all. I just had to go out and unplug the power as they were all randomly seeing dry plants and trying to water them. (Nothing's dry out there, its raining!)

Anyway, that's where things sit at the moment. Like I said, any help would be appreciated. I'm assuming I"m not the only one using these so there must be some people out there who can give me some tips.

thanks!

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

It would be interesting to see what the raw sensor readings are - before any of the smoothing or mapping. It looks like you are doing everything in floating point, so there shouldn't be any overflows there. But it would be good to see what the raw data looks like coming from the driver.

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

I agree! I'm thinking I'll do a debug version that just displays the raw value on the screen before its dropped into the running average thing.

The RTV ones would stop working altogether until they went through the vacuum chamber. My theroy, in that case, the backside of the sensor was getting wet through the 3D case and shorting out the addressing pads. I'm not seeing this with the epoxy ones (so far).

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

How is the epoxy done? Looks like a 3D printed shell. Do you just mount the shell to the sensor and fill with epoxy?

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

You do it like this..

Image
First clip away the shell of the connector. So you can solder wires to it.

Image
Then the 3D printed cover slides up the shaft..

Image
In position, ready to fasten on there.

Image
A couple 2 x 6mm screws lock it into place.

Image
See? Nice little hollow to pour in your resin.

Image
Getting ready to pot a couple of them. I cook them at 120 F for three hours to get a pretty good cure. There are still issues with the resin leaking out past the shaft. I have some ideas for that though.

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

That should give you a good seal around the electronics. The only potential weakness I see is the cable. You could have some ingress via capillary action under the heat-shrink.

One technique I've used with good results is to put a squirt of silicone on the cable before the heat-shrink. With a tightly twisted wire like that, you need to untwist it a bit to let the silicone fill the internal voids. A little squeeze-out at the ends after shrinking is an indication of a good seal.

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

I thought of that, but.. The heat shrink doesn't go all the way to the electronics. It ends about 1/8" before them, so there's still an epoxy seal.

Had another idea last night though. Could the capacitance of the wires between the sensor and the processor effect things? Maybe, the sensor sets up a capacitive "normal" to measure against? And that, in some way, includes the wires. When it rains, the wires get wet causing the "normal" to go up. Which would, in turn, show the plants as getting dryer. This would fit why I never see the issue on the bench testing, but outside its crazy sauce.

I have one on the bench data logging raw values. I need to polish it up a bit then get a few out "in the field" updated to log info.

-jim

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

In theory, the i2c interface is on the digital side of things and should not affect the analog sensor readings. But is probably something worth testing.

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

FINALLY!

Adding logging caused a huge rewrite of a lot of library code and stuff. Winter came, moved the plants into the garage. Had to set up grow lights. The poor things have not needed watering since I repotted them about a month or so ago..

Finally, I have logging working, and a handheld that can use to control logging and read out the log files.

And they all sat for weeks at 100%

And I waited..

This morning, one of them was going crazy!'

I was able to log it.

Code: Select all

Run #	Mode	Limit %	Water s	Soak s	Raw Cap	Raw Tmp	Ave Cap	Ave Tmp	Moisture
1	0	25	30	120	992	18.56	1006	18.59	99.00
1	0	25	30	120	964	18.86	1004	18.61	98.00
1	0	25	30	120	1016	18.35	1004	18.60	98.00
1	0	25	30	120	1015	18.66	1004	18.61	98.00
1	0	25	30	120	981	18.76	1002	18.61	98.00
1	0	25	30	120	945	18.46	999	18.61	98.00
1	0	25	30	120	955	18.46	996	18.61	97.00
1	0	25	30	120	1015	18.66	997	18.62	97.00
1	0	25	30	120	924	18.26	992	18.60	97.00
1	0	25	30	120	990	18.66	992	18.60	97.00
1	0	25	30	120	960	18.76	990	18.60	96.00
1	0	25	30	120	1015	18.86	990	18.61	96.00
1	0	25	30	120	964	18.76	987	18.61	96.00
1	0	25	30	120	975	18.66	985	18.61	96.00
1	0	25	30	120	560	18.96	963	18.62	92.00
1	0	25	30	120	721	18.35	948	18.62	90.00
1	0	25	30	120	1015	18.46	948	18.61	90.00
1	0	25	30	120	574	18.56	926	18.60	87.00
1	0	25	30	120	642	18.86	908	18.61	84.00
1	0	25	30	120	1015	18.56	911	18.62	85.00
1	0	25	30	120	577	18.66	891	18.63	82.00
1	0	25	30	120	724	18.66	879	18.62	80.00
1	0	25	30	120	682	18.46	862	18.62	78.00
1	0	25	30	120	580	18.46	840	18.61	74.00
1	0	25	30	120	725	18.46	827	18.60	72.00
1	0	25	30	120	610	18.26	811	18.59	70.00
1	0	25	30	120	591	18.76	792	18.60	67.00
1	0	25	30	120	760	18.26	780	18.58	65.00
1	0	25	30	120	682	18.56	768	18.60	64.00
1	0	25	30	120	668	18.76	752	18.60	61.00
1	0	25	30	120	738	18.56	740	18.59	60.00
1	0	25	30	120	779	18.56	729	18.58	58.00
1	0	25	30	120	684	18.46	715	18.56	56.00
1	0	25	30	120	876	18.86	710	18.57	55.00
1	0	25	30	120	1000	18.46	732	18.55	58.00
1	0	25	30	120	1015	18.46	746	18.55	60.00
1	0	25	30	120	1015	18.46	746	18.55	60.00
1	0	25	30	120	870	18.26	761	18.54	63.00
1	0	25	30	120	855	18.56	772	18.52	64.00
1	0	25	30	120	1011	18.56	772	18.52	64.00
1	0	25	30	120	944	18.46	790	18.51	67.00
1	0	25	30	120	993	18.66	803	18.51	69.00
1	0	25	30	120	1016	19.06	820	18.54	71.00
1	0	25	30	120	1015	18.26	842	18.53	75.00
1	0	25	30	120	1015	18.56	856	18.54	77.00
1	0	25	30	120	1014	18.66	877	18.56	80.00
1	0	25	30	120	1015	18.76	898	18.56	83.00
1	0	25	30	120	927	18.76	906	18.58	84.00
1	0	25	30	120	970	18.66	921	18.59	86.00
1	0	25	30	120	968	18.46	936	18.57	88.00
1	0	25	30	120	914	18.66	944	18.58	90.00
1	0	25	30	120	1012	18.35	956	18.57	91.00
1	0	25	30	120	1000	18.16	972	18.55	94.00
1	0	25	30	120	939	18.56	975	18.54	94.00
1	0	25	30	120	875	18.26	969	18.53	93.00
1	0	25	30	120	992	18.56	968	18.53	93.00
1	0	25	30	120	977	18.46	966	18.53	93.00
1	0	25	30	120	1015	18.46	973	18.54	94.00
1	0	25	30	120	886	18.46	974	18.54	94.00
1	0	25	30	120	877	18.56	968	18.54	93.00
1	0	25	30	120	1015	18.26	971	18.53	94.00
1	0	25	30	120	890	18.35	966	18.51	93.00
1	0	25	30	120	963	18.46	963	18.48	92.00
1	0	25	30	120	893	18.56	957	18.50	91.00
1	0	25	30	120	873	18.76	950	18.51	90.00
1	0	25	30	120	834	18.66	941	18.51	89.00
1	0	25	30	120	1015	18.56	941	18.50	89.00
1	0	25	30	120	1016	18.86	946	18.50	90.00
1	0	25	30	120	1015	18.26	948	18.48	90.00
1	0	25	30	120	1015	18.56	950	18.49	90.00
1	0	25	30	120	1016	18.46	955	18.48	91.00
1	0	25	30	120	1016	18.46	956	18.48	91.00
1	0	25	30	120	1015	18.76	956	18.51	91.00
1	0	25	30	120	1015	18.56	960	18.51	92.00
1	0	25	30	120	1015	18.56	967	18.53	93.00
1	0	25	30	120	950	19.06	965	18.55	93.00
1	0	25	30	120	1015	18.76	967	18.57	93.00
1	0	25	30	120	890	18.76	961	18.58	92.00
1	0	25	30	120	894	18.66	961	18.59	92.00
1	0	25	30	120	927	18.56	964	18.59	93.00
1	0	25	30	120	908	18.66	958	18.61	92.00
1	0	25	30	120	1015	18.66	965	18.63	93.00
1	0	25	30	120	877	18.76	960	18.64	92.00
1	0	25	30	120	983	18.56	965	18.64	93.00
1	0	25	30	120	970	18.66	970	18.64	93.00
1	0	25	30	120	1015	18.56	979	18.63	95.00
1	0	25	30	120	975	18.66	977	18.64	94.00
1	0	25	30	120	966	18.46	974	18.62	94.00
1	0	25	30	120	783	18.56	963	18.63	92.00
1	0	25	30	120	856	18.35	955	18.62	91.00
1	0	25	30	120	905	18.56	949	18.63	90.00
1	0	25	30	120	954	18.56	946	18.63	90.00
1	0	25	30	120	938	18.56	942	18.62	89.00
1	0	25	30	120	1016	18.56	942	18.62	89.00
1	0	25	30	120	1015	18.76	942	18.63	89.00
1	0	25	30	120	904	18.56	940	18.61	89.00
1	0	25	30	120	959	18.26	937	18.58	89.00
1	0	25	30	120	854	18.76	935	18.58	88.00
1	0	25	30	120	954	18.46	938	18.57	89.00
1	0	25	30	120	838	18.56	934	18.57	88.00
1	0	25	30	120	879	18.46	932	18.56	88.00
1	0	25	30	120	1015	18.66	932	18.56	88.00
1	0	25	30	120	1015	18.66	939	18.56	89.00
1	0	25	30	120	992	18.66	940	18.56	89.00
1	0	25	30	120	1010	18.86	942	18.57	89.00
1	0	25	30	120	1000	18.56	941	18.57	89.00
1	0	25	30	120	930	18.46	939	18.56	89.00
1	0	25	30	120	917	18.66	936	18.57	88.00
1	0	25	30	120	836	18.56	939	18.57	89.00
1	0	25	30	120	744	18.76	933	18.59	88.00
1	0	25	30	120	696	18.35	923	18.58	86.00
1	0	25	30	120	605	18.46	905	18.58	84.00
1	0	25	30	120	999	18.56	908	18.58	84.00
1	0	25	30	120	969	18.46	906	18.57	84.00
1	0	25	30	120	942	18.46	902	18.56	83.00
1	0	25	30	120	1015	18.35	908	18.55	84.00
1	0	25	30	120	1016	18.66	911	18.57	85.00
1	0	25	30	120	1012	18.66	919	18.56	86.00
1	0	25	30	120	1012	18.86	922	18.58	86.00
1	0	25	30	120	966	18.66	928	18.59	87.00
1	0	25	30	120	1015	18.56	935	18.59	88.00
1	0	25	30	120	1015	18.46	935	18.58	88.00
1	0	25	30	120	1014	18.35	935	18.57	88.00
1	0	25	30	120	1014	18.35	936	18.55	88.00
1	0	25	30	120	1015	18.56	936	18.54	88.00
1	0	25	30	120	1014	18.66	937	18.54	89.00
1	0	25	30	120	1015	18.66	941	18.55	89.00
1	0	25	30	120	1015	18.26	946	18.53	90.00
1	0	25	30	120	1015	18.66	955	18.54	91.00
1	0	25	30	120	1015	18.66	968	18.53	93.00
1	0	25	30	120	1015	18.35	984	18.53	95.00
1	0	25	30	120	1015	18.56	1005	18.54	99.00
1	0	25	30	120	1015	18.46	1006	18.53	99.00
1	0	25	30	120	1015	18.56	1008	18.54	99.00
1	0	25	30	120	1015	18.56	1012	18.54	100.00
1	0	25	30	120	1015	18.86	1012	18.57	100.00
1	0	25	30	120	1015	18.66	1012	18.57	100.00
1	0	25	30	120	1015	18.35	1012	18.55	100.00
1	0	25	30	120	1015	18.76	1012	18.55	100.00
1	0	25	30	120	1015	18.66	1014	18.55	100.00
1	0	25	30	120	1015	18.56	1014	18.55	100.00
1	0	25	30	120	1015	18.86	1014	18.57	100.00
1	0	25	30	120	1016	18.46	1014	18.57	100.00
1	0	25	30	120	1015	18.56	1015	18.58	100.00
1	0	25	30	120	1015	18.86	1015	18.60	100.00
1	0	25	30	120	1015	18.46	1015	18.59	100.00
1	0	25	30	120	1015	18.76	1015	18.59	100.00
1	0	25	30	120	1015	18.66	1015	18.61	100.00
1	0	25	30	120	1015	18.46	1015	18.60	100.00
1	0	25	30	120	1016	18.66	1015	18.60	100.00
1	0	25	30	120	1015	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.86	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.64	100.00
1	0	25	30	120	1015	18.66	1015	18.65	100.00
1	0	25	30	120	1015	18.56	1015	18.65	100.00
1	0	25	30	120	1015	18.56	1015	18.63	100.00
1	0	25	30	120	1016	18.66	1015	18.63	100.00
1	0	25	30	120	1015	18.16	1015	18.62	100.00
1	0	25	30	120	1015	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.35	1015	18.61	100.00
1	0	25	30	120	1015	18.66	1015	18.60	100.00
1	0	25	30	120	1015	18.56	1015	18.61	100.00
1	0	25	30	120	1016	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.86	1015	18.62	100.00
1	0	25	30	120	1015	18.35	1015	18.61	100.00
1	0	25	30	120	1016	18.46	1015	18.60	100.00
1	0	25	30	120	1015	18.66	1015	18.60	100.00
1	0	25	30	120	1015	18.66	1015	18.61	100.00
1	0	25	30	120	1015	18.56	1015	18.60	100.00
1	0	25	30	120	1015	18.35	1015	18.59	100.00
1	0	25	30	120	1015	18.66	1015	18.58	100.00
1	0	25	30	120	1015	18.46	1015	18.57	100.00
1	0	25	30	120	1015	18.56	1015	18.56	100.00
1	0	25	30	120	1015	18.35	1015	18.55	100.00
1	0	25	30	120	1015	18.46	1015	18.55	100.00
1	0	25	30	120	1015	18.35	1015	18.53	100.00
1	0	25	30	120	1015	18.26	1015	18.54	100.00
1	0	25	30	120	1015	18.46	1015	18.53	100.00
1	0	25	30	120	1015	18.46	1015	18.51	100.00
1	0	25	30	120	1015	18.46	1015	18.52	100.00
1	0	25	30	120	1015	18.76	1015	18.52	100.00
1	0	25	30	120	1015	18.56	1015	18.52	100.00
1	0	25	30	120	1015	18.66	1015	18.52	100.00
1	0	25	30	120	1015	18.56	1015	18.50	100.00
1	0	25	30	120	1015	18.76	1015	18.52	100.00
1	0	25	30	120	1015	18.66	1015	18.53	100.00
1	0	25	30	120	1015	18.56	1015	18.53	100.00
1	0	25	30	120	1015	18.66	1015	18.53	100.00
1	0	25	30	120	1015	18.46	1015	18.52	100.00
1	0	25	30	120	1015	18.56	1015	18.53	100.00
1	0	25	30	120	1016	18.66	1015	18.53	100.00
1	0	25	30	120	1015	18.46	1015	18.53	100.00
1	0	25	30	120	1015	18.26	1015	18.52	100.00
1	0	25	30	120	1015	18.35	1015	18.52	100.00
1	0	25	30	120	1015	18.46	1015	18.52	100.00
1	0	25	30	120	1016	18.76	1015	18.54	100.00
1	0	25	30	120	1015	18.56	1015	18.55	100.00
1	0	25	30	120	1015	18.46	1015	18.55	100.00
1	0	25	30	120	1015	18.66	1015	18.56	100.00
1	0	25	30	120	1015	18.46	1015	18.56	100.00
1	0	25	30	120	1016	18.96	1015	18.57	100.00
1	0	25	30	120	1014	18.86	1015	18.59	100.00
1	0	25	30	120	1015	18.66	1015	18.59	100.00
1	0	25	30	120	1015	18.26	1015	18.57	100.00
1	0	25	30	120	1015	18.56	1015	18.56	100.00
1	0	25	30	120	1015	18.35	1015	18.55	100.00
1	0	25	30	120	1015	18.86	1015	18.56	100.00
1	0	25	30	120	1015	18.76	1015	18.57	100.00
1	0	25	30	120	1015	18.66	1015	18.58	100.00
1	0	25	30	120	1015	18.66	1015	18.58	100.00
1	0	25	30	120	1015	18.66	1015	18.58	100.00
1	0	25	30	120	1015	18.66	1015	18.59	100.00
1	0	25	30	120	1016	18.56	1015	18.61	100.00
1	0	25	30	120	1015	18.56	1015	18.62	100.00
1	0	25	30	120	977	18.86	1013	18.64	100.00
1	0	25	30	120	869	18.56	1005	18.63	99.00
1	0	25	30	120	1016	18.35	1005	18.62	99.00
1	0	25	30	120	1013	18.66	1005	18.63	99.00
1	0	25	30	120	985	18.76	1004	18.63	98.00
1	0	25	30	120	1016	18.46	1004	18.63	98.00
1	0	25	30	120	973	18.56	1002	18.61	98.00
1	0	25	30	120	939	18.56	998	18.60	98.00
1	0	25	30	120	999	18.76	997	18.60	97.00
1	0	25	30	120	1008	18.76	997	18.63	97.00
1	0	25	30	120	1015	18.26	997	18.61	97.00
1	0	25	30	120	1015	18.86	997	18.64	97.00
1	0	25	30	120	1015	18.86	997	18.64	97.00
1	0	25	30	120	962	18.35	994	18.62	97.00
1	0	25	30	120	955	18.66	991	18.62	96.00
1	0	25	30	120	936	18.76	987	18.62	96.00
1	0	25	30	120	872	18.35	980	18.61	95.00
1	0	25	30	120	789	18.56	969	18.60	93.00
1	0	25	30	120	817	18.35	959	18.59	92.00
1	0	25	30	120	924	18.66	954	18.60	91.00
1	0	25	30	120	930	18.35	952	18.57	91.00
1	0	25	30	120	964	18.66	957	18.58	91.00
1	0	25	30	120	1016	18.66	957	18.59	91.00
1	0	25	30	120	1011	18.66	957	18.59	91.00
1	0	25	30	120	1015	18.76	958	18.59	92.00
1	0	25	30	120	1005	18.76	958	18.61	92.00
1	0	25	30	120	1015	18.66	960	18.61	92.00
1	0	25	30	120	1011	18.35	963	18.60	92.00
1	0	25	30	120	989	18.66	963	18.60	92.00
1	0	25	30	120	1015	18.66	963	18.59	92.00
1	0	25	30	120	1015	18.76	963	18.62	92.00
1	0	25	30	120	1015	18.76	963	18.61	92.00
1	0	25	30	120	1015	18.66	963	18.60	92.00
1	0	25	30	120	1016	18.35	966	18.60	93.00
1	0	25	30	120	1015	18.76	969	18.61	93.00
1	0	25	30	120	1015	18.56	973	18.60	94.00
1	0	25	30	120	1015	18.66	980	18.61	95.00
1	0	25	30	120	1015	18.35	991	18.60	96.00
1	0	25	30	120	1016	18.46	1001	18.61	98.00
1	0	25	30	120	1016	18.56	1006	18.60	99.00
1	0	25	30	120	1016	18.56	1010	18.61	99.00
1	0	25	30	120	1015	18.76	1013	18.62	100.00
1	0	25	30	120	1015	18.56	1013	18.61	100.00
1	0	25	30	120	1015	18.46	1013	18.60	100.00
1	0	25	30	120	1015	18.66	1013	18.60	100.00
1	0	25	30	120	1015	18.66	1013	18.59	100.00
1	0	25	30	120	1015	18.56	1013	18.59	100.00
1	0	25	30	120	1015	18.76	1013	18.61	100.00
1	0	25	30	120	1016	18.66	1015	18.61	100.00
1	0	25	30	120	1015	18.46	1015	18.60	100.00
1	0	25	30	120	1015	18.46	1015	18.58	100.00
1	0	25	30	120	1015	18.96	1015	18.59	100.00
1	0	25	30	120	1015	18.46	1015	18.58	100.00
1	0	25	30	120	1015	18.76	1015	18.60	100.00
1	0	25	30	120	1015	18.56	1015	18.59	100.00
1	0	25	30	120	1016	18.56	1015	18.59	100.00
1	0	25	30	120	1015	18.35	1015	18.58	100.00
1	0	25	30	120	1016	18.66	1015	18.59	100.00
1	0	25	30	120	1015	18.56	1015	18.60	100.00
1	0	25	30	120	1015	18.76	1015	18.61	100.00
1	0	25	30	120	1016	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.66	1015	18.61	100.00
1	0	25	30	120	1015	18.56	1015	18.61	100.00
1	0	25	30	120	1015	18.56	1015	18.62	100.00
1	0	25	30	120	1015	18.86	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.63	100.00
1	0	25	30	120	1010	18.66	1014	18.63	100.00
1	0	25	30	120	950	18.35	1011	18.61	99.00
1	0	25	30	120	1015	18.46	1011	18.61	99.00
1	0	25	30	120	661	18.66	993	18.62	97.00
1	0	25	30	120	1016	18.56	994	18.60	97.00
1	0	25	30	120	848	18.56	985	18.61	96.00
1	0	25	30	120	935	18.66	981	18.60	95.00
1	0	25	30	120	1015	18.46	981	18.60	95.00
1	0	25	30	120	979	18.86	979	18.61	95.00
1	0	25	30	120	908	18.66	974	18.63	94.00
1	0	25	30	120	835	18.35	965	18.61	93.00
1	0	25	30	120	958	18.46	962	18.61	92.00
1	0	25	30	120	985	18.66	961	18.60	92.00
1	0	25	30	120	1015	18.66	961	18.60	92.00
1	0	25	30	120	903	18.76	955	18.60	91.00
1	0	25	30	120	964	18.76	952	18.61	91.00
1	0	25	30	120	1015	18.46	952	18.61	91.00
1	0	25	30	120	1015	18.76	952	18.60	91.00
1	0	25	30	120	1015	18.96	952	18.62	91.00
1	0	25	30	120	881	18.56	946	18.61	90.00
1	0	25	30	120	1015	18.76	946	18.62	90.00
1	0	25	30	120	1014	18.86	949	18.64	90.00
1	0	25	30	120	929	18.86	945	18.66	90.00
1	0	25	30	120	941	18.86	959	18.67	92.00
1	0	25	30	120	1015	18.56	959	18.67	92.00
1	0	25	30	120	1015	18.46	967	18.67	93.00
1	0	25	30	120	1014	18.66	971	18.67	94.00
1	0	25	30	120	1015	18.76	971	18.68	94.00
1	0	25	30	120	942	18.86	969	18.68	93.00
1	0	25	30	120	1016	18.66	975	18.68	94.00
1	0	25	30	120	963	18.76	981	18.70	95.00
1	0	25	30	120	972	18.56	982	18.71	95.00
1	0	25	30	120	941	18.66	980	18.71	95.00
1	0	25	30	120	861	18.56	972	18.70	94.00
1	0	25	30	120	742	18.56	964	18.69	93.00
1	0	25	30	120	983	18.86	965	18.70	93.00
1	0	25	30	120	767	18.76	952	18.71	91.00
1	0	25	30	120	779	18.35	941	18.69	89.00
1	0	25	30	120	744	18.66	927	18.68	87.00
1	0	25	30	120	735	18.46	920	18.67	86.00
1	0	25	30	120	1015	18.56	920	18.66	86.00
1	0	25	30	120	980	18.76	918	18.66	86.00
1	0	25	30	120	987	18.76	921	18.65	86.00
1	0	25	30	120	991	18.56	923	18.64	86.00
1	0	25	30	120	985	18.66	922	18.64	86.00
1	0	25	30	120	1014	18.46	922	18.64	86.00
1	0	25	30	120	1015	18.56	922	18.64	86.00
1	0	25	30	120	929	18.66	918	18.63	86.00
1	0	25	30	120	1015	18.46	921	18.61	86.00
1	0	25	30	120	1015	18.35	921	18.60	86.00
1	0	25	30	120	1016	18.86	924	18.60	87.00
1	0	25	30	120	983	18.76	924	18.61	87.00
1	0	25	30	120	1016	18.56	928	18.61	87.00
1	0	25	30	120	1015	18.56	936	18.61	88.00
1	0	25	30	120	1015	18.35	949	18.60	90.00
1	0	25	30	120	997	18.66	950	18.59	90.00
1	0	25	30	120	1015	18.56	963	18.58	92.00
1	0	25	30	120	1015	18.35	974	18.58	94.00
1	0	25	30	120	1016	18.66	988	18.58	96.00
1	0	25	30	120	1015	18.26	1002	18.57	98.00
1	0	25	30	120	987	18.76	1001	18.58	98.00
1	0	25	30	120	1015	18.66	1002	18.57	98.00
1	0	25	30	120	953	18.76	1001	18.57	98.00
1	0	25	30	120	981	18.56	1000	18.57	98.00
1	0	25	30	120	1015	18.56	1002	18.57	98.00
1	0	25	30	120	1010	18.35	1001	18.56	98.00
1	0	25	30	120	1005	18.96	1001	18.58	98.00
1	0	25	30	120	1014	18.56	1005	18.58	99.00
1	0	25	30	120	992	18.66	1004	18.59	98.00
1	0	25	30	120	1015	18.76	1004	18.61	98.00
1	0	25	30	120	971	18.86	1002	18.61	98.00
1	0	25	30	120	1016	18.66	1003	18.60	98.00
1	0	25	30	120	1004	18.56	1003	18.60	98.00
1	0	25	30	120	1014	18.46	1003	18.60	98.00
1	0	25	30	120	1003	18.76	1002	18.62	98.00
1	0	25	30	120	981	18.86	1001	18.63	98.00
1	0	25	30	120	1014	18.86	1001	18.64	98.00
1	0	25	30	120	935	18.26	997	18.64	97.00
1	0	25	30	120	1014	18.66	997	18.64	97.00
1	0	25	30	120	1015	18.66	997	18.66	97.00
1	0	25	30	120	1015	18.76	999	18.66	98.00
1	0	25	30	120	1015	18.35	999	18.64	98.00
1	0	25	30	120	1016	18.86	1002	18.65	98.00
1	0	25	30	120	1015	18.66	1003	18.65	98.00
1	0	25	30	120	1015	18.66	1003	18.66	98.00
1	0	25	30	120	1015	18.66	1004	18.67	98.00
1	0	25	30	120	1015	18.76	1004	18.66	98.00
1	0	25	30	120	1014	18.46	1004	18.66	98.00
1	0	25	30	120	1015	18.56	1005	18.65	99.00
1	0	25	30	120	1015	18.76	1005	18.65	99.00
1	0	25	30	120	1015	18.46	1008	18.63	99.00
1	0	25	30	120	1014	18.56	1007	18.63	99.00
1	0	25	30	120	1015	18.56	1008	18.63	99.00
1	0	25	30	120	1015	18.76	1008	18.64	99.00
1	0	25	30	120	1015	18.76	1009	18.64	99.00
1	0	25	30	120	1015	18.66	1010	18.63	99.00
1	0	25	30	120	1015	18.56	1010	18.62	99.00
1	0	25	30	120	1015	18.46	1014	18.63	100.00
1	0	25	30	120	1015	18.66	1014	18.63	100.00
1	0	25	30	120	1015	18.46	1014	18.62	100.00
1	0	25	30	120	1016	18.46	1015	18.60	100.00
1	0	25	30	120	1016	18.35	1015	18.60	100.00
1	0	25	30	120	1015	18.66	1015	18.59	100.00
1	0	25	30	120	1016	18.46	1015	18.58	100.00
1	0	25	30	120	1015	18.66	1015	18.58	100.00
1	0	25	30	120	1015	18.96	1015	18.60	100.00
1	0	25	30	120	1015	18.56	1015	18.59	100.00
1	0	25	30	120	1016	18.96	1015	18.61	100.00
1	0	25	30	120	1015	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.46	1015	18.61	100.00
1	0	25	30	120	1015	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.46	1015	18.62	100.00
1	0	25	30	120	1015	18.66	1015	18.61	100.00
1	0	25	30	120	1015	18.46	1015	18.60	100.00
1	0	25	30	120	1015	18.46	1015	18.59	100.00
1	0	25	30	120	1015	18.76	1015	18.60	100.00
1	0	25	30	120	1015	18.66	1015	18.61	100.00
1	0	25	30	120	986	18.76	1013	18.61	100.00
1	0	25	30	120	1015	18.46	1013	18.61	100.00
1	0	25	30	120	980	18.86	1011	18.63	99.00
1	0	25	30	120	1004	18.66	1011	18.65	99.00
1	0	25	30	120	1015	18.76	1011	18.65	99.00
1	0	25	30	120	1015	18.86	1011	18.67	99.00
1	0	25	30	120	994	18.76	1010	18.68	99.00
1	0	25	30	120	1000	18.56	1009	18.66	99.00
1	0	25	30	120	1015	18.46	1009	18.65	99.00
1	0	25	30	120	1015	18.86	1009	18.65	99.00
1	0	25	30	120	975	18.35	1007	18.63	99.00
1	0	25	30	120	1014	18.96	1007	18.65	99.00
1	0	25	30	120	981	18.66	1005	18.65	99.00
1	0	25	30	120	995	18.46	1004	18.64	98.00
1	0	25	30	120	930	18.46	1000	18.64	98.00
1	0	25	30	120	912	18.66	995	18.64	97.00
1	0	25	30	120	763	18.66	982	18.65	95.00
1	0	25	30	120	1014	18.66	982	18.66	95.00
1	0	25	30	120	1004	18.86	982	18.67	95.00
1	0	25	30	120	1012	18.35	981	18.65	95.00
1	0	25	30	120	966	18.66	980	18.65	95.00
1	0	25	30	120	936	18.76	977	18.66	94.00
1	0	25	30	120	886	18.56	972	18.65	94.00
1	0	25	30	120	745	18.86	959	18.66	92.00
1	0	25	30	120	1017	18.66	959	18.65	92.00
1	0	25	30	120	1014	18.66	959	18.64	92.00
1	0	25	30	120	996	18.76	959	18.64	92.00
1	0	25	30	120	945	18.66	956	18.65	91.00
1	0	25	30	120	1014	18.56	956	18.65	91.00
1	0	25	30	120	1016	18.46	956	18.63	91.00
1	0	25	30	120	1015	18.56	958	18.64	92.00
1	0	25	30	120	1015	18.66	958	18.63	92.00
1	0	25	30	120	1015	18.76	960	18.63	92.00
1	0	25	30	120	1016	18.35	961	18.63	92.00
1	0	25	30	120	1015	18.66	965	18.64	93.00
1	0	25	30	120	1015	18.56	970	18.63	93.00
1	0	25	30	120	1016	18.46	983	18.62	95.00
1	0	25	30	120	1015	18.96	983	18.64	95.00
1	0	25	30	120	1015	18.86	984	18.64	95.00
1	0	25	30	120	1015	18.35	984	18.64	95.00
1	0	25	30	120	1015	18.76	986	18.64	96.00
1	0	25	30	120	1015	18.56	990	18.63	96.00
1	0	25	30	120	1014	18.66	997	18.64	97.00
1	0	25	30	120	1015	18.76	1010	18.63	99.00
1	0	25	30	120	1016	18.56	1010	18.63	99.00
1	0	25	30	120	880	18.56	1003	18.62	98.00
1	0	25	30	120	889	18.56	998	18.61	98.00
1	0	25	30	120	1015	18.46	1002	18.60	98.00
1	0	25	30	120	833	18.46	993	18.60	97.00
1	0	25	30	120	1015	18.86	992	18.62	97.00
1	0	25	30	120	949	18.86	989	18.63	96.00
1	0	25	30	120	1015	18.76	989	18.64	96.00
1	0	25	30	120	862	18.86	982	18.64	95.00
1	0	25	30	120	729	18.66	967	18.66	93.00
1	0	25	30	120	1014	18.56	967	18.65	93.00
1	0	25	30	120	1009	18.56	967	18.65	93.00
1	0	25	30	120	719	19.06	952	18.68	91.00
1	0	25	30	120	973	18.46	950	18.66	90.00
1	0	25	30	120	978	18.56	948	18.64	90.00
1	0	25	30	120	1012	18.66	948	18.66	90.00
1	0	25	30	120	1015	18.86	948	18.66	90.00
1	0	25	30	120	918	18.56	943	18.66	89.00
1	0	25	30	120	1014	18.66	943	18.66	89.00
1	0	25	30	120	1016	18.46	943	18.65	89.00
1	0	25	30	120	1015	18.46	943	18.64	89.00
1	0	25	30	120	997	18.86	949	18.66	90.00
1	0	25	30	120	994	18.76	954	18.67	91.00
1	0	25	30	120	1008	18.66	954	18.68	91.00
1	0	25	30	120	1011	18.76	963	18.69	92.00
1	0	25	30	120	1015	18.35	963	18.67	92.00
1	0	25	30	120	1015	18.76	966	18.66	93.00
1	0	25	30	120	1012	18.86	966	18.67	93.00
1	0	25	30	120	1015	18.86	973	18.67	94.00
1	0	25	30	120	1010	18.86	988	18.68	96.00
1	0	25	30	120	1014	18.66	988	18.68	96.00
1	0	25	30	120	1014	18.56	988	18.68	96.00
1	0	25	30	120	1015	18.76	1003	18.67	98.00
1	0	25	30	120	1015	18.66	1005	18.68	99.00
1	0	25	30	120	1015	18.66	1007	18.68	99.00
1	0	25	30	120	1015	18.46	1007	18.67	99.00
1	0	25	30	120	1014	18.66	1007	18.66	99.00
1	0	25	30	120	1015	18.56	1011	18.66	99.00
1	0	25	30	120	1015	18.86	1012	18.67	100.00
1	0	25	30	120	1015	18.66	1011	18.68	99.00
1	0	25	30	120	1014	18.86	1011	18.70	99.00
1	0	25	30	120	1015	18.86	1012	18.70	100.00
1	0	25	30	120	1014	18.86	1013	18.71	100.00
1	0	25	30	120	1015	18.66	1014	18.71	100.00
1	0	25	30	120	1014	18.76	1014	18.71	100.00
1	0	25	30	120	1015	18.56	1014	18.72	100.00
1	0	25	30	120	1014	18.35	1014	18.70	100.00
1	0	25	30	120	1015	18.66	1014	18.69	100.00
1	0	25	30	120	1014	18.86	1014	18.69	100.00
1	0	25	30	120	1015	18.66	1014	18.68	100.00
1	0	25	30	120	943	18.86	1011	18.69	99.00
1	0	25	30	120	1015	18.66	1011	18.69	99.00
1	0	25	30	120	984	18.76	1009	18.69	99.00
1	0	25	30	120	985	18.76	1008	18.70	99.00
1	0	25	30	120	1014	18.35	1008	18.68	99.00
1	0	25	30	120	984	18.76	1006	18.70	99.00
1	0	25	30	120	1009	18.35	1006	18.68	99.00
1	0	25	30	120	995	18.86	1005	18.70	99.00
1	0	25	30	120	1016	18.46	1005	18.68	99.00
1	0	25	30	120	1015	18.56	1005	18.67	99.00
1	0	25	30	120	1015	18.56	1005	18.66	99.00
1	0	25	30	120	1015	18.96	1005	18.66	99.00
1	0	25	30	120	1013	18.66	1005	18.65	99.00
1	0	25	30	120	1001	18.66	1004	18.65	98.00
1	0	25	30	120	954	18.46	1001	18.64	98.00
1	0	25	30	120	923	18.46	996	18.63	97.00
1	0	25	30	120	953	18.76	993	18.65	97.00
1	0	25	30	120	1015	18.35	993	18.64	97.00
1	0	25	30	120	1016	18.86	994	18.64	97.00
1	0	25	30	120	1014	18.56	993	18.63	97.00
1	0	25	30	120	1015	18.66	997	18.62	97.00
1	0	25	30	120	1016	18.16	997	18.60	97.00
1	0	25	30	120	1013	18.35	999	18.58	98.00
1	0	25	30	120	1015	18.56	1000	18.57	98.00
1	0	25	30	120	1015	18.46	1000	18.57	98.00
1	0	25	30	120	996	18.76	1001	18.57	98.00
1	0	25	30	120	1015	18.56	1001	18.58	98.00
1	0	25	30	120	975	18.46	1000	18.56	98.00
1	0	25	30	120	985	18.35	998	18.56	98.00
1	0	25	30	120	922	18.66	994	18.56	97.00
1	0	25	30	120	940	18.76	990	18.57	96.00
1	0	25	30	120	998	18.26	989	18.54	96.00
1	0	25	30	120	973	18.46	987	18.53	96.00
1	0	25	30	120	970	18.96	986	18.54	96.00
1	0	25	30	120	1009	18.56	988	18.55	96.00
1	0	25	30	120	928	18.86	989	18.57	96.00
1	0	25	30	120	1015	18.66	992	18.56	97.00
1	0	25	30	120	988	18.86	990	18.59	96.00
1	0	25	30	120	931	18.66	986	18.58	96.00
1	0	25	30	120	959	18.56	983	18.58	95.00
1	0	25	30	120	984	18.16	982	18.55	95.00
1	0	25	30	120	1015	18.66	982	18.58	95.00
1	0	25	30	120	937	18.66	978	18.59	95.00
1	0	25	30	120	1015	18.66	978	18.60	95.00
1	0	25	30	120	1015	18.76	978	18.61	95.00
1	0	25	30	120	981	18.46	977	18.60	94.00
1	0	25	30	120	1008	18.56	977	18.60	94.00
1	0	25	30	120	1010	18.46	979	18.60	95.00
1	0	25	30	120	966	18.76	978	18.62	95.00
1	0	25	30	120	920	18.35	978	18.60	95.00
1	0	25	30	120	926	18.66	977	18.60	94.00
1	0	25	30	120	1004	18.56	977	18.61	94.00
1	0	25	30	120	958	18.46	976	18.61	94.00
1	0	25	30	120	1004	18.66	978	18.60	95.00
1	0	25	30	120	988	18.86	977	18.61	94.00
1	0	25	30	120	931	18.76	977	18.61	94.00
1	0	25	30	120	993	18.66	976	18.61	94.00
1	0	25	30	120	974	18.46	975	18.59	94.00
1	0	25	30	120	968	18.76	977	18.59	94.00
1	0	25	30	120	985	18.76	979	18.60	95.00
1	0	25	30	120	1012	18.66	980	18.63	95.00
1	0	25	30	120	1012	18.66	980	18.63	95.00
1	0	25	30	120	981	18.46	982	18.62	95.00
1	0	25	30	120	979	18.66	980	18.62	95.00
1	0	25	30	120	934	18.76	976	18.62	94.00
1	0	25	30	120	918	18.86	973	18.64	94.00
1	0	25	30	120	729	18.76	959	18.65	92.00
1	0	25	30	120	611	18.35	939	18.64	89.00
1	0	25	30	120	786	18.76	930	18.64	88.00
1	0	25	30	120	756	18.56	922	18.65	86.00
1	0	25	30	120	623	18.86	907	18.66	84.00
1	0	25	30	120	1012	18.46	907	18.66	84.00
1	0	25	30	120	904	18.66	905	18.67	84.00
1	0	25	30	120	698	18.66	889	18.67	81.00
1	0	25	30	120	827	18.66	881	18.66	80.00
1	0	25	30	120	809	18.46	875	18.64	79.00
1	0	25	30	120	845	18.76	868	18.65	78.00
1	0	25	30	120	961	18.66	867	18.66	78.00
1	0	25	30	120	871	18.46	862	18.64	78.00
1	0	25	30	120	938	18.66	860	18.64	77.00
1	0	25	30	120	823	18.66	850	18.64	76.00
1	0	25	30	120	951	18.76	847	18.64	75.00
1	0	25	30	120	1015	18.86	849	18.66	76.00
1	0	25	30	120	980	18.66	849	18.66	76.00
1	0	25	30	120	897	18.35	847	18.64	75.00
1	0	25	30	120	934	18.96	848	18.65	75.00
1	0	25	30	120	889	18.56	856	18.64	77.00
1	0	25	30	120	1012	18.56	876	18.65	80.00
1	0	25	30	120	1015	18.86	888	18.65	81.00
1	0	25	30	120	1008	18.86	900	18.67	83.00
1	0	25	30	120	1005	18.56	919	18.65	86.00
1	0	25	30	120	1016	18.76	919	18.67	86.00
1	0	25	30	120	900	18.86	919	18.68	86.00
1	0	25	30	120	981	18.56	933	18.67	88.00
1	0	25	30	120	896	18.86	937	18.68	89.00
1	0	25	30	120	930	18.56	943	18.69	89.00
1	0	25	30	120	978	18.66	950	18.68	90.00
1	0	25	30	120	964	18.26	950	18.66	90.00
1	0	25	30	120	1015	18.86	957	18.68	91.00
1	0	25	30	120	857	18.35	953	18.67	91.00
1	0	25	30	120	878	18.66	956	18.67	91.00
1	0	25	30	120	975	18.35	957	18.65	91.00
1	0	25	30	120	994	18.66	956	18.64	91.00
1	0	25	30	120	849	18.66	949	18.64	90.00
1	0	25	30	120	849	18.56	947	18.65	90.00
1	0	25	30	120	871	18.56	944	18.63	90.00
1	0	25	30	120	945	18.56	946	18.63	90.00
1	0	25	30	120	947	18.66	943	18.63	89.00
1	0	25	30	120	761	18.56	930	18.62	88.00
1	0	25	30	120	910	18.46	926	18.60	87.00
1	0	25	30	120	973	18.46	924	18.59	87.00
1	0	25	30	120	1011	18.46	924	18.58	87.00
1	0	25	30	120	1015	18.56	929	18.56	87.00
1	0	25	30	120	880	18.76	924	18.57	87.00
1	0	25	30	120	892	18.66	924	18.56	87.00
1	0	25	30	120	850	18.76	920	18.57	86.00
1	0	25	30	120	991	18.66	921	18.57	86.00
1	0	25	30	120	966	18.76	921	18.60	86.00
1	0	25	30	120	1016	18.66	921	18.59	86.00
1	0	25	30	120	704	18.66	913	18.60	85.00
1	0	25	30	120	785	18.26	909	18.58	84.00
1	0	25	30	120	1016	18.66	911	18.60	85.00
1	0	25	30	120	938	18.76	908	18.60	84.00
1	0	25	30	120	960	18.86	914	18.61	85.00
1	0	25	30	120	961	18.66	919	18.62	86.00
1	0	25	30	120	964	18.35	924	18.61	87.00
1	0	25	30	120	720	18.66	913	18.61	85.00
1	0	25	30	120	534	18.56	892	18.61	82.00
1	0	25	30	120	800	18.86	894	18.62	82.00
1	0	25	30	120	1015	18.76	899	18.64	83.00
1	0	25	30	120	1007	18.86	901	18.66	83.00
1	0	25	30	120	1015	18.46	901	18.66	83.00
1	0	25	30	120	1015	18.56	901	18.66	83.00
1	0	25	30	120	1015	18.56	908	18.65	84.00
1	0	25	30	120	731	18.76	900	18.65	83.00
1	0	25	30	120	907	18.66	903	18.65	84.00
1	0	25	30	120	1015	18.66	904	18.65	84.00
1	0	25	30	120	1015	18.76	906	18.65	84.00
1	0	25	30	120	1015	18.46	906	18.64	84.00
1	0	25	30	120	1015	18.66	922	18.64	86.00
1	0	25	30	120	1015	18.56	933	18.65	88.00
1	0	25	30	120	1015	18.86	933	18.66	88.00
1	0	25	30	120	1015	18.76	937	18.66	89.00
1	0	25	30	120	1015	18.56	940	18.65	89.00
1	0	25	30	120	747	18.66	929	18.65	87.00
1	0	25	30	120	906	18.56	926	18.66	87.00
1	0	25	30	120	1015	18.46	941	18.65	89.00
1	0	25	30	120	1015	18.66	965	18.65	93.00
1	0	25	30	120	756	18.76	963	18.65	92.00
1	0	25	30	120	856	18.66	955	18.64	91.00
1	0	25	30	120	877	18.66	948	18.63	90.00
1	0	25	30	120	774	18.86	936	18.65	88.00
1	0	25	30	120	896	18.26	930	18.64	88.00
1	0	25	30	120	811	18.66	920	18.64	86.00
1	0	25	30	120	911	18.96	929	18.65	87.00
1	0	25	30	120	942	18.66	931	18.65	88.00
1	0	25	30	120	942	18.56	927	18.65	87.00
1	0	25	30	120	1015	18.56	927	18.64	87.00
1	0	25	30	120	996	18.76	926	18.65	87.00
1	0	25	30	120	880	18.76	919	18.66	86.00
1	0	25	30	120	1014	18.96	919	18.68	86.00
1	0	25	30	120	1015	18.56	919	18.66	86.00
1	0	25	30	120	844	18.76	911	18.66	85.00
1	0	25	30	120	918	18.76	906	18.67	84.00
1	0	25	30	120	919	18.35	915	18.66	85.00
1	0	25	30	120	685	18.66	904	18.66	84.00
1	0	25	30	120	753	18.66	890	18.67	82.00
1	0	25	30	120	813	18.66	880	18.67	80.00
1	0	25	30	120	1014	18.76	893	18.67	82.00
1	0	25	30	120	978	18.76	899	18.68	83.00
1	0	25	30	120	1005	18.66	906	18.68	84.00
1	0	25	30	120	1016	18.16	918	18.64	86.00
1	0	25	30	120	1015	18.66	924	18.66	87.00
1	0	25	30	120	1015	18.35	934	18.65	88.00
1	0	25	30	120	1009	18.56	939	18.63	89.00
1	0	25	30	120	997	18.56	942	18.62	89.00
1	0	25	30	120	1014	18.66	945	18.63	90.00
1	0	25	30	120	1015	18.66	945	18.63	90.00
1	0	25	30	120	1014	18.86	946	18.64	90.00
1	0	25	30	120	1015	18.46	953	18.62	91.00
1	0	25	30	120	1015	18.66	953	18.61	91.00
1	0	25	30	120	1015	18.86	953	18.62	91.00
1	0	25	30	120	1016	18.66	962	18.62	92.00
1	0	25	30	120	1015	18.76	966	18.62	93.00
1	0	25	30	120	1015	18.66	971	18.63	94.00
1	0	25	30	120	1016	18.66	988	18.63	96.00
1	0	25	30	120	1015	18.76	1001	18.64	98.00
1	0	25	30	120	1015	18.35	1011	18.62	99.00
1	0	25	30	120	1015	18.56	1011	18.61	99.00
1	0	25	30	120	1015	18.66	1013	18.61	100.00
1	0	25	30	120	1015	18.66	1013	18.61	100.00
1	0	25	30	120	1015	18.86	1013	18.64	100.00
1	0	25	30	120	1015	18.56	1013	18.64	100.00
1	0	25	30	120	1015	18.96	1013	18.67	100.00
1	0	25	30	120	1015	18.56	1014	18.67	100.00
1	0	25	30	120	1016	18.66	1015	18.67	100.00
1	0	25	30	120	1015	18.86	1015	18.68	100.00
1	0	25	30	120	1015	18.76	1015	18.69	100.00
1	0	25	30	120	1015	18.56	1015	18.67	100.00
1	0	25	30	120	1015	18.56	1015	18.68	100.00
1	0	25	30	120	1015	18.66	1015	18.68	100.00
1	0	25	30	120	1016	18.56	1015	18.66	100.00
1	0	25	30	120	1015	18.66	1015	18.66	100.00
1	0	25	30	120	1015	18.76	1015	18.66	100.00
1	0	25	30	120	1015	18.66	1015	18.66	100.00
1	0	25	30	120	1015	18.46	1015	18.65	100.00
1	0	25	30	120	1015	18.76	1015	18.65	100.00
1	0	25	30	120	1016	18.76	1015	18.67	100.00
1	0	25	30	120	1015	18.35	1015	18.66	100.00
1	0	25	30	120	1015	18.66	1015	18.66	100.00
1	0	25	30	120	1015	18.66	1015	18.66	100.00
1	0	25	30	120	1015	18.46	1015	18.64	100.00
1	0	25	30	120	1015	18.56	1015	18.64	100.00
1	0	25	30	120	1014	18.56	1015	18.62	100.00
1	0	25	30	120	1015	18.76	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.63	100.00
1	0	25	30	120	1016	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.56	1015	18.61	100.00
1	0	25	30	120	1016	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.76	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.63	100.00
1	0	25	30	120	1015	18.46	1015	18.63	100.00
1	0	25	30	120	1015	18.56	1015	18.62	100.00
1	0	25	30	120	1015	18.66	1015	18.62	100.00
1	0	25	30	120	1015	18.76	1015	18.62	100.00
1	0	25	30	120	1015	18.96	1015	18.65	100.00
1	0	25	30	120	1015	18.76	1015	18.65	100.00
1	0	25	30	120	1016	18.46	1015	18.63	100.00
1	0	25	30	120	1015	18.66	1015	18.65	100.00
1	0	25	30	120	1015	18.86	1015	18.66	100.00
1	0	25	30	120	1015	18.66	1015	18.66	100.00
1	0	25	30	120	1015	18.76	1015	18.67	100.00
1	0	25	30	120	1014	18.76	1015	18.68	100.00
1	0	25	30	120	1015	18.86	1015	18.70	100.00
1	0	25	30	120	1015	18.56	1015	18.69	100.00
1	0	25	30	120	1015	18.66	1015	18.69	100.00
1	0	25	30	120	1015	18.76	1015	18.69	100.00
1	0	25	30	120	1015	18.76	1015	18.70	100.00
1	0	25	30	120	1015	18.66	1015	18.70	100.00
1	0	25	30	120	1015	18.76	1015	18.70	100.00
1	0	25	30	120	1014	18.66	1014	18.70	100.00
1	0	25	30	120	1014	18.66	1014	18.71	100.00
1	0	25	30	120	1015	19.06	1014	18.73	100.00
1	0	25	30	120	1015	18.46	1014	18.72	100.00
1	0	25	30	120	1014	18.76	1014	18.72	100.00
1	0	25	30	120	1015	18.66	1014	18.71	100.00
1	0	25	30	120	1014	18.56	1014	18.70	100.00
1	0	25	30	120	1015	18.96	1014	18.72	100.00
1	0	25	30	120	921	18.86	1010	18.73	99.00
1	0	25	30	120	1012	18.66	1009	18.72	99.00
1	0	25	30	120	1006	18.46	1009	18.71	99.00
1	0	25	30	120	1013	18.56	1009	18.70	99.00
1	0	25	30	120	1015	18.56	1009	18.69	99.00
1	0	25	30	120	1008	18.35	1009	18.67	99.00
1	0	25	30	120	1001	18.76	1008	18.68	99.00
1	0	25	30	120	1006	18.56	1007	18.67	99.00
1	0	25	30	120	1002	18.76	1007	18.67	99.00
1	0	25	30	120	1004	18.56	1006	18.66	99.00
1	0	25	30	120	1007	18.76	1006	18.67	99.00
1	0	25	30	120	975	18.76	1004	18.67	98.00
1	0	25	30	120	1013	18.76	1004	18.67	98.00
1	0	25	30	120	1015	18.56	1004	18.67	98.00
1	0	25	30	120	989	18.56	1003	18.64	98.00
1	0	25	30	120	995	18.76	1002	18.66	98.00
1	0	25	30	120	915	18.66	997	18.65	97.00
1	0	25	30	120	1006	19.06	996	18.67	97.00
1	0	25	30	120	942	18.56	993	18.67	97.00
1	0	25	30	120	1016	18.56	993	18.65	97.00
1	0	25	30	120	1015	18.66	997	18.64	97.00
1	0	25	30	120	1015	18.76	997	18.65	97.00
1	0	25	30	120	1013	18.66	998	18.66	98.00
1	0	25	30	120	1015	18.66	998	18.66	98.00
1	0	25	30	120	1006	18.76	997	18.67	97.00
1	0	25	30	120	1002	18.35	997	18.67	97.00
1	0	25	30	120	932	18.46	994	18.66	97.00
1	0	25	30	120	1015	18.66	994	18.66	97.00
1	0	25	30	120	1015	18.56	995	18.65	97.00
1	0	25	30	120	929	18.76	991	18.66	96.00
1	0	25	30	120	1002	18.96	991	18.67	96.00
1	0	25	30	120	960	18.76	990	18.67	96.00
1	0	25	30	120	953	18.76	987	18.67	96.00
1	0	25	30	120	953	19.06	984	18.70	95.00
1	0	25	30	120	733	18.76	971	18.71	94.00
1	0	25	30	120	552	18.56	949	18.70	90.00
1	0	25	30	120	709	18.46	939	18.69	89.00
1	0	25	30	120	889	18.56	933	18.66	88.00
1	0	25	30	120	981	18.66	935	18.67	88.00
1	0	25	30	120	841	18.76	926	18.68	87.00
1	0	25	30	120	689	18.56	910	18.67	85.00
1	0	25	30	120	1008	18.56	909	18.66	84.00
1	0	25	30	120	919	18.35	905	18.65	84.00
1	0	25	30	120	995	18.76	904	18.65	84.00
1	0	25	30	120	876	18.66	897	18.65	83.00
1	0	25	30	120	987	18.76	896	18.67	83.00
1	0	25	30	120	914	18.35	896	18.66	83.00
1	0	25	30	120	991	18.76	894	18.67	82.00
1	0	25	30	120	1015	18.56	894	18.67	82.00
1	0	25	30	120	998	18.66	898	18.66	83.00
1	0	25	30	120	939	18.46	895	18.64	82.00
1	0	25	30	120	1015	18.86	897	18.64	83.00
1	0	25	30	120	947	18.66	897	18.64	83.00
1	0	25	30	120	1008	18.66	900	18.62	83.00
1	0	25	30	120	908	18.76	909	18.62	84.00
1	0	25	30	120	885	18.66	925	18.62	87.00
1	0	25	30	120	1015	18.86	941	18.64	89.00
1	0	25	30	120	868	18.66	939	18.65	89.00
1	0	25	30	120	1014	18.76	941	18.65	89.00
1	0	25	30	120	935	18.76	946	18.65	90.00
1	0	25	30	120	912	18.96	957	18.67	91.00
1	0	25	30	120	1015	18.76	957	18.68	91.00
1	0	25	30	120	946	18.46	959	18.69	92.00
1	0	25	30	120	992	18.66	959	18.68	92.00
1	0	25	30	120	957	18.66	963	18.68	92.00
1	0	25	30	120	997	18.56	963	18.67	92.00
1	0	25	30	120	979	18.56	966	18.68	93.00
1	0	25	30	120	886	18.76	961	18.68	92.00
1	0	25	30	120	915	18.46	956	18.68	91.00
1	0	25	30	120	794	18.66	946	18.68	90.00
1	0	25	30	120	827	18.86	940	18.70	89.00
1	0	25	30	120	958	18.66	937	18.69	89.00
1	0	25	30	120	990	18.56	940	18.68	89.00
1	0	25	30	120	996	18.66	939	18.68	89.00
1	0	25	30	120	1014	18.96	944	18.69	90.00
1	0	25	30	120	927	18.35	946	18.68	90.00
1	0	25	30	120	925	18.46	942	18.66	89.00
1	0	25	30	120	981	18.86	948	18.67	90.00
1	0	25	30	120	969	18.56	945	18.66	90.00
1	0	25	30	120	860	18.76	942	18.66	89.00
1	0	25	30	120	1011	18.56	946	18.64	90.00
1	0	25	30	120	1012	18.66	946	18.63	90.00
1	0	25	30	120	1015	18.56	950	18.64	90.00
1	0	25	30	120	1015	18.76	951	18.64	91.00
1	0	25	30	120	876	18.66	947	18.64	90.00
1	0	25	30	120	1015	18.76	948	18.65	90.00
1	0	25	30	120	1015	18.76	950	18.66	90.00
1	0	25	30	120	1015	18.66	956	18.66	91.00
1	0	25	30	120	1015	18.86	961	18.68	92.00
1	0	25	30	120	1015	18.26	972	18.66	94.00
1	0	25	30	120	941	18.76	978	18.65	95.00
1	0	25	30	120	982	18.56	979	18.65	95.00
1	0	25	30	120	988	18.56	979	18.65	95.00
1	0	25	30	120	978	18.96	978	18.66	95.00
1	0	25	30	120	1015	18.66	978	18.65	95.00
1	0	25	30	120	952	18.66	979	18.66	95.00
1	0	25	30	120	1000	18.56	983	18.67	95.00
1	0	25	30	120	939	18.46	981	18.65	95.00
1	0	25	30	120	979	18.56	981	18.65	95.00
1	0	25	30	120	1015	18.66	989	18.64	96.00
1	0	25	30	120	952	18.76	986	18.65	96.00
1	0	25	30	120	1015	18.86	986	18.66	96.00
1	0	25	30	120	776	19.06	974	18.69	94.00
1	0	25	30	120	939	18.66	971	18.68	94.00
1	0	25	30	120	1009	18.76	977	18.69	94.00
1	0	25	30	120	1015	18.56	977	18.68	94.00
1	0	25	30	120	617	18.66	957	18.67	91.00
1	0	25	30	120	1015	18.96	957	18.69	91.00
1	0	25	30	120	1015	18.56	957	18.67	91.00
1	0	25	30	120	1014	18.46	957	18.68	91.00
1	0	25	30	120	1015	18.86	961	18.69	92.00
1	0	25	30	120	1016	19.06	963	18.71	92.00
1	0	25	30	120	1015	18.66	964	18.72	93.00
1	0	25	30	120	1015	18.76	966	18.71	93.00
1	0	25	30	120	1015	18.96	966	18.72	93.00
1	0	25	30	120	1015	18.96	969	18.74	93.00
1	0	25	30	120	1015	18.56	970	18.74	93.00
1	0	25	30	120	1015	18.56	974	18.74	94.00
1	0	25	30	120	1015	18.46	975	18.74	94.00
1	0	25	30	120	1015	18.86	975	18.75	94.00
1	0	25	30	120	1015	18.96	979	18.76	95.00
1	0	25	30	120	1015	18.35	979	18.73	95.00
1	0	25	30	120	1015	18.66	991	18.71	96.00
1	0	25	30	120	1015	18.86	994	18.72	97.00
1	0	25	30	120	1015	18.76	995	18.72	97.00
1	0	25	30	120	1015	18.35	995	18.71	97.00
1	0	25	30	120	1015	18.86	1015	18.72	100.00
1	0	25	30	120	1015	18.96	1015	18.72	100.00
1	0	25	30	120	1015	19.06	1015	18.75	100.00
1	0	25	30	120	1015	18.46	1015	18.75	100.00
1	0	25	30	120	1015	18.66	1015	18.74	100.00
1	0	25	30	120	1015	18.76	1015	18.72	100.00
1	0	25	30	120	1016	18.76	1015	18.73	100.00
1	0	25	30	120	1015	18.86	1015	18.73	100.00
1	0	25	30	120	1015	18.86	1015	18.73	100.00
1	0	25	30	120	1015	18.96	1015	18.73	100.00
1	0	25	30	120	1015	18.66	1015	18.73	100.00
1	0	25	30	120	1015	18.96	1015	18.75	100.00
1	0	25	30	120	1016	18.56	1015	18.76	100.00
1	0	25	30	120	1015	18.86	1015	18.76	100.00
1	0	25	30	120	1015	18.76	1015	18.75	100.00
1	0	25	30	120	1015	18.66	1015	18.76	100.00
1	0	25	30	120	1016	18.96	1015	18.78	100.00
1	0	25	30	120	1015	18.96	1015	18.78	100.00
1	0	25	30	120	1016	18.35	1015	18.76	100.00
1	0	25	30	120	1015	19.06	1015	18.80	100.00
1	0	25	30	120	1015	18.76	1015	18.79	100.00
1	0	25	30	120	1015	18.66	1015	18.78	100.00
1	0	25	30	120	1015	18.56	1015	18.75	100.00
1	0	25	30	120	1015	19.06	1015	18.78	100.00
1	0	25	30	120	1016	18.76	1015	18.79	100.00
1	0	25	30	120	1015	18.56	1015	18.78	100.00
1	0	25	30	120	1015	18.66	1015	18.77	100.00
1	0	25	30	120	1015	18.76	1015	18.77	100.00
1	0	25	30	120	1015	18.96	1015	18.77	100.00
1	0	25	30	120	1015	18.96	1015	18.77	100.00
1	0	25	30	120	1015	18.56	1015	18.77	100.00
1	0	25	30	120	1015	18.76	1015	18.76	100.00
1	0	25	30	120	1015	18.86	1015	18.77	100.00
1	0	25	30	120	1015	18.66	1015	18.76	100.00
1	0	25	30	120	1015	18.76	1015	18.76	100.00
1	0	25	30	120	1015	18.86	1015	18.77	100.00
1	0	25	30	120	1015	18.56	1015	18.75	100.00
1	0	25	30	120	1015	18.66	1015	18.74	100.00
1	0	25	30	120	1016	18.56	1015	18.75	100.00
1	0	25	30	120	888	18.76	1008	18.73	99.00
1	0	25	30	120	1015	18.86	1008	18.74	99.00
1	0	25	30	120	743	18.35	995	18.72	97.00
1	0	25	30	120	969	16.85	992	18.64	97.00
1	0	25	30	120	826	18.46	983	18.61	95.00
1	0	25	30	120	937	18.76	979	18.61	95.00
1	0	25	30	120	1015	18.56	979	18.61	95.00
1	0	25	30	120	1004	18.76	978	18.61	95.00
1	0	25	30	120	1015	18.66	978	18.61	95.00
1	0	25	30	120	1006	18.76	978	18.60	95.00
1	0	25	30	120	984	18.56	976	18.58	94.00
1	0	25	30	120	893	18.66	970	18.58	93.00
1	0	25	30	120	698	18.66	954	18.58	91.00
1	0	25	30	120	686	18.46	938	18.56	89.00
1	0	25	30	120	710	18.66	923	18.56	86.00
1	0	25	30	120	560	18.56	900	18.55	83.00
1	0	25	30	120	584	18.46	878	18.53	80.00
1	0	25	30	120	637	18.66	860	18.53	77.00
1	0	25	30	120	536	18.46	836	18.52	74.00
1	0	25	30	120	991	18.46	834	18.52	73.00
1	0	25	30	120	937	18.76	837	18.52	74.00
1	0	25	30	120	1015	18.35	837	18.49	74.00
1	0	25	30	120	1015	18.56	850	18.50	76.00
1	0	25	30	120	944	18.76	849	18.60	76.00
1	0	25	30	120	999	18.46	858	18.60	77.00
1	0	25	30	120	943	18.76	858	18.60	77.00
1	0	25	30	120	981	18.96	856	18.62	77.00
1	0	25	30	120	866	18.76	850	18.62	76.00
1	0	25	30	120	1016	18.56	850	18.61	76.00
1	0	25	30	120	1010	18.66	850	18.61	76.00
1	0	25	30	120	1015	18.35	851	18.60	76.00
1	0	25	30	120	1015	18.76	857	18.60	77.00
1	0	25	30	120	1011	18.46	873	18.59	79.00
1	0	25	30	120	914	18.46	884	18.59	81.00
1	0	25	30	120	1016	18.86	900	18.60	83.00
1	0	25	30	120	1014	18.46	922	18.60	86.00
1	0	25	30	120	1015	18.35	944	18.59	90.00
1	0	25	30	120	1013	18.76	963	18.60	92.00
1	0	25	30	120	1003	18.86	986	18.62	96.00
1	0	25	30	120	1010	18.66	987	18.63	96.00
1	0	25	30	120	980	18.66	989	18.62	96.00
1	0	25	30	120	1015	18.56	989	18.63	96.00
1	0	25	30	120	1015	18.56	989	18.63	96.00
1	0	25	30	120	1014	18.56	993	18.62	97.00
1	0	25	30	120	1015	18.76	994	18.64	97.00
1	0	25	30	120	1015	18.66	997	18.63	97.00
1	0	25	30	120	963	18.86	996	18.63	97.00
1	0	25	30	120	956	18.66	1001	18.62	98.00
1	0	25	30	120	1014	18.56	1001	18.62	98.00
1	0	25	30	120	910	18.66	996	18.62	97.00
1	0	25	30	120	999	18.46	995	18.63	97.00
1	0	25	30	120	1015	18.96	995	18.64	97.00
1	0	25	30	120	940	18.46	991	18.64	96.00
1	0	25	30	120	946	18.56	993	18.64	97.00
1	0	25	30	120	982	18.86	991	18.64	96.00
1	0	25	30	120	1015	18.56	991	18.65	96.00
1	0	25	30	120	924	18.66	987	18.66	96.00
1	0	25	30	120	954	18.35	984	18.64	95.00
1	0	25	30	120	1014	18.66	984	18.63	95.00
1	0	25	30	120	948	18.46	981	18.62	95.00
1	0	25	30	120	901	18.66	977	18.62	94.00
1	0	25	30	120	974	18.86	975	18.64	94.00
1	0	25	30	120	1015	18.66	975	18.64	94.00
1	0	25	30	120	1014	18.76	975	18.65	94.00
1	0	25	30	120	976	18.66	973	18.65	94.00
1	0	25	30	120	988	18.56	972	18.64	94.00
1	0	25	30	120	985	18.96	973	18.65	94.00
1	0	25	30	120	1008	18.46	976	18.64	94.00
1	0	25	30	120	991	18.66	974	18.64	94.00
1	0	25	30	120	1014	18.66	980	18.64	95.00
1	0	25	30	120	995	18.76	979	18.66	95.00
1	0	25	30	120	1015	18.86	979	18.65	95.00
1	0	25	30	120	1016	18.46	983	18.65	95.00
1	0	25	30	120	1010	18.76	986	18.66	96.00
1	0	25	30	120	986	18.46	987	18.64	96.00
1	0	25	30	120	1016	18.76	987	18.65	96.00
1	0	25	30	120	1009	18.86	991	18.66	96.00
1	0	25	30	120	945	18.86	991	18.69	96.00
1	0	25	30	120	1013	18.76	990	18.69	96.00
1	0	25	30	120	1015	18.56	994	18.70	97.00
1	0	25	30	120	999	18.66	999	18.70	98.00
1	0	25	30	120	948	18.96	997	18.70	97.00
1	0	25	30	120	994	18.66	996	18.70	97.00
1	0	25	30	120	974	18.66	994	18.70	97.00
1	0	25	30	120	1007	18.86	996	18.71	97.00
1	0	25	30	120	963	18.56	995	18.71	97.00
1	0	25	30	120	966	18.56	994	18.69	97.00
1	0	25	30	120	974	18.86	992	18.71	97.00
1	0	25	30	120	547	18.96	970	18.72	93.00
1	0	25	30	120	529	18.66	946	18.72	90.00
1	0	25	30	120	515	18.76	922	18.72	86.00
1	0	25	30	120	709	18.76	906	18.72	84.00
1	0	25	30	120	747	18.76	893	18.73	82.00
1	0	25	30	120	672	18.66	876	18.73	80.00
1	0	25	30	120	1015	18.56	877	18.73	80.00
1	0	25	30	120	767	18.56	865	18.72	78.00
1	0	25	30	120	534	18.76	841	18.72	74.00
1	0	25	30	120	651	18.66	826	18.71	72.00
1	0	25	30	120	728	18.56	812	18.70	70.00
1	0	25	30	120	1015	18.66	812	18.70	70.00
1	0	25	30	120	784	18.56	801	18.70	69.00
1	0	25	30	120	1016	18.86	805	18.69	69.00
1	0	25	30	120	747	18.76	793	18.70	67.00
1	0	25	30	120	958	18.66	792	18.70	67.00
1	0	25	30	120	637	18.76	773	18.69	64.00
1	0	25	30	120	943	18.26	772	18.68	64.00
1	0	25	30	120	771	18.76	762	18.69	63.00
1	0	25	30	120	699	18.46	749	18.67	61.00
1	0	25	30	120	712	18.66	757	18.65	62.00
1	0	25	30	120	788	18.46	770	18.64	64.00
1	0	25	30	120	727	18.86	781	18.65	66.00
1	0	25	30	120	755	19.06	783	18.66	66.00
1	0	25	30	120	837	18.56	787	18.65	66.00
1	0	25	30	120	1011	18.35	804	18.64	69.00
1	0	25	30	120	976	18.86	802	18.65	69.00
1	0	25	30	120	825	18.76	805	18.66	69.00
1	0	25	30	120	878	18.96	822	18.67	72.00
1	0	25	30	120	888	18.56	834	18.67	73.00
1	0	25	30	120	913	18.76	844	18.68	75.00
1	0	25	30	120	1008	18.66	843	18.68	75.00
1	0	25	30	120	780	18.76	843	18.69	75.00
1	0	25	30	120	866	18.66	835	18.68	74.00
1	0	25	30	120	1015	18.76	849	18.68	76.00
1	0	25	30	120	853	18.56	844	18.67	75.00
1	0	25	30	120	536	18.35	839	18.65	74.00
1	0	25	30	120	1015	18.66	842	18.67	75.00
1	0	25	30	120	963	18.66	852	18.67	76.00
1	0	25	30	120	1015	18.46	868	18.67	78.00
1	0	25	30	120	1015	18.56	883	18.66	81.00
1	0	25	30	120	1015	18.86	894	18.68	82.00
1	0	25	30	120	1015	18.66	908	18.67	84.00
1	0	25	30	120	1015	18.76	921	18.66	86.00
1	0	25	30	120	1015	18.66	930	18.66	88.00
1	0	25	30	120	1015	18.86	931	18.69	88.00
1	0	25	30	120	1015	18.56	933	18.67	88.00
1	0	25	30	120	1015	18.86	942	18.68	89.00
1	0	25	30	120	1015	19.06	949	18.68	90.00
1	0	25	30	120	1015	18.66	955	18.69	91.00
1	0	25	30	120	1015	18.66	960	18.68	92.00
1	0	25	30	120	1015	18.76	961	18.69	92.00
1	0	25	30	120	1016	18.76	972	18.69	94.00
1	0	25	30	120	1015	18.56	980	18.68	95.00
1	0	25	30	120	1016	18.66	980	18.68	95.00
1	0	25	30	120	1014	18.66	988	18.68	96.00
1	0	25	30	120	1015	18.86	1012	18.71	100.00
1	0	25	30	120	1015	18.66	1012	18.71	100.00
1	0	25	30	120	1015	18.66	1015	18.71	100.00
1	0	25	30	120	1015	18.66	1015	18.72	100.00
1	0	25	30	120	1015	18.56	1015	18.72	100.00
1	0	25	30	120	1015	18.46	1015	18.70	100.00
1	0	25	30	120	1016	19.06	1015	18.72	100.00
1	0	25	30	120	1015	18.76	1015	18.72	100.00
1	0	25	30	120	1015	18.56	1015	18.71	100.00
1	0	25	30	120	1016	18.66	1015	18.70	100.00
1	0	25	30	120	1016	18.56	1015	18.70	100.00
1	0	25	30	120	1016	18.56	1015	18.69	100.00
1	0	25	30	120	1015	18.56	1015	18.66	100.00
1	0	25	30	120	1016	18.76	1015	18.67	100.00
1	0	25	30	120	1016	18.76	1015	18.67	100.00
1	0	25	30	120	1016	18.76	1015	18.67	100.00
1	0	25	30	120	1015	18.76	1015	18.67	100.00
1	0	25	30	120	1015	18.56	1015	18.67	100.00
1	0	25	30	120	1015	18.66	1015	18.67	100.00
1	0	25	30	120	1015	18.96	1015	18.69	100.00
1	0	25	30	120	960	18.76	1012	18.68	100.00
1	0	25	30	120	1015	18.96	1012	18.70	100.00
1	0	25	30	120	1015	18.86	1012	18.71	100.00
1	0	25	30	120	939	18.76	1008	18.71	99.00
1	0	25	30	120	1016	18.66	1008	18.72	99.00
1	0	25	30	120	966	18.86	1006	18.74	99.00
1	0	25	30	120	1016	18.86	1006	18.73	99.00
1	0	25	30	120	953	18.76	1003	18.73	98.00
1	0	25	30	120	968	18.86	1000	18.74	98.00
1	0	25	30	120	883	18.46	994	18.73	97.00
1	0	25	30	120	1010	18.56	994	18.73	97.00
1	0	25	30	120	508	18.56	968	18.73	93.00
1	0	25	30	120	1004	18.46	968	18.73	93.00
1	0	25	30	120	789	18.66	956	18.72	91.00
1	0	25	30	120	1002	18.76	956	18.72	91.00
1	0	25	30	120	1015	18.56	955	18.71	91.00
1	0	25	30	120	958	18.56	953	18.70	91.00
1	0	25	30	120	1015	18.66	953	18.71	91.00
1	0	25	30	120	1016	18.46	953	18.70	91.00
1	0	25	30	120	1005	18.56	952	18.68	91.00
1	0	25	30	120	1010	18.86	955	18.68	91.00
1	0	25	30	120	997	18.66	954	18.67	91.00
1	0	25	30	120	1015	18.56	954	18.65	91.00
1	0	25	30	120	1012	18.86	957	18.66	91.00
1	0	25	30	120	924	18.66	953	18.66	91.00
1	0	25	30	120	789	18.56	944	18.64	90.00
1	0	25	30	120	1015	18.46	944	18.62	90.00
1	0	25	30	120	1006	18.86	947	18.63	90.00
1	0	25	30	120	1015	18.86	949	18.63	90.00
1	0	25	30	120	1015	18.66	956	18.64	91.00
1	0	25	30	120	1014	18.66	956	18.64	91.00
1	0	25	30	120	1015	18.46	981	18.64	95.00
1	0	25	30	120	1016	18.86	982	18.66	95.00
1	0	25	30	120	1015	18.96	993	18.67	97.00
1	0	25	30	120	1015	18.56	994	18.66	97.00
1	0	25	30	120	1015	18.46	994	18.66	97.00
1	0	25	30	120	1015	18.76	996	18.67	97.00
1	0	25	30	120	1015	18.46	996	18.66	97.00
1	0	25	30	120	1015	18.86	996	18.68	97.00
1	0	25	30	120	1015	18.56	997	18.68	97.00
1	0	25	30	120	1015	18.76	997	18.67	97.00
1	0	25	30	120	1015	18.86	998	18.68	98.00
1	0	25	30	120	1015	18.96	998	18.70	98.00
1	0	25	30	120	1015	18.96	998	18.71	98.00
1	0	25	30	120	1014	18.96	1003	18.72	98.00
1	0	25	30	120	1015	18.96	1014	18.74	100.00
1	0	25	30	120	1015	18.56	1014	18.75	100.00
1	0	25	30	120	1015	18.56	1014	18.73	100.00
1	0	25	30	120	1015	18.86	1014	18.73	100.00
1	0	25	30	120	1016	18.66	1015	18.73	100.00
1	0	25	30	120	1015	18.76	1015	18.74	100.00
1	0	25	30	120	1015	19.06	1015	18.77	100.00
1	0	25	30	120	1015	18.86	1015	18.77	100.00
1	0	25	30	120	1015	18.35	1015	18.74	100.00
1	0	25	30	120	1015	18.66	1015	18.74	100.00
1	0	25	30	120	1015	18.76	1015	18.76	100.00
1	0	25	30	120	1015	18.56	1015	18.75	100.00
1	0	25	30	120	767	18.46	1002	18.75	98.00
1	0	25	30	120	1016	18.76	1002	18.74	98.00
1	0	25	30	120	1015	18.96	1002	18.76	98.00
1	0	25	30	120	1015	18.76	1002	18.76	98.00
1	0	25	30	120	1015	19.16	1002	18.78	98.00
1	0	25	30	120	1014	18.96	1002	18.78	98.00
1	0	25	30	120	1015	18.76	1002	18.77	98.00
1	0	25	30	120	1015	18.76	1002	18.76	98.00
1	0	25	30	120	1015	18.56	1002	18.74	98.00
1	0	25	30	120	1015	18.46	1002	18.73	98.00
1	0	25	30	120	1015	18.76	1002	18.74	98.00
1	0	25	30	120	1015	18.46	1002	18.72	98.00
Column 6 is raw cap. Each data line is 1/2 second from the last.

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

Well if nothing else, seeing that you are indoors now, that rules out the rain on the wires theory.

One thing that is not clear from the data: At what times during that data collection was the pump running?

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

The pumps haven't run for over a month. They are just sitting on the table doing readings and waiting. I just went out and looked. It seems things have quieted down. They are all sitting at 100% again, I'm not seeing the fluctuations. I pulled out a couple sensors, just to see if they were running, and they are.

And yes, you are correct. No rain, pretty small temp fluctuations. All my theories out the window.

Stuck again.

-jim lee

User avatar
adafruit_support_bill
 
Posts: 85867
Joined: Sat Feb 07, 2009 10:11 am

Re: Moisture sensor issues..

Post by adafruit_support_bill »

Hmmm. Indoors with no rain and no pump activity. Sounds like a relatively stable environment.

Is this only happening with a single sensor? Or have you seen this with multiple sensors?

I have one here I can set up and keep and monitor. Is there anything unique about the potting soil you are using?

User avatar
jim_lee
 
Posts: 709
Joined: Thu May 24, 2012 8:24 pm

Re: Moisture sensor issues..

Post by jim_lee »

Just one or more? I've seen it on multiple ones.

What kind of soil? The soil I"m using now was just dug out of the back yard. I live in western WA so its really dark and usually wet.

And I'm running this on a teensy 3.2.

I've wondering if this is in some way related to power cycling. Because they run for weeks sitting at 100%. I did power cycle them when setting up a grow lamp. It was the next day that a couple of them started acting odd. And now they're all sitting steady at 100% again. Who knows, maybe the power glitched during the storms? I'm thinking I may turn logging back on and cycle the power on them to see if I can catch them doing it again.

-jim lee

Locked
Please be positive and constructive with your questions and comments.

Return to “Other Products from Adafruit”